cancel
Showing results for 
Search instead for 
Did you mean: 

Inserting image in a sapscript.

Former Member
0 Kudos

Hi everyone,

I have to change the existing signature in a sapscript to another signature.For that i have that signature as pdf with me.

I want to know how to load this to sap then to my sapscript .

Plz give the steps for

1. Changing that pdf to bmp file( tried changing the extension,but it didn't work)

2. Loading that to SAP

3. Inserting it into the Sapscript

It will be good if i can get it as fast as possible..

Thnaks

Nitin

Accepted Solutions (0)

Answers (2)

Answers (2)

former_member196280
Active Contributor
0 Kudos

Open Pdf, take screen shot and past it in paint and cut the required signature.

Save it as BMP or Tif and upload using SE78.

Regards,

SaiRam

Former Member
0 Kudos

Hi

You can convert the image from PDF to bitmap on desktop, which is not related to SAp

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 for useful Answers

Regards

Anji

Former Member
0 Kudos

hi

thanks for your reply.

Now they gave me the bmp image.

I want to know how to use se78.

i was trying the folowing.

went to se78-> graphic->bmp->import->gave the path name->name->description ->black&white.->saved

Then went to the sapscript ->went to the particular window->edit->text elements->go to->change editor->insert->graphics->but the name of the image which i uploaded was not there..

Plz anyone give me the solution.

I have to complete it before 1 O' clock.

Thanks

Nitin

dev_parbutteea
Active Contributor
0 Kudos

hi,

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

regards,

Sooness