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]
Содержание 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 ...