I have internal table it_tab with below data
Hi,
"-----internal table it_tab data
plant -- matnr -- menge
1001 -- 0098102455 -- 100
1002 -- 0098102455 -- 200
1003 -- 0098102455 -- 50
1001 -- 0098100005 -- 50
1002 -- 0098100005 -- 10
1003 -- 0098100005 -- 6
I have created dynamic table <FS_TABLE> using field-symbol
I want to put the data from it_tab to <FS_TABLE> as shown below
Matnr ________ plant_1001_qty -- plant_1002_qty-- plant_1003_qty
0098102455 _____ 100 ____________ 200 ____________ 50
0098100005 _____ 50 _____________ 10 _____________ 6
Please help me out
Regards,
Amit