Files
louiscklaw 6c60a73f30 update,
2025-01-31 19:15:17 +08:00

22 lines
745 B
ABAP
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

*&---------------------------------------------------------------------*
*& Report  Z_03_LOOP *
*& *
*&---------------------------------------------------------------------*
*& *
*& *
*&---------------------------------------------------------------------*
REPORT Z_03_LOOP
WRITE 'LOOP'.
DATA CO TYPE I.
ULINE /.
DO 10 TIMES.
CO = SY-INDEX MOD 4.
IF CO EQ 8.
CONTINUE.
ELSEIF CO EQ 2.
WRITE / SY-INDEX.
ELSE.
WRITE / 'This is odd'.
ENDIF.
ENDDO.