Hi All,
I have two internal tables with records as below.
HEADER INTERNAL table
material num plant
50410 LV01
50411 AN01
50412 AN01
50413 LV01
ITEM TABLE
Material num stor loc
50410 ER01
50410 ALQW
50410 WFDD
50412 ER01
50413 ER01
50413 XK01
I want to move this to final internal table, here the record 50411 is not there in second int table still i want to move to final table.
in the final int table record should be as follows
material plant stor loc
50410 LV01 ER01
50410 LV01 ALQW
50410 LV01 WFDD
50411 AN01
50412 AN01 ER01
50413 LV01 ER01
50413 LV01 XK01
I'm not getting the full records in the final int table.How to do this.
Thanks & Regards,
Sabu