T code for a menu path

Hi
I know the menu path and when I check  for T -code , I did not find one. How do I get tcode . that really helps me to go directly to transaction rather than going menth path every time
regards
Kumar

Hello Kumar,
In the main menu (S000), go to Extras->Settings. Select the check box for 'Display Technical Names'. Now onwards, you will see TCODE when your drill down through the menu.
Thanks,
Venu

Similar Messages

  • Create Transaction code for Area Menu with specific namesapce(/arba/ond_proc)

    Hi Friends,
    As I have created one Transaction Code For Area Menu with the namespace like (/arba/ond_proc).
    It is working fine when I run this with /n/atba/ond_proc.
    But When I ran this independently it's not working like:( /arba/ond_proc not working independently.)
    Please suggest me some solution.
    Thanks And regards
    Rahul Singh

    Hello
    when you excecute the query in right han side corner  you can get the program name
    go to se80 select program & type this name and then you can create a tcode for that prog in SE80
    reward points if helpful.
    the prog name will be something like : AQZZ/SAPQUERY/* " ur query name
    you can search for the name also in this manner

  • Can we include any custom T-Code in SAP Menu path

    Hi,
    Can we maintain any custom T-codes in the SAP Menu path in the SAP Menu displayed on the SAP EASY ACCESS.
    Or can we maintain user Menu...?
    If so how to create? and where?
    If so please help me to maintain
    Thanks in Advance,
    Shalem.

    Hi Shalem
      For adding custom T-Codes in SAP user menu, we have to extend the existing area menu <b>S000</b> via transaction <b>SE43N</b>.
      The transaction is for Area Menu Maintenance.
    Kind Regards
    Eswar

  • T.Code for Configuration Menu "Funds Management Government"

    Hello,
    Do we have a T.Code for SPRO node "Funds Management Government". I found T.Code TCMN for Easy access menu but not for FM Config items.
    Thanks,
    Ankish

    Hi,
    There is an old area menu OFTC, but it does not stand for BCS. As far as I know, there is no FM configuration special menu area.
    Regards,
    Eli

  • Transaction code for user menu, sap easy access

    Hi system experts!
    Does anybody know which transaction causes the user-specific menu within "SAP easy access" (the welcome screen after login, like /n does) ?
    I need it to be called from a portal iView, so that the usual sapgui-like screen with the user's menu appears in a portal screen, both for SAPGUI for windows and http.
    Trx. S000 or SESSION_MANAGER does not cause the user-specific menu when called from the portal. These work least of all for call via ITS.
    thanks
    Andreas

    hi ,
    The transaction code is SE41.. This is for creating Menus and tool bars.
    you can also try SMEN it will call the user menu as you described in your post.
    Regards,
    Krishna
    Message was edited by: Krishnakumar

  • ABAP code for flat file path

    Hello,
    My hierarchy is loaded through flat file. This file is present in the application server.
    We have hard coded the filename path in our program in the production system as:
    DATA:p_fname LIKE rlgrap-filename value '
    A0001SAP\PACE_PRD\interface\BI\BO\PYD_PDL.CSV'
    Now, our pre production system is refreshed and hence after the refresh, the same path got copied in the pre production system and our process chain got failed as the path name is wrong. Same is the case in the development system.
    Please note: The file path is same in all the systems except the name of the system i.e.
    For development system, the name is PACE_DEV
    for preprodcution system, the name is PACE_PREPRD,
    for production system, it is PACE_PRD.
    Could anyone let us know, what global logic should be developed so that the process chain runs smoothly in all the systems?
    Thanks in advance for the reply.
    Regards,
    Nitin Chopade.

    Nitin Chopade,
    Put the path /file name on the selection screen.
    parameters: p_output(120). 
    Then use that selection-screen field in place of the hard coded value.
    You can then change the path / file name at will.
    or
    Change the file '
    A0001SAP\PACE_PRD\interface\BI\BO\PYD_PDL.CSV'
    to                      '
    A0001SAP\PACE_&SYSID&\interface\BI\BO\PYD_.CSV'
    Assign the hard coded value to a variable, w_variable.
    Before you use the file:
    replace '&SYSID&' in w_variable with sy-sysid
    Bruce
    Edited by: Bruce Tjosvold on Dec 20, 2011 4:09 PM

  • How to add event handling for a menu?

    hi,
    I have created a menu and few mneu items.
    for eachmenu itme , i did event handling and it is workign fine.
    it was like this
    menuItem = new JMenuItem("Exit",KeyEvent.VK_X);
    menuItem.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_X, ActionEvent.ALT_MASK));
    menuItem.addActionListener(this);
    menu.add(menuItem);
         public void actionPerformed(ActionEvent e)
    JMenuItem source = (JMenuItem)(e.getSource());
    String s = "Action event detected. Event source: " + source.getText();
    System.out.println(s);     
    public void itemStateChanged(ItemEvent e)
    JMenuItem source = (JMenuItem)(e.getSource());
    String s = "Item event detected. Event source: " + source.getText();
    System.out.println(s);
    now int he second menu i don't have any menu item and i want to do the event handling for the menu itself. any ideas how to do it. following is the code for the menu
    //Build the second menu.
    menu2 = new JMenu("Options");
    menu2.setMnemonic(KeyEvent.VK_O);
    menuBar.add(menu2);
    menu2.addActionListener(this);     //this does nto work

    You were on the right track. However, selecting a menu is different from selecting a menu item. MenuItem chucks an ActionEvent and Menu will send an ItemEvent.
    If you pile all action output to one actionPerformed method then be careful of your assumptions on what the source type will be. If by any chance the Menu has sent an ActinoEvent then your code will have caused a ClassCastException.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class MenuTest implements ActionListener, ItemListener {
        JMenuItem menuItem;
        JMenu menu1, menu2;
        JMenuBar menubar;
        JFrame frame;
        public MenuTest() {
            frame = new JFrame("MenuTest");
            frame.setDefaultCloseOperation(frame.EXIT_ON_CLOSE);
            menubar = new JMenuBar();
            frame.setJMenuBar(menubar);
            menu1 = new JMenu("File");
            menu1.setMnemonic(KeyEvent.VK_F);
            menuItem = new JMenuItem("Exit",KeyEvent.VK_X);
            menuItem.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_X, ActionEvent.ALT_MASK));
            menuItem.addActionListener(this);
            menu1.addItemListener(this);
            menu1.add(menuItem);
            menubar.add(menu1);
            //Build the second menu.
            menu2 = new JMenu("Options");
            menu2.setMnemonic(KeyEvent.VK_O);
            menu2.addActionListener(this); //this does not work
            menu2.addItemListener(this); // use this instead
            menubar.add(menu2);
            JPanel panel = new JPanel();
            panel.setPreferredSize(new Dimension(100,100));
            frame.getContentPane().add(panel);
            frame.pack();
            frame.show();
        public void actionPerformed(ActionEvent e)
            String s = "Action event detected. Event source: " + e.getSource();
            System.out.println(s);
        public void itemStateChanged(ItemEvent e)
            String s = "Item event detected. Event source: " + e.getSource();
            System.out.println(s);
        public static void main(String[] args) {
            new MenuTest();
    }

  • FBZ4 - Menu Path?

    Hi Friends,
    I have been trying for finding menu path for transaction "FBZ4",But i coudnot find out even i tried in each and every corner of Menu in SAP & other forums and check with friends.I couldnot find.Finally i come to you.Please provide the Menu Path for FBZ4 transaction.
    Thanks In advance
    Sap Guru

    hi
    it is nothing but F-58. Accounting -> Financial Accounting  -> Accounts Payable -> Document Entry -> Outgoing Payment ->F-58 - Post + Print Forms
    hope ur question get answred
    regards
    DD

  • Choosing the Return code for a scenario

    Hi,
    I execute an ODI scenario "AAA" from Unix with the command startscen.sh
    Can I control the return code of called screnario?
    IN the scenario "AAA" (=package) i have different path with ko/ok. I would like to choose a specific return code for each ko path. Is it possible ?
    Thank you very much.
    Best regards,

    How you creating this file? Why you couldn't create without enter?
    But, however, see solution in that case:
    File 1.sql:
    select 1 from dual;File 2.sql:
    select 2/0 from dual;File 3.sql:
    select 3 from dual;File exec_sql.sql:
    WHENEVER SQLERROR EXIT
    @&1
    @&2
    @&3And you need to generate file as this "test.sql":
    define f1 = 1.sql
    define f2 = 2.sql
    define f3 = 3.sql
    @exec_sql &f1 &f2 &f3Regards,
    Malakshinov Sayan

  • MENU PATH FOR FV11 T CODE

    Dear
    I am looking for menu path for FV11, FV12 and FV13 transactions.
    Can some body help on knowing this.
    Thanks,
    Dhanu

    hi
    i doubt about path of FV11
    i think u need to use FV11 directly in command field
    Path of other trnx can be find using T code  Search_Sap_Menu
    Vishal...

  • Pls tell the revenue account determination Menu Path or Tx Code for PO

    Hi all,
    Pls tell the revenue account determination Menu Path or Tx Code for PO as we have VKOA in SD, or tell me how to do G/L account determination for PO
    Thanx
    Vikas Chhabra

    hi
    u can do it in spro>mm>Valuation and Account Assignment>Account Determination>Account Determination Without Wizard>Configure Automatic Postings
    t code is OMWB or OBYC
    take help of following link
    http://www.sapstudymaterials.com/search/label/0170-MM-FICO%3A%20Automatic%20Account%20Determination
    regards
    kunal

  • What is the T CODE for the below menu ......

    Hi SAP Gurus,
    Need your quick responce.....
    when i go to SPRO>Cross-Application Components>General Application Functions>Cross-Application Document Numbering>Argentina-->Assign Document Class to Document Type.
    I want to know the T CODE of "Assign Document Class to Document Type" as it is showing SPRO to me hence i went to menu Additional Information>Display Key> IMG Activity.....
    Now i see "OFFDOCNO_AR_003" displayed against Assign Document Class to Document Type.
    I guess this is not the T CODE i try all possible option like "AR_003", "OFFDOCNO_AR_003"  etc as a T CODE for Assign Document Class to Document Type but is not showing....
    Please advice me what could be the T CODE of the above menu path........
    Regards.

    Hi,
    Not all activities are assigned a TCode.  However, you can create a TCode if you want.
    Go to TCode SE93.
    Give a TCode (as you require, but it should start with Z) like ZTBL and click on create.
    In the resulting screen, give a description and select 'Parameter Transaction'.
    In the next screen, give the following values.
    Transaction - SM30
    Skip initial screen - enabled
    Inherit GUI Attributes - enabled
    Add the following in 'Default Values' table at the end.
    VIEWNAME - V_T003_B_I
    SHOW - X
    Save this transaction select a package other than local (else you cant transport)
    Now you can access the table maintenance thru the TCode you created (ZTBL in this example).
    Hope this helps.
    Ravi.

  • T-code to Menu path?

    Hello experts I'm new to SAP, can someone tell me how to find out the menu path from the T-Code. If I enter the T-Code I go to the screen but I can't figure out the menu path for it. Is there a way to find this out? Please help.
    Thanks in advance
    Tina

    Dear Tina,
    Is it a Standard Transaction by SAP?
    1)Once you log in to SAP Click on Menu >> SAP Menu.
    Now you can see the Standard Path of SAP
    2) Extras>> Setiings >> Tick the box for Display technical Settings.
    Now when you drilldown the folders you will be able to view the T-codes in the folders.
    3) You need to find that it belongs to which Moudule, Like FI , MM, SD etc then go to the specific folder of the module and do a drill down. You will find the T-Code.
    If you find it difficult, then you can create you own T-Code Path in Favorites Folder, by right clicking on Favorites folder you can add a transaction or add a subfolder.
    Pls assign points if found useful.
    Thanks & Regards
    Sanjay Marathe

  • HOW TO FIND MENU PATH FOR A TCODE

    PLZ TELL ME HOW TO FIND MENU PATH FOR A TCODE .
    I HAVE MADE A MENU ENHANCEMENT  WITH TCODE +DW2.
    IT MENU PATH IS NOT TRACEABLE.

    Hi Madan,
    It is in the transaction code <b>S001</b>.
    Check my previous post on this.
    It is not listed on the SAP Menu. Thats why SEARCH_SAP_MENU returns nothing...
    <b>Go to the Initial Screen and then type /n in the TCODE.
    From there now type S001 to go to transaction S001.</b>
    The other ways do not work. Like combining both in a single step : "/ns001".

  • Menu path for transactions

    would someone please tell me how to find the menu path for any given transaction.
    thank you

    Hope below link is useful
    http://www.sap-basis-abap.com/sapbs007.htm
    Version 4.6C, 4.7 , ECC 5 & 6
    Transaction code - search_sap_menu
    Version 3.0x
    go to transaction SE43
    click Utilities - Global Search
    Global search in area menu - key in '*'
    Find - key in the transaction code you want to find
    A list will be display.  The line with the word Functions is the Main Menu.
    Pls assign points as way to say thanks

Maybe you are looking for

  • Your payment method has been declined. why?

    hello i having a problem with cyprus app store on my mac. i'm trying to download something and it says that my payment methos has been declined, please enter a valid payment method information. i have enter again my information and still the same pro

  • Splash not working in Webhelp

    I'd like to add our logo as a splash page that appears for a few seconds each time online help is accessed by the user.  I tried using the design-time controls, and the logo will appear fine when viewing just the page from within Robohelp.  However,

  • I cant use my id in itunes

    i have create my id, but when i tried to use it in itunes store it shows that u dont use this id yet, preview ur account, and i use my credit card information. but its not working. its shows that contact for support to complete transaction

  • Patch management solution for Mac software?

    Does anyone know of a solution to managing the update/patching of Mac software other than the Mac App Store for home users? I know there are enterprise solutions, but I am looking for something that is comparable to Secunia PSI.

  • Self Registration API Question

    Since there isn't documentation for the wwsso APIs I want to use. Can I view it via SQLPlus? null