Copying standard tcode  to z tcode

hi gurus,
     what is the procedure  for copying  a standard tcode  to z tcode ?
thanks in advance,
manoj

Hi Manoj,
For this - Goto Tcode Se93
then type your standard Tcode and click on the button Copy,
then provide the ZTcode,  then click on Copy.
Then it will ask for the Package and the Transport Request to save the changes.
Regards,
Md Ziauddin.

Similar Messages

  • Copying Standard tcode

    Dear experts.
    How can we copy standard tcode into Ztcode?
    plz if u have any article for this kindly send me.
    Thanks in advance.

    Hi farook,
    1. Open SE93
       enter the standard tcode
       Press the copy button on tool bar to copy.
       Then enter the details of the new z tcode.
    PS: This will only create a new z tcode which
       will point to  the original program and screen.
      This will not copy the original program.
    regards,
    amit m.

  • Copy standard tcode

    hello,
    I want to know that how  to copy any standard tcode to ztcode.
    e.g suppose i want to copy mm01. then.
    Please tell me how  .

    Imagine copying VA01, the module pool behind it, dozens of includes etc. to customer name range. From that moment that copy is frozen and no SAP patches for the standard transaction will be applied to that copy, and you will have a hard time implementing these manually into your copy (no SNOTE support...).
    Often, people only copy those includes that need to be changed, otherwise the standard includes are used in the copy of the module pool. Now imagine that during an upgrade SAP changes code in standard includes, e.g. referencing variables that your copy of the TOP-include does not know about. You will have syntax errors in your copy that are a pain to resolve.
    In addition, often there is entries in T...-tables (e.g. screen flow) that contain the name of the standard transaction or program, and your copy will not work properly without those entries being copied as well.
    I am speaking from own experience here, by all means look for other solutions than to copy a complex SAP standard transaction.
    Cheers
    Thomas

  • Copy of standard Tcode to Ztcode

    Hi Experts,
    Can we copy MB1B tcode to ZMB1B?  is this possible?? if yes how ??
    <b>points will be rewarded for useful answers</b>
    regards,
    priyanka reddy.

    try coping program 'SAPMM07M' and all related objects,
    if u r coping includes then make necessary changes in newly copied program also.
    create a tcode similar to MB1B.
    now u can modify the screens according to ur need
    But if u want to do changes which can be done by exit then i will suggest dont create new z program but try to enhance the existing code only.
    Reward if useful

  • Prob in getting Mail body for the standard tcode F150(Dunning).

    Hello all,
    I am using F150 for the dunning notice print out.After seeing the display of the dunning notice once we come back it populates a popup window where it asks to send the mail to the particular mailid or not. I have used the BTE ---  SAMPLE_PROCEE_00001040 and copied it as z function module and customised according to my requirement in order to get the mail id of the customer in the pop up.My mail is going to the customers mail id properly only but my prob is that we are not able to get any mail body for that particular mail.Where can we add the mail body text to that mail in the standard tcode f150.can any one suggest is it possible or not.
    Regards,
    Pavani.
    Edited by: Pavani Rayappureddi on Aug 11, 2009 11:21 AM

    solved my self.
    added         C_ITCPO-TDTITLE  = 'Pending Receivables Statement-XXX GROUP'.
    in the bte code.

  • Need to call attached file from standard tcode va42.

    Hi Friends,
    I have attached a file thru tcode va41. I have to call this attachment in my driver program.
    Already I have copied standard program sd_sdoc_print01 into zprogram.
    N it has one attachment of my adobe form.
    N the second has to be attachment of the particular file saved in va41.
    Then I have to send this two files to the customer via email as an attachment.
    how do i call this attachment in my zprogram.
    how do i combine this two files and send this two documents as an attachment
    Can any one help me in this issue.
    REgards,
    V B

    It can be done using so_new_document_att_send_api,
    Created a customized funtional module for attaching this file thru gos (Generic Object Service) and called itinto my program where the 2nd attachment is attached.

  • Creating Ztcode for standard Tcode - f.13

    Hi,
         I have created a Ztcode zf.13 for a standard tcode f.13 in FI. As per client requirement I have to make certain changes to it like  the document should be posted irrespective of the business area or profit center considering just Assignment & the debit & credit amount  mateches.
    Regards,
    Viraj
    Moderator Message: Do not expect the forum to do your work for you.
    Edited by: kishan P on Dec 10, 2010 10:35 AM

    Hi Viraj,
      please explain your question properly
    In case you are trying to modify the code
    copy Program SAPF124 (program for f.13) to Z program ... and then make changes as per your requirement.
    Attach your Z program to ZF.13 tcode
    Regards,
    Seema
    Edited by: Seemanthini R on Dec 7, 2010 12:44 PM

  • To call standard tcode in webdynpro( thru webgui) : Assistance class

    Hi Gurus,
    I have an alv display in which the vbeln entries have link to action control.
    i.e when i click vbeln( sales order no), it should open a new window through its/webgui.
    1.I am getting following error when i activate , get_execute_location is private/protected.
    2. How do i go about the following code:
    wd_comp_controller->execute_get_location(
    IMPORTING
    e_host = lv_host
    e_out_protocol = lv_out_protocol
    e_port = lv_port ).
    Within my method of my assistance class I call an interface in class cl_http_server to procure my host,
    protocol and port number.
    CALL METHOD cl_http_server=>if_http_server~get_location
    IMPORTING
    host = e_host
    port = e_port
    out_protocol = e_out_protocol.
    Can some one explain in detail.
    Best Regards,
    Navin Fernandes.

    Hi Navin,
    To display a standard tcode in your webdynpro application using  ITS  you can use the following code
    DATA: url TYPE string,
            host type string,
            port type string.
    *Call below method to get host and port
      cl_http_server=>if_http_server~get_location(
         IMPORTING host = host
                port = port ).
    *create URL
      CONCATENATE 'http'
      '://' host ':' port
      '/sap/bc/gui/sap/its/webgui/?sap-client=&~transaction=' 'SE11'
       INTO url.
    *get the window manager as we are opening t code in external window.
      DATA lo_window_manager TYPE REF TO if_wd_window_manager.
      DATA lo_api_component TYPE REF TO if_wd_component.
      DATA lo_window TYPE REF TO if_wd_window.
      lo_api_component = wd_comp_controller->wd_get_api( ).
      lo_window_manager = lo_api_component->get_window_manager( ).
    *  call the url which we created above
      lo_window_manager->create_external_window(
      exporting
      url = url
      receiving
      window = lo_window ).
      lo_window->open( ).
    Hope this helps!
    Best Regards,
    Radhika Vadher.

  • How to create button in application toolbar in sap standard tcode va03

    Hi Gurus,
    I want to create a button in the application tool bar of a sap standard tcode : va03.
    Can some one help me with this..!
    Best Regards,
    Navin Fernandes.
    Edited by: NAVIN FERNANDES on Aug 12, 2010 10:02 AM
    Edited by: NAVIN FERNANDES on Aug 12, 2010 10:07 AM

    Go to the coresponding PF status and edit using modification assistant.
    http://help.sap.com/saphelp_nw04/helpdata/en/c8/19762743b111d1896f0000e8322d00/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/83/7a18cbde6e11d195460000e82de14a/frameset.htm
    Regards,
    Nikhil

  • How to get the form name which is used in standard tcode like me23n in sap

    how to get the form name which is used in standard tcode like me23n in sap
    Moderator message: four out of four threads locked, please read and understand the following before posting further:
    [Rules of engagement|http://wiki.sdn.sap.com/wiki/display/HOME/RulesofEngagement]
    [Asking Good Questions in the Forums to get Good Answers|Asking Good Questions in the SCN Discussion Spaces will help you get Good Answers]
    Edited by: Thomas Zloch on Nov 18, 2011 1:32 PM

    how to get the form name which is used in standard tcode like me23n in sap
    Moderator message: four out of four threads locked, please read and understand the following before posting further:
    [Rules of engagement|http://wiki.sdn.sap.com/wiki/display/HOME/RulesofEngagement]
    [Asking Good Questions in the Forums to get Good Answers|Asking Good Questions in the SCN Discussion Spaces will help you get Good Answers]
    Edited by: Thomas Zloch on Nov 18, 2011 1:32 PM

  • Pop up screen needs to be added to standard tcode

    Hi all ,
    "How to add a pop - up screen to standard Tcode. "
    I want to add a pop up - screen to the tcode : CO15.
    In this Tcode i will enter the Production order and press enter.
    In the next screen I will give the quantity (for eg. 5) for that production order and also date fields .
    When I click on the save button, I want to display a pop-up screen giving all the 5 items and also checkbox for each item. The user will then check whatever number of items he wants for eg he will check 3 items and press enter button which(enter button) also needs to be put in that pop up screen. 
    Next time he want to check the other 2 items also.Initially he has checked the 3 items.
    So this time the POP-UP screen should display the rest 2 items which were not checked .
    Edited by: peter k on Oct 27, 2008 5:24 AM

    Was it a pop-under?
    Because far as I know they couldn't fix that. Only stop pop-ups.
    If you want to stop them for real, then install Firefox web browser and the NoScript add-on.
    Head to Firefox toolbar > customize and drag the Temp Allow All Button to the toolbar area.
    When you surf, your Javascript will be turned off by default, and if you need it, then you click the Temp Allow All Button and it loads, therefore reducing the pop-unders and pop-ups drastically.
    Also add Ad Block Plus too for more less hassle free surfing.

  • I want to restrict the display of  F4 values in the standard tcode

    In the standard tcode F-22 , for the customer display(F4 help values) ,i dont want to display a group or set of customers to be displayed. Which is the best way of doing this?
    Thanks .
    Edited by: peter k on Jan 19, 2009 7:27 AM

    Hi Peter K,
    Hope this will help you https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/707439da-ead9-2910-5c97-af6ca0b6fbb1
    Cheers,
    Pravin S

  • Standard tcode is taking more time

    Hi,
    When i am trying to delete or save any shipments through standard tcodes VT01N and VT02N. It is taking more time to process. Please tell me the solution to increase the performance.

    Hi Shruti,
    Whenever you face an issue with a standard SAP functionality, its wise to consult SAP notes @ [http://service.sap.com|http://service.sap.com]. I did a search using the string "Saving shipment VT01N VT02N performance" and got some very useful notes on the issue.
    Some useful notes are:
    859483, 391287, 391287 .... you would want to refer to the version and apply using BASIS help (SNOTE transaction and only if applicable for your version release).
    Regards,
    Aditya

  • Is there ant standard tcode for list of vendors, suppliers in ECC 6.0

    can any body tell me is there ant standard tcode for list of vendors, suppliers in ECC 6.0

    Hi
    The standard Tcode for list of vendors is S_ALR_87012086 - Vendor List .
    Check whether it is helpful to you or not.
    Plz assign points if it is helpful.
    Regards
    Tapan

  • F4 Validation in standard tcode

    hi all,
    can anyone please tell me that how would i validate F4 help in standard tcode? actually i want that when user go to create a material then in View 'costing1' there is a field 'profit center' and there are several fields in F4 while i need only 3 profit centers only for 3 plants. there is user exit 'EXIT_SAPLMGMU_001' . so can anyone please tell me how wud i do? tell me code also.
    regards saurabh.

    how to create F4 for the standard transaction

Maybe you are looking for