File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -147,7 +147,7 @@ ENDCLASS.
147147```
148148
149149### Nested Structures
150- It is alsp possible to bind nested structure, just use ` struc /component` in the binding, as follows :
150+ Binding nested structures is also possible. Use ` structure /component` in the binding path , as shown below :
151151``` abap
152152CLASS z2ui5_cl_sample_nested_structures DEFINITION PUBLIC.
153153 PUBLIC SECTION.
@@ -168,8 +168,8 @@ CLASS z2ui5_cl_sample_nested_structures IMPLEMENTATION.
168168 DATA mt_itab TYPE STANDARD TABLE OF ty_s_tab WITH EMPTY KEY.
169169
170170 mt_itab = VALUE #(
171- ( product = 'table' s_details = VALUE #( create_date = `01.01.2023` create_by = `Peter` ) )
172- ( product = 'chair' s_details = VALUE #( create_date = `25.10.2022` create_by = `Frank` ) )
171+ ( product = 'table' s_details = VALUE #( create_date = `01.01.2023` create_by = `Peter` ) )
172+ ( product = 'chair' s_details = VALUE #( create_date = `25.10.2022` create_by = `Frank` ) )
173173 ( product = 'sofa' s_details = VALUE #( create_date = `12.03.2024` create_by = `George` ) ) ).
174174
175175 DATA(tab) = z2ui5_cl_xml_view=>factory( )->table( client->_bind_local( mt_itab ) ).
You can’t perform that action at this time.
0 commit comments