ABAP Keyword Documentation → ABAP - Reference → Obsolete Language Elements → Obsolete Processing of Internal Data → Obsolete Internal Table Processing
LOOP AT itab - TABLE LINE
Other versions: 7.31 | 7.40 | 7.54
Obsolete Syntax
LOOP AT itab ... WHERE TABLE LINE ...
.
Effect
The addition TABLE LINE
can also be specified outside of classes in the
WHERE condition of a LOOP
statement, instead of the pseudo component table_line
.
Note
ABAP Compiler should consider this addition as an error, retained only for reasons of downward compatibility.
Always specify the pseudo component table_line
instead of TABLE LINE
.
Bad example
DATA: itab TYPE TABLE OF i,
wa TYPE i.
LOOP AT itab INTO wa WHERE TABLE LINE > 10.
ENDLOOP.
Good example
DATA: itab TYPE TABLE OF i,
wa TYPE i.
LOOP AT itab INTO wa WHERE table_line > 10.
ENDLOOP.