We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6cc1338 + 9682fa9 commit 73ae278Copy full SHA for 73ae278
src/z2ui5_cl_se16_01.clas.abap
@@ -93,10 +93,11 @@ CLASS z2ui5_cl_se16_01 IMPLEMENTATION.
93
94
IF lo_layout-check_confirmed = abap_true.
95
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.
+ FIELD-SYMBOLS <layout> TYPE z2ui5_layo_t_01.
+ ASSIGN lo_layout-row->* TO <layout>.
+
+ mo_ui_ranges->mo_sql->ms_sql-layout_name = <layout>-layout.
100
+ mo_ui_ranges->mo_sql->ms_sql-layout_id = <layout>-guid.
101
client->view_model_update( ).
102
103
ENDIF.
0 commit comments