When processing a loop with the statement DO... ENDDO, what system variable contains the implicit loop counter?
For example, the following code snippet uses the loop counter sy-index to display the numbers from 1 to 10:
DO 10 TIMES. WRITE: / sy-index. ENDDO.
The output of this code is:
1 2 3 4 5 6 7 8 9 10
Kirk
6 hours agoBarabara
1 days agoGeorgiana
4 days ago