DDL Compiler Commands
Data Definition Language (DDL) Reference Manual — 426798-002
9- 61
FILLER Command
•
If the group referred to does not start on a word boundary but is described with a
REDEFINES clause, DDL inserts a filler byte before the group being redefined.
FILLER Command Example
The filler algorithm you select affects the structure of the source code; for example,
consider the following DEFINITION statements:
DEF test1.
02 a PIC XX.
02 b PIC S9(4) COMP.
END
DEF case1.
02 c PIC X.
02 test1 TYPE *.
END
DEF case2.
02 test1 TYPE *.
02 c PIC X.
END
With FILLER 1, the COBOL source code for CASE1 and CASE2 is:
01 CASE1.
02 C PIC X.
02 FILLER PIC X(1).
02 TEST1.
03 A PIC XX.
03 B PIC S9(4) COMP.
01 CASE2.
02 TEST1.
03 A PIC XX.
03 B PIC S9(4) COMP.
02 C PIC X.
With FILLER 0, the COBOL code is:
01 CASE1.
02 C PIC X.
02 TEST1.
03 A PIC XX.
03 FILLER PIC X(1).
03 B PIC S9(4) COMP.
01 CASE2.
02 TEST1.
03 A PIC XX.
03 B PIC S9(4) COMP.
02 C PIC X.
Содержание DDL D40
Страница 36: ...Introduction to DDL Data Definition Language DDL Reference Manual 426798 002 1 14 Examining a Dictionary ...
Страница 66: ...Named Constants Data Definition Language DDL Reference Manual 426798 002 4 10 Standard SPI Constants ...
Страница 230: ...Dictionary Manipulation Statements Data Definition Language DDL Reference Manual 426798 002 8 14 SHOW USE OF Statement ...
Страница 370: ...Dictionary Maintenance Data Definition Language DDL Reference Manual 426798 002 10 24 Converting a Dictionary ...
Страница 456: ...Sample Schemas Data Definition Language DDL Reference Manual 426798 002 B 12 ASSNDDL Statements ...
Страница 470: ...DDL Data Translation Data Definition Language DDL Reference Manual 426798 002 C 14 ...
Страница 528: ...Dictionary Reports Data Definition Language DDL Reference Manual 426798 002 E 8 Requesting Reports ...
Страница 552: ...DDL Alignment Rules Data Definition Language DDL Reference Manual 426798 002 H 4 FIELDALIGN_SHARED8 Alignment Rules ...
Страница 576: ...Index Data Definition Language DDL Reference Manual 426798 002 Index 22 Special Characters ...