FRM-92101 error while opening forms & OC4J

Hi all,
I have a customer having problem after certain number of users connecting to the application.
These are the following setup in the environment:
1. OAS 10.1.2.1
2. Windows 2003 Standard Edition SP1 32 Bit
3. Memory 2GB
They are running the application using the Oracle Form, connecting through the application using Internet Explorer.
Number of users might connect to the application are around 42 users in application server #1 and 10 users in application server #2.
Recently they reported that they experiencing the FRM-92101 in random fashion in all clients computer.
I did a check on the windows task manager and I can see that frmweb.exe process will consume around 17MB - 68MB.
This is random, not all process consuming up to 68MB, some of it will be in the avarage of 30MB to 50MB.
I checked the registry for the desktop heap setting which is in HKEY_LOCAL_MACHINE -> System -> Current Control Set -> Control -> Session Manager -> SubSystems. There is a key named Windows and inside here there is a variable called SharedSection. Currently the value is set to 2048, 3072, 2048
From what I know this setting should be enough for around 40 users.
I noticed when 42 users were connecting to app server #1, the physical memory available is only around 140MB.
This FRM-92101 error is not only happening to app server #1 but also #2 which only handles 10 users maximum.
From the information above, I have some questions:
1. What other areas that I need to check for this?
2. What other configuration I can increase so this error is not happening anymore?
3. If I check on opmnctl status, I can only see 1 OC4J home and OC4J_BI_FORMS. Does increasing the number of OC4J can suppress this error?
Please give me the enlightment.
Thank you so much,
Adhika

Hi sandeep;
I have installed vision database r12(12.0.4) on hp ux (11.31).
I am able to open the login page but when trying to access any form it gives below mention error.
FRM-92101: There was a failure in the Forms Server during startup. This could happen due to invalid configuration.
I have checked below mention log file.
/devbackup/applvis/inst/apps/VIS_reeldev/logs/ora/10.1.3/opmn/forms_default_group_1/formsstd.out
Error:
Forms session <1> aborted: runtime process failed during startup with errors /usr/lib/hpux32/dld.so: Unsatisfied code symbol 'nnftboot' in load module '/devbackup/applvis/apps/tech_st/10.1.2/lib32/libclntsh.so.10.1'.Please check below and see its helpful:
Error Dld.So: Unsatisfied Code Symbol 'Nnftboot' Signal 9 When Running Reports Concurrent Requests [ID 560287.1]
All Concurrent Requests End With Signal 9 Termination Error [ID 452714.1]
Also check Apache log files for more details
What is post installation task after installing r12?You can follow Recomended R12 patches On Metalink
Not able to execute .env file with owner and privileges, why?How you are trying to execute?
How to get r12 original media from oracle? You can log Sr for media or you can contact wiht your oracle local office
Regard
Helios

