Hi all,
I have three Internal table like ITAB1,ITAB2 and ITAB3 .Always ITAB1 has contains only one record .ITAB2 has number of records.
I have to check whether record of ITAB1 is available in ITAB2.if yes I have to move from this record to end record of internal table ITAB2 to ITAB3.
Eg:ITAB1
Field1 Field2 field3 field4
1001 AA D GAS
ITAB2
Field1 Field2 field3 field4
1000 A1 D GAS
1000 A2 D GAS
1000 A3 D GAS
1000 A4 D GAS
1001 AA D GAS
1000 A5 D GAS
1000 A6 D GAS
1000 A7 D GAS
Now I need to value in ITAB3 as follows.
Field1 Field2 field3 field4
1001 AA D GAS
1000 A5 D GAS
1000 A6 D GAS
1000 A7 D GAS
Thanks in advance.