2008 Aug 06 1:34 PM
Experts,
How to display long text in the end of the list by using END_OF_LIST event in the ALV report..
Can we display PAGE: 1 of 100..like this ALV..
Please help to solve these issues...
Thanks in advance...
Sridhar.
Experts,
How to display long text in the end of the list by using END_OF_LIST event in the ALV report..
Can we display PAGE: 1 of 100..like this ALV..
Please help to solve these issues...
Thanks in advance...
Sridhar.
2008 Aug 06 1:58 PM
Hi,
try the below code,
DATA: gt_top TYPE slis_t_listheader,
gs_top TYPE slis_listheader.
gs_top-typ = 'H'.
gs_top-key = 'Sample'.
gs_top-info = 'Sample test'.
APPEND gs_top TO gt_top.
clear gs_top.
gs_top-typ = 'S'.
gs_top-key = 'Sample'.
gs_top-info = 'Sample test'.
APPEND gs_top TO gt_top.
CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
EXPORTING
it_list_commentary = gt_top
I_LOGO =
I_END_OF_LIST_GRID =
I_ALV_FORM =
check the result in the spool request.
Regards,
Boobalan s