Logo in standard SAPScript

Hi all,
I am working on standard SAPScript, In that I am facing the problem with logo , I have to include my companys logo.
Thus I had change standard   ADRS_HEADER using so10 Tcode. The logo is coming but in left side of the header window as it requires on write side although the IDES  logo is on write side.
Thanks and Regards
R Satalkar

Hi R Satalkar,
Do you use the BITMAP command to place your logo graphic? You can use the XPOS and YPOS paramaeters to place yuor logo differently. please see the SAP Note:
307414 - Documentation on SAPscript command BITMAP
Regards,
Aidan

Similar Messages

  • Copying Standard SAPScript to ZSapscript...

    Hi,
    I want to copy standard sapscript to zsapscript.
    I go in SE71 and enter the name of Z sapascript form and then create. Now when I go to Menu-> Form-> copy from: I give form name as MR_PRINT and give language as EN.
    It says MR_PRINT LANGUAGE EN is not available in client 120.
    But when I again go to se71, and type MR_PRINT with labguage EN in the same client, it dispalys the form but says MR_PRINT from client 000 dispalyed.
    How do I resolve this ?
    Do I need to copy the script from client 000 to 120 ?
    How do I do this ?
    Thanks.
    Regards,
    Thomas.

    hi Rajesh,
    first of all copy the script from 000 to 120
    here is the procedure
    SAP Script is client dependent.
    So you can use SCOT transaction to copy Transport request of SAP Script from one client to another.
    You can use program RSTXSCRP also to transport SAP Script from one client to another.
    Or from SE71 as SE71-> utlities->copy from client .
    then u can copy from standard to z
    if u find it useful mark the points
    Regards,
    Naveen

  • LOGO in STANDARD REPORTS

    Hi,
    I am working on Interactive Reports (R/3 4.6c).
    Is there a way by which i can generate a LOGO in a standard REPORT.
    Is there any other alternative where i can generate my company's logo in STANDARD REPORTS.
    Thanks and Regards
    AK

    hi ashok,,
    It is not possible to print logo in the ordinary report, but it can done through ALV.
    Write  the code in Top-of-page event in ALV.
    The following is the code for inserting the logo in ALV.
    FORM TOP_OF_PAGE.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
           EXPORTING
               I_LOGO             = 'ENJOYSAP_LOGO'
                IT_LIST_COMMENTARY = GT_LIST_TOP_OF_PAGE.
    ENDFORM.

  • Creating sapscript from a standard sapscript - need suggestions

    Hi,
    I am currently working on a settlement form.
    There is a standard invoice settlement with the following details:
    - SAPscript - MR_PRINT
    - Program - RM08NAST
    - Entry Routine - ENTRY_KONS
    My task is to create a new SAPscript, which will have a different look. However, the new SAPscript will be 90% composed of existing standard data, with the other 10% composed of several new fields.
    At 1st, I thought of just copying the entire standard print-program.
    However, the entry point ENTRY_KONS calls an FM that does all the data selection. This FM has tons of includes inside.
    What is generally done, especially in regards to output type KONS? what do I do?
    Do I copy every include or create my own program and copy only what I need?
    Please help.
    Thanks,
    John

    Hi,
         If additional fields are few and any relationship with the existing data.
         Copy Standard sapscript and use original print program.
         You try using Subroutines, You can get the data for the additional fields and other calculations in the   subroutines and pass the data to the sapscript.
          First identify from which tables the additional fields reside and any relation with the existing data in the
    sapscript which can be used as USING parameter in PERFORM statement.
          Call the subroutine, fetch the data and do additional calculations and send data back to sapscript.
    Refer the SAP help link on PERFORM statement
    http://help.sap.com/saphelp_40b/helpdata/en/d1/803279454211d189710000e8322d00/content.htm
    you can find many threads on PERFORM in SAPSCRIPTS, do a search in SCN for additional help on that statement.
    Regards
    Bala Krishna

  • Standard sapscript /  smartforms for GOODS RECEIPT

    Hi,
    Can anyone tell me standard sapscript /  smartforms for GOODS RECEIPT
    -John

    Here is your answer from NACE
    Output type WF01 or WF02
    Application ME
    Program SAPM07DR
    Form routine ENTRY_WF01 or WF02
    Sap script: WE_FERT_VERS1 or VERS2 (this is for GR for prod. orders)
    Or
    Output type WE01 or WE02
    Application ME
    Program SAPM07DR
    Form routine ENTRY_WE01 or WE02 or WE03
    Sap script: WESCHEINVERS1 or VERS2 or VERS3 (this is for GR for normal purchase orders)
    I would suggest you use the latest version.

  • Standard SAPScript

    Hi,
    Is there any standard SAPScript available for tcode f-02.
    Regards,
    Vijaya B.

    hi ,
    check out this link ..
    all standard scripts are stored in the TNAPR table .
    [http://www.sap-img.com/sapscripts/create-scripts-of-your-own-using-standard-scripts.htm]

  • Standard SApScript / Smartform name for FB75 (credit memo) transaction

    Need to know Standard SApScript / Smartform name for FB75 (credit memo) transaction..

    hi
    check SPRO>Financial Accounting>Accounts Receivable and Accounts
    Payable>Customer Accounts>Line Items>Correspondence>Carry Out
    and Check Settings for Correspondence
    surya

  • Print Logo on PO Sapscript for specific Pur Org.

    Hello Experts,
    Business has a requirement to print our company Logo on PO Sapscript for certain Purchasing Orgnizations. We have a Z version of MEDRUCK. Honestly, I have never worked on Sapscripts before.
    When I looked at the Print Program it has the following Includes:
    INCLUDE ZM06PTOP.
    INCLUDE ZM06PF01.
    INCLUDE ZM06PF02.
    INCLUDE ZM06PF03.
    INCLUDE ZM06PF04.
    INCLUDE ZM06PFVA.
    INCLUDE ZM06PE01.
    INCLUDE ZM06PF05.
    INCLUDE ZM06PF06.
    So I was wondering Is it possible to add logo based on POrg? If Yes, where should I insert (which include) my code for printing the Logo(based on Pur Org)? I assume that I need to create 1 more window?
    Please let me know.
    Thanks.

    1 - You need to upload the logo to sap. To do that, use the program RSTXLDMC. Logo extension file must be a TIF or TIFF.
    2 - Create a window on first screen. Call that window as LOGO.
    3 - On LOGO window, put the logic to change the logo accordingly to Pur. Org doing like the code below.
    /:IF &EKKO-EKORG& = 'XXXX'
    /:  INCLUDE ZHEX-MACRO-LOGOXXXX OBJECT TEXT ID ST
    /:ENDIF.
    /:IF &EKKO-EKORG& = 'YYYY'
    /:  INCLUDE ZHEX-MACRO-LOGOYYYY OBJECT TEXT ID ST
    /:ENDIF.
    Be attention that ZHEX-MACRO-LOGOXXXX (or YYYY) is the name of logo on databse and ST is the language. That is not so nice to do because you need to upload logo several times until you have a good size and quality.
    I hope my instructions help you.

  • Importing standard SAPScript text - not asking for transport request!

    Hi!
    I tried to import some standard SAPScript text running program RSTXSCRP.
    Everything was fine, but I was not asked for package and for a transport request... is it ok?
    How can I send this standard text to Quality system?
    Will reward,
    Mindaugas

    You can use program : RSTXTRAN
    Navigation -> goto SE38 -> enter RSTXTRAN -> execute ->
    Name of correction -
    text key -object - TEXT
    text key- name - enter standard text name
    Text id  - ST
    Text key language - EN
    execute now -> select text here -> enter -> now click on push button trsfr texts to corr -> you will get pop up window( request)
    Thanks
    Seshu

  • Logo missing in sapscript  output - Authorization issue

    Hi,
    We have our company logo in the sapscript. When the script is generated and printed with a user which has SAP_ALL Authorizations the logo gets printed. But if it is printed with a user with Z Roles it doesnot get printed. Neither it is seen in the Print preview.
    Please let me know the authorization object related to this issue.
    Thanks,
    Tanuj

    Hi Tanuj,
    What do you see in ST01 authorization trace ? Any objects with RC-04 ?
    Regards,
    Mike

  • How to get rid of IDES logo in the SAPScript Layout PSFC_PRINT_LAY ?

    Hello Guys,
    I am trying to print the standard production order.
    The printout has the IDES logo on top left corner for the SAPScript Layoutset PSFC_PRINT_LAY.
    How do I get rid of it?
    Is there a config setting for that?
    How do I insert my own logo?
    Thanks
    George King

    hi
    I tcode se78 where you have to import your logo from outside to SAP system. and then copy this to the  smartform of PSFC_PRINT_LAY
    but for this you have to consult with ABAPER
    Regards
    Pravin

  • Addint new field to the standard sapscript form.

    FOR SALES INVOICE DOCUMENT FORM PRINTING
    TRANSACTION CODE: VF01
    OUTPUT TYPE : FJCI
    PROGRAM NAME: RVADAUS1
    SAPSCRIPT FORM NAME: SD_EXPORT_FJCI
    ENTRY ROUTINE: ENTRY_FJCI.
    STRUCTURE USED FOR THIS OUTPUT TYPE = V55EFJCI
    THE QUERY IS AS FOLLOWS:
    I WANT TO ADD DATA MODE OF TRANSPORT FROM THE INVOICE DOCUMENT. THE TABLE AND FIELD IS T618-BEZEI.
    SO I COPIED THE STANDARD FORM TO ZSD_EXPORT_FJCI AND THE STANDARD PROGRAM TO ZRVADAUS1.
    I SUCCESSFULLY FETCHED THAT FIELD DATA.
    I APPEND THE STRUCTURE 'ZAV55EFJCI' TO ADD THE ADDITIONAL T618-BEZEI FIELD.
    AND WRITE MY SELECT QUERY IN THE ENTRY_FJCI FORM ROUTINE.
    THE CODE IS AS FOLLOWS:
    data: begin of it_mode_of_tp occurs 1,
          bezei type t618t-bezei,
          end of it_mode_of_tp.
    select a~bezei as zzbezei into table it_mode_of_tp from t618t as a
    inner join
    eikp as b on aexpvz = bexpvz and aland1 = baland inner join vbrk as
    c on bexnum = cexnum
    where cvbeln = nast-objky and aspras = nast-spras .
    loop at it_mode_of_tp.
       v55efjci-zzbezei = it_mode_of_tp-bezei.
    endloop.
    BUT THE DATA FOR THAT IS NOT GETTING DISPLAYED.
    THIS WAS THE FIRST METHOD I FOLLOWD.
    THE SECOND METHOD I DID WAS AS FOLLOWS:
    FORM ENTRY_FJCI.
         PERFORM PROCESSING.
    ENDFORM
    FORM PROCESSING.
         PERFORM PRINT_DOCUMENT.
    ENDFORM.
    FORM PRINT_DOCUMENT.
           CALL FUNCTION 'RV_EXPORT_DOCUMENT_PRINT'
    ENDFORM.
    IN THIS FUNCTION THE DATA IS GETTING FETCHED FROM THE DATABASE TABLES AND STORED IN THE STRUCURE V55EFJCI.
    SO I COPIED THAT FUNCTION.
    IN THIS FUNCTION , THEIR IS A INCLUDE PROGRAM 'LV55EF11' FOR FETCHING DATA FOR ENTRY_FJCI FORM ROUTINE.
    I COPIED THAT PROGRAM CODE , AND CREATED MY OWN INCLUDE PROGRAM (WHICH I AM STORING IT IN ANOTHER Z PACKAGE.)
    AND WRITTEN MY ABOVE CODE IN THAT PROGRAM. BUT WHEN I DO THIS, NOITHING GETS DISPLAYED , EVEN THE PREVIOUSLY COMING DATA ALSO NOT GETTING DISPLAYED.
    HOW SHOULD I PROCEED.

    you said you copied layout(form) SD_EXPORT_FJCI to ZSD_EXPORT_FJCI,
    you updated program to fetch datat & populate v55efjci-zzbezei field.
    Now
    - you need to modify layout(form) ZSD_EXPORT_FJCI via SE71 to insert your field in one of the windows where it has to be printed (sap script knowledge is required here).
    - you need to either modify SAP output type FJCI to use your program/layout(form) or you need to create your own output type and assign your form/program to it, and in addition to that if you define your own output type - yo have to add it to output determination procedure, to access sequences, add condition records to condition table... so it's picked up by the invoice.

  • Screen is frozen on apple logo and standard reset not working

    All of a sudden the apple logo appeared on the screen of my 6th generation ipod classic and the standard process to reset will not work although I've attempted it numerous times. I also noticed that my ipod is not being recognized by either My Computer in Windows 7 or ITunes. I need help desperately!

    So you can't the iPod to boot past the Apple logo? What happens if you try to manually force it into Disk Mode? Does that work?  If so, you can try connecting it to your PC and iTunes in that mode to see if that will iTunes or your PC recognize it long enough for you to perform a restore operation.
    Putting iPod into Disk Mode
    B-rock

  • Adding a company logo to Standard Purchase Order Stylesheet

    Hi,
    On Metalink Note:352604.1 suggests notepad can be used for editing or is there better editing tools recommended. How could I using notepad or simular editing tool to add my companies logo to the Standard Purchase Order Stylesheet template?
    Thank you,
    Mark

    Hi Folks
    I really feel for you but this is not a limitation of XMLP. The standard template format is RTF that can be opened in MSWord with or without our plugin. What can be a more easier template building tool.
    the Purchasing team chose to go with the XSLFO format, admittedly when they started we did not have the RTF format but before they released the RTF templates were ready but they decided to go with XSLFO. that has left you stucj trying to find a visual XSLFO editor. There are some on the market out there but Im not sure that they are free.
    As a work around we have worked with a few customers whereby they build the template using our template builder in Word and then export it as an XSLFO template and then load that to the template manager and use that. You'll need to keep the RTF handy for any updates. But its definitely a viable workaround until the PO team support RTF templates.
    Regards, Tim

  • Logo in standard text

    hi,
    I have a logo in .tiff format on my desktop. I wanted to know how to save this in standard text ( SO10). So, that i can include it in my script.

    hi,
    I am unable to find the solution even sfters earching.
    Follwoing is the detailed error. If possible plz help.
    Load File
    The file contains      2,030  bytes
    This is a TIFF file with INTEL byte order
    First IFD offset:                                    1,832
    Reading IFD from offset      1,832  Number of Tags         16
    ImageWidth:                                            100
    ImageLength:                                            51
    BitsPerSample levels:                                    3
    BitsPerSample - level 1:                                 8
    BitsPerSample - level 2:                                 8
    BitsPerSample - level 3:                                 8
    Compression:                                             5
    Photometric Interpretation:                              2
    Number of StripOffsets:                                  2
    SamplesPerPixel:                                         3
    RowsPerStrip:                                           40
    Number of StripByteCounts:                               2
    XResolution:                                            96  /          1
    YResolution:                                            96  /          1
    ResolutionUnit:                                          2
    TIFF format error: No baseline TIFF 6.0 file
    Thanks,

Maybe you are looking for

  • Capturing DV from HDR-HC3 crashes FCE

    When I import HD video from my Sony HDR-HC3 into FCE (version 3.5 running on OSX 10.4.6 on a 12-inch 1.33 GHz Powerbook with 768 MB RAM) it works fine. When I try to import DV (using the i.link conv feature on the HC3 and setting easy setup to DV-NTS

  • Wifi type thinkpad yoga 12

    I want to ask information : The connector of wifi is it a mini PCIe standard? Can i use this for PCIe x16 adapter?

  • Layer Group Channel blending, incorrect colors

    Hello! Wanted to bring up an issue that has troubled me in Photoshop for years, with the hope of it gaining some traction for fixing. For a while now (unsure which version), it was possible to set a Layer Group to filter/isolate a specific channel. T

  • How can I Spell Check with an Action?

    Hi - I can use the Spell Checking command while I'm recording a new Action but when I play that Action it gets stuck on the first step... "Spell Check in contents of all text layer".  I didn't write that first step - PShop did while I was recording t

  • Can I Share/Sync my iCal (and Address Book) between two Macs?

    I have my Address book and iCal on a MacBook. I also have a MacMini on my desktop. Is there some way that I import the MacBook Addresses and iCal into the Mini - AND synchronize them so that when one is changed, the other also changes? Does this requ