Skip to content

Commit 882ee55

Browse files
Automated changes (#48)
Co-authored-by: oblomov-dev <[email protected]>
1 parent 0f414e1 commit 882ee55

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/00/03/zabap2ui5_cl_util.clas.abap

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1443,7 +1443,8 @@ CLASS zabap2ui5_cl_util IMPLEMENTATION.
14431443
METHOD rtti_create_tab_by_name.
14441444

14451445
DATA(struct_desc) = cl_abap_structdescr=>describe_by_name( val ).
1446-
DATA(gr_dyntable_typ) = cl_abap_tabledescr=>create( CAST #( struct_desc ) ).
1446+
DATA(data_desc) = CAST cl_abap_datadescr( struct_desc ).
1447+
DATA(gr_dyntable_typ) = cl_abap_tabledescr=>create( data_desc ).
14471448
CREATE DATA result TYPE HANDLE gr_dyntable_typ.
14481449

14491450
ENDMETHOD.

src/02/zabap2ui5_cl_app_startup.clas.abap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ CLASS zabap2ui5_cl_app_startup IMPLEMENTATION.
176176
href = `https://github.com/abap2UI5/abap2UI5/pulls` ).
177177

178178

179-
simple_form->toolbar( )->title( `More` ).
179+
simple_form->toolbar( )->title( `Documentation` ).
180180
simple_form->label( ).
181181
simple_form->link( text = `www.abap2UI5.org`
182182
target = `_blank`

0 commit comments

Comments
 (0)