‎2007 Jan 27 10:17 AM
hi
how can i make nested loops and read contents from both the internal tables
‎2007 Jan 27 10:24 AM
Hi
U should be more clear:
LOOP AT ITAB WHERE
LOOP AT ITAB2 WHERE FIELD1 = ITAB-FIELD1.
WRITE: ITAB, ITAB2.Max
‎2007 Jan 27 10:49 AM
Hi Varalakshmi,
You can use as follows.
Loop at ITAB1.
Loop at ITAB2.
Write: ITAB1-FIELD, ITAB2-FIELD.
EndLoop.
EndLoop.
Rewards points if helped.
Best Regards
Renjan