Application Development and Automation 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: 
Read only

ALV

Former Member
0 Likes
726

In ALV Report how to display a LOGO....?

I used a Function Module 'REUSE_ALV_COMMENTARY_WRITE'....in which there is a field called I_LOGO under EXPORTING ......How to upload the LOGO?

and what name should i assign to I_LOGO ?

In ALV Report how to display a LOGO....?

I used a Function Module 'REUSE_ALV_COMMENTARY_WRITE'....in which there is a field called I_LOGO under EXPORTING ......How to upload the LOGO?

and what name should i assign to I_LOGO ?

8 REPLIES 8
Read only

Former Member
0 Likes
709

use tcode se78 to upload u'r logo into SAP system n then use that logo.

Sameer

Read only

Former Member
0 Likes
709

Hi, Sameer....

Ok....i have uploaded the logo through SE78.

What name should i assign to I_LOGO under EXPORTING.

CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'

EXPORTING

it_list_commentary = lt_header.

I_LOGO =

Read only

Former Member
0 Likes
709

hi John,

hope this will help you....

&----


*

*& 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

Plz reward points if answer is helpful.......

Regards,

Mandeep.

Read only

Former Member
0 Likes
709

So, before assigning the logo name to I_LOGO.....should i define the logo name in the DATA : .....statement. Or else it throws an error.

Read only

Former Member
0 Likes
709

Guys.....pls help me out.

Read only

0 Likes
709

Hi John,

Its not required to define in data. But dont fail to give the logo name in Quotes.

Ex....

CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'

EXPORTING

I_LOGO = 'ENJOYSAP_LOGO'

IT_LIST_COMMENTARY = GT_LIST_TOP_OF_PAGE.

Regards,

Yogesh

Read only

0 Likes
709

whatever name u given there in se78 should be given here.

Sameer

Read only

Former Member
0 Likes
709

Hi ,

Goto SE78->select the Graphics folder(leftside) with in that dclick in BMP .

Now select Graphic->Import option in the Menu.

In that u can give the file name from where the file can be uploaded and TheName for the Logo, select color/B.w ,save it.

Now u can use the SAME logo name to be passed in the ALV to the field I_LOGO.

And no need to declate that variable.

If it helps REWARD...

rgds

harris