Lists the Syntax Checking error messages from COBCH0121 through COBCH0140.
COBCH0121 定数のファイル名に DYNAMIC や EXTERNAL は指定できない
You can specify DYNAMIC or EXTERNAL in the ASSIGN clause of a file description entry only if the filename is contained in a data item rather than given as a literal filename.
COBCH0126 ASSIGN 句がない
You have used a SELECT clause to give a file a filename which the program recognizes, but you have failed to use a corresponding ASSIGN clause to give the file an implementor-name (the name which the system recognizes).
COBCH0128 索引/相対ファイルに ACCESS MODE 句がない
The format of this clause depends on the organization of the data-file. If you have specified the ORGANIZATION clause for a file as either INDEXED or RELATIVE you must specify an ACCESS MODE clause for it, indicating which mode you will use to access that file. If no mode is specified, sequential access mode is assumed.
COBCH0129 キーまたはキーの構成要素が多すぎる
The number of separate data items making up the record key and alternate key fields of one indexed file is too great.
COBCH0131 SELECT 句に認識できない語がある
Your COBOL system has failed to accept part of your SELECT clause. This message could be given if the filename which you have given in the SELECT clause does not conform to the rules for the naming of COBOL files.
COBCH0132 SET 文中に '条件名 TO TRUE/FALSE' を繰り返して使用した
You have specified a repeated "condition-name to TRUE/FALSE" phrase in a single SET statement. This does not conform to your selected flagging dialect.
COBCH0133 SAME AREA 句の構文エラー
This optional clause, by which you allow two or more files to access the same central storage space, does not conform to the relevant syntax rules.
COBCH0137 プログラムの文字の大小順序が定義されていない
You have included the PROGRAM COLLATING SEQUENCE clause in the OBJECT-COMPUTER paragraph of your code but have failed to code a corresponding ALPHABET-NAME in the SPECIAL-NAMES paragraph. Your code must contain an ALPHABET-NAME clause if it has a PROGRAM COLLATING SEQUENCE clause in it.
COBCH0138 EXCLUSIVE、AUTOMATIC、MANUAL がない
The LOCK MODE clause in the FILE-CONTROL paragraph of the Environment Division does not contain one of the words EXCLUSIVE, AUTOMATIC, or MANUAL, or if it does, your COBOL system has failed to recognize the word, perhaps owing to a spelling mistake. The LOCK MODE clause controls access to files shared between a number of users in a multi-user environment. Its form is determined by the filetype with which it is used.
COBCH0139 LOCK MODE /ファイルの種類の組合わせが無効である
The format of the LOCK MODE clause depends on the file type. You have specified a LOCK MODE clause which is incompatible with the type of the specified file. Non-shareable files must have lock mode EXCLUSIVE while shareable files can have lock mode AUTOMATIC or MANUAL.