1
2
3
4
5
6
7
8 %skip(1);
9 dcl 1 OPTIONS static int options (constant),
10
11 2 GENERAL_REPORT (9),
12
13 3 NAME char (32) varying init (
14
15 "-delimiter",
16 "-format_document_controls",
17 "-hyphenation",
18 "-page_footer_value",
19 "-page_header_value",
20 "-page_length",
21 "-page_width",
22 "-title_line",
23 "-truncation"
24 ),
25
26 3 VALUE char (32) varying init (
27
28 "!",
29 "off",
30 "off",
31 "",
32 "",
33 "66",
34 "79",
35 "on",
36 "*"
37 ),
38
39 2 GENERAL_COLUMN (15),
40
41 3 NAME char (32) varying init (
42
43 "-column_order",
44 "-count",
45 "-exclude",
46 "-group",
47 "-group_footer_trigger",
48 "-group_footer_value",
49 "-group_header_trigger",
50 "-group_header_value",
51 "-outline",
52 "-page_break",
53 "-row_footer_value",
54 "-row_header_value",
55 "-subcount",
56 "-subtotal",
57 "-total"
58 ),
59
60 3 VALUE char (32) varying init (
61
62 "[sequential]",
63 "",
64 "",
65 "",
66 "",
67 "",
68 "",
69 "",
70 "",
71 "",
72 "",
73 "",
74 "",
75 "",
76 ""
77 ),
78
79 2 SPECIFIC_COLUMN (6),
80
81 3 NAME char (32) varying init (
82
83 "-alignment",
84 "-editing",
85 "-folding",
86 "-separator",
87 "-title",
88 "-width"
89 ),
90
91 3 VALUE char (32) varying init (
92
93 "[alignment_default]",
94 "",
95 "fill",
96 " ",
97 "[database_column_name]",
98 "[width_default]"
99 );
100 %skip(3);
101 dcl 1 OPTION_NAMES_AS_ARGS (30) static int options (constant),
102
103 2 LONG_NAME char (32) varying init (
104
105 "-alignment",
106 "-column_order",
107 "-count",
108 "-delimiter",
109 "-editing",
110 "-exclude",
111 "-folding",
112 "-format_document_controls",
113 "-group",
114 "-group_footer_trigger",
115 "-group_footer_value",
116 "-group_header_trigger",
117 "-group_header_value",
118 "-hyphenation",
119 "-outline",
120 "-page_break",
121 "-page_footer_value",
122 "-page_header_value",
123 "-page_length",
124 "-page_width",
125 "-row_footer_value",
126 "-row_header_value",
127 "-separator",
128 "-subcount",
129 "-subtotal",
130 "-title",
131 "-title_line",
132 "-total",
133 "-truncation",
134 "-width"
135 ),
136
137 2 SHORT_NAME char (5) varying init (
138
139 "-al",
140 "-co",
141 "-ct",
142 "-dm",
143 "-ed",
144 "-ex",
145 "-fdc",
146 "-fold",
147 "-gft",
148 "-gfv",
149 "-ght",
150 "-ghv",
151 "-gr",
152 "-hph",
153 "-out",
154 "-pb",
155 "-pfv",
156 "-phv",
157 "-pl",
158 "-pw",
159 "-rfv",
160 "-rhv",
161 "-sct",
162 "-sep",
163 "-stt",
164 "-tc",
165 "-tl",
166 "-tt",
167 "-ttl",
168 "-wid"
169 ),
170
171 2 LONG_NAME_IN_SHORT_NAME_ORDER char (32) varying init (
172
173
174
175 "-alignment",
176 "-column_order",
177 "-count",
178 "-delimiter",
179 "-editing",
180 "-exclude",
181 "-format_document_controls",
182 "-folding",
183 "-group_footer_trigger",
184 "-group_footer_value",
185 "-group_header_trigger",
186 "-group_header_value",
187 "-group",
188 "-hyphenation",
189 "-outline",
190 "-page_break",
191 "-page_footer_value",
192 "-page_header_value",
193 "-page_length",
194 "-page_width",
195 "-row_footer_value",
196 "-row_header_value",
197 "-subcount",
198 "-separator",
199 "-subtotal",
200 "-truncation",
201 "-title_line",
202 "-total",
203 "-title",
204 "-width"
205 );
206 %skip(1);
207