SAP Script Logo

Hi all,
I am trying to insert my company logo to the certification letter generated in SAP Script .
By running the program RXTLXDMC i have uploaded my logo and inserted that in my standard text say "zabc"
and i have called that std text in my se38 report .
and it's working fine .
But i want to move my logo to right .
How to do that?
I hav tried to do that in SE71 . but no result .
Do u hav any good tutorial ?
Advance thanks,
J

Hi J,
What version of SAP are you on? If you are on 4.6C or higher, you shouldload your graphic in via SE78 and store it on the Document Server.
Then in your SAPscript (SE71), in the relevant winder put in "/:" in the Tag Column, and in the Text Line enter "include 'ZABC' object 'GRAPHICS' id 'BMAP'".
The /: identified the line as a "Command Line" (ie regular ABAP). Then you use the INCLUDE command to identify your graphic.
Hope this points you in the right direction.
Cheers,
Pat.

Similar Messages

  • Inverted Sap Script LOGO

    Hi Gems,
    I have an SAP Script layout where in the LOGO in the output appears to be inverted.
    But for some of us we are seeing the LOGO properly.
    Can any one suggest me where it is going wrong?
    Thanks
    Dan

    Hi,
         Two things:
    1) Upload the logo again using SE78
    2) If you are seeing the Print preview and not Print out take a print out and see the same..
    Raghav

  • Sap script logo is inverse

    hi ,
    i do sap script and i include logo and i see it inverse
    what can be the problem
    regards

    Check your printer & its make and load additional drivers for image printing & SAP. Like HP has specified the suppoorted printers for SAP .
    we have faced the same issue and it got resolved only by loading the drivers. No program.scripts modification is required .
    hope it helps.
    anya

  • Download sap script logo

    Hi,
    We can upload a graphic logo through SE78 but can we directly download any logo on our PC?
    Please let me know if any one is having any idea.
    thanks,
    shilpa k

    Hi,
    refer this,
    REPORT Z_DUMMY_ATG_3.
    DATA : L_BYTECOUNT TYPE I,
           L_TDBTYPE   LIKE STXBITMAPS-TDBTYPE,
           L_CONTENT   TYPE STANDARD TABLE OF BAPICONTEN INITIAL SIZE 0.
    DATA: GRAPHIC_SIZE TYPE I.
    DATA: BEGIN OF GRAPHIC_TABLE OCCURS 0,
    LINE(255) TYPE X,
    END OF GRAPHIC_TABLE.
    CALL FUNCTION 'SAPSCRIPT_GET_GRAPHIC_BDS'
      EXPORTING
        I_OBJECT       = 'GRAPHICS'
        I_NAME         = 'ZPRUEBA'
        I_ID           = 'BMAP'
        I_BTYPE        = 'BCOL'
      IMPORTING
        E_BYTECOUNT    = L_BYTECOUNT
      TABLES
        CONTENT        = L_CONTENT
      EXCEPTIONS
        NOT_FOUND      = 1
        BDS_GET_FAILED = 2
        BDS_NO_CONTENT = 3
        OTHERS         = 4.
    CALL FUNCTION 'SAPSCRIPT_CONVERT_BITMAP'
      EXPORTING
        OLD_FORMAT               = 'BDS'
        NEW_FORMAT               = 'BMP'
        BITMAP_FILE_BYTECOUNT_IN = L_BYTECOUNT
      IMPORTING
        BITMAP_FILE_BYTECOUNT    = GRAPHIC_SIZE
      TABLES
        BDS_BITMAP_FILE          = L_CONTENT
        BITMAP_FILE              = GRAPHIC_TABLE
      EXCEPTIONS
        OTHERS                   = 1.
    CALL FUNCTION 'WS_DOWNLOAD'
      EXPORTING
        BIN_FILESIZE            = GRAPHIC_SIZE
        FILENAME                = 'C:\FirmaAsociado.bmp'
        FILETYPE                = 'BIN'
      TABLES
        DATA_TAB                = GRAPHIC_TABLE
      EXCEPTIONS
        INVALID_FILESIZE        = 1
        INVALID_TABLE_WIDTH     = 2
        INVALID_TYPE            = 3
        NO_BATCH                = 4
        UNKNOWN_ERROR           = 5
        GUI_REFUSE_FILETRANSFER = 6.
    IF SY-SUBRC  0.
      MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Change ZPRUEBA with the image you want to download and C:\FirmaAsociado.bmp with your own path and file
    regards,
    K.Tharani

  • Sap scripts : logo not display

    Hi,
    i have imported a logo with se78.
    i'm using BITMAP 'XXX' OBJECT GRAPHICS ID BMAP TYPE BMON.
    When i'm printing the logo is here but in preview mode, this bitmap is not display.
    somebody have an idea?
    Thanks

    Hi,
    1st check your window size, just try to enlage your window and check it once.
    Why dont you go for GRAPHIC window, just try with that also.This Graphic window will take care of size and every thing.
    Thanks.
    If this helps you reward with points.

  • How to insert a logo in sap script?

    How to insert a logo in sap script?

    Steps to insert a logo,
    I
    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
    II
    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.
    III
    1 ) create a bmp file in local system
    2 )RSTXLDMC FM to upload image in tiff format.
    Also check these links...
    Logo in SAP SCRIPT
    Re: Uploading a (Image) Logo in your Sap Script
    Need Urgent Help for Logo Uploading the Sap Script
    sap script  logo
    http://www.sap-img.com/ts001.htm
    Regards,
    Sakthi Sri.

  • SAP Script forms and logos

    Hi Experts
    My logo is too big for my Form Window in SAP script.
    How do I restrict the logo size to fit the size of the window.
    Regards,

    Hi
    IF you have imported it as graphic:
    BITMAP 'LOGO' OBJECT GRAPHICS ID BMAP TYPE BCOL DPI <XXX>
    Where XXX is the resolution:
    Resolution with which a graphic is printed, specified in dots per inch, (dpi).
    The graphic resolution controls the size of a graphic when it is printed. High resolutions produce small graphics while low resolutions produce large graphics.
    If you choose default value 0, the original resolution of the imported graphic file is used.
    Most printer drivers and printers support the following resolutions:
    75 dpi
    100 dpi
    200 dpi
    150 dpi
    300 dpi
    600 dpi
    If you have imported it as std text I believe you've to re-imported it whit new resolution you need
    Vasanth

  • Sap Script - How to show two logos consecutive in a row.

    Hi All,
    If in a window I insert two lines:
    /: INCLUDE ZHEX-MACRO-ZLOGO001 OBJECT TEXT ID ST
    /: INCLUDE ZHEX-MACRO-ZLOGO002 OBJECT TEXT ID ST
    the Sap Script shows two logos not consecutive in a row.
    I'd like to show the two logos in the same row and if it is possible, separated by blanks.
    Any idea?
    Thanks in advance for your kind support.
    Regards,
       Giovanni

    This is because of your page size limitation. IF you will create two windows then it will work.Aline these windows properly in layout of page.

  • Uploading logo to SAP Script

    Hi,
    Can you please let me know the steps to upload the logo and to call it from SAP Script. I have the logo in the Word Document.
    Thanks in advance,
    Ishaq.

    Hi,
    Use TCode SE78 and import logo to R/3.
    Select GRAPHICS> BMP, select ur logo on Legacy sys.> Transport.
    Now ur logo has been transfrred to R/3 which is on desktop/legacy.
    NOw in logo window, in script editor, under menu options, INSERT--> LOGO.
    Activate and execute.
    Revert back if any issues.
    Reward with points if helpful
    Regards
    Naveen

  • Logo : SAP Script

    Hi all,
    I want to insert my company logo in SAP SCRIPT.
    Am newbie to SAPSCript .
    I am facing prob's in the foll areas.
    1)While running the pgm  'RSTXLDMC' and give the path of my TIF File ,the foll error is thrown...
    "Load File
    c:\dsf.tif
    The file contains 22,380 bytes
    This is not a TIFF file byte order <> 11 /MM
    Only TIFF files can be uploaded for type BCOL"
    I tried to chage the extension of my logo from tif to tiff,but that ext type is not supported in my system.
    Wht is the problem
    2) If uploaded successfully,Where this files will get stored .I mean in which table ?
    3) Can we insert this in my std text i.e) SO10 trans
    Valuable pts will be awarded.
    Advance thanks,
    J

    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 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).
    http://www.sap-img.com/ts001.htm
    http://www.sap-img.com/sapscripts.htm
    Refer the above links.
    Hope this helps.

  • Problems while uploading company logo into sap script

    Hi Experts,
      When i am inserting company logo into sap scripts, i successfully uploaded, but the problem is i am getting black and white image instead of color,but in RSTXLDMC i am giving parameter as BCOL only, could anybody help to get my problem resolved. it is very urgent. The logo which i am inserting is colored.
    bye
    M.Rajendra Singh

    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

  • IS IT POSSIBLE TO PRINT ANY LOGO AS A WATERMARK IN SAP SCRIPT

    In SAP Script ,is it possible to print a logo in the back of retrived data as a watermark & our data would not be overlapped . If yes then tell me how.......?
    we wanna print customer id & place id on page one as a tittle & the concern data below them so for this what we have to do give me a reasonable logic ...?

    hi,
    Yes, we can print logo as water mark in scripts
    Just do as like this....
    Upload your logo via SE78.
    - Select 'Import' button from application toolbar of SE78, and perform upload.
    and write this code in scripts
    BITMAP 'COMPANY_LOGO' OBJECT GRAPHICS ID BMAP TYPE BCOL 
    regards
    Sankar

  • How to insert a condition in the Graphic Window of a SAP Script ?

    Hi,
    I need to give a condition inside the Graphic Window for printing the Logo in the  SAP Script. Now, my problem is that the Graphic window is only opening in Display mode. How to make it editable and insert a condition in it?
    OR
    Is there any other way to do it?
    Please Help.
    Thanks in Advance.
    -VRU

    Hi
    I got your point. I'll provide  you solution
    In the logo window goto coding part by pressing F9 and give your coding as
    IF &BKPF-BUKRS& = 'COM1'
    INCLUDE GSPL OBJECT GRAPHICS ID BCOL LANGUAGE DE
    BITMAP 'LOGO1' OBJECT GRAPHICS ID BMAP TYPE BCOL
    ELSEIF &BKPF-BUKRS& = 'COM2'
    BITMAP 'LOGO2' OBJECT GRAPHICS ID BMAP TYPE BCOL
    ELSEIF &BKPF-BUKRS& = 'COM3'
    BITMAP 'LOGO3' OBJECT GRAPHICS ID BMAP TYPE BCOL
    ELSEIF &BKPF-BUKRS& = 'COM3'
    BITMAP 'LOGO4' OBJECT GRAPHICS ID BMAP TYPE BCOL
    ELSEIF &BKPF-BUKRS& = 'COM4'
    BITMAP 'LOGO5' OBJECT GRAPHICS ID BMAP TYPE BCOL
    ENDIF
    <b>Note:</b>But you have to upload all your logos in se78 then only you can upload and give conditions for this
    Regards
    Pavan

  • How to upload Graphics Image in SAP script

    Hi
    I have a new porblem in SAP script can anyone help me how to upload an graphic image

    Hi Pavan,
    Give the same name and upload the graphics, u get a popup saying do u want to overite the existing one, click yes and the old logo will be replaced by the new one.
    Cheers..
    Santosh.
    P.S. Mark usefull answers

  • Urgent - Not able to Print back page for Last Page in SAP Script.

    Hello All,
    I need to Print back page in SAP Script, I am able to do it by setting print mode as D, but now the problem is, it does not print back page for last page.
    For eg. if there are 3 pages it prints back page for first two. If there is only one page then it does not print back page.
    Please Help.
    Thanks.

    hi,
    Yes, we can print logo as water mark in scripts
    Just do as like this....
    Upload your logo via SE78.
    - Select 'Import' button from application toolbar of SE78, and perform upload.
    and write this code in scripts
    BITMAP 'COMPANY_LOGO' OBJECT GRAPHICS ID BMAP TYPE BCOL 
    regards
    Sankar

