Definition Attributes
Data Definition Language (DDL) Reference Manual — 426798-002
6 -3
AS Clause
AS Clause
The AS clause specifies a display string for an enumeration value when AS is in a level
89 enumeration clause. At the definition level, the AS clause specifies a default display
string for a field of type ENUM. This default becomes the display string when the value
of the field does not match any of the values specified by level 89 enumeration clauses
in the field’s definition or description.
DDL ignores the AS clause when generating host-language source code.
display-string
is an ASCII or national character string.
constant-name
is the name of a constant in the open DDL dictionary. The constant value must be
a valid
display-string
value.
LN clause
specifies the locale associated with a value.
The following example shows a DDL definition containing an AS clause that specifies a
default display string:
CONSTANT prts-obj-bolt VALUE IS 1.
CONSTANT prts-obj-nut VALUE IS 2.
CONSTANT prts-obj-pin VALUE IS 3
CONSTANT prts-obj-screw VALUE IS 4.
CONSTANT prts-obj-washer VALUE IS 5.
DEF prts-ddl-object-type TYPE ENUM BEGIN AS "Miscellaneous".
89 prts-enm-bolt VALUE IS prts-obj-bolt AS "Bolt".
89 prts-enm-nut VALUE IS prts-obj-nut AS "Nut".
89 prts-enm-pin VALUE IS prts-obj-pin AS "Pin".
89 prts-enm-screw VALUE IS prts-obj-screw AS "Screw".
89 prts-enm-washer VALUE IS prts-obj-washer AS "Washer".
END.
AS {"display-string" | 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 ...