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: 

Regarding Uploading Logo into SAP

Former Member
0 Kudos

Hi,

I want to upload a <b>coloured logo</b> from my desktop to SAP.

Then i want to upload that coloured Logo into my <b>SAP Script output</b>.

Then i want to make that Coloured logo to be Printed on Layout screen visible as with same color as i uploaded.

While printing the same form also i should get coloured output on the screen.

Can anybody explain this whole process step wise.

How i can achieve the same!

Thanks in advance.

Thanks & Regards,

Prasad.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi Prasad,

You can achieve as per below:

1) <i>I want to upload a coloured logo from my desktop to SAP</i>

- Upload your logo via SE78.

- Select 'Import' button from application toolbar of SE78, and perform upload.

2) <i>Then i want to upload that coloured Logo into my SAP Script output</i>

- At SE71, goto Text Element from your window logo (window where you locate your company logo), and place the following statement:

/: BITMAP 'COMPANY_LOGO' OBJECT GRAPHICS ID BMAP TYPE BCOL DPI 150

3) <i>Then i want to make that Coloured logo to be Printed on Layout screen visible as with same color as i uploaded.</i>

- Answer from Step 2 has answered your question 3.

4) <i>While printing the same form also i should get coloured output on the screen.</i>

- Answer from Step 2 has answered your question 4.

Hope the above help.

Cheers,

Patrick

6 REPLIES 6

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

You can upload your image via transaction code SE78. You can then include this image in your sapscript by using the BITMAP statement. You can also include it in your sapscript window by following a menu path. I believe the menu path starts with the "Insert" menu, not sure though.

Regards,

Rich Heilman

Former Member
0 Kudos

Hi Prasad,

You can achieve as per below:

1) <i>I want to upload a coloured logo from my desktop to SAP</i>

- Upload your logo via SE78.

- Select 'Import' button from application toolbar of SE78, and perform upload.

2) <i>Then i want to upload that coloured Logo into my SAP Script output</i>

- At SE71, goto Text Element from your window logo (window where you locate your company logo), and place the following statement:

/: BITMAP 'COMPANY_LOGO' OBJECT GRAPHICS ID BMAP TYPE BCOL DPI 150

3) <i>Then i want to make that Coloured logo to be Printed on Layout screen visible as with same color as i uploaded.</i>

- Answer from Step 2 has answered your question 3.

4) <i>While printing the same form also i should get coloured output on the screen.</i>

- Answer from Step 2 has answered your question 4.

Hope the above help.

Cheers,

Patrick

Former Member
0 Kudos

HI

GOOD

How to Upload graphics (IMAGE) to your Sapscript?

Command in your Sapscript

/: INCLUDE Z_YOUR_LOGO OBJECT TEXT ID ST LANGUAGE E

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

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

In 4.6x :-

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 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.

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

THANKS

MRUTYUN

former_member184569
Active Contributor
0 Kudos

Hello Prasad,

You can UPLOAD your logo directly in SE78.

SE78>Graphics>BMAP grid screen. click on it.

give ur logo name .bmp file.

or in SE38 run prog:RSTXLDMC there you need to give your logo name saved as .tiff file in your desktop

In the form painter, you can either include directly to the form using menu Edit->Graphic->Create or using the INCLUDE statement in a window.

To use an INCLUDE stanment, goto into the woindow script editor and use menu Include->Graphic. The include can look like this for a bitmap:

/: BITMAP MYLOGO OBJECT GRAPHICS ID BMAP TYPE BMON

or

Go to Se71 and include the image from the text elements. For this you go to the Page windows. Press the text elements button and the include the logo(Which actually has been saved as a TEXT) using Insert->Text-STandard. Choose your LOGO.

Thanks,

Susmitha.

Dont forget to reward points for useful answers.

Former Member
0 Kudos

Hi,

Steps for uploading Logo :-

1. Goto the transaction OAER

2. Enter the class name as 'PICTURES'

3. Enter the class type as 'OT'

4. Enter the object key as the name of the logo you wish to give

5. Execute

6. Then in the new screen select Standard doc. types in bottom window

Click on the Screen icon

Now, it will ask for the file path where you have to upload the logo

7. Now you can use this logo in REUSE_ALV_COMMENTARY_WRITE ( Remember the logo name is case sensitive. Give it in caps).

Regards,

Anjali

Former Member
0 Kudos

Hai Prasad

The Picture should be Converted into Either TIFF Or PDF Format

After Selecting the TIFF or PDF File

Then goto SE38 and Run The program 'RSTXLDMC' This is the pre-defined Program to upload the 'TIFF' files

give

File Name : 'c:\pic.tiff'

format : BCOL--> for Color

Text Name 'ZHEX-MACRO-PIC'.

and Execute again

Printing Company Logo

Steps required printing a Company logo:

1. Go to SE38. Type RSTXLDMC in the text box provided.

2. Execute the program by pressing F8.

3. Enter the File name of the TIFF file, resolution, Text name and Text title

4. The TIFF file will be uploaded and gets stored as a text element in SO10.

Thanks & regards

Sreeni