This commit is contained in:
danrega
2024-06-12 17:08:57 +02:00
parent 1120480ac5
commit b65faccce0
7 changed files with 662 additions and 49 deletions

View File

@@ -1329,8 +1329,7 @@ CLASS zcl_demo_test IMPLEMENTATION.
source = it1
IMPORTING flag_identical = is_identical ).
IF is_identical = abap_true.
out->write( `The two internal tables have identical content.` ).
CLEAR is_identical.
out->write( `The two internal tables have identical content.` ).
ELSE.
out->write( comp_res1 ).
ENDIF.
@@ -1343,8 +1342,7 @@ CLASS zcl_demo_test IMPLEMENTATION.
source = it1
IMPORTING flag_identical = is_identical ).
IF is_identical = abap_true.
out->write( `The two internal tables have identical content.` ).
CLEAR is_identical.
out->write( `The two internal tables have identical content.` ).
ELSE.
out->write( comp_res2 ).
ENDIF.
@@ -1357,8 +1355,7 @@ CLASS zcl_demo_test IMPLEMENTATION.
source = it1
IMPORTING flag_identical = is_identical ).
IF is_identical = abap_true.
out->write( `The two internal tables have identical content.` ).
CLEAR is_identical.
out->write( `The two internal tables have identical content.` ).
ELSE.
out->write( comp_res3 ).
ENDIF.