Logo upload in SAP SCRIPT(urgent)

can any one tell me transaction in sap to UPLOAD a logo in sap and how to include in sapscript.

Hi,
You can UPLOAD your logo directly in SE78.
SE78>Graphics>BMAP grid screen. click on it.
give ur logo name .bmp file.
or in SE38 run prog:RSTXLDMC there you need to give your logo name saved as .tiff file in your desktop.
Thanks.
Message was edited by: Deepak333 k

Similar Messages

  • LOGO UPLOAD in SAP SCRIPT

    Hi,
    I have created a window for LOGO and written the following code in the line editor,
    /: BITMAP SAMPLE OBJECT GRAPHICS ID BCOL LANGUAGE EN
    and i have called the FM in the report program,
    CALL FUNCTION 'WRITE_FORM'
         EXPORTING
             ELEMENT       = 'SAMPLE'
            FUNCTION      = 'SET'
            TYPE          = 'BODY'
             WINDOW        = 'LOGO'
         EXCEPTIONS
              ELEMENT       = 1.
    But the logo is not being displayed. i have uploaded it using SE78.
    thanks
    Dinesh

    hey try this !
    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
    regards
    sachin soni

  • Uploading  a SAP Script

    Hi Guys,
    I am trying to upload an SAP Script from a .txt file which was downloaded previously from another system. That system is no more available for me so this is the only way fro me to access this SAP script.
    My query is that every time i try to upload the script i encounter the following message.
    SAPscript Export to Dataset / SAPscript Import from Dataset                    1
    Start SAPscript Transporter RSTXR3TR *******
    Transport object FORM ZFIF_F008_DUNNIN is being processed
    Language vector used: ED
    Original language was set to E
    Definition E imported
    Language E imported
    Language vector does not allow export/import of foreign language I
    Object imported and activated
    001 warning message(s) appeared during import
    Please help me with this. Useful replies will be duly rewarded

    Yes the SAP script i am trying to create has the same name in the text file...
    Also the script isnt getting transported.... its says sucessful but i cant find it in SE71.
    It says SAP Script is inconsistent with the text file... i cant display nor change it

  • EXPERTS PLZ HELP ME IN SAP SCRIPT URGENT

    Hi experts
    plz help me
    i m very new in sap scripts
    i have a script WESCHEINVERS1 and the driver prog is SAPM07DR
    i ill have to copy this script and have to add two more feild in the text element W1LGMAT
    fields are :
    CAWNT-ATWTB
    EKPO-REVLV
    now wat i think i cannot make changes to standard driver prog so it wud be better to call a subroutine 4 it
    so plz guide me how i ill have to fetch data nd pass to the script
    plz write the code if possible 4 u
    FYI:
    MSEG : Document Segment Material
    MANDT     Client
    MBLNR     Number of material Document
    MJAHR     Material Document Year
    ZEILE     Item in Material Document
    MATNR     Material Number
    LIFNR     Account number or vendor
    EBELN     Purchase order number
    EBELP     Item number of PO
    EKPO : Purchasing document item
    MANDT     Client
    EBELN     Purchase order number
    EBELP     Item number of PO
    MATNR     Material Number
    REVLV     Revision Level
    LFA1 : Vendor Master (General section)
    MANDT     Client     
    LIFNR     Account number of vendor or creditor     MSEG-LIFNR
    SPRAS     Language key     
    AUSP : Characteristic Values
    MANDT     Client     
    OBJEK     Key of object to be classified     MSEG-MATNR
    ATINN     Internal characteristic     ZO-QUALITY-LEVEL
    ATZHL     Internal counter     
    ATWRT     Characteristic Value     
    CAWNT : Value texts
    MANDT     Client     
    ATINN     Internal characteristic     ZO-QUALITY-LEVEL
    ATZHL     Internal counter     AUSP-ATZHL
    SPRAS     Language Key      LFA1-SPRAS
    ATWTB     Characteristic Value Description     
    thanks in advance

    Refer the links to know about calling subroutines ins cript -
    subroutine in script
    How to call a subroutine in a script ?
    EXTERNAL SUBROUTINE IN SAP SCRIPT
    Regards,
    Amit
    Reward all helpful replies.

  • Regarding passing table array to sap scripts - urgent

    Hi Experts,
    I am calling an SAP Script form from a custom program. The code snippet is as follows:
    MOVE : 'ZFRM_EX_COM_INV' TO w_form.
    PERFORM open_form USING w_form.
    PERFORM write_form USING 'MAIN'     'HEADER'.
    PERFORM write_form USING 'MAIN'     'LINE_ITEM'.
    LOOP AT it_cond INTO wa_cond.
    <b>PERFORM write_form USING 'TOTAL' 'TOTAL_COND'.</b>
                   <i> " TOTAL is the page window and TOTAL_COND is the element.</i>
    ENDLOOP.
    PERFORM close_form.
    *&      Form  write_form
          text
         -->VAR1       text
    FORM write_form USING var1 var2.
      IF var2 IS INITIAL.
        CALL FUNCTION 'WRITE_FORM'
          EXPORTING
            window                   = var1
          EXCEPTIONS
            element                  = 1
            function                 = 2
            type                     = 3
            unopened                 = 4
            unstarted                = 5
            window                   = 6
            bad_pageformat_for_print = 7
            OTHERS                   = 8.
      ELSE.
        CALL FUNCTION 'WRITE_FORM'
          EXPORTING
            element                  = var2
            window                   = var1
          EXCEPTIONS
            element                  = 1
            function                 = 2
            type                     = 3
            unopened                 = 4
            unstarted                = 5
            window                   = 6
            bad_pageformat_for_print = 7
            OTHERS                   = 8.
      ENDIF.
    ENDFORM.                               " WRITE_FORM
    In the text that is in bold in teh code snippet, I am tring to pass the values one-by-one and print in the output.
    But only the last line item from that table is begining printed. The other lines are overwritten by the last line.
    How should I display all the lines in the internal table it_cond.
    Please help me...
    regards,
    arul jothi a.

    U are using a variable window to print the 'total_cond' text element..
    so whenever u call the write form   for a variable window .. it will get over written by the current contents.. I t wont append the contents to the form...
    Instead u use this text element in the MAIN window then onli u will get all the data..
    i hope this is the problem..
    reward if it helps u...
    sai ramesh

  • Signature upload in sap script thru se78

    hi
    i am tyring to upload a signature thru se78,but is not displaying the sign,only white backgrond only.
    i had scan sign saved in paint format,compressed it,but after uploading its not displying.
    plz tell how to solve this?how shd i compress,in which format i shd save it...
    regds
    vipin

    hi,
    may be its due to bad scan quality ..
    again scan and save it in bitmap format and den upload.
    hope it will help u
    regards,
    prashanti

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

  • 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

  • Change of package for Sap script

    hi all,
    how to change the package from $tmp to Z package for a sap script,
    urgent
    thanks
    srinivas

    But you can do it through Tcode SE03
    Go there and click on Change Object Directory Entries
    As you know the exising package of your form put that.
    If not go to your form in SE71 and in Basic Settings , you can see the package.
    Press F8 and you can see your formunder the package.
    Dbl. Click on the FORM and then you can change the package
    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

  • 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

  • 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

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

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

Maybe you are looking for

  • How do I export the MUSIC in a playlist to a USB dongle?

    Hi There,               I have put more than 400 songs into a new playlist and I want to export this playlist (music content NOT just the play LIST) onto a USB dongle. I did this some time ago and can't remember how I did it. I can BURN to a disk, bu

  • Default printer in SAp ECC 6.0 version

    I want to print by windows default printer, my device is F type, but in before versions i use SAPWIN: Rel 4.x 4.09 + ONLY and i execute in my computer and it works, but now it gives me an error, what value do you select for this version please? Thank

  • How do I disable the notifications on the corner of the screen?

    Hello! I just purchased an AppleTV today and, so far, it seems to work the way I'd like  it to work with one minor issue-- the notifications on the corner of the screen. They generally appear at the beginning of a song or video in a playlist. Is ther

  • Is there a fader view in GB10?

    If so, where? Sorry if this is a silly question. :-(

  • RSC3.1 (with RH8) randomly adds binary info to topics

    RSC3.1 is adding binary info to the top of random topics. We only discovered this when a few output files were discovered to be missing entire chunks of content (up to 150 lines of code). Opening the source file in the RH project revealed a red block