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

Similar Messages

  • 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

  • How to add new fields in sap copied standard form using itcsy structure

    hi guys,
      i want add some fields in sap script copied standard form using itcsy structure.
    let me know the procedure with any example.
    thanks,
    anitha.

    Hii anitha
    plz c code below
    Syntax goes like this
    /: PERFORM <form> IN PROGRAM <prog>
    /: USING &INVAR1&
    /: USING &INVAR2&
    /: CHANGING &OUTVAR1&
    /: CHANGING &OUTVAR2&
    /: ENDPERFORM
    INVAR1 and INVAR2 are variable symbols and may be of any of the four SAPscript symbol types.
    OUTVAR1 and OUTVAR2 are local text symbols and must therefore be character strings.
    Example:
    In script form
    /: PERFORM READ_TEXTS IN PROGRAM 'Z08M1_FORM_EKFORM1'
    /: USING &EKKO-EKORG&
    /: USING &EKPO-WERKS&
    /: USING &EKKO-EKGRP&
    /: USING &EKKO-BSTYP&
    /: CHANGING &COMPNAME&
    /: CHANGING &SENDADR&
    /: CHANGING &INVCADR&
    /: CHANGING &COMPADR&
    /: CHANGING &COVERLTR&
    /: CHANGING &SHIPADR&
    /: CHANGING &REMINDER&
    /: CHANGING &REJECTION&
    /: CHANGING &POSTADR&
    /: CHANGING &LOGO&
    /: ENDPERFORM
    In program
    FORM Read_texts - To extract the standard texts from the table *
    FORM READ_TEXTS TABLES IN_PAR STRUCTURE ITCSY
    OUT_PAR STRUCTURE ITCSY.
    DATA : L_EKORG TYPE EKORG,
    L_WERKS TYPE WERKS_D,
    L_BSTYP TYPE BSTYP,
    L_EKGRP TYPE BKGRP.
    READ TABLE IN_PAR WITH KEY 'EKKO-EKORG' .
    CHECK SY-SUBRC = 0.
    L_EKORG = IN_PAR-VALUE.
    READ TABLE IN_PAR WITH KEY 'EKPO-WERKS' .
    CHECK SY-SUBRC = 0.
    L_WERKS = IN_PAR-VALUE.
    READ TABLE IN_PAR WITH KEY 'EKKO-EKGRP' .
    CHECK SY-SUBRC = 0.
    L_EKGRP = IN_PAR-VALUE.
    READ TABLE IN_PAR WITH KEY 'EKKO-BSTYP' .
    CHECK SY-SUBRC = 0.
    L_BSTYP = IN_PAR-VALUE.
    CLEAR Z08M1_ORG_TEXTS.
    SELECT SINGLE * FROM Z08M1_ORG_TEXTS WHERE EKORG = L_EKORG
    AND WERKS = L_WERKS
    AND EKGRP = L_EKGRP
    AND BSTYP = L_BSTYP.
    IF SY-SUBRC NE 0.
    SELECT SINGLE * FROM Z08M1_ORG_TEXTS WHERE EKORG = L_EKORG
    AND WERKS = L_WERKS
    AND EKGRP = L_EKGRP
    AND BSTYP = SPACE.
    ENDIF.
    READ TABLE OUT_PAR WITH KEY 'COMPNAME'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_COMP.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'SENDADR'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_ADRS.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'INVCADR'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_INVC.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'COMPADR'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_CPAD.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'COVERLTR'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_COVR.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'SHIPADR'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_SHIP.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'REMINDER'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_RMDR.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'REJECTION'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_RJCT.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'POSTADR'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_POST.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'LOGO'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_LOGO.
    MODIFY OUT_PAR INDEX SY-TABIX.
    ENDFORM.
    reward points if useful
    regards
    Jaipal

  • Copying Standard SAP form

    hi all,
    curently I'm copying standard SAP form into Z* form then try to modify.
    Hopefully I face the problem can not add new window in new form.
    can any body have me how to solve it?
    regard,
    Hengky

    Hi
    U can change them only in the master version.
    If you have copied the sapscript from a standard one, probably you've copied all versions (for the main languages), but only one version is the master one.
    The master version is the language used to create the sapscript, so I suppose the German (DE) as your sapscript is copy of standard one.
    So if you need to change objects like window, paragraph,.... u can do it in the master version only.
    U can update the text elements only in the other versions.
    Anyway if you need you can assign another version as master one: trx SE71, insert your sapscript press change and go to Utilities->Convert the original language
    Max

  • Copying standard script

    Hi ,
        i am copying standard script it is not allowing changes in language EN  and also its not asking request and package . so i am facing after copying script its not allowing changes in windows .
                  how to resolve this problem.

    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 .
    You need to go to transaction NACE and replace standard SAPScript with your custom SAPScript.
    Path: NACE -> Select EF (Application) -> Click Output Types button -> Select NEU (if you use standard one) -> Double click on Processing Routine -> Click Change mode -> Replace Medruck with your custom SAPScript -> Save.

  • Copy standard prog to zprog

    how to copy standard prog to zprog with existing enhancement and includes
    i tried but enhancement and includes not copied...
    please help me to give suitable example...
    Moderator message : Duplicate post locked.
    Edited by: Vinod Kumar on Sep 26, 2011 11:29 AM

    I would check in SE71 to make sure the correct SAPscript layout is there and active.
    You can check transaction SPAD.  Be sure the LETTER in LANDSCAPE mode is supported for the specific device type assigned to the target printer in the test system.
    As a last resort, you can purge the buffer for loaded layout sets with program RSTXDELL.

  • Copy standard cost with Cost Component from another material

    Hi,
    I need to copy standard cost from another material not only total price but also details of cost component split. I try to used transaction CKUC with procedure of "explode material cost estimate" but the reference material use "mixed costing" and isystem stop explosion.
    There is another procedure in order to make this copy? I can not use special procurement because are different codes (material A / Plant XXX copy froma material B /Plant XXX).
    Thanks for your support.
    Mic

    Hi Chandra,
    thanks for your suggestion, it works but only if I explode a level ... material "B" contains two mix codes  that also contain their mixes. So system shows this message "Mixed cost estimate explosion in level 2 for material xxx" and "Mixed cost estimate exists: maximum of 2 explosion level (s) possible".
    So Is not possible to copy and esploded a standard cost with multi level mix?
    Thanks
    Michela

  • Copying from Sapscript to Smart form with d same windows

    I hav created my sapsccript till now i want to copy my sapscript windows n text elements n other attributes of that sapscript to smart forms.So please help me to copy sapscript to smart form,Please help me out.
    Thanks & regards
    santhosh kumar.

    check the link below it provides steps to convert sap scripts to smartforms
    http://www.ficoexpertonline.com/downloads/Iyer_SmartForms.pdf
    Check these threads.
    Smartforms -> sapscript
    Re: Convert SapScript to Smartforms ?
    Regards,
    Sooness

  • Which option to choose:idoc user exit or copy standard idoc?

    Hi gurus,
    We are using idoc technolody to implement the interface between R3 and 3rd party system.
    Most of idocs are inbound processing, and it seems standard idoc can't meet our all requirements.
    So we are considering the option:i choose doc user exit or create new idoc by copying standard idoc.
    Which way do you like better?What are the advantages and disadvantages of them?
    Any help will be appreciated.
    BTW, our customer will upgrade their R3 4.7 system to ECC6.0 after this project the next year.

    Hi,
    By making changes in the User-Exits, if you can achieve what you are looking for then I would recommend to use user-exits. SAP programs are not bug free and SAP keeps on updating them by releasing hundreds of notes every day. If customer is upgrading to new version in near future then using standard programs are the best option.
    Cheers,

  • Copying standard report transaction selection screen

    Hi  everybody,
    How can we copy standard report transaction's VI05 selection screen to my custom report transaction's selection screen some zprogram . The problem is that when i am copying the selection screen into my programs screen, it is getting copied, but not as selection screen rather as normal screen. I have defined a transaction code for the same with the custom screen no as the selection screen but its giving a message that selection screen 9001 doesn't exist. However if i keep the selection screen as 1000 the screen in the standard transaction VI05 the transaction is executing fine.
    But again the problem was that although it seems that the screen 1000 of the standard program for VI05 has been copied to my custom program but its not showing in the object list of my custom program. so I cannot do any changes which i require.
    If anybody requires any clarification u can raise your doubts i will try to make it more clear.
    Can any body help me with this?
    Your help will be deeply appreciated.
    Thanks a lot!
    Best Wishes!
    Regards
    Prem

    Hi Prem,
    Even if the GUI Status is active, you cannot see two components of Standard Selection Screen.
    1. All Selections - Push Button
    2. Categories - Screen Block in the first with two options
         2.1. OI_STAND
         2.2. OI_BULK
    This is becoz, there are enhancement spots included in the Standard program and the enhancement spots will not be copied, unless you copy them manually.
    Check the same.
    Regards,
    -Syed.

  • How ca we copy standard print program of SMARTFORM?

    guyz...
    how can we copy standard print program of RLB_INVOICE of invoice SMARTFORM to a Z program in ECC 6.0???
    regards
    Zid.

    Hi,
    enter the program name in the SE38 editor
    click on copy button
    then it will ask you for the new name
    when ever you click on the copy transfer buton
    then it will raise a pop and saying that what ever you want from the program like
    1) INCLUDES
    2)SCREENS
    3)USER INTERFACES
    4)VARIANTS
    5) DOCUMANTATION
    ETC..
    hat ever you clcik on that check box
    Thanks.

  • Copy Standard T.code into Z T.code

    Hi,
    I want to Copy Standard T.code into Z T.code....with all includes and Function Group......
    Plz tell me step-by-step....
    Prince

    Hi,
    When I do like u say....it shows ABAP RUNTIME ERRORS...
    The current application triggered a termination with a short dump.
    What happened?
    The current application program detected a situation which really
    should not occur. Therefore, a termination with a short dump was
    triggered on purpose by the key word MESSAGE (type X)....
    Now can I do....
    Prince

  • Copying standard KANBAN adobeform in SAP SNC

    Hi,
    We have a requirement where we need to copy standard adobeform and add barcode to that for KANBAN process.
    I have following questions regarding this:
    1. while copying standard adobeform whether we need to copy Interface also?
    2. How to find print program to that form i.e., where data is getting fetched for this form-the form is getting triggered from SNC system..menu path is as followsSNC Supplier role --->SNC Supplier View . When we click on Supplier view it is leaving to WEB UI and from there the Adobeform is getting triggered.
    Can anyone explain how and where it is fetching data...
    3.Where is the configuratgion done for this form(like in NACE in ECC)?
    4.If there is any webdynpro component then where can we find the link for this web ui and form?
    Thanks,

    Hi Nilson,
    The business processes mentioned can be used for any industry. There is not restriction as such.
    These business processes are more relevant for those industry.
    e.g. Outsourced Manufacturing / WO Collaboration is extensively used by High-Tech companies. Even the recent enhancement requirements have come from High-Tech companies.
    Similarly, Kanban / SMI is extensively used by Automotive. But SMI is also popular with High-Tech.
    CP industry is biggest consumer of Responsive Replenishment process.
    Regards,
    Sandeep

  • 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

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

Maybe you are looking for

  • WM Structure... Very Interesting

    Great Gurus We have implemented SAP (FICO, MM, SD, PP, PM ). Have one main Store (A Big hall with 3 big Racks < Rows, Line > ,Bins).  (1 Rack = 7 Rows, 13 Columns) Rack 1 > Auto, Rack 2 > Production, Rack 3 > Chemicals  Only In Rack 2 (Production) we

  • Stock display with Alternate unit of measure

    Hi All, is there any report in SAP, which displays the warehouse stock with Alternate Unit of measure. I did try in MB52. It was showing only in BUM. Please help ASAP. Ayesha

  • Ringer Volume and Conversation Volume Issue

    It seems like I'm not the only one who is complaining about the volume of ringtone as well as conversation. I also have missed almost most of incoming calls due to above issue. My volume level is all the way up, but still not loud enough to be alert

  • ICS Update by provider

    Since it seems providers can decide whether or not the ICS update for the 2011 Xperia's are pushed out, is it possible for SE to reveal which providers have decided to nix it? . i.e for example I am on Orange UK, are they going to push the update?

  • Is there a way to store text messages on the computer

    I want to move my text messages off my phone onto my computer but I don't know how to do it or if it's possible.