In ABAP Objects, the following statement causes an error message:
READ TABLE itab INDEX i INTO wa TRANSPORTING NO FIELDS.
Correct syntax:
READ TABLE itab INDEX i TRANSPORTING NO FIELDS.
Cause:
Declaring INTO wa is superfluous. The work area has no effect in the statement.
Overview:
Replacement for Obsolete Statements ABAP Objects