‎2008 Jan 25 12:07 PM
i have problem pls help me.
there is a data in internal table of data 1,2,3,6,7
and in another internal table data is 4,5,8,9,10
now we have to print tha output as 1,3,4,5,9,10
‎2008 Jan 25 12:11 PM
HI
append lines of itab1 to itab2.
you will get data in to itab2 then
put a read condition on that table and retrive the req data
‎2008 Jan 26 1:50 AM
data: begin of itab1 occurs 1,
w type i,
end of itab1.
append itab2 to itab1.
loop at itab1 where w = 1 or 3 or 4 or 5 or 9 or 10.
write: itab1-w.
endloop.
If useful reward with points.....