SAP NEWS-40-ITAB-MORE



Get Example source ABAP code based on a different SAP table
  



Internal Tables and Extracts in ABAP Release 4.0
ITOC

ABAP_MODIFICATION_NN New Addition TRANSPORTING f1 f2 ... for MODIFY

Using the addition TRANSPORTING f1 f2 ... $[WHERE cond$] of the statement MODIFY, it is now possible to target the content of individual fields and modify it (known as a selective field transport).

ABAP_MODIFICATION_NN Unassigned Field Symbols for INSERT, SORT, and AT

If the field symbol <(><)> was not yet assigned (using ASSIGN), it is ignored in the following statements:
INSERT <(><)> INTO fg.
SORT BY <(><)>.
SORT itab BY <(><)>.
AT NEW <(><)>.
AT END OF <(><)>.

ABAP_MODIFICATION_NN LOOP ... WHERE for Unstructured Line Types

For tables without structured line types, tables of type I for example, a WHERE condition ( LOOP) can now be formulated using the addition TABLE LINE.
The same applies to the WHERE variants of the statements DELETE and MODIFY.