2007 Jul 18 5:06 AM
Hi.
what is the use of I_END_OF_LIST_GRID in FM REUSE_ALV_COMMENTARY_WRITE.
2007 Jul 18 5:26 AM
hi
It is mainly used to write footer comments.
FORM END_OF_LIST.
DATA: list_end_of_list TYPE slis_t_listheader.
build footer comments
PERFORM BUILD_FOOTER USING list_end_of_list[].
CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
EXPORTING
I_LOGO = 'ENJOYSAP_LOGO' "optional
IT_LIST_COMMENTARY = list_end_of_list
<b> I_END_OF_LIST_GRID = 'X'.</b>
ENDFORM. "END_OF_LIST
<b>reward points for useful ans</b>
Regards
Aarti
2007 Jul 18 5:15 AM
Simply its used to write the comments at the end of the ALV display. Generally it is used to write the coments or summary of the Display.
Cheers,
Sharadendu
2007 Jul 18 5:15 AM
Hi Prajwal,
I don't think it is used anymore. It might have been used earlier, but if you go and look at the code of this FM you wil lfind the code is commented for this parameter.
Regards,
Atish
2007 Jul 18 5:19 AM
hi,
The FM
'REUSE_ALV_COMMENTARY_WRITE'is used to write headings and upload LOGOS in ALV GRID.
Only the parameters
it_list_commentary
i_logois mainly used with this FM.
Regards
Reshma
2007 Jul 18 5:26 AM
hi
It is mainly used to write footer comments.
FORM END_OF_LIST.
DATA: list_end_of_list TYPE slis_t_listheader.
build footer comments
PERFORM BUILD_FOOTER USING list_end_of_list[].
CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
EXPORTING
I_LOGO = 'ENJOYSAP_LOGO' "optional
IT_LIST_COMMENTARY = list_end_of_list
<b> I_END_OF_LIST_GRID = 'X'.</b>
ENDFORM. "END_OF_LIST
<b>reward points for useful ans</b>
Regards
Aarti
2007 Jul 18 5:56 AM