Key Mapping Enter to Tab

Hi Java experts,
In my application I need to map the Enter key on the number pad to the Tab key. I need this to happen EVERYWHERE on EVERY screen in the app. Basically I just want to do a field advance every time this key is pressed. I do have a common main panel on which I can perform a key mapping. Here is my failed attempt to make it happen:
AbstractAction changeFocusAction = new AbstractAction() {
  public void actionPerformed(ActionEvent e) {
    FocusManager.getCurrentManager().focusNextComponent();
getPanel().getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW).put(
        KeyStroke.getKeyStroke(KeyEvent.VK_ADD, 0),
        "Advance focus");
getPanel().getActionMap().put("Advance focus", changeFocusAction);This code works except for the fact that when I type the Add key it leaves a "+" symbol in whatever field the cursor just left. Mapping anything through the OS is not an option in my case, it needs to occur in the program. Is there a way to either do a direct key mapping in Java, or at least keep the field advance from leaving "+" symbols everywhere? If you know how to map certain keys to other ones everywhere that would be the most useful solution, since I will need this ability in other places in the app.
Thanks in advance for your suggestions!!!

Hi Java experts,
In my application I need to map the Enter key on the number pad to the Tab key. I need this to happen EVERYWHERE on EVERY screen in the app. Basically I just want to do a field advance every time this key is pressed. I do have a common main panel on which I can perform a key mapping. Here is my failed attempt to make it happen:
AbstractAction changeFocusAction = new AbstractAction() {
  public void actionPerformed(ActionEvent e) {
    FocusManager.getCurrentManager().focusNextComponent();
getPanel().getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW).put(
        KeyStroke.getKeyStroke(KeyEvent.VK_ADD, 0),
        "Advance focus");
getPanel().getActionMap().put("Advance focus", changeFocusAction);This code works except for the fact that when I type the Add key it leaves a "+" symbol in whatever field the cursor just left. Mapping anything through the OS is not an option in my case, it needs to occur in the program. Is there a way to either do a direct key mapping in Java, or at least keep the field advance from leaving "+" symbols everywhere? If you know how to map certain keys to other ones everywhere that would be the most useful solution, since I will need this ability in other places in the app.
Thanks in advance for your suggestions!!!

Similar Messages

  • Map "Enter" to "Tab"

    Could someone please provide an example of how to map the "enter" key to the "tab" key when the focus is in a given ComboBox?
    thanks!!

    here's a simple demo using textfields - tab or enter to navigate the textfields
    import java.util.*;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    class Testing extends JFrame
      public Testing()
        setLocation(300,200);
        setDefaultCloseOperation(EXIT_ON_CLOSE);
        JTextField[] tf = new JTextField[5];
        JPanel jp = new JPanel(new GridLayout(tf.length,1));
        Set forwardKeys = new HashSet();
        forwardKeys.add(KeyStroke.getKeyStroke(KeyEvent.VK_TAB,0));
        forwardKeys.add(KeyStroke.getKeyStroke(KeyEvent.VK_ENTER,0));
        jp.setFocusTraversalKeys(KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS,forwardKeys);
        for(int x = 0; x < tf.length; x++)
          tf[x] = new JTextField(10);
          jp.add(tf[x]);
        getContentPane().add(jp);
        pack();
      public static void main(String args[]){new Testing().setVisible(true);}
    }

  • Enter and tab keys no longer work

    Good morning.
    My enter and tab keys are no longer working within a text box. Could it be the result of installing "Deke Shortcuts" on my system? I never had a problem before the installation....
    Any suggestions would be welcome.
    Thank you.

    Did you try removing the shortcuts?
    I'd suggest resetting your prefes: Adobe InDesign CS4 * Setting preferences

  • Create Row Next to the current row using the enter or tab key

    hi
    May my needs is not correct with web development, so in some pages like Journal Voucher Entery, the user need to add about more than 200 row, if there is any soluation to handle such status please send to me. the user ask not to press add or create button each time.
    thanks

    Hi,
    Excel has no direct feature or option to achieve your goal. We'd better try the macro via VBA code to test. Please see the thread:
    http://excel.tips.net/T003923_Automatically_Moving_from_Cell_to_Cell_when_Entering_Data.html
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    If you have further question about code, I recommend you follow with thread which you posted in MSDN forum:
    http://social.technet.microsoft.com/Forums/en-US/6f5344cf-c1b5-485d-982a-eeec45294f9b/ms-excel-move-automatically-without-pressing-enter-or-tab?forum=exceldev
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    Regards,
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Key Mapping - where can I find a complete list?

    Hi,
    I would like to find a complete list of key mappings which maps all keys on the keyboard to JFN 's "Java Function Numbers". The fmrweb.res covers most keys, but not Escape, Insert, Delete, Pause/Break to name a few.
    i.e.
    JFN
    35 : 0 : "End" : 76 : "Enter Query"
    We are currently using these in our Forms 3.0 application through a vt220 terminal emulator and we are in the process of upgrading to 9i (I believe 6i has the same mapping file).
    Cheers,
    Tim.

    After a painful process of opening a tar at metalink, given references to docs that I can't access/don't exist, then finally given the answer in hex (when Forms wants decimal), I now have the full list which I have converted to decimal for the next guy that hits my problem. phew...
    Here it is: You'll need the decimal for the fmrweb.res file, not the hex (cut and past this into Excel/Word, it should be tab delimited)
    e.g.
    27 : 0 : "Escape" : 32 : "Exit"
    19 : 0 : "Pause / Break" : 36 : "Commit"
    Forms Function     Hex     Dec
    CANCEL     3     3
    CLEAR     0C     12
    SHIFT     10     16
    CONTROL     11     17
    ALT     12     18
    PAUSE     13     19
    CAPS_LOCK     14     20
    ESCAPE     1B     27
    SPACE     20     32
    PAGE_UP     21     33
    PAGE_DOWN     22     34
    END     23     35
    HOME     24     36
    LEFT     25     37
    UP     26     38
    RIGHT     27     39
    DOWN     28     40
    COMMA     2C     44
    PERIOD     2E     45
    SLASH     2F     46
    0     30     48
    1     31     49
    2     32     50
    3     33     51
    4     34     52
    5     35     53
    6     36     54
    7     37     55
    8     38     56
    9     39     57
    SEMICOLON     3B     59
    EQUALS     3D     61
    A     41     65
    B     42     66
    C     43     67
    D     44     68
    E     45     69
    F     46     70
    G     47     71
    H     48     72
    I     49     73
    J     4A     74
    K     4B     75
    L     4C     76
    M     4D     77
    N     4E     78
    O     4F     79
    P     50     80
    Q     51     81
    R     52     82
    S     53     83
    T     54     84
    U     55     85
    V     56     86
    W     57     87
    X     58     88
    Y     59     89
    Z     5A     90
    OPEN_BRACKET     5B     91
    BACK_SLASH     5C     92
    CLOSE_BRACKET     5D     93
    NUMPAD0     60     96
    NUMPAD1     61     97
    NUMPAD2     62     98
    NUMPAD3     63     99
    NUMPAD4     64     100
    NUMPAD5     65     101
    NUMPAD6     66     102
    NUMPAD7     67     103
    NUMPAD8     68     104
    NUMPAD9     69     105
    MULTIPLY     6A     106
    ADD     6B     107
    SEPARATER     6C     108
    SUBTRACT     6D     109
    DECIMAL     6E     110
    DIVIDE     6F     111
    F1     70     112
    F2     71     113
    F3     72     114
    F4     73     115
    F5     74     116
    F6     75     117
    F7     76     118
    F8     77     119
    F9     78     120
    F10     79     121
    F11     7A     122
    F12     7B     123
    DELETE     7F     124
    NUM_LOCK     90     144
    SCROLL_LOCK     91     145
    PRINTSCREEN     9A     154
    INSERT     9B     155
    HELP     9C     156
    META     9D     157
    BACK_QUOTE     C0     192
    QUOTE     DE     222
    I'm going to drop a few more keywords at the end here so hopefully Oracle's Forum search will find this message for those that are looking... maybe even google if we're really lucky...
    Forms 9i Key Mapping 6i fmrweb.res Java Function Number Forms function number JFN : JMN : URKS : FFN : URFD Character mode conversion migration web gui frmpcweb.res ascii codes

  • Function Key mapping

    Hi,
    I have migarted the form from 6i to 10g. But when i am doing *"Ctrl+L"* to see the LOV is not working, i have checked *"fmrweb.res"* for function key mapping it written
    *76 : 2 : "Ctrl+L" : 29 : "List of Values"*
    and i have changed "Ctrl+L" to "Ctrl+l" just to check if capital letter may be the issue but still that doesn't worked for me.
    Than i i used show_lov to populate my LOV, but i want the function key should be used to show lov.
    Can anyone help me on this front.
    Thanks in advance.

    Hi Magoo,
    My item is having lov and if i am using show_lov builtin then i am getting the desire LOV, but Ctrl+L is not working, wven when i am doing Ctrl+k to see the function key mappings its showing me
    funtion Key
    Clear Block F7
    Clear Field F5
    Likewise, but its not showing *"List Of Values Ctrl+L"*.
    Entry of frmweb.res is
    9 : 0 : "Tab" : 1 : "Next Field"
    9 : 1 : "Shift+Tab" : 2 : "Previous Field"
    116 : 0 : "F5" : 3 : "Clear Field"
    38 : 0 : "Up" : 6 : "Up"
    40 : 0 : "Down" : 7 : "Down"
    33 : 0 : "PageUp" : 12 : "Scroll Up"
    34 : 0 : "PageDown" : 13 : "Scroll Down"
    69 : 2 : "Ctrl+E" : 22 : "Edit"
    10 : 0 : "Return" : 27 : "Return"
    120 : 0 : "Ctrl+L" : 29 : "List of Values"
    115 : 0 : "F4" : 32 : "Exit"
    75 : 2 : "Ctrl+K" : 35 : "Show Keys"
    83 : 2 : "Ctrl+S" : 36 : "Commit"
    118 : 1 : "Shift+F7" : 61 : "Next Primary Key"
    117 : 0 : "F6" : 62 : "Clear Record"
    38 : 2 : "Ctrl+Up" : 63 : "Delete Record"
    117 : 1 : "Shift+F6" : 64 : "Duplicate Record"
    40 : 2 : "Ctrl+Down" : 65 : "Insert Record"
    119 : 1 : "Shift+F8" : 66 : "Next Set of Records"
    1005 : 0 : "Down" : 67 : "Next Record"
    1004 : 0 : "Up" : 68 : "Previous Record"
    118 : 0 : "F7" : 69 : "Clear Block"
    66 : 2 : "Ctrl+B" : 70 : "Block Menu"
    34 : 1 : "Shift+PageDown" : 71 : "Next Block"
    33 : 1 : "Shift+PageUp" : 72 : "Previous Block"
    116 : 1 : "Shift+F5" : 73 : "Duplicate Field"
    119 : 0 : "F8" : 74 : "Clear Form"
    122 : 0 : "F11" : 76 : "Enter Query"
    122 : 2 : "Ctrl+F11" : 77 : "Execute Query"
    69 : 3 : "Shift+Ctrl+E" : 78 : "Display Error"
    80 : 2 : "Ctrl+P" : 79 : "Print"
    123 : 0 : "F12" : 80 : "Count Query"
    85 : 2 : "Ctrl+U" : 81 : "Update Record"
    121 : 3 : "Shift+Ctrl+F10" : 82 : "Function 0"
    112 : 3 : "Shift+Ctrl+F1" : 83 : "Function 1"
    113 : 3 : "Shift+Ctrl+F2" : 84 : "Function 2"
    114 : 3 : "Shift+Ctrl+F3" : 85 : "Function 3"
    115 : 3 : "Shift+Ctrl+F4" : 86 : "Function 4"
    116 : 3 : "Shift+Ctrl+F5" : 87 : "Function 5"
    117 : 3 : "Shift+Ctrl+F6" : 88 : "Function 6"
    118 : 3 : "Shift+Ctrl+F7" : 89 : "Function 7"
    119 : 3 : "Shift+Ctrl+F8" : 90 : "Function 8"
    120 : 3 : "Shift+Ctrl+F9" : 91 : "Function 9"
    113 : 0 : "F2" : 95 : "List Tab Pages"
    72 : 2 : "Ctrl+H" : 30 : "Help"
    Entry of frmpcweb.res is
    9 : 0 : "Tab" : 1 : "Next Field"
    9 : 1 : "Shift+Tab" : 2 : "Previous Field"
    85 : 2 : "Ctrl+U" : 3 : "Clear Field"
    38 : 0 : "Up" : 6 : "Up"
    80 : 2 : "Ctrl+P" : 6 : "Up"
    40 : 0 : "Down" : 7 : "Down"
    76 : 2 : "Ctrl+L" : 7 : "Down"
    33 : 0 : "PageUp" : 12 : "Scroll Up"
    34 : 0 : "PageDown" : 13 : "Scroll Down"
    69 : 2 : "Ctrl+E" : 22 : "Edit"
    10 : 0 : "Return" : 27 : "Return"
    120 : 0 : "F9" : 29 : "List of Values"
    81 : 2 : "Ctrl+Q" : 32 : "Exit"
    112 : 2 : "Ctrl+F1" : 35 : "Show Keys"
    121 : 0 : "F10" : 36 : "Commit"
    114 : 1 : "Shift+F3" : 61 : "Next Primary Key"
    115 : 1 : "Shift+F4" : 62 : "Clear Record"
    117 : 1 : "Shift+F6" : 63 : "Delete Record"
    115 : 0 : "F4" : 64 : "Duplicate Record"
    117 : 0 : "F6" : 65 : "Insert Record"
    34 : 3 : "Shift+Ctrl+PageDown" : 66 : "Next Set of Records"
    40 : 1 : "Shift+Down" : 67 : "Next Record"
    38 : 1 : "Shift+Up" : 68 : "Previous Record"
    116 : 1 : "Shift+F5" : 69 : "Clear Block"
    116 : 0 : "F5" : 70 : "Block Menu"
    34 : 2 : "Ctrl+PageDown" : 71 : "Next Block"
    33 : 2 : "Ctrl+PageUp" : 72 : "Previous Block"
    114 : 0 : "F3" : 73 : "Duplicate Item"
    118 : 1 : "Shift+F7" : 74 : "Clear Form"
    118 : 0 : "F7" : 76 : "Enter Query"
    119 : 0 : "F8" : 77 : "Execute Query"
    112 : 1 : "Shift+F1" : 78 : "Display Error"
    119 : 1 : "Shift+F8" : 79 : "Print"
    113 : 1 : "Shift+F2" : 80 : "Count Query"
    85 : 2 : "Ctrl+U" : 81 : "Update Record"
    121 : 3 : "Shift+Ctrl+F10" : 82 : "Function 0"
    112 : 3 : "Shift+Ctrl+F1" : 83 : "Function 1"
    113 : 3 : "Shift+Ctrl+F2" : 84 : "Function 2"
    114 : 3 : "Shift+Ctrl+F3" : 85 : "Function 3"
    115 : 3 : "Shift+Ctrl+F4" : 86 : "Function 4"
    116 : 3 : "Shift+Ctrl+F5" : 87 : "Function 5"
    117 : 3 : "Shift+Ctrl+F6" : 88 : "Function 6"
    118 : 3 : "Shift+Ctrl+F7" : 89 : "Function 7"
    119 : 3 : "Shift+Ctrl+F8" : 90 : "Function 8"
    120 : 3 : "Shift+Ctrl+F9" : 91 : "Function 9"
    113 : 0 : "F2" : 95 : "List Tab Pages"
    72 : 2 : "Ctrl+H" : 30 : "Help"

  • Key Mapping in Forms 10g

    Dear All,
    I have migrated forms 3.0 in unix to forms 10g in windows 2003 server.
    In my older version, '+' key is mapped to do COMMIT. I want to map the same key in forms 10g. i tried the same in my frmweb.res. Pls find the mapping done by me below.
    *107 : 0 : "Add" : 36 : "Commit"*
    This works fine.
    The Issue is ... My cursor is in a text item .... I entered some data and press " + " key to save. The data is saved but at the same time the data in the text item is erased and + is getting replaced in the text item. I dont want my data to be erased and replaced with "+" symbol.
    How to map the "+" just for COMMIT and should not replace the data in the text item ?
    Can anyone help me to solve this issue...
    Thanks in Advance
    Sharf

    Unfortunately, sometimes the role of the developer is to educate the user/management what can/can't and should/shouldn't be done. If I were in your postition, I would make every effort to educate the user/management this this is a REALLY bad idea and encourage them to use the standard key mapping or use a modifed key mapping that uses just the F-Keys.
    The problem you have to overcome is that you have to not only tell Forms to do something different when the '+' key is pressed, but you have to have a listener in your application that is listening for the '+' key and supress the '+' character. To my knowledge, this cannot be done with native Forms built-ins. You would have to write your own Java solution (JavaBean or Pluggable Java Component [PJC]) to suppress the '+'. I have found that if you can provide the user/management with a cost estimate associated with the effort needed to code a particular feature. Once they realize the level effort and more importantly the cost associated with coding a particular feature, they typically will change their mind and see reason.
    I know this is not what you wanted to hear, but I hope it will help anyway. :(
    Craig...
    Edited by: CraigB on Aug 2, 2010 2:05 PM
    Edited by: CraigB on Aug 2, 2010 2:07 PM

  • How could I turn off the Command Key to Windows Key mapping in Remote Desktop for Mac 8

    I'd like to be able to turn the Command key->Windows key mapping off.  In this new app, whenever I use the Command key to initiate a Mac-side function, it registers a press of the Windows key within the Remote Desktop session.  Speaking only
    for myself, I use the Command Key for quite a lot of Mac operations, while my need and expectation for a Windows key press is zero.

    I'd like to be able to turn the Command key->Windows key mapping off.  In this new app, whenever I use the Command key to initiate a Mac-side function, it registers a press of the Windows key within the Remote Desktop session.  Speaking
    only for myself, I use the Command Key for quite a lot of Mac operations, while my need and expectation for a Windows key press is zero.
    Agreed. Cannot stop it by disabling the "Windows" key (from within Windows 7). Every time I Cmd-Tab to change apps, the Start Menu pops up,
    and persists, overlaying other app windows. Much more than annoying.
    Also, there is no Clipboard Sharing, apparently. Love typing in long binary strings into the Registry.

  • Question about key mapping for bank data in SP3 standard Vendor Repository

    Hello Colleagues:
    The situation is the following:
    1) MDM Standard vendor repository does not use Key Mapping for the qualified table data "Bank Details". This makes sense because normally you would pay a vendor in the same account and bank regardless of the company or R/3 system you are paying him from.
    2) However, here in my project customer don't have the same bank data for all of the 3 R/3 Systems. Furthermore, they would like to pay a vendor in a diferent bank and account number; depending on where the payment is generated (Company or R/3 system).
    Because of this, I though about creating a lookup table for the banks which would use key mapping. I did this and I had no trouble importing bank data in to it.
    Now I have this tables:
    1) Banks: Lookup Flat:
    Country and Bank Key as display fields.
    2) Bank Details: Qualified Flat:
    2.a) Field "Bank" as a non-qualifier display lookup field which points to a record on "Banks" table (Described in number 1).
    2.b) The rest of the fields (Account number, Account holder, Reference, etc.) as qualifier non-display fields.
    This aproach works well in data manager.
    However, when I try to import vendors from R/3, I'm not being able to map the bank details, not even with "compound field" functionality, because I cannot map the display fields in the "Banks" lookup table (Described in number 1); in the "Map Fields/Values" tab in the Destination fields pane, it won't show any fields from this table.
    Also, I'm not very sure if I will be able to syndicate this data back to the R/3 systems correctly, this is; replicate only the banks which exist on each R/3 client system.
    Any ideas on how to solve this problem? Please help.
    Best Regards,
    Jorge.

    ... Where
    did Terminal's default keystrokes (e.g., Esc,[5C for
    ctrl-right-arrow) come from? They just produce
    annoying beeps in bash. Are they standard sequences
    for some shell that I don't know about? I
    Somewhere deep in the bowels of computer history....for example
    http://vt100.net/docs/vt100-ug/table3-6.html
    http://www.termsys.demon.co.uk/vtansi.htm#cursor
    that is to say, these codes date back to early hardware terminals such as the VT100. I believe. And that is why Terminal is a member of a class of software called "terminal emulators".

  • Key mapping in Syndication

    Hi,
    I am working on Vendor master data.
    The standerd syndication map for Vendor to R/3 system has the authorization groups mapped to BEGRU at target.
    Well source is like
    - authorization group
        [Remote key]       -
    Mapped to------->  BEGRU
        Name [DF]
    Where as the '[Remote key] ' field does not contain any value!!! and moreover the Name field has the value of authorization!!!
    Then why did the [Remote key] FIELD mapped to BEGRU ??
    I have worked on key mapping concept where a field is expecting different codes of same data from different systems are maintained in Edit key mapping tab.
    This is achived by CLONING the code field and mapping it to remote Key field.
    Can anyone help me in this issue!!!
    Kind Regards
    Eva

    Hi,
    Firstly i wish to clear that
    1)  in syndicator the table selected is 'Vendor' maintable.
    2) structure of vendor is
         --  Vendor
               - Remote Key
                     Remote System
                     Value
               +Vendor number
               +Account Group
               - Authorozation group
                     Remote key             -
    mapped to --> BEGRU
                      Name
               + Trading partner
    Now like you said to add a code field at the source end, i have only 1 incoming value, so the NAME field it self is cloned .
    it has RS specific data in the EDIT KEY mapping table.
    Now, In syndicator if i map Name field to the BEGRU i will get  ALL the values which are maintained in the  main table RECORD.
    If i wish to send the RS specific data only then how to do it??
    If i select the Authorization grp Table in Syndicator then i can see the source structure as
      --  Authorization grp
               - Remote Key
                     Remote System
                     Value
                 Name
    Here if i map Value field then i get my Output.
    But I guess we need to do the mapping at Main table level to create a single XSD right!!!
    Or am i confused..
    Please clarify me..
    Kind Regards
    Eva

  • KEY MAPPING in FORMS 6i

    Hi Friends,
    I'm working with Forms 6i, WinXP, Oracle DB 10g in C/S mode. I want to map the keys i.e. I want to write triggers which will define the action of some function keys. I installed oracle terminal, I modified FMRUSW.RES accordingly. Still not getting the result. If there is anyone who already have worked on this please notify my mistake. I will describe the steps in detail if u want.
    Pls help,
    Regards,
    Pragati.

    Hi,
    I coded the key mapping as follows:
    I created a menu item. To call the code, you have to give a name for an accelerator key in the property palette for the menu item e.g. "start_menu".
    Let's say, to invoke the menu item, you have to press "Ctrl+E". So you have to set the key mapping in your *.res-file like this:
    69 : 2 : "Ctrl+E"           : 85 : "start_menu"
    Explaination:
    69: Code for "Ctrl+E"
    2: Java Modifier Number for "Control"
    85: Forms function number ("User Defined Key 3", look at the file I send to you !)
    I don't know, if that's the solution, because you wanted to map F1, F2...., but it shouldn't be a problem to switch my solution to F-keys. But perhaps, some of the Forms functions (e.g. F7 for Enter-Query-Mode) won't work then.
    Hope this helps.
    Regards,
    Markus

  • Update key mapping via web service

    Hi ,
    I have a question about edit key mapping. The problem is that we create vendors in MDM and syndicate them to different ERP systems. To decide which system a new vendor/changes must be send to, I need the Edit Key Mapping, but the users do not want to enter this information manually and I do not see how I can create key mapping automatically.
    We are working on a new solution where vendors are entered in sharepoint and updated in MDM via web services. I would like to know if one of you know if key mapping can be maintained via a web service.
    Kind regards
    Jonna

    Hello,
    You may use the document,
    [MDM PI via Web Service Key Mapping|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/e0812356-e62f-2c10-76aa-9a02d038ba81]
    Hope this helps your scenario
    Regards,
    Abhishek

  • In Pages on Ipad, how do you enter a Tab using the screen keypad?

    Hi,
    I have an iPad2 and am using Pages, Notes and a few other apps. Pages has and supports tabs in the document, but I have yet to find a TAB key in the on-screen keypad? It works fine off the bluetooth keyboard, but I have access to that only about 20% of the time.
    Thanks for your help.
    ...Doug

    http://www.gordonmeyer.com/2010/04/how-to-enter-a-tab-or-page-break-in-pages-on- ipad.html

  • Forms Service - Function Key Mapping

    hi folks,
    i have installed oracle 9i app server rel2 on oracle8i database, using which i have deployed my application (which was developed on developer2000) with the help of forms services - provided by oracle 9ias. now, my application is running on browser. but, when i run my appliation on browser the function keys mapping like
    F7-enter query, F8-execute query was supercided by browser functional key mapping, which means i can use only the menu, i cannot use the functional keys to retrive and save data.
    is there any method or setup thro which i can bring the d2k funtional key mapping on browser.
    thanks in advance !

    hi folks,
    i have installed oracle 9i app server rel2 on oracle8i database, using which i have deployed my application (which was developed on developer2000) with the help of forms services - provided by oracle 9ias. now, my application is running on browser. but, when i run my appliation on browser the function keys mapping like
    F7-enter query, F8-execute query was supercided by browser functional key mapping, which means i can use only the menu, i cannot use the functional keys to retrive and save data.
    is there any method or setup thro which i can bring the d2k funtional key mapping on browser.
    thanks in advance !

  • MDM key mapping: multiple fields?

    Hallo,
    is it possible to base key mapping on more than one fields?
    From what i see key mapping is based on one field only...
    Regards,
    Marco

    Hi,
    is it possible to base key mapping on more than one fields?
    From what i see key mapping is based on one field only...
    yes, for that your field in Maintable should be Display field. So if you have two fields in Maintable then both of these fields can be used as key mapping in import manager while importing Data, in Match records tab,  you can also have option of using these fields as Split or Combine as per your requirement on the basis of which you want to insert data into MDM Data Manager.
    Hope it will Help you,
    Rewards if Useful.....
    Mandeep Saini

Maybe you are looking for

  • Files in ZIP Archive not visible in XP explorer

    I have a strange problem. I'm sure the solution is something simple, but I seem to be overlooking it. I am creating a .zip archive from within my Java app, zipping up 5-10 straight text files. From what I can tell the file gets created successfully.

  • Sidebar favourites start to point at wrong drive randomly and I have no idea why?

    I have 3 firewire drives connected to my iMac, "Media Drive", "Media Drive Mirror" and "Media Drive Mirror 2". Media Drive is my primary work drive and the other two are mirrored backups. I have links to my working directories on the primary drive in

  • Attributes not yet maintained for process chains

    Hii All, when tried to load 0VENDOR master data from R/3 using process chains the chain failed and the error says "attributes are not maintianed" but when we checked the attributes ,they are all defined and in active state .so what might be the possi

  • Currval

    Hello, I get following error when i do the following select seq1.currval "value" from dual ORA-08002: sequence SEQ1.CURRVAL is not yet defined in this session (DBD ERROR: OCIStmtExecute) from within the browser via CGI. but i can do the same from wit

  • Update Photoshop Elements 6.1 for windows 8

    Can I update photoshop elements 6.1 for windows 8 ? Or does this move require a new purchase ?