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: 

How to display image in ( ALV_LIST_END_OF_LIST )

Former Member
0 Kudos

Dear Experts,

We have requirement to display a signature image in End of list in ABAP report,

we are using " REUSE_ALV_LIST_DISPLAY' for displaying out put and

REUSE_ALV_COMMENTARY_WRITE' for logo display in header, now our business requirement is need to display the signature image in End of List. ( ALV Reports contains dynamic values )

End of the report this need to be incorporated report values dynamic some time it will come 10 line item some time it will come 20 line item .

Kindly advice how to complete this requirement any sample codes that will be more helpful for us.

Best Regards

Senthil

3 REPLIES 3

raymond_giuseppi
Active Contributor
0 Kudos

Use REUSE_ALV_EVENTS_GET to get list of available events, add your form in the record with key name = slis_ev_end_of_list, in this form use REUSE_ALV_COMMENTARY_WRITE, pass the IT_EVENTS table to the Reuse FM.

Regards,
Raymond

Former Member
0 Kudos

Dear Raymond,

Thanks for your response , we tried this method but it's not working..

Best Regards

Senthil

Sandra_Rossi
Active Contributor
0 Kudos

I'm surprised that you can display an image using the classic ABAP list (EDIT: Okay, I saw it was possible)

An image can also be shown at the top using REUSE_ALV_GRID_DISPLAY and event HTML_TOP_OF_PAGE (or parameters I_CALLBACK_HTML_TOP_OF_PAGE + I_HTML_HEIGHT_TOP)

For the end of the list, there are the parameters I_CALLBACK_HTML_END_OF_LIST (maybe there's the event HTML_END_OF_LIST too) + I_HTML_HEIGHT_END.