Application Development and Automation 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: 
Read only

ALV report

Former Member
0 Likes
301

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.

1 REPLY 1
Read only

Former Member
0 Likes
283

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