You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"! for each example. Most of the time, the variable name is diplayed. To quickly find
14
+
"! the output, use CTRL+F to search for the specific number or variable name in the
15
+
"! console. Alternatively, debug the class using the debugger to check the data
16
+
"! objects' content and values.</li></ol>
17
+
"!
18
+
"! <h2>Disclaimer</h2>
19
+
"! <p>The code presented in this class is only meant for supporting the ABAP
20
+
"! cheat sheets. It is not intended for direct use in a
21
+
"! production system environment. The code examples in the ABAP cheat
22
+
"! sheets are primarily intended to provide a better explanation and
23
+
"! visualization of the syntax and semantics of ABAP statements and not to
24
+
"! solve concrete programming tasks. For production application programs,
25
+
"! a dedicated solution should therefore always be worked out for each
26
+
"! individual case. There is no guarantee for either the correctness or
27
+
"! the completeness of the code. In addition, there is no legal
28
+
"! responsibility or liability for possible errors or their consequences
29
+
"! which occur through the use of the example code.</p>
23
30
CLASSzcl_demo_abap_aux DEFINITION
24
31
PUBLIC
25
32
FINAL
@@ -30,6 +37,7 @@ CLASS zcl_demo_abap_aux DEFINITION
30
37
fill_dbtabs,
31
38
headingIMPORTINGtext TYPE string
32
39
RETURNINGVALUE(output) TYPE string.
40
+
CONSTANTS no_output TYPE stringVALUE`No output for this section. You can set breakpoints and check the content of data objects (if available) in the debugger.`.
0 commit comments