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
26
27
28
29
30
31 dcl 01 rmdb_history_entry aligned based (rmdb_history_entry_ptr),
32 02 user_id char (32),
33 02 date_time_restructured fixed bin (71),
34 02 type_of_object_restructured fixed bin,
35 02 object_name char (32),
36 02 operation fixed bin,
37 02 secondary_object_name char (32),
38 02 offset_to_next_entry bit (18) unal,
39 02 offset_to_previous_entry bit (18) unal;
40
41
42 dcl rmdb_history_entry_ptr ptr;
43
44
45 dcl RMDB_DOMAIN_TYPE init (1) fixed bin internal static options (constant);
46 dcl RMDB_ATTR_TYPE init (2) fixed bin internal static options (constant);
47 dcl RMDB_REL_TYPE init (3) fixed bin internal static options (constant);
48
49
50 dcl RMDB_ADD_REL_OP init (1) fixed bin internal static options (constant);
51 dcl RMDB_DEL_REL_OP init (2) fixed bin internal static options (constant);
52 dcl RMDB_ADD_IDX_OP init (3) fixed bin internal static options (constant);
53 dcl RMDB_DEL_IDX_OP init (4) fixed bin internal static options (constant);
54 dcl RMDB_ADD_ATTR_OP init (5) fixed bin int static options (constant);
55 dcl RMDB_DEL_ATTR_OP init (6) fixed bin int static options (constant);
56 dcl RMDB_ADD_DMN_OP init (7) fixed bin int static options (constant);
57 dcl RMDB_DEL_DMN_OP init (8) fixed bin int static options (constant);
58 dcl RMDB_RN_ATTR_OP init (9) fixed bin int static options (constant);
59 dcl RMDB_RN_DMN_OP init (10) fixed bin int static options (constant);
60 dcl RMDB_RN_REL_OP init (11) fixed bin int static options (constant);
61
62