Skip to content

Commit ce916b1

Browse files
authored
fix types (#3)
1 parent 80def48 commit ce916b1

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

src/z2ui5_cl_pop_displ_f4_help.clas.abap

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -254,8 +254,12 @@ CLASS z2ui5_cl_pop_displ_f4_help IMPLEMENTATION.
254254
)->title( mv_check_tab
255255
)->toolbar_spacer( ).
256256

257-
headder = z2ui5_cl_pop_display_layout=>render_layout_function( xml = headder
258-
client = client ).
257+
258+
headder = z2ui5_cl_pop_display_layout=>render_layout_function(
259+
xml = headder
260+
client = client
261+
layout = mo_layout
262+
).
259263

260264
DATA(columns) = table->columns( ).
261265

@@ -458,10 +462,10 @@ CLASS z2ui5_cl_pop_displ_f4_help IMPLEMENTATION.
458462
class = cl_abap_classdescr=>get_class_name( me ).
459463
SHIFT class LEFT DELETING LEADING '\CLASS='.
460464

461-
z2ui5_cl_pop_display_layout=>init_layout( control = z2ui5_cl_layout=>m_table
465+
mo_layout = z2ui5_cl_layout=>factory( control = z2ui5_cl_layout=>m_table
462466
data = mt_data
463-
handle01 = CONV #( class )
464-
handle02 = CONV #( mv_table )
467+
handle01 = class
468+
handle02 = mv_table
465469
handle03 = 'F4' ).
466470

467471
ENDMETHOD.

0 commit comments

Comments
 (0)