SAP NetWeaver AS ABAP Release 740, ©Copyright 2014 SAP AG. All rights reserved.
Cannot Declare a Superfluous Work Area
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 is not affected in the statement.