Hi,
I need to use select statement for selecting some entries
but the problem is that
i need to append some entries in the same internal table which are
selected previously.
For example there is an internal table it_data
there we already have some entries in this table
but now i want to select some more entries form others table ( from 4 or 5 tables JOIN) into the same internal table it_date how i can do that.
i know using select endselect i can do it as we can use append statement in between.
But can i do it using select statement.
Please reply soon it is very important for me.
Hi ,
Use the addition appending addition in select.
e.g.
select matnr
appending table it_2
up to 10 rows
from mara.
here the data selected from the table mara will be appended into the internal table it_2.
Regards
Arun