1
2
3
4 dcl PROJ_KEY_NAMES (57) char (32) aligned int static options (constant) init (
5
6 "title",
7 "investigator",
8 "investigator_address",
9 "supervisor",
10 "supervisor_address",
11 "supervisor_phone",
12 "account",
13 "requisition",
14 "requisition_amount",
15 "cutoff_date",
16 "billing_name",
17 "billing_address",
18 "group",
19 "attributes",
20 "grace",
21 "administrator",
22 "quota",
23 "alias",
24 "groups",
25 "min_ring",
26 "max_ring",
27 "pdir_quota",
28 "max_foreground",
29 "max_background",
30 "abs_foreground_cpu_limit",
31 "rate_structure",
32 "dir_quota",
33 "authorization",
34 "audit",
35
36 "t",
37 "inv",
38 "inv_addr",
39 "sup",
40 "sup_addr",
41 "sup_phone",
42 "acct",
43 "req",
44 "amt",
45 "cutoff",
46 "billto",
47 "billat",
48 "grp",
49 "attr",
50 "gr",
51 "admin",
52 "q",
53 "aka",
54 "grps",
55 "min",
56 "max",
57 "pdq",
58 "maxfg",
59 "maxbg",
60 "absfgcpulim",
61 "rs",
62 "dq",
63 "auth");
64
65 Note
66
67
68 dcl PROJ_KEY_VALUES (57) fixed bin int static options (constant)
69 init (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
70 25, 26, 27, 28, 29,
71 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
72 26, 27, 28);
73
74 dcl PROJ_KEY_ALL_ORDER (29) fixed bin int static options (constant) init (
75
76 1,
77 2,
78 3,
79 4,
80 5,
81 6,
82 7,
83 8,
84 9,
85 10,
86 11,
87 12,
88 18,
89 16,
90 25,
91 28,
92 29,
93 17,
94 27,
95 26,
96 13,
97 19,
98 14,
99 15,
100 20,
101 21,
102 22,
103 23,
104 24 );
105
106 declare PROJ_KEYS_MATCH (2) fixed bin int static options (constant) init (
107
108
109
110 16,
111 19
112 );
113
114