'FRM-41008 - Undefined function key. Press  Ctrl + F1... ' Urgent Pls help

Hi All,
We are facing below issue in Oracle 10g Forms.
We are opening one screen with mutlirecord block and query the recod(First Session) and at the same time we are trying to query one more session(Second session) with same data.
While querying second session we have blocked the user to proceed further by using select ..... for update of columns and user will get error message
'Transaction is already locked by another user....'. and we have kept second screen opened.
Afterwards we are going back to first screen in first session and trying to update the record (Change price column and navigate to next item by using tab key. We are not using anhy other key) System is not allowing to update the record and screen is freezed and cursor control will go to items randomnly and displays below error message.
'FRM-41008 - Undefined function key. Press Ctrl + F1 for list of valid keys.
Could somebody pls explaining why above error message 'FRM-41008 ...' is showing for locking record issue ? Any trigger is firing above error message ?
Thanks in advance
Biju

Thanks for the reply but we don't have key others trigger ,we have only when-new-form-instance trigger in form level. That being the case, I recommend you run your Form through the Forms Debugger to see where the form is generating this error. If you are unable to use the Forms Debugger, then I suggest you try running your form with the Forms Runtime Diagnostics (FRD) to see if you can discover the cause of the error. Take a look at this thread for a description of FRD and how to set it up: Re: dbms_session exception without any error. Although, the topic of this thread is not the same as yours, my reply is related. :)
Craig...

