SAP LOOP TABLE LINE ABAP Statements
Get Example source ABAP code based on a different SAP table
• TABLE LINE LOOP AT itab - obsolete
ABAP_SYNTAX_OBS
What does it do?
The addition
Latest notes:
The ABAP Compiler should consider this addition as an error, retained only for reasons of downward compatibility. The pseudo component
ABAP_HINT_END
ABAP_EXAMPLE_BAD
wa TYPE i.
LOOP AT itab INTO wa WHERE TABLE LINE > 10.
ENDLOOP.>
ABAP_EXAMPLE_END
ABAP_EXAMPLE_GOOD
ABEXA 00404
ABAP_EXAMPLE_END
Return to menu