REPORT z_loop_example.
DATA: lv_counter TYPE i.
DO 5 TIMES.
lv_counter = sy-index.
WRITE: / 'Iteration', lv_counter.
ENDDO.
Serkan AKKAVAK
Computer Engineer BSc
Head of SAP & Software Department
Contact : serkurumsal@yandex.com
REPORT z_loop_example.
DATA: lv_counter TYPE i.
DO 5 TIMES.
lv_counter = sy-index.
WRITE: / 'Iteration', lv_counter.
ENDDO.
Serkan AKKAVAK
Computer Engineer BSc
Head of SAP & Software Department
Contact : serkurumsal@yandex.com
0 Comments