‎2007 Apr 12 4:01 PM
I have an internal table with fields nmday , ovtime,and linedesc.
my internal table.
nmday ovtime linedesc
2 4 PE
5 6 STORES
I want to display this internal table as
PE-NMDAY PE-OVTIME STORES_NMDAY STORES_OVTIME
2 4 5 6
How can i display in an alv grid using field catalog?
‎2007 Apr 12 4:07 PM
u need to use dynamic internal table concep and accordingly move the data from internal table to dynamic internal table.... then use this dynamic internal table to display data in alv format.
‎2007 Apr 12 4:07 PM
u need to use dynamic internal table concep and accordingly move the data from internal table to dynamic internal table.... then use this dynamic internal table to display data in alv format.
‎2007 Apr 12 4:28 PM
I have created a dynamic internal table and i get fields
like pe-nmday pe-ovtime stores-nmday stores-ovtime.
but data from other internal table is not populated?
‎2007 Apr 12 4:08 PM
hi,
try this parameter of fieldcat: COL_POS
The parameter determines the relative column position of the field for list output.
‎2007 Apr 12 4:24 PM