LOOP AT IT_HIRE INTO WA_HIRE.
IT_REPORT-PERNUM = WA_HIRE-PERNR.
IT_REPORT-DATEHIRED = WA_HIRE-BEGDA.
LOOP AT IT_LEAVE WHERE PERNR = WA_HIRE-PERNR.
IT_REPORT-DATESEP = IT_LEAVE-BEGDA.
APPEND IT_REPORT.
CLEAR IT_REPORT.
ENDLOOP.
ENDLOOP.
read give only one answer (if the condition is true)
regards
fred