SPRO short cut T-Codes

Dear all Guru,
it's very tedious to go to SPRO by  navigation.
can anybody give the list of short cut T-Codes for SPRO transactions.
and also if i need to see the T - codes for any transaction in SPRO how can i get it?
Regards,
Vimlesh

Go to SPRO Node and Right Click and Select Display Documentation and here in ID field you will get the trxn code for node. (Last four Chars)
Else go to SPRO-Menu- Additional Information-Display key-IMG activity.
For some nodes Trxn codes may not work.

Similar Messages

  • Want to add by code a short cut of a pdf file to an rtb in vb6, using adobe reader 9

    Using vb6 code, I add a pdf file from a list to a richtextbox.
    On versions 5 & 6 a "short cut" is placed in the rtb which is what I want so that the document can be double-clicked to view at a later date.
    On versions 8 & 9 the file opens automatically "within" the rtb.
    Can I make version 9 work the same as earlier versions.
    Thanks

    We have PDF documents stored on server-side, the ActiveX control and Adobe Reader are installed on client-side.
    When users open our web page, click our "Print weekly report directly" button, the ActiveX control on client will be called, and perform the above coding. It tries to download the PDF document from server to client, and pass it to the printer on client silently by using FilePrintSilent function.
    The report can be printed, but not correct. It involves some unexpected characters which should be English or Traditional Chinese originally, as shown in the attached picture.
    Thanks in advance!
    William

  • How to attach short cut keys to open a menu in a menubar

    Hi,
    I have three menus say File, Edit, Help in the MenuBar and i want to open these menus when i press short cut key from Key board, say Alt+F for File menu, Alt E for Edit menu and so on. When the file menu is shown i want to select the New menuItem in it by CtrlN.
    When i press Alt key the letter F in File, E in Edit should be underlined.
    So can you please give me some sample code for this.
    Thanks.

    Hi. Here is an example. It works on Windows. I am not sure about other platforms.
       import java.util.AbstractMap.SimpleEntry;
    import java.util.Map.Entry;
    import javafx.application.Application;
    import javafx.scene.Scene;
    import javafx.scene.control.*;
    import javafx.scene.effect.DropShadow;
    import javafx.scene.effect.Effect;
    import javafx.scene.effect.Glow;
    import javafx.scene.effect.SepiaTone;
    import javafx.scene.image.Image;
    import javafx.scene.image.ImageView;
    import javafx.scene.layout.VBox;
    import javafx.scene.paint.Color;
    import javafx.stage.Stage;
    import javafx.scene.layout.*;
    import javafx.scene.*;
    import javafx.geometry.*;
    import javafx.application.Application;
    import javafx.collections.ObservableList;
    import javafx.geometry.Pos;
    import javafx.scene.*;
    import javafx.scene.control.*;
    import javafx.scene.image.ImageView;
    import javafx.scene.layout.*;
    import javafx.stage.Stage;
    public class MenuSample extends Application {
      public static void main(String[] args) { launch(args); }
      @Override public void start(final Stage stage) {
        // create some menus.
        final Menu fileMenu = new Menu("_File");
        fileMenu.getItems().addAll(
          new MenuItem("_Open"),
          new MenuItem("_Save"),
          new SeparatorMenuItem(),
          new MenuItem("_Exit")
        final Menu playMenu = new Menu("_Play");
        playMenu.getItems().addAll(
          new MenuItem("_Start"),
          new MenuItem("_Stop"),
          new MenuItem("_Pause"),
          new CheckMenuItem("_Rewind")
        final Menu helpMenu = new Menu("_Help");
        helpMenu.getItems().add(
          new MenuItem("About")
        final MenuBar menuBar = new MenuBar();
        menuBar.getMenus().addAll(fileMenu, playMenu, helpMenu);
        final VBox layout = new VBox(10);
        layout.getChildren().addAll(menuBar);   
       // layout.setAlignment(Pos.CENTER);
        layout.setStyle("-fx-background-color: linear-gradient(to bottom, silver, derive(silver, 80%));");
        final Scene scene = new Scene(layout, 400, 525);
        stage.setScene(scene);
        stage.show();
      //  ObservableList<Node> menuNodes = ((HBox) menuBar.lookup("HBox")).getChildren();
       // Control menuNode = (Control) menuNodes.get(menuNodes.size() - 2);
       //  menuNode.setMaxWidth(Double.MAX_VALUE);
       // HBox.setHgrow(menuNode, Priority.ALWAYS);
    }

  • Short cut key for created menu

    Hello All:
        Want to know if it is possbie lt put a short cut key to a addon menu...
        I can't attach it in SBO because when it starts menu has not been generated yet, and it automatically loose it. I can't seem to capture combination keys in main main desktop using keysdown event type. Is there anything that I can use??
    Sincerely Yours

    Hello Bo,
    You may try the form key down event. sample code:
    SHIFT+P: open BP
    CTRLSHIFTQ: open sales quotation
    Public Sub ItemEventHandler(ByVal FormUID As String, ByRef pVal As SAPbouiCOM.ItemEvent, _
        ByRef BubbleEvent As Boolean) Handles oApp.ItemEvent
          If pVal.EventType = SAPbouiCOM.BoEventTypes.et_FORM_KEY_DOWN And pVal.Before_Action = True Then
                MsgBox("Modifier: " + CInt(pVal.Modifiers).ToString() + " Char precessed" + pVal.CharPressed.ToString())
                If pVal.Modifiers = SAPbouiCOM.BoModifiersEnum.mt_SHIFT Then
                    'SHIFT+P : Open the Business Partner               
                    If pVal.CharPressed = 80 Then
                        oApp.ActivateMenuItem("2561")
                    End If
                ElseIf pVal.Modifiers = SAPbouiCOM.BoModifiersEnum.mt_CTRL + SAPbouiCOM.BoModifiersEnum.mt_SHIFT Then
                    'CTRL+SHIFT+Q: open sales quotation
                    If pVal.CharPressed = 17 Then
                        oApp.ActivateMenuItem("2049")
                    End If
                End If
            End If
    End Sub
    Regards, Yatsea

  • How to handle main vi short cut menu event in subvi

    I am making a thin GUI with a subVI to handle all the events including top VI UI events. I can get most of the events working but not with the short cut menu events. What I did was to pass the top VI control reference to a subVI and then registered for dynamic event. The event refnum is then passed on to another subVI next to it with the actual event structure where the top VI control's short cut event was handled. (using two separate subVIs definitely helped clean up the code, and I don't suspect it is the problem as other events worked fine in this structure)
    After not able to get it to work, I also tried to register the dynamic event inside the event structure of the 2nd subVI mentioned above, which still not working. Your help is greatly appreciated.

    I do have another problem related to handling top VI events in a subVI:  as my top VI controls were set as "Latch When Released", they cannot be located inside the event structure anymore, the result is that even though I can have their events correctly handled, those controls will stay pressed and not returning to the latch state as previously when I had the event structure located in the top VI itself.
    As I have to many controls, I dont want to change their mechanical action state and just wish to have an easier solution. Thanks.

  • Locking out the startup short cut keys

    Anyone know how to get the Intel Macs to not allow the apple-s, apple-v short cut keys on startup? I have a loaner iMac from Apple and noticed that the Open Firmware Password application only keeps the user from switching the startup disk using either the apple-c or option key on startup. Unlike the PPC versions though, it does not stop the other short cut keys.
    So, anyone know how to lock down an Intel Mac like you could with the PPC ones?

    Hi...
    Thanks for reply..
    Can u give me some detailed information.. i.e. what i have to do exactly in the c/c++ code if i will use JNI?
    If possible give me the source code for that..

  • When I login on my When I sign in to a site on my ipad using my email address as ID a short cut of my email address comes up. How can I get rid of it?

    When I sign in to a site on my iPad using my email address as ID a short cut of my email address comes up. How can I get rid of it?

    You can edit keyboard shortcuts in Settings>General>Keyboard>Shortcuts>Edit.

  • Keyboard short cut not working in iOS 6 on iPhone

    I just tried adding a new keyboard short cut on my iPhone 4S with iOS 6 and the short cut will not stay on the phone.  I can enter it and it is added to the list of short cuts until I go back one screen, then the shor cut disappears.  This worked fine under iOS 5 and still works fine on my iOS5 iPod Touch.  Any ideas how to fix this?
    Thanks
    Fred

    I have an iPhone 4 with current iOS.
    I've noticed this over the past few months. I always notice it on the FB app. My short cuts stop working. I will check email or note. I figured restarting the phone would fix it.
    Here's the thing. Obviously I use FB a lot, but this short cut issues never happens in text messages, Whatsapp, or email. Always with FB.
    In fact I noticed that I get sluggish typing performance typing using the FB app whether I use the keyboard short cuts or not.
    Just wondering if this common among iPhone 4 users.

  • Hi. After I have loaded a picture into Photoshop some of the menu tools are greyed out and I cannot use the keyboard short cut, for instance I cannot use Ctrl   T to enter free transform mode. Also the toolbar is so small I cannot see the icons without ge

    Hi. After loading a picture into Photoshop some of the menu tools are greyed out and I cannot use the keyboard short cuts, for instance I cannot use Ctrl + T for free transform, how do I resolve this problem. In addition the tool Icons are so small I have to get close to the screen to see them, is there anyway the Icons can be made bigger without reducing the resolution of the screen.
    Thanks
    Derek

    Are you working on a background layer? If so, Ctrl + T will not work. Press Alt and double-click your background layer to convert to a normal layer (or right-click BG layer and select Layer from Background) and try again.
    If you're working in Photoshop CC 2014 you can go to Preferences > Experimental Features and tick "Scale UI 200% for high-density displays" to make your buttons and icons larger.

  • Can't use down key because it opens automator. Does any one know how to disable this short cut?

    Everytime I press down on down key it opens automator. It doesn't let me delete the app. I don't know what to do, it is very frustating to fill in a chart when I can't use the down key. Does any one know how to disable this short cut?

    Are you talking about the Down Arrow key? To my knowledge there is no way to use that key as a shortcut for anything. But look in the Keyboard section of System Preferences and the Keyboard shortcut tab.

  • I am trying to copy and paste a work document into my online class. POP up states that Cut, Copy, and Paste are disabled by my Modzilla broser and that I could use key board short cuts or visit the website.

    '''bold text'''Want to copy & paste word doc onto my online class discussion post. Unable to. I either need directions on how to use key board short cuts. I have visited the Modzilla web site like it also stated but am unable to find an answer to this.

    See:
    *http://kb.mozillazine.org/Granting_JavaScript_access_to_the_clipboard
    *https://addons.mozilla.org/firefox/addon/allowclipboard-helper/

  • Can I create a short cut on the home screen to accessibility settings on an ipad

    Hi, have a partially sighted sister who uses an iPad, is there an easy way for her to switch between voice over on/off and white on black? without having to go into settings and then scroll down to the appropriate menu
    thanks

    Patrick Duncan wrote:
    Can I create a short cut on the home screen to accessibility settings on an ipad
    Patrick ~ Yes, see this post:
    Shortcut to Bluetooth Settings
    ...For quick access to Accessibility settings, set up the shortcut icon with this URL(Homepage) — case sensitive:
    prefs:root=General&path=ACCESSIBILITY

  • G550 - short cuts no longer working

    Forgive if I'm posting this in the wrong location. Please advise if I should post this elsewhere.
    I have a G550 and it's been great. But today all my shortcuts to my applications stopped working.
    2 issues/examples:
    1) If I try to launch a web browser from my taskbar shortcut, I get asked which program I'd like to use to open it. I can select the appropriate one but I can't "save" that choice. I can launch the web browser, but then it asks if i want to save the firefox.exe file. I click cancel and the browser works but I have to go through that process each time. Same thing happens with IE, and Chrome. Tried uninstalling and reinstalling. Same result.
    Same issue with other taskbar short cuts.
    2) I go to start, programs, MS office, MS Word. I get an error message that the application is missing. But I can open a previously saved Word (and other MS Office applications) file with no issue. So the application is there. Just can't navigate to it the "traditional" way.
    Any idea what's going on? My anti virus (AVG premium) is up to date and working fine. Don't suspect a virus but not sure. Extensive scans find no issues.
    Solved!
    Go to Solution.

    forgot about that. That did the trick.

  • Is it possible to create a SHORT CUT key for a Workspace in CS 5.5 ?

    Is it possible to create a SHORT CUT key for a Workspace using In Design CS 5.5 ?

    Edit Menu > Keyboard Shortcuts > Product Area: Window Menu > Workspace Load 1st, 2nd, 3rd, etc. Create a new set and assign a shortcut

  • Key mapping (short cut) in JDeveloper

    What is the key mapping (short cut) in JDeveloper for:
    1. highlight the calling function name in the file, how the go to the function definition part (in the same or different file)?
    2. highlight the class name in the file, how to open the file of that class?
    Thanks in advance!

    any help please...

Maybe you are looking for

  • Deploy Shared Variables

    I'm having an issue with using SVE. I'm using LV 8.6 (cannot upgrade to 2010 at this time, have to "make it work"). I've used shared variables before with an HMI and PXI but my setup is different now: PXI (called my target) that "talks" to different

  • Creative Cloud subscription invoicing per email

    Is it possible to get invoices for Creative Cloud subscription periodically per email with pdf attached?

  • Printing a calendar, help!

    Hi, I never used this feature before but now I'd like to create a calendar and print it at home. I exported it in pdf but I cannot manage to set it in order to fit an A4 sheet. The problem is it prints in one sheet the photo and in the other the cale

  • HT201412 My iphone 5 doesnt turn and I put it on charge but still doesnt turn on

    My iphone 5 doesnt turn and I put it on charge but still doesnt turn on So what should I do ?

  • Major problem with textfields set to TLF

    Looks like the garbage collector is not removing movieclips that have textfields set to TLF. I'm using Flash Builder's profile inspector and TLF brings in a bunch of objects and prevents the clip from being removed by the garbage collector (including