Skip to content

Commit 5d8e3a0

Browse files
committed
update
1 parent b67c9b5 commit 5d8e3a0

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

src/z2ui5_cl_pop_displ_f4_help.clas.abap

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ CLASS z2ui5_cl_pop_displ_f4_help DEFINITION
88

99
DATA mt_data TYPE REF TO data.
1010
DATA ms_data_row TYPE REF TO data.
11-
DATA ms_layout TYPE z2ui5_cl_pop_display_layout=>ty_s_layout.
11+
DATA mo_layout TYPE ref to z2ui5_cl_layout.
1212

1313
DATA mv_table TYPE string.
1414
DATA mv_field TYPE string.
@@ -259,23 +259,23 @@ CLASS z2ui5_cl_pop_displ_f4_help IMPLEMENTATION.
259259

260260
DATA(columns) = table->columns( ).
261261

262-
LOOP AT ms_layout-t_layout REFERENCE INTO DATA(layout).
262+
LOOP AT mo_layout->ms_layout-t_layout REFERENCE INTO DATA(layout).
263263
DATA(lv_index) = sy-tabix.
264264

265265
columns->column( visible = client->_bind( val = layout->visible
266-
tab = ms_layout-t_layout
266+
tab = mo_layout->ms_layout-t_layout
267267
tab_index = lv_index )
268268
halign = client->_bind( val = layout->halign
269-
tab = ms_layout-t_layout
269+
tab = mo_layout->ms_layout-t_layout
270270
tab_index = lv_index )
271271
importance = client->_bind( val = layout->importance
272-
tab = ms_layout-t_layout
272+
tab = mo_layout->ms_layout-t_layout
273273
tab_index = lv_index )
274274
mergeduplicates = client->_bind( val = layout->merge
275-
tab = ms_layout-t_layout
275+
tab = mo_layout->ms_layout-t_layout
276276
tab_index = lv_index )
277277
minscreenwidth = client->_bind( val = layout->width
278-
tab = ms_layout-t_layout
278+
tab = mo_layout->ms_layout-t_layout
279279
tab_index = lv_index )
280280
)->text( layout->tlabel ).
281281

@@ -289,7 +289,7 @@ CLASS z2ui5_cl_pop_displ_f4_help IMPLEMENTATION.
289289
t_arg = VALUE #( ( `${ROW_ID}` ) ) )
290290
)->cells( ).
291291

292-
LOOP AT ms_layout-t_layout REFERENCE INTO layout.
292+
LOOP AT mo_layout->ms_layout-t_layout REFERENCE INTO layout.
293293

294294
cells->object_identifier( text = |\{{ layout->fname }\}| ).
295295

@@ -339,7 +339,7 @@ CLASS z2ui5_cl_pop_displ_f4_help IMPLEMENTATION.
339339
WHEN OTHERS.
340340

341341
client = z2ui5_cl_pop_display_layout=>on_event_layout( client = client
342-
layout = ms_layout ).
342+
layout = mo_layout ).
343343

344344
ENDCASE.
345345

@@ -443,7 +443,7 @@ CLASS z2ui5_cl_pop_displ_f4_help IMPLEMENTATION.
443443
" War es das Layout?
444444
DATA(app) = CAST z2ui5_cl_pop_display_layout( client->get_app( client->get( )-s_draft-id_prev_app ) ).
445445

446-
ms_layout = app->ms_layout.
446+
mo_layout = app->mo_layout.
447447

448448
render_view( ).
449449

@@ -458,7 +458,7 @@ CLASS z2ui5_cl_pop_displ_f4_help IMPLEMENTATION.
458458
class = cl_abap_classdescr=>get_class_name( me ).
459459
SHIFT class LEFT DELETING LEADING '\CLASS='.
460460

461-
ms_layout = z2ui5_cl_pop_display_layout=>init_layout( control = z2ui5_cl_pop_display_layout=>m_table
461+
mo_layout = z2ui5_cl_pop_display_layout=>init_layout( control = z2ui5_cl_pop_display_layout=>m_table
462462
data = mt_data
463463
handle01 = conv #( class )
464464
handle02 = conv #( mv_table )

0 commit comments

Comments
 (0)