1
2
3
4
5 dcl FIELD_INDICATOR (8) char (32) varying int static options (constant)
6 init ("Order No.:", "Manual Name:", "Short Name:", "Description:", "Audience:",
7 "Table of Contents:", "New Features:", "Release Supported:");
8
9 dcl FIELD_NAME (8) char (32) varying int static options (constant)
10 init ("order number", "manual name", "short name", "description", "audience",
11 "table of contents", "new features", "release supported");
12
13 dcl (
14 ORDER_NUMBER_FIELD_ID init (1),
15 MANUAL_NAME_FIELD_ID init (2),
16 SHORT_NAME_FIELD_ID init (3),
17 DESCRIPTION_FIELD_ID init (4),
18 AUDIENCE_FIELD_ID init (5),
19 TOC_FIELD_ID init (6),
20 NEW_FEATURES_FIELD_ID init (7),
21 RELEASE_SUPPORTED_FIELD_ID
22 init (8)
23 ) fixed bin int static options (constant);
24
25
26