Natural システムエラーメッセージ 0551~0600

NAT0598: Program code not compatible with Natural for LUW. Reason :1:.

テキスト
Program code not compatible with Natural for LUW. Reason ....
説明
The compiler parameter LUWCOMP=ON is set. The used syntax constructionis not accepted by Natural for Open Systems (LUW).Possible reason codes:01: More than 7 precision digits. 14: IN SHARED HOLD / SKIP IN HOLD.04: New compiler option. 15: READLOB / UPDATELOB.07: MOVE ALL with SUBSTR option. 16: Array field in SEPARATE.11: READ WORK with ADJUST option. 17: SEPARATE POSITION clause.12: REINPUT with MARK .. (CV=..). 19: Wrong system variable.13: WRITE WORK with system variable.For a more detailed error description, see the compiler parameterLUWCOMP (NTCMPO macro) in the Natural documentation.
対処
Do not use the indicated programming feature, or set LUWCOMP=OFF.

NAT0599: Program code not compatible with Version 4.2. Reason :1:.

テキスト
Program code not compatible with Version 4.2. Reason ....
説明
Compiler parameter V42COMP=ON is set. The following syntax constructionsare not accepted by Natural Version 4.2. Possible reason codes:01: More than 7 precision digits 11: READ WORK with ADJUST option02: Generated pgm size (GPT) > 64KB 12: REINPUT with MARK .. (CV=..)03: User-defined functions 13: WRITE WORK with system variable04: New compiler option 14: IN SHARED HOLD / SKIP IN HOLD05: Parameter EMU=,ICU=,LCU=,TCU= 15: READLOB / UPDATELOB06: FOR statement with expression 16: Array field in SEPARATE07: MOVE ALL with SUBSTR option 17: SEPARATE POSITION clause08: New functions *MAXVAL,.. 18: Empty DEFINE DATA block09: DECIDE with SUBSTR option 19: Wrong system variable.10: EXAMINE with DIRECTION/POSITIONFor a more detailed error description, see the compiler parameterV42COMP (NTCMPO macro) in the Natural documentation.
対処
Do not use the indicated programming feature, or set V42COMP=OFF.

NAT0600: :1: 行目の IF ステートメントに対して END-IF がありません。

テキスト
... 行目の IF ステートメントに対して 'END-IF' がありません。
説明
ストラクチャードモードでは、IF ステートメントブロックは
対応する END-IF ステートメントで終了する必要があります。
例:
 READ ...
 IF ...
 COMPUTE ...
 COMPUTE ...
 END-IF
 DISPLAY
 END-READ
 END
対処
プログラムの誤りを修正してください。