2010 Feb 08 6:54 AM
Hi Friends,
I have to display the column heading, in first row it should be date and beneath that we need two column as from and to as shown below..
DATE
FROM | TO
how can we achive this is ALV Grid, do we have any standard programs with the same scenario
Thank You.
Regards,
Kumar M.
Hi Friends,
I have to display the column heading, in first row it should be date and beneath that we need two column as from and to as shown below..
DATE
FROM | TO
how can we achive this is ALV Grid, do we have any standard programs with the same scenario
Thank You.
Regards,
Kumar M.
2010 Feb 08 7:12 AM
Hi,
It can be achieved in ALV List Display, but in ALV Grid Display you can try doing,
Data: gv_title(70) type c.
gv_title+1(20) = 'First Title'.
gv_title+30(20) = 'Second Title'.
gv_layout-grid_title = gv_title.
Hope it helps
Regards
Mansi
2010 Feb 08 7:18 AM
Hello,
AFAIK this is not possible in ALV Grid. In ALV list you can try some workaround which is also not full-proof.
Anyways the same requirement has been discussed umpteen times in the forum, try searching the forum.
BR,
Suhas
2010 Feb 08 7:31 AM