Lists the Syntax Checking error messages from COBCH1021 through COBCH1040.
COBCH1021 COMP-6 から COMP への変換で遊びバイトを追加する
You are using a program converted from RM/COBOL that contains a COMP-6 numeric data item which has been converted to a COMP numeric data item. As a result of this conversion, less data space might have been allocated to the numeric data item and, therefore, your COBOL system adds leading binary zeros to pad the space, if required.
COBCH1023 作業場所節が必要である。作業場所節の始まりとみなす
Your program begins with an 01 level entry. It is assumed that this is the first item of the Working-Storage Section.
COBCH1026 送り出し側が文字定数である - 代わりにゼロを転記する
A MOVE statement is trying to MOVE a nonnumeric literal to a numeric data item. This cannot be done. To avoid undefined results, ZERO is moved to the target data item.
COBCH1027 数字定数である - 文字定数として扱う
A numeric literal is being used in relation to a nonnumeric data item; for example, as the VALUE of an 88 level entry attached to a nonnumeric data item. The literal is converted to an alphanumeric literal.
COBCH1028 命令文は英字データ項目を参照してはならない
A statement would cause invalid data to be contained in an alphabetic data item. Your COBOL system executes the statement as written.
COBCH1029 非整数を英数字項目に転記している
A MOVE statement is trying to move a noninteger item to an alphanumeric data item. The decimal point is ignored and all the digits moved as if they constituted an integer.
COBCH1034 送り出し側項目が英字または英数字編集項目である - 英数字として扱う
You have moved either an alphabetic, alphabetic justified, edited alphabetic or edited alphanumeric field to a numeric display field. The source field has been treated as though it were a numeric field.
COBCH1035 キーが最小レコード長より大きい
The specified key is greater in length than the minimum size of the record.
COBCH1036 入り口名が無効である
An external name, such as program-id or an entry name does not conform to the syntax rules for that item.
COBCH1039 構造情報にエラーがある。構造図を作成しない
You are trying to perform structure animation of a program in which a PERFORM THRU statement performs sections in the Declaratives.