REPORT z_read_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.
READ TABLE lt_employees INTO lv_employee INDEX 2.
WRITE: / 'Second Employee:', lv_employee.
Serkan AKKAVAK
Computer Engineer BSc
Head of SAP & Software Department
Contact : serkurumsal@yandex.com
0 Comments