KEY MODE in forms

Hello ,
I need to update "KEY MODE" in forms6i to "Non-Updateable" value.and then will have to compile the forms.
Please let me know. how can I update this ?? I am new to forms.
Thanks, Rajeev

I need to update "KEY MODE" in forms6i to
"Non-Updateable" value.and then will have to compile
the forms.
Please let me know. how can I update this ?? I am new
to forms.
You need to read the Form 6i documentation if you are new to Forms and post to the correct forum. However, I will give you a hint on what to do
When you want to run run Oracle Forms againt a Non-Oracle Database, you use Key Mode to specify how Forms uniquely identify rows in the Non-Oracle database.
Key Mode is a Block Property in a Form. So you find in under Database Section when you open the Properties Palette (or Property Sheet) for that Block.

Similar Messages

  • Key mode property of a  block

    Hi,
    What is the equivalent for :
    the key mode property of a the block ( automatic, NON-UPDATABLE ....) IN DESIGNER6I vs Forms Builder
    THanks!

    In the Designer on-line help you can read:
    - Generated data block properties (explicit) - Enforce Primary Key block property
    - Generate options preferences - KEY-NXTKEY functionality required (NXTKEY)
    In the Form on-line help:
    Enforce Primary Key block property
    Key Mode property
    I hope this will be a little help for you.
    Helena

  • Runtime Compatibility Mode in Forms 10g

    Dear All
    I would like to achieve the Runtime Compatibility Mode in Forms 10g, is there any work around to do this. Kindly let me know. This is little bit argent
    Thanks in advance
    by
    Thangaraj

    Thank for your reply Bernd
    I need to achieve the same functionaliy in 6i, the scenario is like this,
    i have a madatory item and i will set the runtime compatibility mode 4.5 then at runtime i can able to leave the filed empty if i press the SHIFT+TAB key, if i press tab or enter key alone the error message should be displayed "Field must be entered" , this is functionality is working fine in 6i forms if you set the Runtime Compatibility Mode is 4.5.
    but this is not heppening in 10g forms, because we have the same source in 6i whenever there is a need we will compile it with 10g template and give to the customer, now its not working so its creating big trouble.
    i have seen something in meta link but that is not feesible. pls do the need ful
    Thanks
    Thangaraj

  • How to disable a Entire row in a Matrix in Find Mode (User Form)

    Hi,
    How to disable a Entire row in a Matrix in Find Mode (User Form)
    Regards
    Jambu

    Hi,
       Iam using Bubble event = false in click event but the matrix row
    is allow to edit but we cant save the document in Find Mode That is fine.
    What is my actual requirement is In find mode matrix Row not allow to enter the data .
    For examble In ADD mode i enter the data in Three rows (Item Section - Matrix) and
    save the document. Whwn i open the document in find mode the three row is not allow
    to editable like the same functionality of PO, sales Order, etc ..
    Regards
    Jambu

  • Key mapping for forms on web

    Presently we are using forms 4.5. We have got costomise key
    mapping for operating through forms. Now we want to start forms
    on web (Intranet). Earlier we use to change key mapping through
    oracle*terminal. I require help in knowing how to customise key
    mapping in forms 6i / oracle 8.1.7.

    Hi,
    Boy, I have some good news to you: Oracle*Terminal is no longer
    needed.
    WordPad (or your favorite text editor) is your tool from now on.
    Keyboard files are located in $ORACLE_HOME\FORMS60.
    Simply ignore the binary file fmrusw.res when you run Forms on
    the Web. FMRWEB.RES is the one that is used, and it's pure ASCII.
    There are some comments in the file itself.
    The keys are the same as the Motif version of Forms.
    If you prefer the Windows keys, simply use FMRPCWEB.RES instead.
    How? Check under $ORACLE_HOME\FORMS60\SERVER for your
    formsweb.cfg, go to User Parameters and replace the
    otherparams=
    line with
    otherparams=term=%forms60%\fmrpcweb.res
    Now, anyone can define the Function-0 till Function-9 key
    combinations, in order to use KEY-F0 till KEY-F9 triggers.
    Hope this helps,
    Pedro das Neves
    [email protected]

  • Key triggers in forms

    How at add key triggers in Forms.For example : When users click function key "F2" then it should save the record.
    Thanks
    Saritha

    hi,
    there are two ways to do it,
    one is to re-map function keys using oracle terminal,
    other is to use triggers that are already associated to the operations that
    are performed by pressing these keys e.g.
    F1 ---> Help
    F9 ---> List of values
    F4 ---> Duplicate record
    you can use these triggers to redefine the function/operation of keys
    by their associated triggers, like if you want 'F4' to save the data,
    you will write 'COMMIT_FORM' or any code you want, on trigger
    KEY-DUPLICATE-RECORD which is fired while 'F4' key is pressed,
    since this trigger is associated with 'Duplicate record' event.
    once you write the code on this trigger at form level, it will perform
    the required operation on activation.
    regards,
    aamir.

  • How to display LOV on web in ENTER-QUERY mode with form or block query only.

    Hello all
    How can I display lov automatic on the web in from enter-query
    mode in form or block query only mode.
    thankx

    If I understand correctly your explanation, your called form
    fails to activate the LOV in enter-query mode when it is deployed
    and test on the browser.
    So lets proceeed like this, to make it work in all environments,
    let us programetically activate the LOV.
    HOW?
    In the called form, write in the WHEN-NEW-ITEM-INSTANCE TRIGGER
    at block level (if have more than one LOV)
    IF :SYSTEM.MODE = 'ENTER-QUERY' THEN
    IF get_item_property(:system.cursor_item,lov_name) IN ('YOUR
    LOV1', 'LOV2' etc) THEN
    IF SHOW_LOV(get_item_property(:system.cursor_item,lov_name))
    THEN
    NULL;
    END IF;
    END IF;
    END IF;
    The above code maybe tweak to suite your need and condition.
    This way, we explicitly make the LOV appear in ENTER-QUERY mode
    whenever the user clicks on an item with an attached LOV.
    Hope this helps.
    Mohammed R.Qurashi

  • Programatically knowing mode of Form

    Hi,
    How can I programatically find out whether my form is running in
    Query only mode in Forms 5.0 / 6.0 ?
    Thanx in advance.
    --- Ravi
    null

    Ramesh Pinjala (guest) wrote:
    : Ravi (guest) wrote:
    : : Hi,
    : : How can I programatically find out whether my form is
    running
    : in
    : : Query only mode in Forms 5.0 / 6.0 ?
    : : Thanx in advance.
    : : --- Ravi
    : Their is a system variable called system.FORM_STATUS ( I am
    not
    : sure of the name you can find it from the on-line help !)
    which
    : states if your form is in query mode etc.
    : Good Luck
    : Ramesh Pinjala
    Hi,
    Thanx for the reply, However system.form_status will only give
    in which mode the form is currently running.i.e query, changed,
    new.
    I would like to rephrase my query as
    When we call a form we can call in either 'QUERY_ONLY' mode
    or 'NO_QUERY_MODE'. Now in the called form I want to know
    programatically in which mode it is called. And we cannot use
    the system variable FORM_STATUS as it is not related with the
    status.
    Thanx in advance.
    --- Ravi
    null

  • Primary Key in tabular form is not a number

    I created a table called tblRegions.
    The primary key is RegionCode(VarChar2) - example - USA.
    I then tried to create an updateable Tabular Form using tblRegions, but it won't let me choose the primary key as an updateable field.

    O.K.
    1. create a trigger which will populate a real primary key out of a sequence - search internet
    on triggers and sequences in oracle
    2. use this primary key for tabular form processing
    3. if you need a manually entered pseudo (fake) primary key, you can handle this column
    as any other - tabular form will not complain about it
    4. you may create a constraint on your table, which will take care this column is allways
    populated and unique - this is not the nicest way since it involves processing and the errors
    you gat may not look user friendly. However, this is the most secure and easiest way -
    you don't need to write any code on the application side to handle eventual errors.
    Search internet on constraints.
    5. you may decide to create a manual validation process to fetch the eventual errors
    before you commit the changes to the database. This forum is full of the threads on
    the topic "tabular form" and "manual creation of tabular forms". If you are new to apex,
    you should stay away from that for the first (this is only my opinion).
    Denes Kubicek

  • Action Keys Mode on ProBook 450?

    Is the option to reverse the F1-F12 function keys (''Action Keys Mode'') available in ProBook 450's BIOS?
    And if not, do you have to press for example Fn+F4 to use F4?
    Thanks.

    I am sorry, but to get your issue more exposure I would suggest posting it in the commercial forums since this is a commercial product. You can do this at http://h30499.www3.hp.com/hpeb/ .
    I hope this helps.
    I worked on behalf of HP

  • How to change key on runtime form in application server

    How it is possible reconfigure key on froms in application server ????
    List Values on Client = key "F9"
    List values on Application = key "CTRL + L"
    and so on.....
    can j have the same on client version like apllication ???
    Thank You !!

    Mike,
    the fmrweb.res file in the forms90 directory controls the behavior of Forms function keys. There is a file called fmrpcweb.res in the same directory that you can use to bring back client/server key mapping to Forms on teh Web.
    1. rename fmrweb.res to something different
    2. Make a copy of fmrpcweb.re and name it fmrweb.res
    Frank

  • "Action Keys" mode turns itself back on after waking from sleep

    Hi gang,
    I've recently bought a Folio 13, and have disabled "Action Keys Mode" in the BIOS so that the function keys work as expected.
    However, if the machine goes into sleep mode, the function keys revert to their default behaviour (that is, I have to hold down "Fn" if I want to hit F5).
    Rebooting the notebook fixes the problem, as the BIOS setting has not changed.
    How can I *permanently* disable "Action Keys Mode" so that it stays disabled even when the notebook goes into sleep mode?
    Cheers,
    Matt

    I had this problem - you can update the BIOS and it will correct the issue. I received a BIOS update via HP Support.

  • KEY CAPTURING IN FORM BUILDER

    DOES ANY BODY KNOWS HOW TO CAPTURE KEYS
    IN ORACLE FORM BUILDER..SO THAT WE CAN USE OUR OWN HOT KEYS TO ACCESS DIFFERENT OBJECTS LIKE TAB PAGES THROUGH HOT KEYS.
    IF ANY BODY KNOWS THE PROCEDURE PLEASE TELL ME IN DETAIL
    THANX

    Please don't use all capitals ... that is 'shouting' and is not liked by participants as it is harder to read.
    To answer your question, open forms builder, go to any block, select an item and on the property palette, under functional, click on Access Key - press F1 for help - its all there. I don't know about TABs.

  • Satellite U840W/001 W8 Fn+Z not working in Special Function Key Mode

    Hi,
    I realised that the Fn+Z does not work when my Special Functions Key mode is on i.e: when I can control the volume by just pressing F9 without pressing the Fn button.
    However, when the Special Function Keys Mode is off (& I have to press Fn with the F# buttons to control the volume), only then does the Fn+Z switch the keyboard backlight on & off.
    When I open my function key program, the only option available is to either switch the notification settings on/off. There's no timer control or anything useful on it.
    My BIOS does not have any keyboard backlight setting, only the option to use the normal Fn+F# or to use the special function key mode.
    Please help me.
    Thanks

    >I realised that the Fn+Z does not work when my Special Functions Key mode is on i.e: when I can control the volume by just pressing F9 without pressing the Fn button.
    Hmm in my case using Windows 7, the Fn + Z works even if the Special Functions Key mode is enabled. But I cannot say for sure how it works running Win 8
    On Satellite U940 with Win 8, the Fn + Z works properly too (Special Functions Key mode ON)

  • Phone in FXS Port in Key mode

    I have a system in Key Mode, and cannot seem to figure out how to get an analog phone that's plugged into the FXS Port to make an outgoing call.

    Hi Russ,
    In pure key system mode the FXS port (and SPA502 phone)  can't be configured as a member of a Shared FXO Line.  There is no way to directly reach these phones on an inbound call.  They can however, be used to make out bound calls if the system is configured in blended mode and the option 'Include in Outbound calls' is checked on the Shared FXO Lines page.  In this scenario the FXS phone would dial 9 + address and the system will let the FXS use an idle FXO that has that capability enabled.
    Hope this helps.
    Chris

Maybe you are looking for