Definitions and Records
Data Definition Language (DDL) Reference Manual — 426798-002
5- 11
Definition Error Handling
89 write-error .
END.
Group Definitions:
Reference Definitions:
DEF cust-name TYPE company-name
HEADING "Customer" .
DEF home-phone TYPE phone
HEADING "Employee/Home Phone" .
Definition Error Handling
When the DDL compiler encounters an error in a DEFINITION statement, it continues
processing the statement to determine if there are other errors before processing the
next statement. DDL does not add the definition to the dictionary, and if any source-
code files are open, DDL does not write the definition to those files.
An extra period in a group definition might cause DDL to not report any additional
errors until it encounters END.
DEF address .
03 street-address .
05 street-no
PIC X (8) .
05 street
PIC X (12) .
05 apt-ro
PIC X (4) .
03 city
PIC X (14) .
03 state-cd
PIC X (2) .
03 zip
PIC 9 (5) .
END .
DEF phone .
DISPLAY "N<( 999) 999-
9999>"
03 area-cd
PIC 9 (3) .
03 prefix
PIC 9 (3) .
03 numb
PIC 9 (4) .
END .
DEF cust-info .
03 company-name
TYPE *
HEADING "Company" .
03 cust-address
TYPE "address"
HEADING "Address" .
03 cust-phone
TYPE "phone"
HEADING "phone .
END .
DEF customer .
03 custname
TYPE cust-name .
03 custid
PIC 9 (6) .
END .
Note optional period
Level number must not be
04 or greater
VST501.vsd
Содержание 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 ...