Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

pls important

Former Member
0 Likes
395

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

2 REPLIES 2
Read only

Former Member
0 Likes
378

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

Read only

0 Likes
378

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.....