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

Insert the logo

Former Member
0 Likes
533

hello,

i wanto insert our logo in the standard format of the purchase order right, before that i made the z file ok, in that z file i want to insert our logo, how to do the same and let me know in details.

pls do the needful urgently.

thanks

sujatha

4 REPLIES 4
Read only

i048168
Product and Topic Expert
Product and Topic Expert
0 Likes
505

Hi,

Use transaction SE78 to import graphics to SAP.

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 statement, goto into the window 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 use report RSTXLDMC

You run the report RSTXLDMC, give your logo(Saved as .tif

file) in the parameter and run the report.

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

Regards

Vadi

Read only

Former Member
0 Likes
505

hi

good

if you have copied a standard purchase order to a z* purchase order than you can use RSTXLDMC or se78 to upload a logo in a particular area of that z* form.

Its bit confusing why you have created a file , pls try one of the above think , your problem will solve.

thanks

mrutyun^

Read only

mahaboob_pathan
Contributor
0 Likes
505

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.

Rewards if it is helpful...

Read only

mahaboob_pathan
Contributor
0 Likes
505

Hi

SAP SCRIPT LOGO PRINTING

To create a logo in SAP printouts just do the following

1. Save a Logo using Imaging, Paint shop Pro or Corel Draw as Tiff file.

2. Run program RSTXLDMC and enter the following parameters

Enter file name C:\COMPLOGO.TIF

UOM CM

Line width for text 132

Text name ZHEX-MACRO-COMPLOGO

Text ID ST

Text language = E

Number of Tiff gray levels (2,4,9) 2

3. Then Create a new window 'COMP' with attributes;

Window COMP description Company Logo

Left margin 7.00 CH window width 10.00 CH

Upper margin LN window height 8.00 LN

Finally in the text element, mention

/: INCLUDE 'ZHEX-MACRO-COMPLOGO' OBJECT TEXT ID ST LANGUAGE 'E'.

Please note that if object name is not indicated as 'ZHEX...’ the logo may not be printed!

You will not be able to see the logo in a test print. The same will be printed in actual printout.

Reward points if useful