Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Matrix Display in ALV

Former Member
0 Kudos
221

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

3 REPLIES 3

Former Member
0 Kudos
81

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.

Former Member
0 Kudos
81

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

Former Member
0 Kudos
81

I did it by my self