1
2
3
4
5 dcl 1 reqfile based (qp) aligned,
6 2 nacts fixed,
7 2 version fixed bin,
8 2 pad (6) bit (36) aligned,
9 2 reqfiletab (3000),
10
11 3 acctid char (12) unal,
12 3 mitacct char (12) unal,
13 3 reqno char (12) unal,
14 3 qflag char (8),
15 3 procssd fixed bin,
16 3 qdn fixed bin (71),
17 3 qdf fixed bin (71),
18 3 billing_name char (32) unal,
19 3 billing_addr char (32) unal,
20 3 chg_mo float bin (63),
21 3 chg_tr float bin (63),
22 3 req_amt float bin (63),
23 3 cutoff fixed bin (71);
24
25 dcl loqh int static fixed bin (17) init (8),
26 loqe int static fixed bin (17) init (40);
27
28 declare REQFILE_VERSION fixed bin init (2) int static options (constant);
29
30