2007 Apr 25 8:49 AM
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..
2007 Apr 25 8:54 AM
Check the blog below . U may get more info .
/people/alvaro.tejadagalindo/blog/2006/11/27/dynamic-alv-list-display
2007 Apr 25 8:54 AM
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 =
.
2007 Apr 25 8:54 AM
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |