Sapscript print signature in watermark

Hi everybody, i have a <b>Sapscript</b>(PO) with a company's logo and a <b>vendor's signature</b>, but it have to show the logos for each company, the problem is that when the signature or new logo <b>is bigger</b>, it overwrite the nearest <b>boxes</b>, is posible show the logos like a watermark format?

Hi,
Check this thread..
How  I use Watermark in SAPScript.?????
regards
vijay

Similar Messages

  • How to print Signature in smartform in a dynamic place ?

    Hi experts,
                    i have a requirement to print signature in a smartform (purchase order print) ,the signature has to printed in dynamic place.
                    i have  to Print signature in in authorized signatory place, we cannot place static window with scanned signature in page ,
                    as we cannot predict where the page will end.
                    how can this be attained, i have attached a print preview , where signature has to be attached  ?
                   please Help.

    Hi Prakash,
    'create a secondary window and in it create a text then print these text of signature in secondary window and call the secondary window when the data of main window ends.
    Means you should create a secondary window just after your main window as shown below
    and in this secondary window create a text for sign, and in the Condition Tab, please select "Only After End of Main Window."

  • How to Print Signature in smartform

    Hi all,
    how to find Last Page of a Sold-To-Party to Print Signature in Smart Form?

    Hi ,
    Can u tell me where u r counting the No.Of  Pages  in your smartform...
    If u r counting no.of Pages other than final window it will not work(I mean in final window only u will get the value of the sfsy-formpages count) . Put the break-point in the final check what ever the condition for printing the signature window . 
    Let me know if u have any concerns....
    Regards,
    Lokesh.

  • SAPscript printing (Works Fine in Preview, Disappear in Print Out)

    Dear Guru,
      i have a problem in SAPscript printing, especially i use ULINE(90) inside forms,  it's works fine in Preview, but when i print it out after 89 of ULINE showed, it's show blank area and the 90th uline appear in next line.
    any expert in this area can tell me what happen?
    thanks.
    Howard

    Hi Howard,
    this is printer problem.
    Appart from regular settings we have left margin and right margin settings for printer.
    If you rememmber we can do this setting if we print MS WORD document.
    There is no setting available in SAP.
    So solution is to increase right margin on your laout and try to fit your contents in same.
    The preview is dependening on device type in SAP so u get previeew right.
    Hope this will help.
    Thanks,
    Dhiraj.

  • SAPScript - Print Preview 2 Pages - Physical Print overlap as 1 Page

    HI Experts,
    I have a problem with Invoice SAPScript Printing - where the print preview is good with 2 Pages,
    But when it physical prints out - Only 1 page and overlapping the Second page content to the first.
    Any idea where did I miss out?
    Thank you in Advance.
    Regards,
    CWLIM

    HI ,
    Sheelesh  is right.
    I had both SAPScript and Smartform issue with the overlapping printing.
    What you need to do is to check your page format to see if it is the correct size for the specific printer.
    If it is too big for the printer paper size - it will overlap the printing as 1 page.
    For example : A4 Lanscape printing on normal HP Laser Printer - DINA4 Landscape should be used.
    Or at least when you define your own page format - refer to the correct size and orientation.
    HOpe this helps.
    Thank you all

  • SAPscript print program for multiple pages

    Hello friends,
    How to write SAPscript print program for multiple pages? please help me.
    Thanks and regards,
    Shivanand.

    I believe you have posted this question in the wrong forum.  There is an ABAP Forms Printing Forum.

  • Migrating SAPscript print program to Smartform

    hello everyone,
    Requirement is to print transfer orders. Current functionality supports SAPscripts and its print program. Since we are going to be using Smartforms, I need to change the print program so that it calls the custom smartform created by me.
    Can anybody help me out by telling me a step-by-step process as to WHERE and WHAT changes I can do in the SAPscript print program so that I can use it for my Smartform?
    The SAPscript print program that needs to be changed is: RLVSDR40.
    Thanks in advance.
    Regards,
    Fred.

    Hi Fred,
    The system does not migrate the print program (data retrieval) or the form logic contained in the print program. You must make the required changes to the respective print program yourself. PL take a look at the following
    <a href="http://help.sap.com/saphelp_47x200/helpdata/en/9d/9599386185c064e10000009b38f8cf/frameset.htm">SAP help</a>
    Regards,
    Suresh Datti

  • Sapscript printing only the last value

    Hello,
    Im currently coding subroutine for medruck.. My problem is sapscript is only printing the last value of the item for all items.. For example:
    Item # 1    10 pcs  10,000.00
    Item # 2     5 pcs   10,000.00
    Item # 3     5 Pad  10,000.00
    where actually the value of item 1 and item 2 is not 10,000.. sapscript prints only the price of item # 3 for the  first two items.. here is my code..
      TABLES: konv, ekko, ekpo.
      DATA: BEGIN OF tab OCCURS 0,
          brtwr LIKE ekpo-brtwr,
          ebelp LIKE konv-kposn,
          ebeln LIKE ekko-ebeln,
          knumv LIKE ekko-knumv,
          kbetr LIKE konv-kwert,
    END OF tab.
      DATA: sum TYPE p DECIMALS 2, gross TYPE p DECIMALS 2, val(16) TYPE c, d_knumv LIKE ekko-knumv, tab1 LIKE tab, val1(20) TYPE c,
            ext TYPE p DECIMALS 2, val2(20) TYPE c, extend TYPE p DECIMALS 2.
      REFRESH: tab.
      READ TABLE in_tab INDEX 1.
      CHECK sy-subrc = 0.
      SELECT brtwr ebelp ebeln FROM ekpo INTO TABLE tab WHERE ebeln = in_tab-value.
      LOOP AT tab.
        AT NEW ebelp.
          tab-kbetr = 0.
          ext = 0.
        ENDAT.
        SELECT SINGLE knumv FROM ekko INTO tab-knumv WHERE ebeln = tab-ebeln.
        SELECT SINGLE kbetr FROM konv INTO tab-kbetr WHERE knumv = tab-knumv AND kposn = tab-ebelp                                AND kschl = 'ZDEL'.
        ext = tab-brtwr + tab-kbetr.
        AT END OF ebelp.
          READ TABLE out_tab INDEX 1.
          WRITE ext TO val.
          out_tab-value = val.
          MODIFY out_tab INDEX 1.
        ENDAT.
        CLEAR: tab.
      ENDLOOP.
    i used this code using abap only and it work. there seems to be a problem in sapscript.. Thank u for the help guys..
    Thanks,
    JP

    put ur write_form with in loop...
    loop at itab.
      write_form..
          element = 'ddd'
    endloop.
    in script check ...
    check wheather element is specified there r not
    /e  ddd.
         &itab-   &  &itab-  &

  • HP Laserjet 4250 - While Printing PDFs with Watermark, Prints images as scrambled

    Hi,
    I am using HP Laserjet 4250 printer. While Printing PDFs with Watermark, the printer prints images as scrambled. It prints the part of the image as scrambled which is overlapped by the Watermark. The other part of the image is printed fine. When seen on the screen, it shows up the image with the watermark properly. Could you please suggest how to arrive at a solution for this problem. Thanks in advance.

    Hi @Sebastian43 
    I suspect your question would be better answered in the HP Enterprise Business Community,  as the HP LaserJet 6L is a commercial model.
    My technical expertise is with consumer products and software, I am sure the commercial folks would be happy to help if you re-post your question for them to answer. The HP Enterprise Business Community is an HP Forum designed for the Commercial and Enterprise customers to help one another. I am sure you will find some HP folks there to help too.
    Click here to view the Printing and Digital Imaging.  When the page opens you will see the option to 'Log in' or 'Register Now' on the right. The commercial forums are separate from the consumer boards, thus you will need to register if you don't already have a commercial account.
    You may find the HP LaserJet 6Lse Printer support page helpful while you wait for somebody in the commercial Forum to respond to your inquiry.
    Best of luck.
    Please click the Thumbs up icon below to thank me for responding.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Sunshyn2005 - I work on behalf of HP

  • SAPscript printer resident signatures HEX TYPE PCL - TROY

    Can anyone provide an example or explain how to get printer resident signature(s) to print in the correct location on the form? I've tried converting positioning commands to HEX with no success in the SAP script command application.
    Below is example of positioning commands and the associated hex conversion that I tried to use:
    position(<esc>*p3000x1950):1B2A70333030307831393530
    Without the positioning command, the signatures do not print on the check in the correct position even though the HEX command is placed in a window that is positioned appropriately.
    Current SAPscript coding without positioning:
    /*   select image:1B450D0A1B28323032511B287330703268373276307330623230325420
    /*   char set(abcdef):616263646566
    /:   HEX TYPE PCL
    /=   1B450D0A1B28323032511B287330703268373276307330623230325420616263646566
    /:   ENDHEX
    Thanks,
    Mary Lins

    Thanks for the link.   I have seen that thread but it does not address the issue that I am having which is the position of the signature.   The signature is printing but not in the correct position on the paper.   Also, a form feed appears to be invoked now which moves every other field on the paper to an inappropriate page and/or spot.
    Does anyone have experience with the positioning and/or form feed associated with using HEX TYPE PCL in SAPscript?

  • SAPSCRIPT - print of scanned text

    Hi Guys,
    I have the following problem:
    We would like to print the scanned signatures of 2 persons at a orderform (sales order).
    The form is an sapscript form.
    For every sales order we have 2 persons which are responsible.
    Now we would like to print the scanned signatures of these two persons,
    as there are several possible combinations of these two persons we don't like to scan the signatures of every possible combination, but every signature in a seperate standard text.
    The printout should look like this:
    (Signature 1 - standard text 1)       (Signature 2 - standard text 2)
    Mr. Mueller                                       Mr. Maier
    The name of the person should be printed exactly under the includes standard text.
    Thanks for your help
    Manuel

    Hi Manuel,
    As far as I can see, just need to scan the signatures and make a bitmap for each signature. Then you can upload them to SAP via transaction SE78. Finally you can output the signatures in your sapscript form using the BITMAP command as described in SAP note 307414.
    Regards,
    Aidan

  • Sapscript: Print different languages

    Dear all,
    We have the following issue I need your help on:
    We have an offer, which has to be printed in Chinese and English. For printing we use the Sapscript forms ...
    Here is the current coding for printing (SE71):
    - Chinese: Printout is in Chinese and correct
    /:         ADDRESS PARAGRAPH T2 LINES 8
    /:           ADDRESSNUMBER &VBDKA-ADRNR(K)&
    /:           COUNTRY 'CN' LANGUAGE 'C'
    /:           LANG_FOR_COUNTRY 'X'
    /:           FROMCOUNTRY &VBDKA-SLAND&
    /:         ENDADDRESS
    - Englisch: Printout of customer address is shown as ##### even we print the output type in English and there is an English language maintained in SD and customer master data
    /:         ADDRESS PARAGRAPH T2 LINES 8
    /:           ADDRESSNUMBER &VBDKA-ADRNR(K)&
    /:           FROMCOUNTRY &VBDKA-SLAND&
    /:         ENDADDRESS
    The customer master data in VD03 is in English and Chinese as "Internat. Version".
    Please can you help us how the coding should look like, so the same output type can be printed in Chinese with Chinese letters and English with Latin letters.
    I've read through some other related topics and it seems like the device type is also relevant if the printing of different languages is supported or not!?
    Does someone know the correct device type? We currently use the following: PDFUC.
    By the way: In our user exit we also have implemented an user exit with the following function ....
    * China:
      ELSEIF destination_country_fields-intca = 'CN'.
         IF sender_country_fields-intca = 'CN'.
    * China -> China: Version C (if maintained, otherwise version SPACE)
          version_key = 'C'.
         ELSE.
    * from elsewhere -> China: International (if maintained)
           version_key = 'I'.
         ENDIF.
    --> This user exit shows, that we can't print the English characters since it's always pulls the Chinese ADRNR.
    Do you have an idea how we can adapt the program or user exit so we also can print the form in English, even parts goes CN to CN.
    Thanks in advance.

    Hi Andreas,
    you just have to make sure, that the device-type support the character-set. This is located in TA SPAD and there you go to the device-type.
    but that is a basis-thing.
    Additional to that it necessary to call the form in the correct language in such specific cases.
    To solve this issue go to SE63 and translate it to chinese.
    Now, if you got a chinese customer, call the form for the chinese output and if you got the english call the EN-Output.
    To connect both forms together you can use the START_FORM/ END_FORM functionstones. It is located in the same functiongroup.
    OR
    An easy try and error thing would be to set the country before printing the address.
    /: SET COUNTRY CN
    /:         ADDRESS PARAGRAPH T2 LINES 8
    /:           ADDRESSNUMBER &VBDKA-ADRNR(K)&
    /:           FROMCOUNTRY &VBDKA-SLAND&
    /:         ENDADDRESS
    SET COUNTRY <Yourpreferredcountry>
    This takes affect also at the outputdevice-type to refer to the correct language-settings.
    It is just an idea which come during writing my answer. I never faced something like that, but I can imagine, that this could be a also an easy to go solution.
    Hope that gives you a solution for your problem.
    ~Florian

  • Adobe Acrobat 8 standard - crash when print pdf with watermark

    it is the EXACT same issue as this:
    http://kb.adobe.com/selfservice/viewContent.do?externalId=kb402928&sliceId=1
    the problem is, the steps indicated here to fix the problem in solution 1, do not apply to STANDARD, even though it says it does.
    Solution 3 works just fine.
    The problem is this, I do not want my watermarks at 100% opacity. Every solution I have found says "Select PDF Optimizer from the Advanced menu.
    I do not see that menu/option anywhere in acrobat 8 standard. I need a fix for this issue, and printing a watermark at %100 opacity or getting a new printer isn't a solution.
    Apparently if I could just run the pdf optimizer i could fix this issue, but its nowhere to be found.
    I was hoping someone could shed some light on this for me. Thanks in advance

    I believe the PDF optimizer is only in Professional. I don't have 8 on
    my machine now. There may have been something under the file menu that
    did some optimization called Reduce File size, but I don't know if it
    will fix your problem or what version numbers had the option.
    Mike

  • SAPSCRIPT: Printing international characters on ZEBRA; How to do?

    Hi,
    I use software NiceLabel software to design barcode forms. I upload the design to so10 Sapscript text and print it on the Zebra ptinter. I used device tape ASCIIPRI. The SAP system is unicode.
    Now I need to print chinese pallet labels and I get unexpected problems. I found a lot information but no solution. Is it possible to print international charcters form SAPScript on Zebra?
    I got the information from Zebra's White Paper: Solution for Printing International Characters. There it says:
    "Unicode UTF-8 is embedded within Zebra printers."
    "SAP Forms can be universal. Labels and forms ... do not need to be modified or recreated to print in different languages."
    "SAP-developed UTF-8 device type and code page support for SAPscript users"
    "Label design software that can generate ZPL with support for Unicode ZPL commands"
    Do you now which device type I have to use? I think I need an UTF-8 device type. Do you know how to go on?
    Please help. Thanks
    Frank

    Hi Frank,
    as far as I know, it might be possible when using SMARTFORMS instead of SAPScript!
    In that case, it depends of the device type and the printer type, of course.
    Have a look on SAP Note 750002 SmartForms: Support für Zebra Etikettendrucker (ZPL2).
    Cheers
    Klaus

  • How to print Signature stored in a flash drive on to check print program?

    Hi,
    I have a check print program template and have the following requirement. I need to print the signature image which is stored in a flash drive that will be inserted in to the check printer (HP laserjet 4250 series). The vendor sent the escape sequence to activate the signatue image. I'm familiar with how to print images stored in $OA_MEDIA area but not in a flash drive.
    Has anyone done this before? If you did, could you please let me know how and where to put the escape sequence the vendor sent on the .rtf document to activate the signature image while the check print program is run (Format Payment Instructions - in rel 12) ?
    Message was edited by:
    user586895

    Hi,
    This is an interesting problem, and not something I have considered before. I do not know of an exact solution, but as your printer is on a network, theoretically it will have an IP address. When your flash drive is inserted into the printer I would assume that is is treated like any other drive in a PC, so you would be able to use a URL to get to it.
    Using a dummy image and a URL to the printer flash drive you should be able to pick up the image.
    Not entirely sure if this would work, but it may be food for thought, and help you along the way.
    Regards,
    Cj

Maybe you are looking for