REPORT z_internal_table_example.
DATA: lt_employees TYPE TABLE OF string,
lv_employee TYPE string.
APPEND 'John Doe' TO lt_employees.
APPEND 'Jane Smith' TO lt_employees.
LOOP AT lt_employees INTO lv_employee.
WRITE: / lv_employee.
ENDLOOP.
Serkan AKKAVAK
Computer Engineer BSc
Head of SAP & Software Department
Contact : serkurumsal@yandex.com
0 Comments