File tree Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -11,9 +11,10 @@ CLASS z2ui5_cl_demo_app_153 DEFINITION PUBLIC.
1111
1212 TYPES :
1313 BEGIN OF ty_struct_tab,
14- selkz TYPE abap_bool ,
15- counter TYPE i ,
16- descr TYPE string ,
14+ selkz TYPE abap_bool ,
15+ counter TYPE i ,
16+ descr TYPE string ,
17+ new_type TYPE string ,
1718 END OF ty_struct_tab.
1819
1920 TYPES :
@@ -36,12 +37,12 @@ ENDCLASS.
3637
3738
3839
39- CLASS z2ui5_cl_demo_app_153 IMPLEMENTATION .
40+ CLASS Z2UI5_CL_DEMO_APP_153 IMPLEMENTATION .
4041
4142
4243 METHOD ui5_display .
4344
44- client->_bind_edit( ms_struc ).
45+ client->_bind_edit( val = ms_struc pretty_name = 'X' ).
4546 client->_bind_edit( mt_string_table ).
4647
4748 DATA (view ) = z2ui5_cl_xml_view=>factory( ).
@@ -73,12 +74,12 @@ CLASS z2ui5_cl_demo_app_153 IMPLEMENTATION.
7374
7475 IF ms_struc <> ms_struc2.
7576 client->message_box_display( `structure changed error` ).
76- return .
77+ RETURN .
7778 ENDIF .
7879
7980 IF mt_string_table2 <> mt_string_table2.
8081 client->message_box_display( `string table changed error` ).
81- return .
82+ RETURN .
8283 ENDIF .
8384
8485 client->message_toast_display( `everything works as expected` ).
@@ -101,10 +102,11 @@ CLASS z2ui5_cl_demo_app_153 IMPLEMENTATION.
101102 descr = 'this is a description'
102103 counter = 3
103104 selkz = abap_true
104- t_tab = value #( (
105+ t_tab = VALUE #( (
105106 descr = 'this is a description'
106107 counter = 3
107108 selkz = abap_true
109+ new_type = `ABC`
108110 ) )
109111 ).
110112
You can’t perform that action at this time.
0 commit comments