Similar Messages

  • Intermittent "FRM-41008 Undefined Function Key " in GL module

    Some of the users keeps getting the following intermittent error when performing a query function in a GL form (GLXJEENT.fmx)
    "FRM-41008 Undefined Function Key.”
    We are on forms 6i patchset 17. with no customisation. I could not find any generic issue related to this on metalink (they were all releated to a specific form). I cannot reproduce this in development.
    Please suggest some ways to troubleshoot/fix this.
    Thank you

    user10209208 wrote:
    Hi Baig,
    I am not sure if i understood you correctly. Are you saying that FMRUSW.RES file exists on the users PC ? We are using sun jre 1.5.17
    Thank you for respondingbetter to clear things first......... 6i usually people runs on client/server environment any ways.......please specify when you are getting this error on which event ?
    i think your form is calling some DO_KEY built-in with invalid or obsolete value

  • "Undefined Function Key. Press Ctrl+F1..." Porting app from 6i to 10G

    I am running into a problem porting my application from Oracle Forms 6i to 10G. When I am querying a record based on a field that is not the first on the screen, I get an "Undefined Function Key. Press Ctrl+F1 for list of valid keys." error. I do not get the error using the same function keys from the first field on the screen. I also do not get the error if I click into another field (besides the one I an querying) before hitting my execute query key.
    I did some research, and found a fix that seems to work. I can add a WHEN_MOUSE_CLICKED trigger to the form and put in the following:
    Go_Item(:System.Mouse_Item);
    That seems to fix the issue. My problem is that I have close to 400 forms to upgrade. I would like to avoid adding this manually to every single form. I have looked into libraries, but I can't seem to figure out how to replicate a WHEN_MOUSE_CLICKED trigger using procedures. I was wondering if there was a way to use the Forms upgrade utility to add this trigger to every form it converts. Does anyone know if that can be done?
    Thanks in advance for your help with this.

    I'm not sure this solves the problem. This would call the trigger, but the trigger does not currently exist. I would still have to manually create the trigger in all 400 (or so) forms. Is there a way to add it in a more global way?
    Thanks.

  • FRM-41009 error - function key not allowed ?

    Folks,
    I don't know what object or item in my form is causing the "FRM-41009" error - "function key not allowed".
    I have a simple button which (when pressed) inserts records into a table, then does a commit. That insert statement is NOT the problem because an older version of my application does not give me this error.
    Does this mean that I have a trigger somewhere that's reacting on a COMMIT ??? Any ideas...sorry so vague on this one, but I can't pinpoint the problem.
    Thanks,
    Bob

    It's definitely my COMMIT statement that's causing the error in my form.
    When I do a simple Insert statment with the commit, it returns the error. Without the commit, there's no error (and of course no data in my table).
    Why does my commit work in a previously version of my form ?
    Bob

  • I am using Firefox for Mac (v 3.6.11, Mac OSX 10.6.4) and need to use the Function keys (specificlaly Ctrl-F7) in a web application. I can't seem to get it to work the same as in Firefox on PC.

    I am using a web application that requires the use of the F7 key. Actually, to be more precise, I need the functionality that you would get on a PC if you hit Ctrl-F7 while in this web application in Firefox. I have changed the Mac's settings to allow standard use of the function keys (rather things like volume up/down, etc.) However, when I try to use Ctrl-F7 it appears to be using the function that is built into Firefox browser rather than the web application running within Firefox. (FYI, nothing happens when I try Cmd-F7 or Alt/Option-F7 either).

    Leliforever, cheek you list of installed add-ons, the Ask toolbar can be installed without the users knowledge.
    For checking other extensions that may cause this, follow the procedure in this link - https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Map a function key to ctrl-z

    I'm looking for a way to get a function key (such as F12) to produce a ctrl-z combination. Can't find a way to do this, xmodmap wont map to combinations, xkb configuration seems waaayyy complicated. Is there something simpler?

    Thanks for that - I read the man pages now and modified it to
    "xdtool key ctrl+z"
    F12
    Works a treat. The reason I wanted to do this is to map one of the macro keys on my Aiptek tablet to undo so I don't have to keep reaching for the keyboard. So now I can set up other common shortcuts the same way. Lets hope it works with wine now
    Bit thanks

  • Key Press CTRL+Space

    How do I view a JInternalFrame by pressing CTRL+Space from a JTextFeild in another JInternalFrame? Using isControlDown() works but throws NullPointerException. Can it be done by using KeyStroke ? If Yes then how?

    Thanks! I changed the InternalFrame which I wanted to see after pressing. I used A JPanel in which there is a JList. What I tried is pretty simple and like this
    private void jTextFieldlBankIDKeyPressed(java.awt.event.KeyEvent evt) {
    try{
    int keyCode=evt.getKeyCode();
    int modifier=evt.getModifiers();
    int iSpace=java.awt.event.KeyEvent.VK_SPACE;
    if(evt.isControlDown()&& keyCode==iSpace){
    jPanel2.setVisible(true);
    //setValueAtTheList();
    //jList1.grabFocus();
    System.out.println("Key Pressed");
    }catch(NullPointerException e){
    I got what I need but the exception is there like before,
    java.lang.NullPointerException
    at javax.swing.plaf.basic.BasicInternalFrameUI$1.actionPerformed(BasicInternalFrameUI.java:153)
    at javax.swing.SwingUtilities.notifyAction(SwingUtilities.java:1502)
    at javax.swing.JComponent.processKeyBinding(JComponentKey Pressed
    .java:2422)
    at javax.swing.KeyboardManager.fireBinding(KeyboardManager.java:253)
    ������������.

  • Function moduke use in bdc BAPI_MATPHYSINV_POSTDIFF(pLS HELP)

    Hi,
    How to use thsi function module ..
    i need to transfer data in Tcode MEI08,
    I need to develop a progarm to transfer data from text file to sap system
    Is it possible to use this.
    Kindly Help me
    Sincerely
    Jayalakshmy

    Hi Jaya,
    This FM is used to post differences for physical inventory documents that have been counted. Please check the FM documentation for more details.
    If u r still not clear then open this FM in SE37 and press where used list button. If some one has already used this FM then it will list all those objects. Then u can analyze those objects and see how they are using this FM.
    I am not able to find the transaction MEI08 in my system. If u are not able to find any BAPI/FM then u can go ahead with BDC of this transaction.
    thanks,
    Vinod.

  • URGENT!! Disable functional keys (ex Maiusc+f4,Maiusc+f5,Ctrl-pgdwn)

    Hi
    I have a problem in my application because Form builder allow to use some special functional keys (press ctrl+f1 for menu). For example i can delete al the records in the form when i press MAISC+f5, or i can navigate from a block to onther block pressing ctrl-pgdown. How can i disable this functional keys in my application?
    PLZ HELP!!
    fulvio

    Thanks
    But i would like to know if ther's some function that allow me to diusable all the functional keys.
    Moreover if i use a trigger for each function the size of my application became to large.
    Fulvio

  • How to remap fn key to ctrl?

    hi, i have a 2.2ghz macbook pro, and currently running leopard. just a simple question, is there a way to swap the function key to ctrl and ctrl to function key on my macbook pro? cuz im used to international keyboards whereas the fn key is between the ctrl and alt key, so how do i swap it? any third party programs i need in order to do that? advise plz thanks

    I don't believe the fn key can be remapped. but...
    This forum might have some clues...
    Swap control and caps lock on USB keyboards
    http://www.macosxhints.com/article.php?story=20020222094159459

  • Disable the need of the function key when using the control key

    I'm often using the F1-12 keys when using an IDE for developing. Those IDE's use the CTR+F1-12 shortcuts quite a bit and it's always needed to use FN+CTR+F1-12 which is ridiculous and redundant. Is there a way to keep using the functions assigned to F1-12 (Adjust volume, brightness...) without pressing the function key and be able of using CTR or ALT +F1-12 without the need of pressing the function key?

    According to the system help text it is possible. And for me it works as described in the help text on my MacBook Pro.
    But on my  Mac Pro (late 2013) the relevant control (“Use all F1, F2, etc. keys as standard function keys”) is missing form System Preferences >> Keyboard >> Keyboard.
    From the help text for the topic "Use keyboard function keys:"
    If you frequently use the alternate function of a function key, you can switch the keyboard so that the function keys perform the alternate function without your pressing Fn. You then hold down Fn to use a function key’s original hardware control function. If your keyboard doesn’t have an Fn key, try holding down the Control key.
    Choose Apple menu > System Preferences, then click Keyboard.
    Open Keyboard preferences
    Select the “Use all F1, F2, etc. keys as standard function keys” checkbox.

  • Function keys on MacbookPro

    I have a new 15 inch Macbook Pro and would like to use the F-function keys in a different way.
    Currently if I need to use Expose, I have to press the bottom left 'fn' function key first.
    I was wondering it was possible to change this around so the Function keys have a standard function first and all the 'brightness', 'speaker volume' and 'keyboard backlight' keys could be accessed via the Function key instead.
    Can anyone one help or tell me if this is possible?
    Thanks
    Gary

    885/3331
    Hi Gary,
    Mac OS X 10.4 Help: Switch the function keys to perform alternate functions
    Enjoy your Mac!
    Axl

  • Trapping function keys

    Forget my quastion on function key presses- I just looked in the manual and
    found what I needed (The Window.FunctionKeyPress event).
    I'll check BEFORE posting next time!
    DaVE
    Triad Group PLC, EMail:[email protected]
    GU7 1XE, England. Tel: 01483 860222

    Hi Manuel and Martin,
    Unfortunately, for Forte V2.0, Manuel is correct. But Forte has
    added a feature that allows you to trap any keystroke in Forte R3,
    which is currently in beta.
    If you are a beta site, look in the Forte Release 3 Beta Features
    manual page 169, the window class SetAsFunctionKey method.
    If you are not a beta site and want this functionality in R2,
    you would need to do some tricks with menus or data fields, as
    Manuel indicated.
    Cheers,
    Kerry
    Hi all,
    Actually, I don't think you can trap keystrokes on a UserWindow but on
    some WidGets (like DataFields), you can set to TRUE the 'Validate on
    KeyStroke' option in the properties dialog .
    Thus, when the WidGet has the focus and the user send a keystroke, you
    can trap this event with the 'AfterValueChange' event.
    If someone knows how to trap keystrokes on a UserWindow, I am also
    interested !
    Thanks.
    - Manuel -
    Manuel Deveaux
    Forté Developer
    Mutuelle Préviade
    Nancy, FRANCE
    E-Mail : [email protected]
    De : [email protected][SMTP:[email protected]]
    Date : vendredi 4 avril 1997 09:57
    A : [email protected]
    Objet : Trapping Certain Keystrokes
    Hi All,
    I have read the manuals, and the online-documentation, but can not seem
    to find anything about trapping keystrokes other than the Function keys.
    Our application specifically requires us to trap certain keystrokes,
    such as the navigation keys etc.
    Does anybody know which event is raised when a key is pressed?
    Any insight will be appreciated.
    Regards Martin
    | | / \ Kerry Bellerose [email protected]
    | || C | Senior Consultant direct: 45 45 94 01 03
    | | \___/ Lindhard Forte´ Solutions desk: 45 45 82 21 21
    | |_____ Datavej 52 fax: 45 45 82 21 22
    | | 3460 Birkeroed, Denmark
    |_________| http://www.lindhard.com/forte/index.html

  • Function key problem on HP Pavilion after upgrade to Windows 8

    HP Pavilion Dv7 / Windows 8 pro 64 bits 
    Since I upgrade from Windows some Function keys are no more running 
    F1 Help  is running
    F2 ???
    F3  www is still running
    F4  ???
    F5 is running
    F6 ???
    F7 Brightness --- NOT running
    F8 Brightness ++ NOT running
    Answer is welcome....
    Regards
    Guy

    It looks like this unit has not yet been certified for Windows 8.  Review this site to see what to expect when upgrading to Windows 8.  Click on More Information at the bottom to get a more detailed list and to have the option to see if HP has tested the unit for Windows 8. 
    Make sure to install the Windows 8 HP Software Framwork found here.
    There is a chance that some functions simply will not work.  Since the unit has not been certified for Windows 8 and does not have Windows 8 drivers from HP, the Windows 7 drivers and software may need to be reinstalled using compatibility mode.  Review my post located here for the method that seems to have the most success.  The key to install HP software with compatibility mode is to let the extraction complete and then navigate to the real software installer in the extracted folder. 
    I recommend reinstalling the newest driver for each component in compatibility mode as outlined in the linked post.  Here is the software page for your unit. 
    Let me know what happens. 
    ↙-----------How do I give Kudos?| How do I mark a post as Solved? ----------------↓

  • Function Keys  F1 F2 F3......

    Hello All
    I am working on an applet base application and I want to use the function keys as actions, so if they hit a function key a certian action occurs. I can get my program to responed to the action key like "enter". But I am having a devil of a time trying to figure it out for the function keys.
    Thank you for your help
    Rylan Cottrell

    1. Implement a KeyListener in your class.
    eg .public class myClass implements KeyListener{
    2. Implement the necessary methods ie keyPressed,
    keyReleased, etc
    eg.
    public void keyPressed(KeyEvent e) {
    int keyCode = e.getKeyCode();     
    if(keyCode == KeyEvent.VK_F3){
    System.out.println("HelloWorld!!");

Maybe you are looking for

  • Chart legend

    I can make custom chart titles, but on a pie chart, how to I create custom legend values.. I tried on the formula of the field: CASE WHEN "Shelter Survey"."Home Loss"='Y' THEN 'CUSTOM_VALUE' END but the chart still shows the legend with the value in

  • Problem with HP Deskjet 1000 J110 cut photo

      Hello, With any format the document or image is cut to instill about 2 CM, despite having tried with different programs, also to take away edges of the press, etc., etc., is that the printer does not estisce those last cm? original: http://postimg.

  • LG MKJ-4065-3801 LCD TV remote programming instructions.

    Need instructions on how to program the remote for LG MKJ-4065-3801 LCD TV.  Need to program it to control Toshiba DVD player. Don't find any instructions or codes in the owner's manual or on the LG support site.

  • Revert to defalt font in Illustrator?

    I've changed my default font to Arial 8pt in Illustrator and saved the New Document Profile. When I create a new file, no problem, but fter working on a file, Illustrator hangs on the last font used (for example, Palm Springs, bold 16pt, 20 tracking

  • Windows6.1-KB976462-v2-x64 update is not applicable to computer

    I am installing share point server 2010 in window 7 profession (64 bit ) so hot fix Windows6.1-KB976462-v2-x64 is required for is but when i am going to install this hot fix then it is giving me Message like this -> update is not applicable to comput