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: 

Logo in ALV lists

Former Member
0 Kudos

How can I include logo in ALV reports,

for GRID display logo is displying.. for other types of ALV reports, like LIST, Hierarchical, and Blocked lists. logo is not getting displayed.

quick response is highly appriciated.

Sujatha.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

&----


*

*& Form TOP_OF_PAGE

&----


  • text

----


FORM F_TOP_OF_PAGE.

CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'

EXPORTING

IT_LIST_COMMENTARY = IT_LISTHEADER

i_logo = Logo name

  • I_END_OF_LIST_GRID =

.

ENDFORM. "TOP_OF_PAGE

You can find more examples if you search "'REUSE_ALV_COMMENTARY_WRITE" on SDN ...

7 REPLIES 7

jayanthi_jayaraman
Active Contributor
0 Kudos

Hi,

Check this link.May be you can get sample programs.

http://www.geocities.com/mpioud/Abap_programs.html

0 Kudos

I have tried displaying logo in ALV List, Heirarchical, and Blocked list diplay, I couldnt get in all these types of lists, I am getting logo in only ALV GRID display.

is itpossible to display image in other than Grid ALVs'.

Sujatha.

0 Kudos

Logo can not be display in the LIST, only when using the Grid.

The LIST is a standard list display and can not handle images.

Former Member
0 Kudos

&----


*

*& Form TOP_OF_PAGE

&----


  • text

----


FORM F_TOP_OF_PAGE.

CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'

EXPORTING

IT_LIST_COMMENTARY = IT_LISTHEADER

i_logo = Logo name

  • I_END_OF_LIST_GRID =

.

ENDFORM. "TOP_OF_PAGE

You can find more examples if you search "'REUSE_ALV_COMMENTARY_WRITE" on SDN ...

Former Member
0 Kudos

To upload logo use Tcode OAER and use FM REUSE_ALV_COMMENTARY_WRITE' and pass parameter logo in form top-of-page

pls award points.

Vijaya

Former Member
0 Kudos

Hi Reddy

Use Function module Commentry_write for displaying logo in ALV Grid report.

Bye--