Maybe you are looking for

  • My Computer crashed-how do i put songs from iPod back onto computer?

    my computer crashed a while back and i lost everything. my iPod still has my songs but i'm not sure how i can (or if i can) get them back onto my computer!!! do i need to reinstall the iTunes CD? please help!!! thanks!!!! 20GB iPod   Windows XP  

  • User IDs mixed up

    When I was ill my husband setup our new iPhones by connecting them both to HIS computer. At the same time, he changed his email address and his iTunes user ID.  Somehow, during this process he managed to link his iTunes library to MY user ID so that

  • RichTable moves Selected Row to the Top of my tableview on refresh

    When I issue a partialtrigger on a table with a selected Row, the selected row is repositioned to be the first Row that is available. The actual positions of the rows in the tables dont change, the selected row is just scrolled to the top... I need t

  • Setting Out Of Office from Outlook not working with exchange 2010

    Hi  We have an exchange 2010  server with 2 load balanced CAS server and Mailbox servers in a DAG.  We have a few domain names accepted (will call it firstdomain.com and seconddomain.com)  but only one is in certificate (firstdomain.com). The issue i

  • User exit for Delivery PGI

    Hi, I want to use user exit which can be triggered during Delivery PGI. I read on the forums that I can use BADI LE_SHP_GOODSMVMT. I searched for this BADI in transaction SE18 and there is no BADI with this name. Also I searched in Customization for