my code look like this:-
data: empm like BAPI7013_4 occurs 0 with header line,
time like BAPI7013_1 occurs 0 with header line.
data: reg_hours like time-REGULARHOURS,
abs_hours like time-ABSENCEHOURS,
overtime_hours like time-OVERTIMEHOURS,
hours_work like time.
append all the employees
empm-EMPLOYEENUMBER = '00071630'.
append empm.
clear empm.
This is for only employee number 71630.
Now, i want LOOP OVER EVERY EMPLOYEE AND APPEND TO THE TABLE EMPM
how should i do this?