ABAP Keyword Documentation → ABAP - Quick Reference
DO - Quick reference
Other versions: 7.31 | 7.40 | 7.54
Syntax
DO [n TIMES]
[VARYING dobj FROM dobj1 NEXT dobj2 [RANGE range]
[VARYING ...]].
[statement_block]
ENDDO.
Effect
Executes the statement block statement_block
more than once in a single loop.
Additions
-
n TIMES
Limits the number of loop passes ton
. -
VARYING dobj FROM dobj1 NEXT dobj2 [RANGE range]
Obsolete: In each loop pass of a variable, assigns a value from the sequence defined in the memory usingdobj1
anddobj2
to a variabledobj
. The data objectrange
limits the addressable memory area.