Skip to content

Commit dd66464

Browse files
authored
Update tables.md
1 parent 6f88fbd commit dd66464

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/development/model/tables.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
152152
CLASS 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 ) ).

0 commit comments

Comments
 (0)