2006 Oct 04 7:19 AM
I have data in format
Row KTX KUNAG FKIMG NETWR
1 OCT 100000 1001 108101
2 NOV 100000 39 3899
3 DEC 100000 30 3000.6
4 DEC 100020 5 500
i want to display it in this format
OCT NOV DEC
FKIMG NETWR FKIMG NETWR FKIMG NETWR
100000 1001 108101 39 3899 30 3000.6
100020 0 0 0 0 5 500
plz provide me solution by with i can do it
2006 Oct 04 7:25 AM
You need to change the internal table structure that you are passing to the FM/Method to display the ALV.
Change your ITAB structure to the way you require to display then use the program logic to fill the ITAB according to your requirement.
Good luck.
2006 Oct 04 7:29 AM
Hi naresh,
Create the Field catalog as same like Output display, and your internal table should be same as Field catalog, so here you need to change your internal table structure, so move the internal table data to the new internal table which will have the same structure which you specied here, so create the field catalog .. pass this internal table and field catalog, so the output will appear as you specied
mark all the helpful answers
Regards
Sudheer
2009 Mar 05 4:59 AM