FRM-13008 when adding JavaBeans to Forms

I'm keep getting a FRM-13008 "Cannot find JavaBean with name ..." when I try to set the Implementation Class for a new BeanArea in a form. Even with the demo classes I'm getting the same error. I'm using the fully qualified class names, such as oracle.forms.demos.ProgressBarPJC
The demo class files are installed in my \orant\forms60\java\oracle\forms\demos directory. My FORMS60_JAVADIR points to \orant\forms60\java. Since it's a demo class, I know the IView interface is ok.
Are there other causes for the 13008 error? Is there anything else I need to know or check? Any help would be greatly appreciated.

I'm having exactly the same problem you have, and I didn't have any reply even from Oracle Italian Support, did you find the way to solve it?
Thank you, Nicoletta Bindi
<BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Jay Bailey ([email protected]):
I'm keep getting a FRM-13008 "Cannot find JavaBean with name ..." when I try to set the Implementation Class for a new BeanArea in a form. Even with the demo classes I'm getting the same error. I'm using the fully qualified class names, such as oracle.forms.demos.ProgressBarPJC
The demo class files are installed in my \orant\forms60\java\oracle\forms\demos directory. My FORMS60_JAVADIR points to \orant\forms60\java. Since it's a demo class, I know the IView interface is ok.
Are there other causes for the 13008 error? Is there anything else I need to know or check? Any help would be greatly appreciated.<HR></BLOCKQUOTE>
null

