How to handle Keyboard command (CTRL+SHIFT+f3)

Hi Gurus,
I have handle this keyboard command(CTRLSHIFTf3) , when selection screen is displayed.'
when user pressed (CTRLSHIFTf3) then mode of the call transaction should change.
can it be handled in at user command event?
plz suggest the way it can be done.
Amresh.

Read the ABAP help about selection-screen and user-command.
Though why someone would specifically choose CTRLSHIFTF3 to be the key sequence, I've no idea.  Is this a homework question?

Similar Messages

  • Brand new 15" MacBook Pro Retina - unplugged from Thunderbolt Display and Keyboards today find keyboard alpha-numerics not working; except the function keys, delete key, tab key, command/ctrl/shift/alt/fn and arrow keys; and 7/8/9/u/o/j/l nudge cursor

    Brand new 15" MacBook Pro Retina - unplugged from Thunderbolt Display and Keyboards today find keyboard alpha-numerics not working; except the function keys, delete key, tab key, command/ctrl/shift/alt/fn and arrow keys; and 7/8/9/u/o/j/l produce cursor nudges.

    It's a new machine - and the Thunderbolt Display is meant to work with it. You need to just make an appointment at your local Apple Store and have them fix whatever is wrong.
    If you like, you could always try a SMC reset and a PRAM/NVRAM reset to see if either of those will get your keyboard back in working order...
    Clinton

  • What is the Mac equivalent of the command "ctrl shift  I"  for a PC

    HI
    what is the Mac equivalent of the command "ctrl+shift + I"  for a PC to get to the cookies and delete them

    It varies depending on which browser you're using. In Safari, choose Preferences from the Safari menu, click on the Privacy tab, and then on Details.
    (101212)

  • How to use keyboard shortcut OPTION SHIFT COMMAND PLUS?

    The application I am using has two keyboard shortcuts for changing the KERN of some text:
    TIGHTEN = OPTION + SHIFT + COMMAND + MINUS
    LOOSEN = OPTION + SHIFT + COMMAND + PLUS
    The TIGHTEN command works fine but the LOOSEN command doesn't. If I plug in an external keyboard then it works fine as long as I use the or on the NUMPAD.
    Any suggestions?

    Thanks a lot for your post. I tried your suggestion and indeed got the Excel short-cut back. It wasn't obvious as "Mission Control" and "Application Windows" are mapped to F9 and F10 (rather than the ctrl-shift-down" combo).
    It's ok since I don't really have any use for shortcut launching "Mission Control" or "Application windows".

  • How to disable keyboard shortcut "Control Shift Down"

    Hi,
    I'm mildly surprised that I couldn't find the answer to this little problem I have.
    I'm running a PC version of Excel through VMWare under Mac OS X 10.7, and it works perfectly fine except that the keyboard shortcut for selecting continguous cells in a column - Control-Shift-Down - produces a weird "slow-mo" version of F10, which is showing all windows in the current application.
    First of all, I hardly see this "feature" to be of any practical use as you can accomplish the same (without the slow-mo effect) by hitting F10 by default.
    Secondly, this prevents me from doing something actually useful in Excel which is selecting continguous cells in a column.
    Can someone please give a tip to disable this useless shortcut? I've looked everywhere in Keyboard settings in Preferences without success.
    Can't believe no one else has the same issue.
    TIA
    -Wk

    Thanks a lot for your post. I tried your suggestion and indeed got the Excel short-cut back. It wasn't obvious as "Mission Control" and "Application Windows" are mapped to F9 and F10 (rather than the ctrl-shift-down" combo).
    It's ok since I don't really have any use for shortcut launching "Mission Control" or "Application windows".

  • Programmatic execution of Save All command (ctrl-shift-s)

    I have a set of Projects, each configured with code for an RT target. I have written a VI server application to open each project, and open the front panel of the main VI for the RT target.
    Once that front panel is up, I can go to the menu bar, select File, and then select Save All. However, I need to do this programmatically. With VI server, I only see Save->Instrument, which only saves the main VI, not all the subVIs. How do I do the equivalent of Save All?
    I have tried getting the list of all opened VIs and saving them individually, and also tried the Mass Compile, but both of these take many hours to complete, whereas the manual Save All just takes a few seconds. I have also tried accessing the Windows utility USER32.DLL:keybd_event to press the ctrl-shift-s keys programmatically, but that doesn't seem to work either.
    Thank you in advance for your assistance.

    I believe the thread you linked will only save the vi's, if you have libraries or controls or other things you want to save then you might try this.
    http://lavag.org/topic/15443-scripting-project-save-all/

  • How to handle user command method in module ALV Grid

    HI Experts,
                     I have 3 containers grid. 
                     GR_GRID              TYPE REF TO CL_GUI_ALV_GRID,
                     GR_GRID1              TYPE REF TO CL_GUI_ALV_GRID,
                     GR_GRID2              TYPE REF TO CL_GUI_ALV_GRID.
                     Please advise me how can I insert, save, delete 3 Module ALV Grid in method user command. How can i get which grid button (save, insert, delete) is clicked and how can i control those grid.
                    Thks in advance.
    CLASS LCL_EVENT_RECEIVER DEFINITION.
      PUBLIC SECTION.
        METHODS :
            HANDLE_TOOLBAR
                  FOR EVENT TOOLBAR OF CL_GUI_ALV_GRID
                                IMPORTING E_OBJECT E_INTERACTIVE SENDER,
            HANDLE_USER_COMMAND
                  FOR EVENT USER_COMMAND OF CL_GUI_ALV_GRID
                                IMPORTING E_UCOMM,
            HANDLE_DATA_CHANGED
                    FOR EVENT DATA_CHANGED OF CL_GUI_ALV_GRID
                          IMPORTING ER_DATA_CHANGED
                                    E_ONF4
                                    E_ONF4_BEFORE
                                    E_ONF4_AFTER,
            HANDLE_DOUBLE_CLICK
                     FOR EVENT DOUBLE_CLICK OF CL_GUI_ALV_GRID
                     IMPORTING E_ROW
                               E_COLUMN,
            HANDLE_HOTSPOT_CLICK
                      FOR EVENT HOTSPOT_CLICK OF CL_GUI_ALV_GRID
                           IMPORTING E_ROW_ID
                                     E_COLUMN_ID
                                     ES_ROW_NO.
    ENDCLASS. "(LCL_EVENT_RECEIVER DEFINITION) 
    METHOD HANDLE_USER_COMMAND.
         CLEAR G_CODE.
        G_CODE = E_UCOMM.
        CASE G_CODE.
          WHEN 'INSERT'.
            MESSAGE 'insert' TYPE 'I'.
           APPEND INITIAL LINE TO GT_MAIN.
          WHEN 'SAVE'.
           MODIFY ZTNBOOK FROM GT_MAIN.
            MESSAGE 'save' TYPE 'I'.
          WHEN 'DELETE'.
           DELETE FROM ZTNBOOK WHERE B_ID EQ GT_ZTBOOK-B_ID.
            MESSAGE 'delete' TYPE 'I'.
        ENDCASE.
        IF NOT G_CODE IS INITIAL.
      PBO, PAI
         CALL METHOD CL_GUI_CFW=>SET_NEW_OK_CODE
           EXPORTING
             NEW_CODE = G_CODE.
         CLEAR G_CODE.
        ENDIF.
      ENDMETHOD.

    Hi,
    Before posting, Search in SDN.
    See the below tread it will help you.
    Re: Get table for cl_gui_alv_grid

  • How To handle User Command in Sub Screen .

    How can we handle Sy-ucomm in sub screen .

    You do that in the PAI of the screen (Process After Input)
    MODUE PAI.
    CASE SY-UCOMM.
    WHEN 'XXXX.
    WHEN 'YYY'.
    ENDCASE.
    Regards,
    Ravi

  • Command-Ctrl-Shift-4. I did this, it mad ethe camera sound, but thats all.

    I used this key combination to take a screen shot, so I thought. It made the picture snapping noise, but I cannot find a file of where it could be. Anyone know what I was doing?

    > I guess the control just keeps it from saving the picture.
    Yup
    If you don't want them saved as .png check out changecapture
    If posts are Helpful or Solve your question, please award points as appropriate

  • How to incorporate Command,Option,Shift and Control keys into AppleScripts?

    How do I incorporate Command,Option,Shift and Control keys into AppleScripts?
    for example:-
    If Control key is depressed then
    do something
    elseif Option key is depressed then
    do something else
    end if
    Lennox

    I am trying to do this:
    tell application "Finder"
    set cv to current view of Finder window 1
    if ( option key down of theEvent ) then
    set current view of Finder window 1 to list view
    elseif ( control key down of theEvent ) then
    set current view of Finder window 1 to column view
    else
    set current view of Finder window 1 to icon view
    end if
    end tell
    but since I am not quite familiar with this I am not getting it right
    Any suggestions?
    Thanks.
    Lennox

  • Ctrl + Shift + T doesn't work

    I am using the new Firefox Developer Edition as a stand-alone on Ubuntu, so I can still use the "old" version, too.
    Everything seems to be working fine, as in I am logged in and setup sync.
    However, I cannot re-open a closed tab with the keyboard shortcut Ctrl + Shift + T, nothing happens when I try.
    When I click on "About Firefox Developer Edition", it shows these details:
    Firefox
    Developer Edition
    36.0a2 (2014-12-09)
    Firefox Developer Edition is up to date
    You are currently on the aurora update channel.
    There is already a question just like this one
    https://support.mozilla.org/en-US/questions/1022757#question-reply
    but the only answer does not solve it.
    "browser.sessionstore.max_tabs_undo" is set to 10
    "browser.sessionstore.max_windows_undo" is set to 3

    Yeah I had that issue too i had to hit Command+Q a couple times then do the CTRL+OPTN+ESC or CTRL+SHIFT+EJC.
    Good Luck; Hope this Helps -

  • I need an alert message if I press ctrl shift b

    Hi All,
    I Need an alert message if I Press "ctrl+shift+b"(to make the selected text bold). Is this possible?
    Regards,
    Chinna

    Create a keyboard shortcuts (ctrl + shift + b) for your script and try...
    Code must be like this:
    alert("Bold Shortcut....");
    app.selection[0].fontStyle = "Bold";
    P.S.: you have to set conditions for bold, bold italic, etc. 
    Vandy

  • File Save As versus Ctrl+Shift+S

    Is there a way to make the menu function File>Save As and the keyboard shortcut Ctrl+Shift+S behave the same exact way. 
    When using the menus, the file automatically opens with the new name.  It also automatically makes it a PSD file (if something photoshoppy has been done to it).  It also doesn't make it a copy.
    When using the keyboard, you have to select the file type from the list.  It doesn't automatically open the file with the new name (frustrating if you are still editing).  And it always makes it a copy.
    Is there a setting I have turned on or off?  This behaviour runs through the CS5 suite, Photoshop, InDesign, and Illustrator. 
    Please send any suggestions or tips to correct this.  It is so much easier to use the keyboard short cuts but takes longer due to the behaviour.
    Thanks,
    Gilley Estes
    Adobe CS5 Suite

    Thank you for the responses.  I suspect I haven't explained the situation very well.  My first detailed explanation was deleted (by me after accidentally hitting Ctrl+A then delete; there isn't an undo in this forum...).
    Let say for example I have opened a JPG called Image_Tree.jpg.  I do some photoshoppy things to it, like add a layer and an effect.
    If I press Ctrl+Shift+A, the Save As dialog opens.  I change the file name to Image_Tree_Modified but the file type remains at JPG.  I have to manually select PSD.  It also automatically makes it a COPY.  So I have to delete the word COPY from the file name.  After clicking Save (or pressing Enter), my JPG file is still the one open in Photoshop.  It doesn't automatically open the newly saved PSD file.  I have to close the JPG and open the PSD.  This can be a problem if I continue making edits to the image and accidentally press Ctrl+S without first opening the new PSD file. It overwrites the JPG file with my changes.
    Now taking the same JPG file with the photoshoppy elements...
    If I go to File>Save As, basically things behave in a way I would call normal.  The file type is automatically set to PSD and the file IS NOT specified as a COPY.  Also after clicking Save (or pressing Enter), my newly saved PSD file is automatically opened for me to continue working on it.
    Maybe it is just me but I would expect the behavior between File>Save As and Ctrl+Shift+S to be exactly the same and they aren't.  This is true for the products across the CS5 suite.  Photoshop, InDesign, and Illustrator.
    I have tweaked a few keyboard settings but only to make some hotkeys.  For example, Ctrl+Shift+C is Image Crop on my computer.  Ctrl+Q is Image Trim.  Other than that, I have left the system the same as it was out of the box.  In fact I had to replace my personal settings one time by renaming a file then launching Photoshop again.  This undid all my personal settings.  The only ones I have reset are the one mentioned above.
    I hope this very long response (sorry for the length) helps explain better what I am noticing and asking.
    Thanks again for the responses and any help.
    Regards,
    Gilley Estes

  • WiFi connection is dropped on CTRL-SHIFT-Eject

    Hi,
    I use the keyboard shortcut CTRL-SHIFT-Eject to switch off my display and lock the computer when I am leaving my desk.
    Unfortunately, this also seems my WiFi Connection to drop.
    Is there any way I can prevent this?
    Thanks,
    equi

    Hi admisi
    This issue is very strange. I have a Satellite P20 and my e800 is also connected via the USB cable but I really have no this kind of problems. The wireless connection to my router is configured on both units and I can use it both on the same time (in this case I usually remove the PDA from the cradle).
    If I understand you right you use just one WLAN. Do you have the same problem if you remove PDA from the cradle?

  • My Mac has lost the keyboard command to zoom in and out (Apple/shift/ /-)  How can I restore this?

    My Mac has lost the keyboard command to zoom in and out (Apple/shift/ /-)  How can I restore this?

    try doing an SMC reset, the following article tells how to do this:
    http://support.apple.com/kb/HT3964
    also go into your keyboard options and make sure the settings are correct there.

Maybe you are looking for

  • Reg:ALE configuration

    Hi.. I am trying to do ALE configuration for inbound IDOC. I have created  RFC destination on XI client using transaction SM59 and then a port  using IDX1. after that i have executed the transaction we20 on the  SAP system and added the IDOC basis ty

  • Time machine volume does not appear but backup works..

    Hi. I have a Sno Leo server used for Time Machine backups. When I try to add a bew user to the backup, the backup volume does not appear (Time Machine Prefs > Select disk). The backup clients that have been previously set up work as normal.

  • Realtek hd audio high cpu usage

    hi i have a hp 2000 notebook this is a new pc and ive been having trouble with the cpu usage and the realtek hd audio driver for some reason if theres sound comming from the speakers or not norton will pop up and tell me theres high cpu usage and eve

  • Can't find ROI Palette

    Just purchased the Vision Development Module and I'm trying to extract an ROI from a larger picture. But, the ROI palette does not appear in the Vision Utilities Palette Attachments: NoRoi.JPG ‏21 KB

  • Block navigation/scroll bar problem-- I'm really stuck on this one.

    I have a tabular form with a control block text item where a value is entered and is used in the default "where clause" of another block. All the items on the form are display items as it is designed to only retrieve records-- i.e. no DML. The proble