- Are you sure the lines of record in INT TABLE1 and INT TABLE2 are equal.
- If yes,
Data: Count type I. **LOOP the Second internal table. Loop at ITAB2 into WA_ITAB2. LV_INDEX = COUNT + 1. READ TABLE ITAB1 INTO WA_ITAB1 INDEX LV_INDEX. if sy-subrc = 0. APPEND WA_ITAB1 into IT_FINAL. Clear: WA_ITAB1. endif. APPEND WA_ITAB2 into IT_FINAL. Clear: WA_ITAB2. ENDLOOP.
- If yes,
Regards,
Philip.