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: 

reuse_alv_commentary_write

sivakrishna_boddapati
Participant
0 Kudos

Hi Experts ,

I use this function module reuse_alv_commentary_write to get out put I.e TOP_OF_PAGE but it displays line size only 60 , i want it more .

wa_header-typ = 'S'.

wa_header-info = l_string.

append wa_header to lt_header.

reuse_alv_commentary_write

exporting

it_list_commentry = lt_header.

output :

up to 60 char only after 60 char its not displayed because the info size type is 60 so is there any function module to get output more characters in top of page.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

hi friend.......

check this link.....

http://www.sapnet.ru/viewtopic.php?p=3011

3 REPLIES 3

gerd_rother
Active Participant
0 Kudos

Hi,

Perhaps you should use class CL_GUI_ALV_GRID. See the demos in the controls examples. Here on event TOP_OF_PAGE you can work with a instance of CL_DD_DOCUMENT which is very flexible (because it is represented by an HTML document).

Regards, Gerd Rother

Former Member
0 Kudos

hi friend.......

check this link.....

http://www.sapnet.ru/viewtopic.php?p=3011

sivakrishna_boddapati
Participant
0 Kudos

Thnaks for provinding link