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 List

Former Member
0 Likes
446

In alv list display,i have to display three list in one page n have to show three different title for each one.I used REUSE_ALV_BLOCK_LIST_APPEND three times and at last called REUSE_ALV_BLOCK_LIST_DISPLAY to display the report.Bt i can't create three different title for each list...plz anyone suggest how to create it..

In alv list display,i have to display three list in one page n have to show three different title for each one.I used REUSE_ALV_BLOCK_LIST_APPEND three times and at last called REUSE_ALV_BLOCK_LIST_DISPLAY to display the report.Bt i can't create three different title for each list...plz anyone suggest how to create it..

3 REPLIES 3
Read only

Former Member
0 Likes
428

Check the blog below . U may get more info .

/people/alvaro.tejadagalindo/blog/2006/11/27/dynamic-alv-list-display

Read only

dev_parbutteea
Active Contributor
0 Likes
428

try using the 'REUSE_ALV_COMMENTARY_WRITE' FM for each list

DATA :

gt_commentary TYPE slis_t_listheader,

gs_commentary TYPE slis_listheader.

CLEAR gs_commentary.

gs_commentary-typ = 'H'.

gs_commentary-info = 'text'.

APPEND gs_commentary TO gt_commentary.

CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'

EXPORTING

it_list_commentary = gt_commentary

  • I_LOGO =

  • I_END_OF_LIST_GRID =

  • I_ALV_FORM =

.

Read only

Former Member
0 Likes
428

hi , chk this program

<b>BALVBT01</b>