1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 dcl AEP_ENTRY_TYPE fixed bin internal static options (constant) init (1);
23 dcl ERROR_ENTRY_TYPE fixed bin internal static options (constant) init (2);
24 dcl TRACE_ENTRY_TYPE fixed bin internal static options (constant) init (3);
25
26
27
28 dcl CXI_CALLER_TYPE fixed bin internal static options (constant) init (1);
29 dcl SC_CALLER_TYPE fixed bin internal static options (constant) init (2);
30 dcl DSAC_CALLER_TYPE fixed bin internal static options (constant) init (3);
31 dcl UFT_USER_CALLER_TYPE fixed bin internal static options (constant) init (4);
32 dcl UFT_SYSTEM_CALLER_TYPE fixed bin internal static options (constant) init (5);
33 dcl TM_CALLER_TYPE fixed bin internal static options (constant) init (6);
34 dcl LS_CALLER_TYPE fixed bin internal static options (constant) init (7);
35 dcl USER_CALLER_TYPE fixed bin internal static options (constant) init (8);
36
37
38
39 dcl INFO_LOG_SEVERITY fixed bin internal static options (constant) init (0);
40 dcl WARN_LOG_SEVERITY fixed bin internal static options (constant) init (1);
41 dcl SERIOUS_LOG_SEVERITY fixed bin internal static options (constant) init (2);
42 dcl FATAL_LOG_SEVERITY fixed bin internal static options (constant) init (3);
43
44
45
46 dcl AEP_BIN_DATA_CLASS char (16) varying internal static options (constant) init ("aep_record");
47 dcl AEP_UNCONVERTED_DATA_CLASS char (16) varying internal static options (constant) init ("aep_unc_record");
48 dcl DSA_BIN_DATA_CLASS char (16) varying internal static options (constant) init ("dsa_binary");
49
50
51
52 dcl AEP_NO_CONVERT_DATA_TYPE fixed bin internal static options (constant) init (-1);
53
54