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

reuse_alv_commentary_write

sivakrishna_boddapati
Participant
0 Likes
739

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
Read only

Former Member
0 Likes
687

hi friend.......

check this link.....

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

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.

3 REPLIES 3
Read only

gerd_rother
Active Participant
0 Likes
687

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

Read only

Former Member
0 Likes
688

hi friend.......

check this link.....

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

Read only

sivakrishna_boddapati
Participant
0 Likes
687

Thnaks for provinding link