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: 

Add logo in business object

Former Member
0 Kudos

Dear All,

Does anyone knows how to add logo in Business Objects?

Thanks in ton for advance help.

Best Regards,

Tarun

3 REPLIES 3

0 Kudos

Hi,

In transaction SMW0 you can upload the logo, gif and then use in your business objects.

example to how to use SMW0:

http://www.saptechies.com/changing-the-sapgui-logo-on-the-right-hand-side/

This is just an example as to how to use SMW0.

to get the logo in your objects the image has to be first loaded to SMW0 only then u can use the logo in your business object.

after the above check the following link:

http://www.saptechies.com/printing-logo-from-alv/

Regards,

Narayani

Message was edited by:

Narayani

Former Member
0 Kudos

Hi,

It is not possible to print logo in the ordinary report, but it can done through ALV.

Write the code in Top-of-page event in ALV.

The following is the code for inserting the logo in ALV.

FORM TOP_OF_PAGE.

CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'

EXPORTING

I_LOGO = 'ENJOYSAP_LOGO'

IT_LIST_COMMENTARY = GT_LIST_TOP_OF_PAGE.

ENDFORM.

For more information check the following link:

http://www.sapbrainsonline.com/ARTICLES/TECHNICAL/ABAP/company%20logo%20in%20the%20top%20of%20alv%20...

Regards,

Bhaskar

Former Member
0 Kudos

HI <b>TARUN</b>

<b> How to Upload graphics (IMAGE) to your Sapscript?

Command in your Sapscript</b>

/: INCLUDE Z_YOUR_LOGO OBJECT TEXT ID ST LANGUAGE E

<b>These are the steps to be followed for uploading graphics in R/3 system </b>

1. First save the file as BMP

2. Open the BMP file in IMaging (Goto -> Programs -> Accessories -> Imaging) and

make it Zoom as 100% and save as *.TIFF

3. Open SE38 and execute program RSTXLDMC

4. Give your TIFF file path name

5. Select Bcol (for Color)

6. TEXT ID will be ZHEX-MACRO-*.

7. Inplace of * write your own logo name (ZCOMPANYLOGO)

8. Execute the program

9. Now Goto SE71 create your ZFORM

10. Create logo window

11. Goto text element of logo window

or

<b>In 4.6x :-</b>

1. Goto SE71 Change the mode to GRAPHICAL

2. Choose the Graph Tabstrips

3. Now type in some name for the LOGO WINDOW

4. Press the IMPORT BUTTON (third button from left) and then IMPORT the BMP file from your DESKTOP

5. The code will be written automatically. You just need to drag and drop wherever you want

the graphics to be.

/: INCLUDE Z_COMPANY_LOGO OBJECT GRAPHICS ID BMON LANGUAGE EN

Please note that in 4.6c onwards, you can also used Windows Bitmap file ( .BMP).