Unable to associate function key f12 with form level trigger(form6i)

i have one issue in form6i.
i made association f12 key with key-cquery trigger in oracle terminal by opening FMRUSW.RES.
i am getting error message " function not perform here " when i pressed f12 key.
what is the problem?
what to do?
please reply as early as possible.

count-query only works on datablocks which are assigned to a datasource. As long as the count-query does not work using the menu it will also not work using keys. The fact that you get the same errormessage using menue or key indicates that the key-mapping seems to be ok.

Similar Messages

  • Block level trigger vs form level trigger

    Hello.
    I want to know what is better - to use block or form trigger?
    I have many blocks in my form. I need to write custom code in (for example) key-crerec trigger.
    Should i put trigger into each block or should i create one at form level like:
    if :system.current_block = 'BLOCK1' then
    create_record;
    elsif...
    end if;
    Thanks.
    Message was edited by:
    DejanH

    Hello,
    If you have to handle this stuff in more than one block, it seems more generic to put the code in a form-level trigger if you don't want to duplicate it several times.
    Francois

  • Form level Trigger Vs Block Level trigger

    I have a form with single Database Block. I need to write a
    transaction Trigger for this Block. I need to know r there any
    advantages of writing the triggers at Form Level rather than at
    Block Level.
    Thanx in advance
    --- Moneesh Walia
    null

    Hello,
    If you have to handle this stuff in more than one block, it seems more generic to put the code in a form-level trigger if you don't want to duplicate it several times.
    Francois

  • Form level trigger size limit

    hi all,
    i am using Forms 6i.
    in a form level trigger, there is a code of around 2600 lines.
    while compiling the form it is showing an error 'Program too large'.
    is there any limitation on size?
    please suggest something.
    Regards
    PantherHawk

    Hi,
    I think you are getting PLS error from the database.
    Yes there are limitations.
    Refer :
    http://download-uk.oracle.com/docs/cd/B19306_01/appdev.102/b14261/limits.htm
    ORA-06540 ORA-06553 PLS-00123
    and
    Check Note: 62603.1.
    Nilaksha.

  • Keyboard Function-Key mapping in Forms 10gAS

    Greetings,
    Can anyone help with a quick outline of the way keyboard function keys are implemented on the Application Server in Forms 10g?
    My situation is that I have two unix servers, one for Development, one for Production. When running my Forms from a browser window, one of the servers responds to the F8 key for Execute-Query, the other server does not.
    I presume the mapping is done on the server, with some sort of configuration file. Perhaps something's been overridden by mistake somewhere. I have checked forms.conf, forms.properties, formsweb.cfg and frmweb.res, and cannot see anything that might relate to these Keyboard Function-Key settings. I've also tried finding a Developers Reference Manual online, but have had no luck.
    It's bound to be something really simple, but I can't seem to crack it. Do you know what I'm missing?
    Pete ?:|

    There are two basic versions of key mapping fmrweb.res files. Forms is released with a fmrweb.res file that has Ctrl+S for commit.
    But there is also a fmrpcweb.res file that can be used in place of the other -- you just rename it as fmrweb.res in the other's place.
    Both files are simple text files you can edit with Notepad or other simple text editors.
    You can find more about fmrweb.res in the first post (a ways down) in this thread:
    Forms 10g installed and running on Windows Vista

  • Function keys in german Forms

    Hi,
    if we change the language to german in the registry, we got the correct number and date format but the function keys have a different mapping. Only with the english setting we got the normal function key mapping (but wrong date/number formats).
    Any idea?
    Regards,
    Arnim

    nobody an idea?

  • How to associate an uploaded file with form data

    I have a "ticketing" app which stores a ticket no. as well as allows users to upload multiple files per ticket. The problem I am having is how to associate an uploaded file with a particular ticket no. As you can guess this becomes complicated when the same user can potentially update multiple tickets using the same file names. I am having difficulty trying to understand how to associate a ticket no with one or more uploaded files. I do have a custom table which I update with the attachments but I am unsure how to, or when to, update the ticket information on this custom table. I only want to retrieve attachments for a given ticket, not all attachments uploaded by a user.Does anyone have any ideas?

    Hi,
    My question is bit related to this topic.
    I am having a requirement to upload the CSV files so that they will store in a database table and later on wards when they search on that table it needs to pull the information and display on the form. I am a new bee to application express. Could some body tell me how to start this process with??. Just give me an overvoew/hints so that I will try to carry on my own.
    Cheers,
    Krishna.

  • Form level trigger

    Hi all,
    I need trigger function, their execution preference at form level. and when we execute query and go to next record
    which trigger fires at this stage at form level.
    Regards
    Rizwan Ali

    If you are running your form from the Forms Builder, try turning the Debug Messages on. This will show an alert for each trigger that fires. This will let you see what triggers fire throughout your form. This is very helpful in learning the firing sequence of triggers in forms.
    To turn this feature on go to the Edit Menu -> Preferences -> Runtime tab -> Debug Messages checkbox. While this is a handy feature - just don't forget to turn it off when you are finished as it can be quite annoying when you don't want it turned on. ;)
    Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • Unable to enforce Primary Key constraint with my code

    Hi Guys
    I have a table that contains 2 columns: code and description (defined as not null). I am using oracle forms 10g, if I inset a new row both the columns: code and description should have data e.g. code: 001 and description: Main Store...
    So on forms I have an on-update trigger on block level that handles the error messages but if the user has to update the description this trigger blocks him because the value for the code i.e. 001 is already on the database but if I remove the piece of code (the first IF block on my code together with a cursor and the entire declaration section)then the primary key constraint is violated: the code is as follows:
    declare
    v_store_code store_types.code%type;
    cursor store_codes is
    select a.code
    from store_types a
    where a.code = :b1.code;
    begin
    open store_codes;
    fetch store_codes into v_store_code;
    if ( store_codes%found ) then
    Message('The Store Code you have entered already exists on the Store_Types table, please enter another code!');
    Message('The Store Code you have entered already exists on the Store_Types table, please enter another code!');
    close store_codes;
    raise form_trigger_failure;
    end if;
    close store_codes;
    if :b1.code is not null and :b1.description is null then
         message('If the Store Code has been captured, then the Store Description must be captured!');
         message('If the Store Code has been captured, then the Store Description must be captured!');
    raise form_trigger_failure;
    end if;
    if :b1.description is not null and :b1.code is null then
         message('If the Store Description has been captured, then the Store code must be captured!');
         message('If the Store Description has been captured, then the Store code must be captured!');
         raise form_trigger_failure;
    end if;
    exception
              when others then
                   message(sqlerrm);
                   raise form_trigger_failure;
    end;
    My main intention here is: the user should be able to update the description field and save the changes without violating primary key on the column: code ...... please help me guys...

    ICM
    Sir as far I could understand , your problem is that your wanna allow the end users to update the Store_description , and Store_code..
    So on forms I have an on-update trigger on block level that handles the error messages but if the user has to update the description this trigger blocks him because the value for the code i.e. 001 is already on the databaseif it's right then why don't you have unique key constraints Store_description?
    alter the tables and apply unique key constraint...
    and no need to write this code
    f :b1.code is not null and :b1.description is null then
    message('If the Store Code has been captured, then the Store Description must be captured!');
    message('If the Store Code has been captured, then the Store Description must be captured!');
    raise form_trigger_failure;
    end if;because as you mentioned
    code and description (defined as not null)if they are already under not null constraints then no need to handle this in coding..
    he/she must be able to change the description and save the changes without affecting the code i.e.:Sir I think updation in records can only be performed when the forms is in query mode e.g execute query, have all/desired records and then make changes
    (1)description is in unique key constraint it can't be duplicated ..
    (2)code is PK it can never be duplicated...
    for this I would suggest you to have a update button on forms , when-button-pressed trigger sets property of block (update_allowed, property_true);
    and check the code of unique key violation code from oracle form's help , when that error code raise up you can show those message
    Message('The Store Code you have entered already exists on the Store_Types table, please enter another code!');
    Message('The Store Code you have entered already exists on the Store_Types table, please enter another code!');I hope it could do something for you
    thanks
    regards:
    usman noshahi

  • Unable to create cross tab report with multiple level dynamic columns

    Hi Gurus,
    We are trying to develope group above cross tab report with BI Publisher.
    i am unable to achieve multiple level columns dynamically.Using cross tab wizard i can achieve single level measure column ,but not the second level column.
    Output should look like this:
    Country1
    Region1 Region2 Region3 --(level1 column)
    d1 d2 d3 d1 d2 d3 d1 d2 d3 -- (level2 column)
    Row1 10 20 30 70 80 90 40 70 90 --data
    Row2 21 24 54 65 23 64 64 76 87
    Here regions and d1 d2 d3 may vary based on xml data.Also we have page break on country.
    Thanks,
    Mahesh

    Hi kavipriya,
    Any update on this.I have set the rtf and xml to ur gmail id.
    Thanks,
    mahesh

  • Problems with row level trigger.

    Hi there. I'm trying to create a trigger for a table ... it's an attempt to audit all changes made to the table data. I'm getting an error message however, for my new and old interviewdate. The specific message is:
    Error(12,92): PLS-00049: bad bind variable 'NEW.INTERVIEWDATE'
    Error(12,72): PLS-00049: bad bind variable 'OLD.INTERVIEWDATE'
    here's the code:
    CREATE OR REPLACE TRIGGER AUDITCHANGES
    BEFORE INSERT OR DELETE OR UPDATE
    ON WTB
    FOR EACH ROW
    DECLARE
    BEGIN
    IF :new.InterviewDate != :old.InterviewDate THEN
    INSERT INTO WITAudit (DTCHG,FLDNAME, userid, oldval, newval)
    VALUES (SYSDATE, “InterviewDate”, SYS_CONTEXT('USERENV','OS_USER'),:old.InterviewDate, :new.InterviewDate);
    END IF;
    END;
    Can you point me in the right direction?
    Thanks.

    Remove the DOUBLE quotes from this “InterviewDate”. ..
    try posting your code in between tags
    {code}
    select....
    {code}
    SS                                                                                                                                                                                                                                                                                                                   

  • Function keys are not working on a paired apple bluetooth keyboard

    hello, I just got this apple bluetooth keyboard and paired it to my ipad2. The letter and number keys are working perfectly fine, but my ipad will not respond to F1 to F12 keys,I tried Fn+F1-F12 they are not working. Then I tried to restart both my ipad and keyboard but the problem is still there. Additionally, Command+arrows can't function either. command+space is working though. Could some one please help? thanks a lot!

    It might have been functionality that Apple has removed in the current version of iOS.  This old web article says the function keys worked in iOS3, but that's a couple of years ago:
    http://socialtimes.com/apple-bluetooth-wireless-keyboard-function-keys-work-with -the-ipad_b47087

  • How to convert 6i function keys file to 10g

    Hi,
    is there any way how to migrate 6i Forms binary resource file with function keys to 10g Forms text-based resource file with function keys (e.g. fmrcsw.res -> fmrweb.res)?
    Thx.

    this is a manual way of migration you have to do, as I know. Extracting from Oracle Terminal and importing in fmrweb.res is not supported

  • Function keys Triggers

    Guyz,
    Kindly correct me the function keys associated with triggers in oracle forms 6i.
    F1= (Display properties of an Item ID)
    F2= ?
    F3= ? (KEY_CLRFRM OR KEY_CRLREC) ?
    F4= ?
    F5= (KEY-MENU)
    F6= ?
    F7= (KEY-ENTQRY)
    F8= (KEY-EXEQRY)
    F9= ?
    F0= (KEY COMMIT)Regards
    Moazam

    I think this is help you..
    Ctrl+E          Edit
    Ctrl+F1          Show Keys
    Ctrl+H          Help
    Ctrl+L          Down
    Ctrl+P          Up
    Ctrl+PageDown          Next Block
    Ctrl+PageUp          Previous Block
    Ctrl+Q          Exit
    Down          Down
    F10          Commit
    F2          List Tab Pages
    F3          Duplicate Item
    F4          Duplicate Record
    F5          Block Menu
    F6          Insert Record
    F7          Enter Query
    F8          Execute Query
    F9          List of Values
    PageDown          Scroll Down
    PageUp          Scroll Up
    Shift+Ctrl+PageD          Next Set of Records
    Shift+Down          Next Record
    Shift+F1          Display Error
    Shift+F2          Count Query
    Shift+F3          Next Primary Key
    Shift+F4          Clear Record
    Shift+F5          Clear Block
    Shift+F6          Delete Record
    Shift+F7          Clear Form
    Shift+F8          Print
    Shift+Tab          Previous Field
    Shift+Up          Previous Record
    Tab          Next Field
    Up          Up

  • Disabling function keys

    Hi friends,
    Is there any way to disable all the function keys in my forms 10g application?
    Regards
    Jeneesh

    Function keys allow also to suppress a record in a block (DELETE_RECORD) or to create a new one (INSERT_RECORD), or to change the current record (KEY-NXTREC, KEY-PRVREC) for example. If you deactive every function keys, the end user will not be able to change the current record with the keyboard.
    Francois

