Creation of transaction code

hi,
when i am coping a 'Z' program to another 'Z' program and trying to execute it by creating a transaction code it is going to short dump.
What is the procedure for creating a user transaction code.
thanks in advance

Hi Deepthi,
First of all, what is the short dump that the program is throwuing?
Secondly,the procedure for creating a T-code is:
1. Go to T-code SE93.
2.Give the T-code name that you want to create starting with Z.
3. Click on create.
4. Give the short description.
5. Then select the Start object from the options available.If the report is executable and has a selection screen,then select the second option Program a nd Selection Screen.Likewise, you can choose other options depending on the requirement.
6.Click on the green tick mark.
7. On the next screen,give the Program name and if you want leave the screen number blank and check all the options under GUI Support tab.
8. Save.
I hope I have tried to answer your query.
For further info,please let me know.
Regards,
Puneet Jhari.

Similar Messages

  • Creation of Transaction code for Reports created in FGI1.

    Hi all,
       We are in ECC 6.0 version. We have created one report for Profit Center Group Wise Receivables with transaction code FGI1. When we executed the report from FGI5 , it was showing the values correctly.
       We created the t.code for the report painter programe and tried to execute. The screen is different from that of T.Code: FGI4.  When we executed , it was not showing any values. I created authorisation for the report and also for the transaction codes.
       Appreciate your suggestion at the earliest.
    Thanks
    Dasa

    Hi
    Check TSTCP table  for the existing t-codes and for creating check this link
    Re: Transaction Code Creation for a Table/View
    Regards
    Pavan

  • PO creation through transaction code ME25 (vendor unknown) - reg.

    Dear all,
    When I'm doing excercise using transaction code ME25 (PO creation - vendor unknown), the system shows the error message as "Item category not allowed with document type".
    How to overcome this issue.
    Plz do the needful at the earliest.
    Regards,
    Chandramohan.N

    Hi
    Chandramohan
    You can do this in IMGMM-PURPO and Define Doc types and select the required Doc type and Select the Allowed Item Category. In this way you can allow the item category to the respective Document type.
    The item category determines the field selection and whether any additional data screens are shown.
    In addition, it determines whether a goods receipt or invoice receipt is to follow.
    The following list contains the item categories defined in the standard SAP R/3 System:
    Standard,Consignment,Subcontracting,Third-party,Stock transfer,Service,Material unknown and Material group
    If helpful reward the points..

  • Creation of transaction code for the table created

    Hi Experts,
    Can any one help me out with the steps that are used for creation of transaction for the table using the transaction SE93, i have created the table maintance generator.

    Hi
    Check TSTCP table  for the existing t-codes and for creating check this link
    Re: Transaction Code Creation for a Table/View
    Regards
    Pavan

  • Reg : Restriction of creation of transaction code

    hi all,
       I want to restrict creation and deletion of  transaction codes (Y or Z).
       How to get done it.
       We use SE93 and SE80 to create T-Code, ( Is there any t-code to create y or z t-code)
       We can restrict SE93 to create or delete t-code, but we cant restrict SE80 as we create many other objects in SE80.
      Suggestions reg this.

    Jean,
    When you do screen debugging the tcode se93 while creating/deletion of a tcode it takes us to
    Program SAPLSEUK
    Include LSEUKI01
      process after input.
      module exit_tcode_menu at exit-command.
      field tstc-tcode
            module xcode_390.
    Under this module xcode_390 we have the code which performs the creation/deletion of the tcode
    when 'ADD'.
       call function 'RS_TRANSACTION_ADD'
            exporting
                 objectname         = tstc-tcod
            exceptions
                 already_exists     = 01
                 permission_failure = 02.
       if sy-subrc = 1.
         message id sy-msgid type 'E' number sy
                 with sy-msgv1 sy-msgv2 sy-msgv
       else.
       when 'DELE'.
       call function 'RS_TRANSACTION_DELETE'
            exporting
                 objectname    = tstc-tcode
            exceptions
                 not_excecuted = 01.
       if sy-subrc ne 0.
         message id sy-msgid type 'E' number
                 with sy-msgv1 sy-msgv2 sy-ms
       endif.
    The same for CHANGE too.Try to put a validation here
    if sy-tcode ne 'SE80' and also the SY-MANDT in the if condition.In addition to this lock SE93 using SM01 too.
    But when we debug through SE80, it is taking us to
    Progrm SAPLWB_INITIAL_TOOL
    Under this program we have an INCLUDE LWB_INITIAL_TOOLO01
    form set_status_0100.
      data:
        l_disabled_functions   type ui_functions.
      call method g_initial_tool_ref->if_wb_program~wb_manager->get_status
           importing
              P_DISABLED_FUNCTIONS   = l_disabled_functions.
      SET PF-STATUS 'INITIAL_TOOL' excluding l_disabled_functions.
      SET TITLEBAR  'WBM'.
      clear g_fcode.
    endform.                    " SET_STATUS_0100
    Or just try to disable the option CREATE and DELETE in the above program.Just try these options,may be you will get some lead.Mind you both are SAP Standard Programs and needs accesskey.Also check whether your requirement is worth enough to tamper with SAP Standard code
    K.Kiran.

  • Problem in creation of transaction code !!!

    Dear Friends,
    I have created a transaction code for my program and when i am executing the transaction code initial screen is coming but once i am executing nothing is happening and it is going to the easy access screen.Where is the problem?
    Thannks & Regards,
    Murali.

    HI,
    You might have selected the Radio Button Program and screen (dialog Transaction)
    Select the radio button Program and Selection Screen(Report Transaction)
    Delete the transaction and create the again..selecting the proper radio button.

  • EDI Partner Profile creation at Transaction Code FI12

    How is the partner profile created when you select the Icon Partner Profiles, which is transaction code WE20 that is accessing from transaction code FI12.
    The type is B for bank. Can the partner number be a end user defined number? Can this be the vendor number for the bank? That does not appear to be an option!
    Here are my questions of the Post processing permit agent design.
    How are the values for the "Types" created?
    Thanks
    Chris Courter

    Rohan Patil wrote:>
    > BEGIN = 1.
    > edi_dc40 segment values
    > SEGMENT = 1.
    > TABNAM = EDI_DC40.
    > MANDT = 120.
    > DIRECT = 2.
    > IDOCTYP = CREMAS05.
    > MESTYP = CREMAS.
    > SNDPORT = SAPNBD.(XI port)
    > SNDPRT = LS.
    > SNDPRFC = LS
    > SNDPRN = NXICLNT120.
    > RCVPOR = SAPNED.(ECCport)
    > RCVPRT = LS
    > RCVPFC = LS
    > RCVPRN = ECCCLNT120(ECC partner number).
    Hello Rohan,
                            IDocs SNDPRN/SNDPRT/MESTYP will be taken in SAP for processing the received IDOC,so in your case either you need to create the partner profile NXICLNT120 with all inbound details or need to change the same in mapping and pass the values of your partner in SNDPRN SNDPRT fileds of control record
    HTH
    Rajesh

  • Issue in transaction code creation for sap query report .

    Hi  Gurus,
    I have a requirement to create transaction codes for sap query reports. I found two ways to create transaction code for sap query report
    1) By Generating program for sap query report and creation of transaction code for that generated Program. in tcode.
    2) By using parameter transaction options in start object of se93
    What are the difference between creation of these two ways. Please specify  the advantages and disadvantages of both methods.
    Regards,
    Suneel Kumar Uggina.

    Hi Jogeswara Rao,
    But I am getting problem while transporting form development system to  the production system. After transporting to Production system  I have used the code created in development system, but it is giving Error ' No Program Found for that Transaction Code. And  I would like to know  on what conditions should I have to  use the First one  and as well as a second one in sap query reports.
    Thank You,
    Suneel Kumar Uggina.

  • Assignment of Transaction Code to Quick Viewer Program

    Hello,
    We have created the Quick Viewer under Production Server. We would like to assign the transaction code to the quick viewer program. Will it possible to copy the program from production server to development server, creation of transaction code & assignment of transaction code to program.
    Please explore the possibilities
    Regards
    Anilkumar

    Dear Mr. Srinivas,
    Thank you for your reply. I tried the same thing - my doubt is in catt we have various screens I want only the screen where user will assign the file and execute the data upload in the new transaction.I gave the program name and the respective screen number but - system is endlessly running without any output.
    Can you guide me on what should I do in case of multiple screens containing program.
    Regards,
    M.M

  • Transaction code for Creation of Material

    Hi Code Guru's,
    can any one please tell me the Transaction code for creation of material.
    regards,
    Syed Khutubuddin.
    Edited by: Alvaro Tejada Galindo on Apr 14, 2008 4:45 PM

    Hi syed,
    Goto T.code MM01 then create Material name,
                       MM02  is change Material name,
                       MM03 is display Material name.
    <REMOVED BY MODERATOR>
    Cheers,
    S.Suresh.
    Edited by: Alvaro Tejada Galindo on Apr 14, 2008 4:46 PM

  • Transaction code for mass creation of physical Inventory document

    what is the transaction code for mass creation of physical Inventory document.

    MI31 is the transaction to create hundreds of physical inventory documents for annual inventory at a time.
    MICN can create several documents at a time for cycle count.
    Just look in the menu of phyiscal inventory into the knot Sessions, there are even more e.g. for counting of own stock a customer and vendor location, for vendor stock at own location etc.

  • Transaction code for creation of a specific customizing table ?

    Hi,
    What's the transaction code for creation of a specific customizing table ?
    Thanks in advance.

    Carl,
    if you can share with us from which t-code you achieve this , than it would be better for we guys.
    Amit.

  • Transaction code for creation of  transaction keys in obyc

    Dear Experts,
    Can u tell me what is the transaction code for creation of transaction keys in obyc asap.
    Thanks & Regards,
    Radhika.

    Hi
    There is no TCode and the path is
    SPRO-Material Management-Purchasing-Conditions-Price Determination....
    Cheers
    Srinivas

  • Transaction code creation date

    Hi,
    Can anybody please help me, in which table we can get the info about transaction code creation date?
    Point will be rewarded.
    Thank you.

    Hi,
    Do you mean by the date on which a particular document is created. If it is so it would be available in the header data of that document. For example if you are looking for sales order creation date, then u will get it in VBAK. If you r looking for deli doc creation date then u can get it in LIKP and for billing in VBRK.
    Hope I am answering to ur query.
    Kind Regards
    Chakradhar

  • Credit Memo Request creation in VA01 transaction Code

    Hi All,
    Thank You very much in advance for reading this Query.
    My Requirement is we have to create Credit memo Request in VA01 Transaction Code.But I tried to use the standard FM BAPI_SALESORDER_CREATEFROMDAT2 and It is throwing the Error "Unpermitted combination of Business Object BUS2032 and Sales doc.category K".
    So can any one advise me the correct FM to satisfy this requirement.
    Thanks and Regards,
    K.Krishna Chaitanya.

    Hi
    Try this....
    Pass the below data to the fm: SD_SALESDOCUMENT_CREATE.
    SALES_HEADER_IN:
    DOC_TYPE
    SALES_ORG
    DISTR_CHAN
    DIVISION
    STATUS_BUFFER_REFRESH = 'X'
    SALES_ITEMS_IN:
    ITM_NUMBER
    MATERIAL
    TARGET_QTY
    TARGET_QU
    PURCH_NO_C
    SALES_PARTNERS:
    PARTN_ROLE
    PARTN_NUMB
    SALES_CONDITIONS:
    ITM_NUMBER
    COND_TYPE
    COND_VALUE
    CURRENCY
    COND_UNIT
    Hope this helps....

