cancel
Showing results for 
Search instead for 
Did you mean: 

Adding a picture of Signature In Script

Former Member
0 Kudos

Hi All,

I'm working on Script,need to add a digital signature in script ,How to proceed please help me on this.

Thank You

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

follow the below steps:

1. Upload the picture (signature in bitmap or someother format) to SAP using SE78 Transaction.

2. Insert the uploaded logo in SAP SCRIPT in the window where u wanted to display it.

(i.e., goto SE78>enter script name & press change> click on Page Windows radio button on top>double click on Window, where u wanted to display the graphic> Click F9 or TextElements button(it opens a text editor)> *select INSERT menu Item> select Graphics-->* give the garphic name which u uploaded in SE78)

Hope it helps!!

Regards,

Pavan

Answers (6)

Answers (6)

Former Member
0 Kudos

Hi,

Follow the following steps

1. First save the picture or logo as TIFF file.

2. Open SE38 and execute the standard program RSTXLDMC.

3. Give your TIFF file path name.

4. TEXT ID will be ZHEX-MACRO-<Give the name you want to give>.

5. Execute the program.

6. Now Go to SE71 and create logo window in your script.

7. Go to text element of logo window and give the command as shown below.

Then use the following command in the text editor of the corresponding window

/: INCLUDE ZHEX-MACRO-<YOUR LOGO NAME> OBJECT TEXT ID ST

Regards,

Manish

Former Member
0 Kudos

Hi,

Scan an example of your signature into an BMP or TIFF file.

If a BMP file-type yoyucan upoad with SE78

if a TIFF file you can upload it with RSTXxxxx prpgram mentioned before but this is an oldtimer way of doing.

After this has been scanned you put it in your sapscript as described before.

Gr., Frank

It is even possible to make it dynamic with variables which one is printed

Former Member
0 Kudos

Hi,

To add digital signature check the following link

[Digital signature |http://help.sap.com/saphelp_nw04s/helpdata/en/18/ecb69017ad4765855425b97f666470/frameset.htm]

Hope this helps you

Regards,

Rajani

Former Member
0 Kudos

Hi sridhar,

1. The logo should be of Bitmap Image.

2 Goto SE78-> Graphics-> Import.

Give filename as the location where your logo is present.

In save as:

Name - your desired name for the logo

Descriotion - description of your logo

type- either Black& White or Color according to ur Requirement.

In print attributes

Check both Reserve high automatically and compression and press ENTER.

After that Transport this Bitmap image.

And in Script u can directly use the name of the Logo with which u have saved it.

Regards

Vachana

Former Member
0 Kudos

Hi Sridhar,

Save a Logo using Paintshop Pro or Corel Draw as Tiff file. Use RSTXLDMC to convert the logo to standard text in SapScript. When the program is executed, the path and file name have to be correctly specified.

Process could be like the following: Run RSTXLDMC Enter file name C:\MAIL\COMPLOGO.TIF Resolution for Tiff file Absolute X-position Absolute Y-position Absolute positioning Reserved height Shift to right UOM = CM Text title Line width for text = 132 Text name ZHEX-MACRO-COMPLOGO Text ID ST Text language = E Postscript scaling Width & Height according to PS scaling Number of Tiff gray levels (2,4,9) 2 Then Create a new window 'COMP' with attributes; Window COMP description Company Logo Window type CONST 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.

Thanks,

Archana

former_member632729
Contributor
0 Kudos

Hi Dude,

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

Former Member
0 Kudos

Hi,

The above steps provided by Raghunath will work for sure.

I have done the same recently and its working fine for me.

Regards,

Manish

Former Member
0 Kudos

Hi,

I uploaded the signature sucessfully through SE78 and Name is z_vc_sign.

But when I call this signature in Smartform working fine but while calling in script the signature is not showing in the output.

in script I used the condition as :

/: BITMAP z_vc_sign OBJECT GRAPHICS ID BMAP TYPE BCOL DPI 300

can u suggest me on this.

Thank you.

Former Member
0 Kudos

Hi,

BITMAP Z_F_LOGO OBJECT GRAPHICS ID BMAP TYPE BMON DPI 100

I think u uploaded the LOGO in Black and White, but BCOL indicates a COLOR one. so try to replace BCOL with BMON as shown like above...

Hope it helps!!

Rgds,

Pavan