Similar Messages

  • FRM-92101 error while opening forms on fresh r12 vision db on hp ux (11.31)

    Hi all,
    I have installed vision database r12(12.0.4) on hp ux (11.31).
    I am able to open the login page but when trying to access any form it gives below mention error.
    FRM-92101: There was a failure in the Forms Server during startup. This could happen due to invalid configuration.
    I have checked below mention log file.
    /devbackup/applvis/inst/apps/VIS_reeldev/logs/ora/10.1.3/opmn/forms_default_group_1/formsstd.out
    Error:
    Forms session <1> aborted: runtime process failed during startup with errors /usr/lib/hpux32/dld.so: Unsatisfied code symbol 'nnftboot' in load module '/devbackup/applvis/apps/tech_st/10.1.2/lib32/libclntsh.so.10.1'.
    As search from Google and forums get the same issue with RHEL, issue seems to be with some library.
    We are having other testing instances on the same server and I am able to open there forms.
    Is any issue with library or any configuration requiring after installation?
    What is post installation task after installing r12?
    Not able to execute .env file with owner and privileges, why?
    How to get r12 original media from oracle?
    Thanks in advance
    Sandeep.

    Hi sandeep;
    I have installed vision database r12(12.0.4) on hp ux (11.31).
    I am able to open the login page but when trying to access any form it gives below mention error.
    FRM-92101: There was a failure in the Forms Server during startup. This could happen due to invalid configuration.
    I have checked below mention log file.
    /devbackup/applvis/inst/apps/VIS_reeldev/logs/ora/10.1.3/opmn/forms_default_group_1/formsstd.out
    Error:
    Forms session <1> aborted: runtime process failed during startup with errors /usr/lib/hpux32/dld.so: Unsatisfied code symbol 'nnftboot' in load module '/devbackup/applvis/apps/tech_st/10.1.2/lib32/libclntsh.so.10.1'.Please check below and see its helpful:
    Error Dld.So: Unsatisfied Code Symbol 'Nnftboot' Signal 9 When Running Reports Concurrent Requests [ID 560287.1]
    All Concurrent Requests End With Signal 9 Termination Error [ID 452714.1]
    Also check Apache log files for more details
    What is post installation task after installing r12?You can follow Recomended R12 patches On Metalink
    Not able to execute .env file with owner and privileges, why?How you are trying to execute?
    How to get r12 original media from oracle? You can log Sr for media or you can contact wiht your oracle local office
    Regard
    Helios

  • FRM-92101 error while running report from form

    HI All,
    I am getting the form error FRM-92101 while running report from form menu.My code is given below:
    DECLARE
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status VARCHAR2(20);
    BEGIN
    repid := FIND_REPORT_OBJECT('REPORT47');
    v_rep := RUN_REPORT_OBJECT(repid);
    rep_status := REPORT_OBJECT_STATUS(v_rep);
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    rep_status := report_object_status(v_rep);
    END LOOP;
    IF rep_status = 'FINISHED' THEN
    WEB.SHOW_DOCUMENT('http://192.168.0.21:8889/reports/rwservlet/getjobid'||
    substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server=repserver90','_blank');
    ELSE
    message('Error when running report');
    END IF;
    Clear_message;
    END;
    Clear_message;
    --Arif                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    hi Arif
    Please see this note on MOS/Metalink for some common causes of this error:
    Known Causes of FRM-92101 Error In Forms [ID 604633.1]
    thanks,
    AMN

  • Frm-92101 error while executing oracle forms in 10g

    My form is being compiled successfully.But while executing its throwing frm-92101.Oc4j is running.
    What can I do??please help.

    Hi,
    Can you just post complete error message and the os you have installed forms on.
    Yoonus
    Regards
    Edited by: yoonus on Dec 15, 2012 12:24 AM

  • Getting FRM-40010 Error While opening new form  .fmx

    Hi,
    Oracle apps : 11.5.10.2
    Forms : Forms 6.0
    I'm creating a custom form by using one oracle apps table.I created a basic form by using template.fmb and then saved it to directory "/dir1" and run this form by connecting to oracle apps database.
    When I try to open .fmx from this directory ('/dir1') I'm getting FRM-40010 error.When I checked FORM60_PATH = It's showing /u01...../au/11.5.0/resource.I don't see "/dir1" in that path?
    Do I need to modify forms60_path ?
    Do I need to register this form before running as it's using table from Oracle apps schema?
    Thanks,
    Kiran

    When I try to open .fmx from this directory ('/dir1') I'm getting FRM-40010 error.When I checked FORM60_PATH = It's showing /u01...../au/11.5.0/resource.I don't see "/dir1" in that path?You need to set FORMS60_PATH and include /dir1 in this path.
    https://forums.oracle.com/forums/search.jspa?threadID=&q=FRM-40010+&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Do I need to modify forms60_path ?Yes.
    $ export FORMS60_PATH=$FORMS60_PATH:/dir1
    Do I need to register this form before running as it's using table from Oracle apps schema?Yes.
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Register+AND+Custom+AND+Form&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Custom+AND+Form&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • FRM:92101:Error while accessing employee assignment page

    Hi All
    I get the following error while accessing People>enter and maintain>assignment Page.
    FRM:92101: There was a failure in the forms server during start up. This could happen due to invallid configuration. Please look into web server log file for the details.
    Menu : GLB HRMS Navigator
    Request group:Global HRMS Reports & Process
    Kindly help.
    Regards
    Sasmita

    I remember encountering this issue once when there was some problem with People Group KFF setup. In that case form server crash occurs while opening the assignment screen. No other screen show this behavior in that case. What we did was open the people group FF set up, create one dummy segment (you must have at least one dummy segment for People Group flex field for the assignment screen to work properly), compile and save. Once this was done, assignment screen opened up properly.
    You too can try the same and let us know if it works with you.

  • FRM-92101 error while running report from a button or menu

    Hi All,
    I am getting the error FRM-92101 while running report without parameter from a button or menu. I am using Developer Suit 10g. I get the error as it shows there has some configuration problem in my form. Will you please help me anyone how can i solve the problem. My previous forms running very well both with parameter and without parameter.
    Arif

    Hello Sir,
    Thanks for your cooperation. I have solved my problem by myself. The fact was that, when i tried with the following code which made my report---
    SELECT br.bid, br.bname, br.branchtxnstatus, dif.difference
    FROM branch br,
    (SELECT gladbrid branchid,
    SUM
    (CASE
    WHEN ga.gl_acc_categry IN ('L', 'I')
    THEN gd.gladbalance
    ELSE -1 * gd.gladbalance
    END
    ) AS difference
    FROM glaccount ga, glaccountdetail gd
    WHERE ga.glid = gd.gladglid
    GROUP BY gladbrid) dif
    WHERE dif.branchid = br.bid AND br.branchtxnstatus = :Br_Status
    and dif.difference!=0
    ORDER BY br.bid;
    and the code against the button or menu item is---
    DECLARE
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status VARCHAR2(20);
    BEGIN
    repid := FIND_REPORT_OBJECT('ASSET');
    v_rep := RUN_REPORT_OBJECT(repid);
    rep_status := REPORT_OBJECT_STATUS(v_rep);
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    rep_status := report_object_status(v_rep);
    END LOOP;
    IF rep_status = 'FINISHED' THEN
    /*Display report in the browser*/
    WEB.SHOW_DOCUMENT('http://192.168.0.21:8889/reports/rwservlet/getjobid'||
    substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server=repserver90','_blank');
    ELSE
    message('Error when running report');
    END IF;
    Clear_message;
    END;
    Clear_message;
    which has shown the error FRM-92101 and didn't run the report.
    In that case I have changed the query to run the report. first of all i create a view following the query and build the report using a simple select query. that's etc. my report running fine now.
    It is mentioned that there had no error on my codes.
    Arif

  • Error while Opening Forms Designer - File fmrNLw.res

    Hi,
    installed Oracle9i DS version 9.0.2
    When opening Forms designer it gives me an error with the file C:\oracle\ora91DEV\forms90\formNLw.res
    Any suggestions.
    Thanks
    Reto

    Hi sandeep;
    I have installed vision database r12(12.0.4) on hp ux (11.31).
    I am able to open the login page but when trying to access any form it gives below mention error.
    FRM-92101: There was a failure in the Forms Server during startup. This could happen due to invalid configuration.
    I have checked below mention log file.
    /devbackup/applvis/inst/apps/VIS_reeldev/logs/ora/10.1.3/opmn/forms_default_group_1/formsstd.out
    Error:
    Forms session <1> aborted: runtime process failed during startup with errors /usr/lib/hpux32/dld.so: Unsatisfied code symbol 'nnftboot' in load module '/devbackup/applvis/apps/tech_st/10.1.2/lib32/libclntsh.so.10.1'.Please check below and see its helpful:
    Error Dld.So: Unsatisfied Code Symbol 'Nnftboot' Signal 9 When Running Reports Concurrent Requests [ID 560287.1]
    All Concurrent Requests End With Signal 9 Termination Error [ID 452714.1]
    Also check Apache log files for more details
    What is post installation task after installing r12?You can follow Recomended R12 patches On Metalink
    Not able to execute .env file with owner and privileges, why?How you are trying to execute?
    How to get r12 original media from oracle? You can log Sr for media or you can contact wiht your oracle local office
    Regard
    Helios

  • Error While Opening Form

    Hai To All,
            While i try to open my form i get the following error.
    The server thrown an exception (Exception from HRResult :0x80010105(RPC_E_ServerFault)
    Its urgent can anyone help me..............
    Regards,
    Anitha

    Anitha,
    Im not sure, but I think that this will be due not properly release of com object (because this error belongs to coms obj.).
    By opening form you may go through lines in code and check where the error occurs. SBO is known with problem of releasing object, where object = nothing is not for SBO enough. Try to release the object as
    System.Runtime.InteropServices.Marshal.ReleaseComObject(obj)
    obj = Nothing
    GC.Collect()
    its just my idea
    Petr

  • Install missing plugins error while opening forms in EBS R12

    Hi,
    I installed EBS R12 in my desktop through vm ware. my host os is windows xp and my guest os is oel 5.3. Now when i am trying to open any form based window through OAM in firefox browser, install missing plug ins error occurs.
    How can i open forms? Pls can any one help me. Thanks in advance.

    I installed EBS R12 in my desktop through vm ware. my host os is windows xp and my guest os is oel 5.3. Now when i am trying to open any form based window through OAM in firefox browser, install missing plug ins error occurs.
    How can i open forms? Pls can any one help me. Thanks in advance.To answer your this question, Hussein already updated the referenced notes, just follow them and you will be able to access/open EBS on firefox.
    Somewhere i heard that we have to create a sybolic link with the java plugin. Where can i find that java plugin in our system and to where i have to crete the link.from where you heard that, it is required ?
    regards

  • Frm-10142 error while running form

    hi,
    I have installed Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 and Oracle Developer Suite 10g (9.0.4) on my windows 7 32bit system.but i couldnot connect from forms to database.so i uninstalled developer suite and installed oracle dvs(10.1.2.0.2) on my system.now i can connect from forms to database but when i run forms i am getting frm-10142 error .ie the http listner is not running on my machine at port 8889.please start the listner or check your run time preferences.
    Please help to solve this .

    901776 wrote:
    hi,
    i have installed it .but still it is not displaying any thing in the browser.no suitable plugins were found.firefox is unable to detect the plugins.
    Please help.....What is your JRE version ? What is the firefox version ?
    Did you configure formsweb.cfg for JRE ? if yes show your cinfiguration..
    If no..
    Follow the link
    1. http://sites.google.com/site/craigsoraclestuff/oracle-forms---how-to-s/forms-how-to-configure-forms-builder-to-run-forms-locally
    2. http://www.orafaq.com/forum/t/50438/2/
    Hope this helps

  • Error while opening form in parent currency

    Hi
    I have created a form where i input the data at entity currency for various entities.
    I need to view data at consolidated level in parent currency.
    But each time after i select the parent entity and then select <Parent currency>, the form does not open and gives an error as follows:
    An unknown error has occurred in the HsvWebFormGeneratorACM object.
    Show Details:
    Error Reference Number: {CDB5B697-1463-42F2-92E3-E63D5884A56F};User Name: admin@Native Directory
    Num: 0x80004005;Type: 0;DTime: 1/29/2010 1:07:59 PM;Svr: STARINDEVHYAP;File: CHsvData.cpp;Line: 7163;Ver: 11.1.1.3.0.2413;
    Num: 0x80004005;Type: 0;DTime: 1/29/2010 1:07:59 PM;Svr: STARINDEVHYAP;File: WDEFGenerator.cpp;Line: 3735;Ver: 11.1.1.3.0.2413;
    Num: 0x80040d40;Type: 0;DTime: 1/29/2010 1:07:59 PM;Svr: STARINDEVHYAP;File: WDEFGenerator.cpp;Line: 3155;Ver: 11.1.1.3.0.2413;
    Num: 0x80040d40;Type: 0;DTime: 1/29/2010 1:07:59 PM;Svr: STARINDEVHYAP;File: CHsvWebFormGeneratorACM.cpp;Line: 2724;Ver: 11.1.1.3.0.2413;
    Num: 0x80040d40;Type: 0;DTime: 1/29/2010 1:07:59 PM;Svr: STARINDEVHYAP;File: CHsvWebFormGeneratorACM.cpp;Line: 2433;Ver: 11.1.1.3.0.2413;
    Num: 0x80040d40;Type: 0;DTime: 1/29/2010 1:08:00 PM;Svr: STARINDEVHYAP;File: CHsvWebFormsACV.cpp;Line: 569;Ver: 11.1.1.3.0.2413;
    The script for the said form is as below :
    ReportType=WebForm
    ReportLabel=Historical Data
    ReportDescription=Historical Data
    BackgroundPOV=S#Actuals.w#YTD.E#100.V#<Entity Currency>.I#[ICP None].C1#No PCC.C2#H_1001.C3#BaseData.C4#NotApplicable
    SelectablePOVList=Y{[Hierarchy]}.P{[Third Generation]}
    C1=C2{Historicals.[Hierarchy]}
    R1=A{Historical Acc.[Hierarchy]}
    ShowLabels=True
    ShowDescriptions=True
    what would be reason for the said error?
    Regards,

    Solved the issue..... since the entity top member and the parent currency members were in the default view, it gave the error message
    rgds

  • APP-PAY-07114 error while open forms

    Hello everyone,
    I have added a function in custom.pll and compiled using f60gen and then when i tried to open the form, i am getting the following error message.
    APP-PAY-07114: Oracle error ORA-01115: IO error reading block.....
    Please give me some suggestions.
    Thanks in advance.

    The function which i have written does some calculations when i save the form. Below is the code.
    IF (form_name = 'XXX') THEN
    IF (block_name = 'YYY') THEN
         IF (event_name = 'POST-UPDATE') THEN
         l_emp_number := name_in('PERSON.EMPLOYEE_NUMBER');
         custom_function(l_emp_number);                
    END IF;
    END IF;
    END IF;     
    The custom_function is saved in the database.

  • FRM-40735 Error While openings Forms

    Sawwan,
    We did cloning , every thing went smooth, No issues before, When ever we are trying to access forms getting error
    11.5.0.2 and 10.2.0.4
    FRM-40735:ON_ERROR Trigger Raised Unbundled exception ORA-06508
    Thanks

    Sawwan,
    Invalids List..
    SQL> select count(*) from dba_objects where status ='INVALID';
    COUNT(*)
    204
    Here is error_log information
    error_log" [Read only] 13 lines, 1711 characters
    [Fri Sep 18 13:35:41 2009] [notice] FastCGI: process manager initialized (pid 58
    97)
    [Fri Sep 18 13:35:42 2009] [notice] Oracle HTTP Server Powered by Apache/1.3.19
    [Fri Sep 18 13:35:41 2009] [notice] FastCGI: process manager initialized (pid 58
    97)
    [Fri Sep 18 13:35:42 2009] [notice] Oracle HTTP Server Powered by Apache/1.3.19
    configured -- resuming normal operations
    [Fri Sep 18 13:37:48 2009] [error] [client xxx.xxx.xxx.xxx] File does not exist:
    /comn/java/oracle/apps/media/oracle/apps/media/splash.gif
    [Fri Sep 18 13:38:19 2009] [error] [client xxx.xxx.xxx.xxx] File does not exist:
    /comn/java/oracle/apps/media/oracle/apps/media/splash.gif
    [Fri Sep 18 13:40:46 2009] [error] [client xxx.xxx.xxx.xxx] File does not exist:
    /comn/java/oracle/apps/media/oracle/apps/media/splash.gif
    [Fri Sep 18 13:40:46 2009] [error] [client xxx.xxx.xxx.xxx] File does not exist:
    /comn/java/oracle/apps/media/oracle/apps/media/splash.gif
    [Fri Sep 18 13:40:58 2009] [error] [client xxx.xxx.xxx.xxx] File does not exist:
    /comn/java/oracle/apps/media/oracle/apps/media/splash.gif
    [Fri Sep 18 13:43:32 2009] [error] [client xxx.xxx.xxx.xxx] File does not exist:
    /comn/java/oracle/apps/media/oracle/apps/media/splash.gif
    [Fri Sep 18 15:04:10 2009] [error] [client xxx.xxx.xxx.xxx] File does not exist:
    /comn/portal/xxxxxxxx_oraapp05/favicon.ico
    [Fri Sep 18 15:12:17 2009] [error] [client xxx.xxx.xxx.xxx] client denied by serv
    er configuration: /comn/java/java
    [Fri Sep 18 15:12:17 2009] [error] [client xxx.xxx.xxx.xxx] client denied by serv
    er configuration: /comn/java/java
    @

  • HELP error FRM-40039: Cannot attach library common while opening form

    Hi
    I want to help me with the NEXT issue is urgent.
    I'm working with forms 10g and using a linux server. To compile objects, forms, reports and menus use the Putty.
    Well the issue is that when a form hanging linux server I get the error message sgte:
    FRM-40039: Can not attach library while opening form common ....
    I tried changing the path FORMS_PATH, also put the. PLL. Plx on those routes Server
    but I have no result, I still leave the same message.
    I go to pc urgently to solve this problem that has me worried for days.
    Thanks in advance for your advice
    regards

    Three possible causes:
    1. The pll is not existnant on the linux-server in the FORMS_PATH or the FORMS_PATH-environment-variable is not set.
    2. When attaching the pll to forms you have attached it without removing the path. Try to deattach and reattach the pll in the form.
    3. The attachment of a pll is case-sensitive in linux. So, when you types the pll-name is lowercase when attaching it, the pll must exist in lowercase in the linux-filesystem.

Maybe you are looking for

  • Samba - refuses to authorise

    I bought a new MacBook running 10.6.2 as my dear old G4PB finally gave up the ghost. I wish I hadn't... In 20 years of using a Mac this is, by a long way, the worst experience I have had. The latest problem - of far, far too many - involves Samba. At

  • Excel Addin issue

    Hi There, I am wondering if the issue happens to others or not, but some of our excel addin users have the following issue: They use Excel addin Lock, send and unlock the data, however when they do "Retrieve", there is nothing showing up at excel. (d

  • Could not obtain connection to the central environment.

    Hi, I have just started using iSetup on 11.5.10.2. Initially I intend to use the same instance as source and central one.My understanding is that Source,Central and Target Instance are more of logical grouping and the same instance can be mapped for

  • Dear Adobe Programmers

    Has anyone a view on this matter? I am not very hopeful after experiencing the incredible number of walls that need to be climbed to find anyone who could may be listen Thanks anyway Wihlem

  • /bin in wwwroot is there, why can't my app find the required .dll??

    Having issues with DreamweaverCtrls.dll. there is a /bin with the DLL inside it. I used the "Deploy" to put it there. What's up?