Skip to content

Commit 73ae278

Browse files
authored
Merge pull request #6 from jelliottp/patch-1
Downport z2ui5_cl_se16_01
2 parents 6cc1338 + 9682fa9 commit 73ae278

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/z2ui5_cl_se16_01.clas.abap

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,11 @@ CLASS z2ui5_cl_se16_01 IMPLEMENTATION.
9393

9494
IF lo_layout-check_confirmed = abap_true.
9595

96-
DATA(layout) = VALUE z2ui5_layo_t_01( ).
97-
layout = lo_layout-row->*.
98-
mo_ui_ranges->mo_sql->ms_sql-layout_name = layout-layout.
99-
mo_ui_ranges->mo_sql->ms_sql-layout_id = layout-guid.
96+
FIELD-SYMBOLS <layout> TYPE z2ui5_layo_t_01.
97+
ASSIGN lo_layout-row->* TO <layout>.
98+
99+
mo_ui_ranges->mo_sql->ms_sql-layout_name = <layout>-layout.
100+
mo_ui_ranges->mo_sql->ms_sql-layout_id = <layout>-guid.
100101
client->view_model_update( ).
101102

102103
ENDIF.

0 commit comments

Comments
 (0)