Example:

IF   CUST_BALANCE < 0 OR PAYMENT_DELAY > 35

MAKE_BLINK Z_CUST_NAME

END

(3 instructions => 3 lines)

Example:

IF   CUST_BALANCE < 0 –

OR  PAYMENT_DELAY > 35

MAKE_BLINK Z_CUST_NAME

END

(3 instructions => 4 lines)

Example:

* Country code control

*

IF   COUNTRY_CODE = 'USA'

CALL SELECT_STATE STATE_CODE

END

- variables (files, layouts, calculations, etc.),

- views,

- print formats,

- called programs,

- arrays,

- control breaks.

 

Warning: Be careful not to use those which were defined in the environment attributes, on the 3GL Generation - Indicators tab.

Example:

IF    *CDE12

or

IF    *F12

TERMINATE

 

TERMINATE

END

END

 

 

 

 

IF    *NCD06

or

IF     *NF06

PROCESS 01

 

PROCESS 01

END

 

END

 

 

↑ Top of page