Definition Attributes
Data Definition Language (DDL) Reference Manual — 426798-002
6 -9
HEADING Clause
C Source Code:
#pragma section name_struct
#pragma fieldalign shared2_name_struct
struct name_struct_def
{
char first_name[10];
char filler_0[6];
char second_name[24];
char filler_1[6];
};
Pascal Source Code:
?Section NAME_STRUCT
TYPE NAME_STRUCT_DEF = RECORD
FIRST_NAME : FSTRING[10];
FILLER_1 : FSTRING[6];
SECOND_NAME : FSTRING[24];
FILLER_2 : FSTRING[6];
END;
FILLER Clause Example
Any noncomputational PICTURE clause or nonnumeric TYPE clause can be used to
specify the length of a FILLER field; for example:
02 FILLER PIC X(6) .
02 FILLER TYPE CHARACTER 6 .
02 FILLER PIC 9(6) .
Each of these FILLER fields reserves a storage area of 6 bytes.
HEADING Clause
The HEADING clause establishes a default heading for columns of field or group
values listed on an Enform report or on a screen generated by the Enable or
Pathmaker product.
DDL ignores the HEADING clause when generating host-language source code.
report-heading
is any set of ASCII or national characters. A heading must be enclosed in quotes.
constant-name
is the name of a constant in the open DDL dictionary. The constant value must be
a valid
report-heading
value.
HEADING {"report-heading"|constant-name} [LN clause]