Error frm-10221and frm-41810 in customized menu attaches to frm 6i

hi,
i made my own customize menu which attaches to a form. when i run form it shows error like "FRM-10221 cannot read menu file" and after that it also shows "FRM-41810 errror creating menu". pls help me out.i'll be really greatfull.
Thanx!

hi,
i made my own customize menu which attaches to a form. when i run form it shows error like "FRM-10221 cannot read menu file" and after that it also shows "FRM-41810 errror creating menu". pls help me out.i'll be really greatfull.
Thanx!

Similar Messages

  • Query functionality  in custom menu

    Hi,
    I have created my custom menu and attached to my form. when i compiled iam not able to see some standard functions like Query functionality. Is there any process to achieve query functionality in custom menu attached to form

    You want to have something like an "Execute Query" in your menu. Add a menuitem of type PL/SQL and put the code
    DO_KEY('EXECUTE_QUERY');Same procedure would be for other "query-menu"-items

  • Handling oracle forms errors (frm-nnnnn) locally

    is there a way to handle an oracle form error (e.g. frm-40508) locally in a way similar to handle oracle database errors.
    e.g.
    procedure insert_something is
    insert_error exception;
    pragma exception_init(insert_error,-40508);
    begin
    :c1.a := 1;
    :c1.b := 2;
    commit_form;
    exception
    when insert_error then
    <handle insert error on c1 block>;
    end;
    Edited by: mojo on Oct 7, 2008 4:34 AM

    by locally i mean within the pl/sql block that will have raised the error.
    an example i encoutnered recently, but by no means the only occasion i have wished such things:
    function mseRecStatus returnvarchar2 is
    rtnChar varchar2(32);
    begin
    rtnChar := get_record_property(mouseRec,mouseBlock,status);
    return rtnChar;
    end;
    This is called from a pre-pop-menu trigger. mouseRec and block are calculated previously. A right-click on a record item below the last record raises error frm-40741 (unable to locate record on block). it would be nice to be able to do something like the following without incolving an on-error trigger:
    function mseRecStatus returnvarchar2 is
    rtnChar varchar2(32);
    non_record_clicked exception;
    pragma exception_init(non_record_clicked,-40741);
    begin
    rtnChar := get_record_property(mouseRec,mouseBlock,status);
    return rtnChar;
    exception
    when non_record_clicked then
    return null;
    end;

  • Error frm:40508

    Hi All
    i have a table in that table
    i have colums
    customer_name
    customer_id
    customer_add
    customer_contact_no
    hI HERE customer_name is unique_key
    i want when i type duplicate customer_name then (which is already stored in database)
    message('customer already exist');
    but i get this error frm:40508
    please guide
    thanks and regards
    vikas

    In PRE-INSERT trigger check if the Customer already exists or not if exists then give a message as:
    declare
       cursor c_exists is
         select 1
         from customer
         where customer_name = :customer.customer_name;
    begin
       open c_exists;
       fetch c_exists into v_exists;
       close c_exists;
       if v_exists = 1 then
          message('customer already exist');
          raise form_trigger_failure;
       end if;
    end;You can also do the same is WHEN-VALIDATE-ITEM trigger for customer_name.
    Hope this helps.
    Edited by: Arif Khadas on Apr 15, 2010 4:10 PM

  • Forms6i : FileUpload error FRM-40735

    Hi,
    I try to run the FileUpload demo on Solaris, and I get stuck with the error FRM-40735, ORA-105100 (WHEN-BUTTON-PRESSED trigger)
    I already read everything concerning this problem in this forum, but I don't know how to check my configuration.
    I read somrthing about "import java classes" but I obtained an error about Jvm.
    I also get this error on the server : "Could not load library libzip.so"
    My config is :
    server side : Solaris 8, ias9i, forms6i (6.0.8.24)
    client side : Windows XP pro, IE with Jinitiator 1.1.8.22
    I would appreciate any help...
    Thanks a lot

    Hi,
    The problem seems to require proper analysiz. I suggest customer support at metalink.oracle.com
    Frank

  • ERROR FRM-40735 while migrating from 6i to 9i using FMA

    Hi,
    We have migrated a sample form which is in 6i to 9i using Oracle Forms Migration Assistant. It is compiling without errors and while running hitting the error
    FRM-40735:PRE-FORM trigger raised unhandled exception ORA-06508.
    and not opening up the form...Please post any suggestions on this.
    madhu.

    Thank you very much for the help...I could resolve it by just adding the appropriate pll's in forms90 folder.
    Now, we are trying to implement the calender in forms 9i. As we are moving from Forms 6i C/S to Forms 9i, as a first step I've implemented calender in web forms 6i (using demo's in oracle doc's--using CalenderWidget Bean)
    I tried doing the same for Oracle 9i too but it didn't work..I mean it is deleting the code for the trigger
    WHEN_CUSTOM_ITEM_EVENT which is written for Bean.
    Please suggest me regarding how to proceed with this...
    thank you
    madhu.

  • Error frm-41211

    hello friends when i am using the following code
    report_id Report_Object;
    ReportServerJob VARCHAR2(100);
    BEGIN
    report_id:= find_report_object(‘MyReport1’);
    ReportServerJob:=run_report_object(report_id);
    END;
    i am getting the following error
    frm-41211 integration errror

    This could be caused by:
    -- Calling Graphics runtime a second time when the first runtime is still open (see Note 15219.1)
    -- Failure to set environment variables TK2_PRINT_STATUS
    PRINTER, or DISPLAY (see Note 1031534.6)
    -- Calling OG_QUIT from Forms6i running on the Web (see Note 222334.1)
    -- Memory Problems: Your PC must have an adequate amount of available RAM to run Forms, as well as the runtime of
    the product you are integrating. Even though your PC may have a large amount of total RAM available, there still may not be enough real memory available to start another
    Windows task. See Note 164945.1
    I also suggest that you upgrade to the latest patch because there are various bugs filed where this error is produced that are fixed in later patches. For example, see bug 1872955.

  • Test.fmx gives error: "FRM-93500"

    Hello all,
    i have problem with oracle forms 11g, when i try to run test.fmx; in IE8 it gives this error="FRM-93500", on the other hand in FF 3.6 want to some plug-in but it doesn't solve automaticlly.In forms 11g all cofiguration are default.
    OS server 2008
    J2SE Runtime Env. 5u15
    Java SE dev. kit 6u12
    Thanks in Advance..

    port: '8888', it didn't give any error, when installed app.
    sorry sarah. how can i replace jvm.dll, i find 5 diff. jvm.dll, diff. location.

  • Oracle errors frm-40508 &ora-02291

    hello
    i m having a problem
    i have two tables for my project with one of em master and the other a detail one
    i m using developer 2000 for frontend
    when i try inserting data in the forms developed i encounter an error frm-40508 which says "unable to insert record" the corresponding ora error is ora-02291 which says "integrity constraint violated - parent key not found"
    i have a primary key in my master table which is used to connect it to details table through foreign key.feilds for the primary key in master and foreign key in details are same
    i dont have any such problem if i input data through sql command insert
    plz suggest me some solution to this problem
    thnx
    nipun

    Hi,
    Just try watching is therer ar no unique indexes on that table where u are doing an insert. another reason might be the composite primary key or the combination that might be confusing you.
    U can try out adding an exception block to the trigger and try raise when-dup-val-on-index exception
    Thanks,
    Vishal

  • Error :::::::::; FRM-92090 : An unexpected error occurred

    Dear Sir
    I get error in Oracle 11i (ERP)Application.
    When I open application there is no problem , when I close the form and try to open an other one then get the following error ----
    FRM-92090 : An unexpected error occurred
    Thanks in Adv

    Urgent Reply this Forum Please !!!!!!!

  • Oracle forms 6i error FRM-42401

    i have created a master detail module and when trying to run it, it doesn't come with data when clicking on "execute query"
    Instead it displays error
    "FRM-42401 Performing program trigger ON_CLEAR_DETAILS on form"
    can someone pls help to get rid of this error

    Try out,
    after you compile all again your form:
    in WHEN-NEW-FORM-INSTANCE
    Go_block('your-MASTER-block');
    Execute_query;
    and see what happen(I think, your focus go on Detail-block and when you click F8(excute-query) error happen )
    Regards .. hope helps

  • Unable to insert into table Showing error FRM-40508

    I want to insert data in text items of form into a table by using procedure in program unit. i declared all the parameters and calling this procedure in When-button-pressed trigger of push-button.it is not showing any compilation error, but run time error FRm-40508 ORACLE Error: Unable to insert the record.

    The Table Structure:-
    PROB_ID VARCHAR2(50)
    PERSON_NAME NOT NULL VARCHAR2(50)
    MODULE NOT NULL VARCHAR2(100)
    START_DATE DATE
    VERSION NOT NULL VARCHAR2(50)
    ASSIGNED_BY VARCHAR2(100)
    FUNCTIONALITY VARCHAR2(4000)
    ERR_TYPE VARCHAR2(150)
    ERR_COMPONENT VARCHAR2(100)
    ERR_LOCATION VARCHAR2(250)
    PROB_DESC VARCHAR2(4000)
    PROB_SOLTN VARCHAR2(4000)
    STATUS VARCHAR2(100)
    END_DATE DATE
    and the code is in When-button-pressed
    Declare
         v_pname char(5);
         v_mod char(6);
    v_datetime VARCHAR2(9);
    v_pid varchar2(50);
    v_version varchar2(50);
    v_assign varchar2(50);
    v_func varchar2(50);
    v_etype varchar2(50);
    v_ecomp varchar2(50);
    v_eloc varchar2(50);
    v_pdesc varchar2(50);
    v_psoltn varchar2(50);
    v_status varchar2(50);
    v_edatetime varchar2(50);
    uname varchar2(50) := 'fcclog';
    pwd varchar2(50) := 'fcclog';
    con varchar2(50) := 'orcl';
    cursor c1 is select prob_id from log_table;
    BEGIN
         -- Creating the unique Problem ID by adding all the item value
         v_pname := :log_table.pname_lst;
         v_mod := :mod_table.mod_name;
         v_datetime:= to_char(:log_table.start_date);
         --:log_table.prob_id := v_pname||v_mod||v_datetime ;
         v_pid := v_pname||v_mod||v_datetime ;
         for r in c1 loop
         if v_pid = r.prob_id then
              v_pid := v_pid + 1;
         end if ;
         end loop;
         :log_table.prob_id := v_pname||v_mod||v_datetime ;
         v_pid := :log_table.prob_id;
         -- Inserting into database--
         v_version := :log_table.version;
         v_assign := :log_table.assigned_lst;
         v_func := :log_table.funct_txt;
         v_etype := :log_table.err_type;
         v_ecomp := :log_table.err_component;
         v_eloc := :log_table.err_location;
         v_pdesc := :log_table.prob_desc;
         v_psoltn := :log_table.prob_soltn;
         v_status := :log_table.status;
         v_edatetime := :log_table.end_date;
         log_insert(v_pid,v_pname,v_mod,v_datetime,v_version,v_assign,v_func,v_etype,v_ecomp,v_eloc,v_pdesc,v_psoltn,v_status,v_edatetime);
         commit;
         exception
              when others
              then
              DBMS_OUTPUT.PUT_LINE(SQLERRM);
              rollback;
         end;
    And the Code in Procedure (log_insert) of Program Unit.
    PROCEDURE log_insert(
    p_pname varchar2,
         p_mod varchar2,
    p_datetime VARCHAR2,
    p_pid varchar2,
    p_version varchar2,
    p_assign varchar2,
    p_func varchar2,
    p_etype varchar2,
    p_ecomp varchar2,
    p_eloc varchar2,
    p_pdesc varchar2,
    p_psoltn varchar2,
    p_status varchar2,
    p_edatetime varchar2)
    IS
    BEGIN
    insert into fcclog.log_table(PROB_ID,PERSON_NAME,MODULE,START_DATE,VERSION,ASSIGNED_BY,FUNCTIONALITY,ERR_TYPE,ERR_COMPONENT,ERR_LOCATION,PROB_DESC,PROB_SOLTN,STATUS,END_DATE)
    values(p_pid,p_pname,p_mod ,p_datetime,p_version,p_assign,p_func,p_etype,p_ecomp,p_eloc,p_pdesc,p_psoltn,p_status,p_edatetime);
    END;

  • Error: FRM-40657, Block based on Procedure

    Hi,
    I have a detail block, its Qry Data Source is Procedure, and the DML is to a table,
    The data is loading from two table say A and B, but the DML is to table B only.
    The pblm is when editing the data from A(if the data loaded from the Table A satisfy certain condition then I have to store that data into Table B along with other data selected from table B, i am getting the error FRM - 40657.
    Thanks in advance

    Hi,
    You are running into the error because you are trying to change or delete a record when you have already 'locked' it by viewing it in your form.
    If you do need to do it this way, you will have to clear data from table B and then do the updates/inserts and then requery the data.
    Hope I've understood what you mean!
    L :-)

  • Error FRM-92100 only on certain rows ..

    Hi All,
    I am deploying Forms 10g into Form Services iAS 10.1.2.0.2 on Linux RH AS 4. Clients are using WinXP SP1, IE 6.
    On a Forms, when I try to access a certain rows, I get Error : FRM-92100. But when I Access other rows, no error.
    Can any body give me clues, where to start to troubleshoot this kind of error ?
    Thank you very much,
    xtanto

    Ok- so what is specific about those rows - is it consistantly the same rows? If so, what if you create a simple test form and do the same action on those rows - and what do you mean by "access certain rows" - do you mean query?update?delete?
    Regards
    Grant ROnald

  • Can't find report error frm-41219

    i have a report with the name of item_report.rdf
    i have a form with the name test123
    DECLARE
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    BEGIN
    repid := FIND_REPORT_OBJECT( 'item_report' );
    v_rep := RUN_REPORT_OBJECT(repid);
    END;
    i get the error frm-41219
    frm-40738 argument 1 to builtin RUN_REPORT_OBJECT cannot be null.
    please guide me
    Thanks

    have a report with the name of item_report.rdf
    i have a form with the name test123
    forms9i, reports9i ooperating system window XP
    DECLARE
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    BEGIN
    repid := FIND_REPORT_OBJECT( 'item_report' );
    v_rep := RUN_REPORT_OBJECT(repid);
    END;
    i get the error frm-41219
    frm-40738 argument 1 to builtin RUN_REPORT_OBJECT cannot be null.
    please guide me
    Thanks

Maybe you are looking for

  • Posting Goods Receipt Problem

    Dear All         During Posting Goods Receipt, Systems showing error msg " Account determination for entry INT BSX_____     ______ 3000 not possible,   so i used TCode OBYC and OMWD  for account determination, but it again showing same error msg, How

  • Performance tuning in 11g for said query

    Hello, I have the below query which needs to be tuned: SELECT DISTINCT a.emplid , a.upa_fiscal_year , b.balance_period , 0 , a.descr , a.UPA_CURRENT_AMT , a.UPA_CURRENT_AMT2 , a.UPA_CURRENT_AMT3 , a.UPA_CURRENT_AMT4   FROM ps_upa_eq_incal_vw a   , ps

  • Freezes  very often imac

    freezes  very often imac

  • QT opening in a smal floating window

    I was wondering if there is any way to open mp3 files or video files in a small window so people can stay in the same page while listening to my music or watch videos. Right now I have hyperlinks that link to a file (the mp3) and it opens a big new d

  • Director 8 to Director 11.5

    Hello everyone, I'm currently coordinating a study at Columbia University.  One of the computerized questionnaires that our research group gives to participants is programmed in Director 8.  We are interested in purchasing Director 11.5, but would li