ABAP Keyword Documentation → ABAP - Release-Specific Changes → Changes in Releases 4.xx → Changes in Release 4.0
Internal Tables and Extracts in Release 4.0
Other versions: 7.31 | 7.40 | 7.54
Modification 1
New addition for MODIFY: TRANSPORTING f1 f2 ...
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).
Modification 2
Unassigned field symbols for INSERT
, SORT
, and AT
If the field symbol <fs> was not yet assigned (using ASSIGN
), it is ignored in the following statements:
Modification 3
LOOP ... WHERE
for unstructured row types
A WHERE
condition
(LOOP
) can now be formulated
using the addition TABLE LINE
for tables without structured row types (for example, tables with type I
).
The same applies to the WHERE
variants of the statements
DELETE
and MODIFY
.