Similar Messages

  • Frm-13008 when using webutil

    hi all
    im using webutil for the need of client_get_file_name.
    When I open the webutil canvas I get an error: FRM-13008: Cannot find JavaBean with name ‘oracle.forms.webutil.ole.olefunctions’.
    At runtime, the webutil canvas appears with an ‘Ok’ button. After pressing on ok I get my canvas.
    After pressing the ‘Browse’ button i'm getting the following error: ‘oracle.forms.webutil.file.filefunctions bean not found. Webutil_file.file_selection_dialog_int will not work.’
    thx for help :)
    Nada

    i've already put the jar files' locations in the env classpath.
    the env classpath looks like the following:
    CLASSPATH=c:\DevSuiteHome_1\j2ee\OC4J_BI_Forms\applications\formsapp\formsweb\WEB-INF\lib\frmsrv.jar;c:\DevSuiteHome_1\jlib\repository.jar;c:\DevSuiteHome_1\jlib\ldapjclnt10.jar;c:\DevSuiteHome_1\jlib\debugger.jar;c:\DevSuiteHome_1\jlib\ewt3.jar;c:\DevSuiteHome_1\jlib\share.jar;c:\DevSuiteHome_1\jlib\utj.jar;c:\DevSuiteHome_1\jlib\zrclient.jar;c:\DevSuiteHome_1\reports\jlib\rwrun.jar;c:\DevSuiteHome_1\forms\java\frmwebutil.jar;C:\DevSuiteHome_1\forms\java\jacob.jar;c:\DevSuiteHome_1\forms\java\frmall.jar

  • Getting   FRM-41029   when calling report from form

    Hi
    I have following procedure to run the report but its running fine but giving error FRM-41029 when calling the report from the form.
    runrep('MATREP,'REPSER','PDF','F:\rec\RepEnt.RDF');
    Repid := FIND_REPORT_OBJECT(repobj);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_EXECUTION_MODE, RUNTIME);
    set_report_object_property(repid, REPORT_SERVER, repserv);
    set_report_object_property(repid, REPORT_COMM_MODE, SYNCHRONOUS);
    set_report_object_property(repid, REPORT_DESTYPE,'file');
    set_report_object_property(repid, REPORT_DESFORMAT,repfor);
    set_report_object_property(repid, REPORT_FILENAME,repfile);
    rgds
    soumya

    hi
    try something like this.
    PROCEDURE sarah ( p_report_name varchar2, vParamValue number ) is
    l_param_list  paramlist;
    l_rep_id      report_object;
    l_rep_job     varchar2(100);
    l_rep_status  varchar(100);
    BEGIN
    l_param_list := Get_parameter_List('tmp');
    IF NOT Id_Null(l_param_list ) THEN
    Destroy_parameter_List( l_param_list );
    END IF;
    l_param_list := Create_parameter_List('tmp');
    add_parameter(l_param_list ,'p_num',text_parameter,to_char( vParamValue ));
    l_rep_id := FIND_REPORT_OBJECT( p_report_name );
    if
         id_null ( l_rep_id )
    then
      msg ( 'There is no Report ' || p_report_name || ' in form ' || name_in ( 'system.current_form' ) );
      raise form_trigger_failure;
    end if;
    SET_REPORT_OBJECT_PROPERTY(l_rep_id, REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(l_rep_id, REPORT_DESTYPE,cache);
    SET_REPORT_OBJECT_PROPERTY(l_rep_id, REPORT_DESFORMAT,'PDF');
    SET_REPORT_OBJECT_PROPERTY(l_rep_id, REPORT_OTHER, 'paramform=no');
    l_rep_job := RUN_REPORT_OBJECT( l_rep_id, l_param_list );
    l_rep_status := REPORT_OBJECT_STATUS( l_rep_job );
    WHILE l_rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    l_rep_status := report_object_status( l_rep_job );
    END LOOP;
    WEB.SHOW_DOCUMENT('http://sarah:8889/reports/rwservlet/getjobid'||substr(l_rep_job,instr(l_rep_job,'_',-1)+1) || '?server=repserver', '_blank');
    END; then u may call the procedure something like this.
    when-button-pressed trigger.
    begin
    sarah ('REPORT6', :block.item );
    end;sarah
    Edited by: S@R@h on Nov 30, 2009 9:39 PM

  • FRM-92101 when trying to run forms from Forms Builder 10g

    I have been struggling with this for a few days now and have tried multiple solutions around on these forums without any resolution yet!
    Trying to run Forms Builder on a Windows XP machine with Oracle Development Suite 10.1.2.0.2 installed in its own ORACLE_HOME. The installation completes succesfully and I can start the OC4J instance.
    1) When I open up Forms Builder and pull up the test.fmb form and try to run it, I get the following error:
    FRM-92101: There was a failure in the Forms Server during startup. This could happen due to invalid configuration. Please look into the web-server log file for details.
    On clicking 'Details' the following errors are displayed:
    Java Exception:
    oracle.forms.netConnectionException: Forms session <1> aborted: unable to communicate with runtime process.
    2) The ORACLE_HOME\j2ee\DevSuite\application-deployments\forms\application.log includes the following errors:
    11/11/25 10:02:23 formsweb: RunformProcess.connect(): failed !
    11/11/25 10:02:23 formsweb: Forms session <1> aborted: unable to communicate with runtime process.
    11/11/25 10:02:23 formsweb: Forms session <1> exception stack trace:
    java.net.ConnectException: Connection refused: connect
         at java.net.PlainSocketImpl.socketConnect(Native Method)
         at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:305)
         at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:171)
         at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:158)
         at java.net.Socket.connect(Socket.java:452)
         at java.net.Socket.connect(Socket.java:402)
         at java.net.Socket.<init>(Socket.java:309)
         at java.net.Socket.<init>(Socket.java:153)
         at oracle.forms.servlet.RunformProcess.connect(Unknown Source)
         at oracle.forms.servlet.RunformProcess.dataToRunform(Unknown Source)
         at oracle.forms.servlet.RunformSession.dataToRunform(Unknown Source)
         at oracle.forms.servlet.ListenerServlet.doPost(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:824)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:285)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:126)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
         at java.lang.Thread.run(Thread.java:534)
    3) The Java console has the following error:
    oracle.forms.net.ConnectionException: Forms session <1> aborted: unable to communicate with runtime process.
         at oracle.forms.net.ConnectionException.createConnectionException(Unknown Source)
         at oracle.forms.net.HTTPNStream.getResponse(Unknown Source)
         at oracle.forms.net.HTTPNStream.doFlush(Unknown Source)
         at oracle.forms.net.HTTPNStream.flush(Unknown Source)
         at java.io.DataOutputStream.flush(Unknown Source)
         at oracle.forms.net.HTTPConnection.connect(Unknown Source)
         at oracle.forms.engine.FormsDispatcher.initConnection(Unknown Source)
         at oracle.forms.engine.FormsDispatcher.init(Unknown Source)
         at oracle.forms.engine.Runform.initConnection(Unknown Source)
         at oracle.forms.engine.Runform.startRunform(Unknown Source)
         at oracle.forms.engine.Main.createRunform(Unknown Source)
         at oracle.forms.engine.Main.start(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Opening http://127.0.0.1:8889/forms/java/oracle/forms/engine/RunformBundle_en_GB.class
    Connecting http://127.0.0.1:8889/forms/java/oracle/forms/engine/RunformBundle_en_GB.class with no proxy
    Opening http://127.0.0.1:8889/forms/java/oracle/forms/engine/RunformBundle_en_GB.properties
    Connecting http://127.0.0.1:8889/forms/java/oracle/forms/engine/RunformBundle_en_GB.properties with no proxy
    Opening http://127.0.0.1:8889/forms/java/oracle/ewt/alert/resource/AlertBundle_en_GB.class
    Connecting http://127.0.0.1:8889/forms/java/oracle/ewt/alert/resource/AlertBundle_en_GB.class with no proxy
    Opening http://127.0.0.1:8889/forms/java/oracle/ewt/alert/resource/AlertBundle_en_GB.properties
    Connecting http://127.0.0.1:8889/forms/java/oracle/ewt/alert/resource/AlertBundle_en_GB.properties with no proxy
    Any inputs will be greatly appreciated.

    Same issue here... Been trying to get this working since a week now. I tried all the solutions like memory heap and all but no luck.
    One thing that I would like to know is that, in some threads the resolution was to recompile the INS_FORMS.MK file under /forms/lib32 but with my installation I don't have that "lib32" folder under /forms/ and I can not even find that file anywhere in my entire installation.
    I am using 12.1.1 on Windows Server 2008.
    Any help or guidelines is greatly appreciated.
    Santhosh.

  • FRM-92101 when openning a particular form

    Hello,
    When opening a particular form, users are encountering the error message:
    FRM-92101: There was a failure in the forms server during startup. This could happen due to invalid configuration
    We have many more forms in the application. Those are working fine.
    Details:
    OAS is 10.1.2.0.2 on windows 2003 server
    Database 10.2
    Could you please have a look on the issue.
    Regards,
    murali

    Hi,
    If you have access to metalink I recommend you this note :
    [url https://support.oracle.com/CSP/main/article?cmd=show&id=189867.1&type=Not]Master Note for: Forms: 9.x and 10.x: Troubleshooting FRM-92050, FRM-921xx [ID 189867.1]
    I also use a tip when I encounter this problem that consist on making a search/replace pl/sql : search the string "*;*" and replace it by the same "*;*" .
    That make to whole forms to be recompile for sure.
    And it works for me.
    Regards
    JeanYves

  • FRM-41045 when returning to calling form

    I'm using Designer 1.3.2 with Headstart 3.4.3 and Forms 4.5.
    The situation is as follows:
    I'm using the call_form functionality to call another form when using a form. This goes well. When I leave the called form to return into the calling form I get the error message 'FRM-41045 Cannot find item: Invalid ID'. The functionality of the form stays in tact, so my question is how can I solve this error or how can I suppress this message?

    Linda,
    My suggestion would be to try to drill down on the cause of the problem in form builder. What causes the FRM message?
    If you cannot track down to the cause and want to suppress this message, you could try to capture the event in the on-error trigger and continue without an error when this error occurs (maybe encapsuled by a helping global variable construction so that the message is not always suppressed)
    In designer/forms 6.0 or 6i you could suppress the message in two ways:
    1. By adding it to the suppress message stack (see hsdapp65.pll for an example).
    2. Add the message to the qms_message_properties table and set the suppr_always_ind to Y.
    The headstart 3.4 qms_messages table does not yet contain this column, but you might take a look at the headstart 2.1.2 procedure qms$forms_errors.add_suppress_message(<message number>); to code your own solution for it in headstart 3.4.
    Regards, Marc

  • Urgent: Getting FRM-41211 when calling reports from forms for first time.

    Hi,
    We are running into the FRM-41211 error, when the users try to call a report from a form. The report is called from a form in SYNCHRONOUS mode. This is the only report that is being called. No other report is
    running at that time when the users get this error. This is happening only the first time when they try to call the report from the form. After getting this error, when they click on OK, and when they try to call this
    report again, the report works fine.
    Any ideas?? It's urgent...
    Thanks
    Vamshi.
    null

    Maybe try to use "run_report_product"?

  • FRM-41211 when i generate DCI forms

    [http://file.itpub.net/attachment/day_110329/20110329_f2a08a172af08d0829734ZEWHnszVEDf.jpg]
    this is my question when i generate a provisional DCI forms in oracle clinical.
    system prompt the FRM-41211:integration error:SSL failure running another product.
    please help me!!

    Maybe try to use "run_report_product"?

  • InfoPath 2013 error when adding new infoPath form

    Hi
    I have created an infoPath form and published it to a SharePoint 2013 site - form library (timerequest).  the form was saved and publish successfully. but when I try to add new document (form),  I got the error below and I hope someone can explain
    to me how each URL in the error is reported by either infoPath or SharePoint as I hope with that information i can trace where my problem is.
    background:
    SharePoint 2013 farm with 2 servers:  spserverfe1 and
    spserverapp1 (not load balancing)
    web application URL is http://spserverfe1
    All managed path site collection I created start with http://spserverfe1/sites/.....
    The correct URL for the form library is http://spserverfe1/sites/spsite/InfoPath/Timerequest  (this showed correctly in the manifest file)
    what I don't understand is when the error occurred,  the error URL showed both the app server spserverapp1 and the wfe server
    spserverfe1
    here is the error:
    The following location is not accessible, because it is in a different site collection: http://spserverapp1/sites/spsite/InfoPath/timerequest/Forms/template.xsn?SaveLocation=http://spserverfe1/sites/spsite/InfoPath/timerequest/&Source=http://spserverfe1/sites/spsite/InfoPath/timerequest/Forms/AllItems.aspx&ClientInstalled=true&OpenIn=Browser&NoRedirect=true&XsnLocation=http://spserverapp1/sites/spsite/InfoPath/timerequest/Forms/template.xsn
    Thanks in advance for your comments and advices
    Swanl

    Hi Swan,
    For troubleshooting your issue, please create an Alternate Access Mapping for the site at 
    http://WFEServerName/ to ensure this site can be resolved by InfoPath.
    For more information, you can have a look at the thread:
    https://social.msdn.microsoft.com/Forums/en-US/a75c3ba8-b41a-4c44-abc4-49a3dde68b1c/the-following-location-is-not-accessible-because-it-is-in-a-different-site-collection?forum=sharepointcustomizationlegacy
    Best Regards,
    Eric
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Trouble with People Picker When Adding an InfoPath form to a form library

    I have a site in SharePoint 2013 with a Form Library that uses an InfoPath form as its default template. Everything was originally created in 2010 (SharePoint 2010 / InfoPath 2010). When we upgraded to SP2013, I still had InfoPath 2010 and I noticed that
    the people picker wasn't working (if I recall, I would just get ignored if I tried to click to open the address book). I have now upgraded to Office 2013, but when I click to open the address book for the people picker, InfoPath crashes. 
    I did some googling and tried the solution I found here:
    http://www.zoutenbier.nl/kb/sharepoint-2013/infopath-filler-2013-crashes-with-sharepoint-2013-when-using-people-picker/
    But changing the web.config caused the people picker in SharePoint to break (if I tried to add someone to a group, the picker would tell me that it couldn't communicate with the server). 
    I'm not sure what else to try. Anyone have any ideas?

    Hi Amy,
    Have you restart your IIS when you add modify web.config on your SharePoint server?
    http://social.technet.microsoft.com/Forums/appvirtualization/en-US/d6fa5812-64e0-4d80-94b0-0577ba43ce59/sharepoint-2013-infopath-2010-people-picker-does-not-works-when-opens-in-client-application-but?forum=sharepointcustomization
    Or you can check the following article with similar errors, remove multipleSiteBindingsEnabled setting from web.config and removed second web site binding from IIS, then check results again after iisreset.
    http://xblogs.kompas-xnet.si/post/SharePoint-Designer-2013-Crashing-when-using-select-peoplegroups-from-SharePoint-site.aspx
    Thanks,
    Daniel Yang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]
    Daniel Yang
    TechNet Community Support

  • FRM-13008 after conversion from 6i

    First, let me indicate that I am dumb as dirt about Forms, IAS, Java. I am a DBA but have next to zero experience in this area. In a test environment, I have converted all application 6i Forms & Reports to 10G. I have only one problem form to convert that errors when opened with a FRM-13008: 'Cannot find JavaBean with name oracle.forms.demos.uploadclient.FileUploader' .
    Now I have read several Forum threads on this plus Metalink notes (including 1072329.6). One of the causes, per that note, is CLASSPATH and FORMSxx_BUILDER_CLASSPATH may be missing references to 1) the java bean class or .jar in the implementation class, 2) the f60all.jar or f90all.jar or 3) the 'forms60\java' or 'forms90\java' directories.
    Per 3) above: My 10G IAS installed directory structure does not include a 'forms60' or 'forms90' directory. My directory is simply 'forms'.
    Per 1): I copied and extracted the uploadclient.jar such that the resulting classes are located at '[ORACLE_HOME]\forms\java\oracle\forms\java\demos\uploadclient'.
    Per 2): In the [ORACLE_HOME]\forms\java directory, I have frmall.jar, but no f60all.jar or f90all.jar.
    Folks, I'm totally lost. Any crumbs you can throw me would be appreciated. Did I mention I was dumb as dirt?
    Thanks.

    I don't see a forms.jar. I do see a frmall.jar. Regardless and based on that last bit of info, in default.env (in my IAS Oracle Home and my developer Oracle Home), I modified CLASSPATH and added FORMS_BUILDER_CLASSPATH to contain c:\[ORACLE_HOME]\forms\java;c:\[ORACLE_HOME]\forms\java\frmall.jar;c:[ORACLE_HOME]\forms\java\UploadClient.jar. The error continues.
    The implementation class in the property palette looks correct. I see no spelling or case issues.
    Any recommended troubleshooting steps to take?

  • JavaBeans in Forms 6.0

    I am trying to use JavaBeans in Forms 6.0. I have followed the
    directions laid out in the Oracle Developer 6.0 Reviewers Guide
    for using the JugglerBean component. Whenever I set the
    implementation class, I get an error FRM-13008: Cannot find
    JavaBean.
    Does anyone know of any documentation that exists on how to do
    this? Or has anyone else had any luck using JavaBeans within
    forms?
    Thanks for any help,
    Jill
    null

    Jill French (guest) wrote:
    : I am trying to use JavaBeans in Forms 6.0. I have followed
    the
    : directions laid out in the Oracle Developer 6.0 Reviewers
    Guide
    : for using the JugglerBean component. Whenever I set the
    : implementation class, I get an error FRM-13008: Cannot find
    : JavaBean.
    : Does anyone know of any documentation that exists on how to do
    : this? Or has anyone else had any luck using JavaBeans within
    : forms?
    : Thanks for any help,
    : Jill
    Jill - make sure that the Java classes are stored in the correct
    package structure and are placed in the directory that is
    pointed to by the FORMS60_JAVADIR registry entry. Typically
    this is \orant\forms60\java on the installation drive.
    but rest assured, it does work! It looks great to see the
    JavaBean actually display in the layout editor.
    -steve
    null

  • How to use javabean in forms e.g.Jcalender in forms?

    hey all....
    I am using FORMS 10G and java plug-in 1.4.2 for adding javabean in forms and fallowing changes
    1) Installed JRE 1.4
    2)copied Jcalender.jar in /forms/java
    3)edit /forms/server/formsweb.cfg as fallows
    baseHTMLjpi=basejpi.htm
    archive=frmall.jar,Jcalender.jar
    jpi_download_page=http://java.sun.com/products/archive/j2se/1.4.2_06/index.html
    jpi_classid=clsid:CAFEEFAC-0014-0002-0000-ABCDEFFEDCBA
    jpi_codebase=http://java.sun.com/products/plugin/autodl/jinstall-1_4_2-win.cab
    jpi_mimetype=application/x-java-applet;jpi-version=1.4.2
    4)load module Jcalender.fmb in form builder
    5)Register the path of 'Jcalender.jar' file where it is stored, in 'FORMS_BUILDER_CLASSPATH'
    5)import java class 'Jcalender.jar' from Program in menu bar
    6)Then it give an exception
    Importing Class oracle.forms.fd.Jcalender...
    Exception occurred: java.lang.UnsupportedClassVersionError: oracle/forms/fd/Jcalender (Unsupported major.minor version 49.0)
    help will be appreciated..plz
    Thank in advance..

    Hi..
    Thanks 4 ur suggestion.
    I am using forms 10.1.2.0.2.i am compiling it on my local m/c.
    Jcalender is not working but the method of all javabean is almost same.
    i can use laf.jar with template 'laf_template.fmb.
    will u plz tell me the steps to use javabean(with plugin ) and suggest the version.
    thanks a lot. Expecting reply..
    bye..

  • [FYI] FRM-92101 and scroll bar and form crash

    Forms 6i
    Windows 2k for app server.
    I have just spent three hours figuring out why I was getting a FRM-92101 when I deployed a form from my development app server to my test app server. Noted that the development server has patch 18 and uses cgi, not sure what patch the test server has but it uses servlet. Anyway the form worked perfectly on the dev server but would crash out with the error on entry in the form on the test server. Eventually I found the solution to be a scroll bar on a block, get rid of the scroll bar from the canvas and voila it worked. Ended up having to place the scroll bar on a stacked canvas to get it to work on the test server. I have already had to deal with a palette issue and those dark pink colours on deployment. Developed for a while on visual studio and never came across such annoying quirks as these.

    I use XP to develop so I was compiling it there and then copying it across to both servers. Should I compile forms on the app server where they are going to be served or have I picked you up correctly?
    Kind regards

  • Error when adding any menu - FRM-40735: ON-INSERT trigger raised unhandled

    When I try to add any new menu in my newly cloned instance I get this error:
    Error when adding any menu - FRM-40735: ON-INSERT trigger raised unhandled excpetion. ORA-04031.
    Using Oracle EBS version 12.1.3.
    Details:
    Menu JOB_STRUCTURE_MENU
    User Menu Name Job Strucure Menu
    Menu Type Standard
    Description Menu to add job, grade, and incentives
    Seq = 1
    Prompt = Enter and Maintain
    Function = Combined Person & Assignment Form WF="US SHRMS TSKFLW
    When I click save I get the error.
    Any assistance would be greatly appreciated.
    Thanks!

    Please post the details of the application release, database version and OS.
    When I try to add any new menu in my newly cloned instance I get this error:
    Error when adding any menu - FRM-40735: ON-INSERT trigger raised unhandled excpetion. ORA-04031.Is the issue with all menus or specific ones only?
    Did AutoConfig complete successfully?
    When I click save I get the error.
    Any assistance would be greatly appreciated.Do you have any invalid objects in the database?
    Any errors in the database log file?
    Please obtain FRD log file for details about the error -- https://forums.oracle.com/forums/search.jspa?threadID=&q=FRD+AND+R12&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

Maybe you are looking for

  • Ive had Lightroom 4 for a while, but I still have Lightroom 2.  How do I transfer all my data from L

    Ive had Lightroom 4 for a while, but I still have Lightroom 2.  How do I transfer all my data from Lightroom 2 to Lightroom 4?

  • Macbook Pro 17 shuts down in minutes even when battery is full

    Hi, this has been going on for a while, i took it to a Apple Service Center in Barcelona Spain with a friend who had the same problem, well, her MBP turned back on with a black screen and they replaced the video card for free, and when they looked at

  • BPC for excel Add-in Conflict

    Hi, I'm trying to find out if there any known excel add-ins that conflict with BPC for Excel (v7) and how the conflicts manifest themselves. I am currently specifically interested in conflicts with SAP BW BEx Analyser but would be interested in any o

  • WRT 110 as an access point

    I have two WRT 110 and I am using one as a wireless router and I wish to use one as a wireless access point, but cannot get them to connect. I have tried it manually and using the wireless protected setup. Is there anything that needs to be cofigured

  • Getting this error when doing a place with oam file

    I am getting the following error when uploading a OAM file: muse_manifest.xml. try again latter. Also is there a better way to have videos play in muse? Anyone know what this means? Thanks. Joe