Maybe you are looking for

  • BAPI_GOODSMVT_CREATE error messages,  when I use Movement Type '541'

    Hello, I am using "BAPI_GOODSMVT_CREATE".It was working fine when i was creating a GR against Purchase Order. Now i am trying to create GR against subcontracting purchase order but it is giving Error "No goods receipt possible for purchase order" The

  • Mid 2014 15" Retina Macbook Pro Bootcamp Windows 8.1

    Okay, so this is part question and part rant. The question part: Has anyone successfully installed windows 8.1 in bootcamp on a mid2014 Macbook pro? The rant part: This new macbook is awesome. Everything is great. Except that apple needs to get their

  • ORARRP Problem with Oracle Forms and Reports 10g

    hi, i have a problem with orarrp utility. the printeroutput is sometimes mirrored or only a blank sheet. is this a known problem? are there any workaraounds available? what can i do to fix the problem? please help me. thanks very much gunnar kieck

  • "Item in Transfer Process" data in backend changed

    Hello SRM Gurus, I have a situation where the SC's go into item in transfer process bcoz of incorrect backend data. After the data in the backend is corrected the SC's should try to flow back to create a follow on document. I am tryign to find out ho

  • UTF-8 Support

    Hello, I'm trying to send some queries to the dbxml 2.5.14 and I get the following error: XmlInvalidValue: XmlException 14, Error: checkTrailingBytes: bad utf-8 encoding File: \dbxml-2.5.13\dbxml\src\dbxml\nodeStore\NsUtil.cpp Line: 198 Inside the Qu