This commit is contained in:
danrega
2024-08-16 15:20:01 +02:00
parent 839a48e86d
commit 500c10a5b6
4 changed files with 767 additions and 90 deletions

View File

@@ -500,10 +500,10 @@ to add lines to internal tables.
``` abap
APPEND VALUE #( comp1 = a comp2 = b ... ) TO itab.
APPEND lv_struc TO itab.
APPEND struc TO itab.
INSERT VALUE #( comp1 = a comp2 = b ... ) INTO TABLE itab.
INSERT lv_struc INTO TABLE itab.
INSERT struc INTO TABLE itab.
```
**Adding an initial line** to an internal table without providing any field values.
@@ -558,7 +558,7 @@ INSERT LINES OF itab2 FROM i1 TO i2 INTO TABLE itab.
`FROM` and `TO` can be used here, too.
``` abap
INSERT lv_struc INTO itab2 INDEX i.
INSERT struc INTO itab2 INDEX i.
INSERT LINES OF itab2 INTO itab INDEX i.
```