Maybe you are looking for

  • Problems with Flash video streaming in any Browser (Windows 8.1)

    Hello. Since maybe the last Chrome update (to version 42.0.2311.90 m - I tried both 32 and 64 bits versions) or some Windows 8.1 updates (I don't know for sure), flash videos don't even start to buffer - they only play after the full content is downl

  • E90: Syncing bookmarks and bookmark Management

    I have my Nokia PC Suite syncronise my E90 Web bookmarks to Firefox (2.0.0.14). Basically, I shuffled all the Nokia default bookmarks (download themes, download sounds, etc) into a folder called Nokia, using Firefox bookmark management. Syncronisatio

  • ASA flash upgrade

                       Never done it before but is there a second slot for internal flash or do you have to get external flash copy the files off and then upgrade the flash and copy back.

  • I can't use the Image analysis tools

    Whenever I go to Image and then Analysis all the options are grayed out except the ruler tool. I would like to set a custom measurement scale and record measurements but they're grayed out. Please can someone help.

  • Dreamweaver consumes 100% CPU - in Spanish [was: hola]

    Tengo Windows 8 y Adobe Dreamweaver CC Desde la primera vez que lo instale me consume 100% del cpu aun sin estar haciendo nada, es decir, cuando esta minimizado. ¿Cual puede ser el problema? Tengo la versión de pago. (Legal) Subject line edited by mo