ADELIA |
VADELIA |
|
WADELIA |
EADELIA |
(I/B) |
(I/B) (C/S) |
(I/B) (C/S) |
(B) (C/S) |
Warning: This instruction cannot be used in the Adelia Development module.
Section for use
All
Syntax
INSERT_STD_E
Description
The INSERT_STD_E instruction is used to define the position of a block of instructions automatically created by Level 2 generation for the management rules:
In Level 2, the INSERT_STD_E instruction is replaced by a block of instructions within the BEGIN_STD_E and END_STD instructions.
Warning: Only management rules of EP class are inserted for VADELIA programs.
Example
Before Level 2 generation (e.g. from a program template):
VERIFICATION 01 |
: lines saved |
IF OPTION = '2' |
: " |
CALL UPD_ORDER ORDER_NBR |
: " |
END |
: " |
INSERT_STD_E |
After Level 2 generation:
VERIFICATION 01 |
: lines saved |
IF OPTION = '2' |
: " |
CALL UPD_ORDER ORDER_NBR |
: " |
END |
: " |
BEGIN_STD_E |
|
IF OPTION <> '2';'3';'4';'5';'6' |
: these lines will be deleted |
PREPARE_MSG 0002 OPTION |
: and replaced when a |
ANOMALY |
: new Level 2 generation |
END |
: is requested |
END_STD |