ABAPLOOP_AT_ITAB_SHORTREF - LOOP AT ITAB SHORTREF
PERFORM Short Reference CL_GUI_FRONTEND_SERVICES - Frontend ServicesThis documentation is copyright by SAP AG.
LOOP AT itab
Syntax
LOOP AT itab { { INTO wa }
| { ASSIGNING <fs> [CASTING] }
| { REFERENCE INTO dref }
| { TRANSPORTING NO FIELDS } }
[USING KEY key_name|(name)]
[FROM idx1] [TO idx2] [WHERElog_exp|(cond_syntax].
...
ENDLOOP.
Effect
Reads an internal table itab in a loop.
Additions
- INTO wa
Assigns the read line to a work area wa. - ASSIGNING <fs> [CASTING]
Assigns the read line to a field symbol <fs>, where a casting can be executed. - REFERENCE INTO dref
Assigns a reference to the read line of a reference variable dref. - TRANSPORTING NO FIELDS
Read line is not assigned. - USING KEY key_name|(name)
Declares statically or dynamically a (secondary) table key that determines the processing sequence. - [FROM idx1] [TO idx2] [WHERE log_exp|(cond_syntax)]
Limits the rows to be read by declaring of a lower and upper number idx1 and idx2 in thetable index being used or by declaring a static condition log_exp or a dynamic condition in cond_syntax.
BAL Application Log Documentation CPI1466 during Backup
This documentation is copyright by SAP AG.
Length: 2517 Date: 20120523 Time: 000749 triton ( 57 ms )






