forked from ABAP-Logger/ABAP-Logger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzif_logger.intf.abap
112 lines (97 loc) · 3.17 KB
/
zif_logger.intf.abap
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
interface zif_logger
public .
data handle type balloghndl read-only .
data db_number type balognr read-only .
data header type bal_s_log read-only .
methods add
importing
obj_to_log type any optional
context type simple optional
callback_form type csequence optional
callback_prog type csequence optional
callback_fm type csequence optional
type type symsgty optional
importance type balprobcl optional
preferred parameter obj_to_log
returning
value(self) type ref to zif_logger .
methods a
importing
obj_to_log type any optional
context type simple optional
callback_form type csequence optional
callback_prog type csequence optional
callback_fm type csequence optional
importance type balprobcl optional
preferred parameter obj_to_log
returning
value(self) type ref to zif_logger .
methods e
importing
obj_to_log type any optional
context type simple optional
callback_form type csequence optional
callback_prog type csequence optional
callback_fm type csequence optional
importance type balprobcl optional
preferred parameter obj_to_log
returning
value(self) type ref to zif_logger .
methods w
importing
obj_to_log type any optional
context type simple optional
callback_form type csequence optional
callback_prog type csequence optional
callback_fm type csequence optional
importance type balprobcl optional
preferred parameter obj_to_log
returning
value(self) type ref to zif_logger .
methods i
importing
obj_to_log type any optional
context type simple optional
callback_form type csequence optional
callback_prog type csequence optional
callback_fm type csequence optional
importance type balprobcl optional
preferred parameter obj_to_log
returning
value(self) type ref to zif_logger .
methods s
importing
obj_to_log type any optional
context type simple optional
callback_form type csequence optional
callback_prog type csequence optional
callback_fm type csequence optional
importance type balprobcl optional
preferred parameter obj_to_log
returning
value(self) type ref to zif_logger .
methods has_errors
returning
value(rv_yes) type abap_bool .
methods has_warnings
returning
value(rv_yes) type abap_bool .
methods is_empty
returning
value(rv_yes) type abap_bool .
methods length
returning
value(rv_length) type i .
"! Saves the log on demand. Intended to be called at the
"! end of the log processing so that logs can be saved depending
"! on other criteria, like the existence of error messages.
"! If there are no error messages, it may not be desirable to save
"! a log.
"! If auto save is enabled, save will do nothing.
methods save .
methods export_to_table
returning
value(rt_bapiret) type bapirettab .
methods fullscreen .
methods popup .
endinterface.