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 make alv grid cell as image cell

Former Member
0 Kudos

Dear All,

I want to create one alv report in abap. Acutually i need a output in report like machine number , machine name, model,

finally i want to display the images in the last colum( cell ) corresponding to the machines for each row. Machine no,name,model ..etc.. i fetched from the custom table. I maintaned the machines images in se78. Can any one help for this requirment..

Thanks and Regards,

Kavin

2 REPLIES 2

franois_henrotte
Active Contributor
0 Kudos

in my opinion you will not be able to do that in a ALV grid

the only way to do it is to build a HTML content and to display it into HTML viewer

then the images should be loaded as mime objects (SMW0) and not as text elements (SE78)

alejandro_bindi
Active Contributor
0 Kudos

Closest thing would be to create a dynamic document table instead (which generates HTML under the hood).

Check the sample programs DD_ADD_PICTURE and DD_ADD_TABLE to get an idea of the capabilities and the required code.

Regards