Skip to content

Commit

Permalink
really, fix
Browse files Browse the repository at this point in the history
  • Loading branch information
larshp committed Mar 29, 2024
1 parent 8dc30a6 commit 14a19a2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/cl_run.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ CLASS cl_run IMPLEMENTATION.
DATA string_tab TYPE string_table.
DATA type_name TYPE string.
DATA schema_id TYPE string.
DATA newline TYPE string.
DATA ref TYPE REF TO data.
FIELD-SYMBOLS <row> LIKE LINE OF string_tab.

Expand All @@ -40,7 +41,7 @@ CLASS cl_run IMPLEMENTATION.
ENDIF.
ENDLOOP.

DATA(newline) = |\n|.
newline = |\n|.
CONCATENATE LINES OF string_tab INTO result SEPARATED BY newline.
ENDMETHOD.

Expand Down

0 comments on commit 14a19a2

Please sign in to comment.