DEPLOYMENT PROCEDURE TO DEPLOY OAF PAGES TO E-BUSINESS SUTE.

We are having many customizations of OAF Pages. Each time we are doing any modification to those pages we are deploying to E-Buss and bouncing the Apache. Is there any better way to deploy the OAF Pages without bouncing the Apache? Note that, we are using OAF Extended functionlity to customize the Oracle e-buz pages.

Hi,
Bouncing Apache is one thing which is not avoidable, even though there are cases when you can avoid it. Suppose you have updated any SEED data, then bouncing is not required, or at times the MDS components are changed (but this is not always guaranteed), or if you moved the code for the first time (no previous cache available). Whenever a class file is modified, bouncing is imminent.
To summarize, under the present situation you should always bounce apache after deploying any code changes.

Similar Messages

  • Calling a procedure from an OAF page through a button in the screen

    problem: calling a procedure from an OAF page through a button in the screen

    CREATE OR REPLACE procedure APPS.xx_delete_dept_prc(p_id in number)
    as
    begin
    delete from xx_training_dept_tbl where td_dept_id=p_id;
    commit;
    end;
    2.     create image button for delete
    3.     set the following property to this button:
    action type : fire action
    event :DeleteDept
    parameter :
    name: DEptIdParam value: ${oa.XxTrainingDeptVO1.TdDeptId}
    4.     create Co and writing the following code on process form request
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    String actionInscreen=pageContext.getParameter(EVENT_PARAM);
    if ("deleteDept".equals(actionInscreen))
    String deptidparam=pageContext.getParameter("DeptIdParam");
    Serializable [] s={deptidparam};
    Class [] c={deptidparam.getClass()};
    OAApplicationModule am=pageContext.getApplicationModule(webBean);
    am.invokeMethod("deleteDept",s,c);
    throw new OAException("delete completed",OAException.INFORMATION);
    5.     create AM and writing the following code
    public void deleteDept(String deptid) {
    XxTrainingDeptVOImpl deptview= getXxTrainingDeptVO1();
    deptview.deleteDept(deptid); }
    6.create VO and writing the following code in view object class
    public void deleteDept(String deptid
    System.out.println("Dept ID =" +deptid);
    String s = "call xx_delete_dept_prc(:1)"; // :1 is the number of parameter to pass it to procedure
    CallableStatement cs =trx.createCallableStatement(s,1); // 1 number of record to fetch but delete always delete 1 row
    try
    cs.setString(1,deptid); // the name of the first parameter
    cs.execute();
    cs.close();
    catch (SQLException e)
    e.printStackTrace();
    }

  • How to call OAF page from plsql

    Hi OAF Guru's,
    I have a requirement to call a OAF page from a plsql procedure/function, I know how to call procedure/function from OAF pages, but I don't have any idea about how to call a OAF page from plsql.
    Any help is appreciated.
    Thanks in Advance.
    Raja.

    Hi,
    What is your exact requirement. Why do you want to call a OA page from PL/SQL. Please share your requirement clearly.
    HTH,
    Syed.

  • How can i use AME for the new OAF page.

    Dear all,
    I have developed a new OAF page and registered under Employee Self Service.
    How can i use AME for the approval process.
    Appreciate your ideas?
    zamora

    I will try to answer based on my experience of working with iProcurement and AME. It depends on how you want to make a call to AME , directly from OAF Page or from Workflow and your requirement. You didn't specify what you want to show the users on OAF Page and your business requirement.
    Before calling AME Engine from the OAF page or workflow, I guess you did already setup AME Transaction Type and it's Approval Groups, Conditions, Action Types and Rules. Do some testing from AME Business Analyst Test Workbench. Please note that, AME provides lot of PL/SQL API's that you have to call from your programs (java or workflow pl/sql)
    Let's look at the workflow and putting an OAF Page as notification.
    As Sameer said, you have kick-off workflow process from PR of CO and with in the workflow function, you make a call to AME Engine API's with the AME Transaction ID. This transactionId belongs to the AME Transsaction Type that you setup. Based on the rules setup, AME Engine generates list of approvers/approver and stores them AME Tables for that transactionId. Then, it sends a notification to the approver.
    In the workflow, where that notification is defined, in the message body you have to put an attribute(&XX_WF_FWK_RN) of type document/send. And this attribute will have the constant JSP:/OA_HTML/OA.jsp?OAFunc=XX_FUNC&paramId=-&DOCUMENT_ID-. This function is SSWA Jsp function that makes a web html call to your OAF Region.
    If your requirement is to just show the list of approvers on the OAF Page, you may have to call AME API diectly passing your AME TrasnactionId with other parameters. Then AME generates list of approvers and stores them in AME tables with each approver status. You can pickup those approvers using VO and show them on OAF Page.
    Hope this gives some idea.

  • First OAF page deployment - many questions

    I am trying deploy my first OAF Page (HelloWorldPG). However, I am getting lost trying to understand the directory
    structure. I tried to read through older posts from other users....but parts of their directory structure is different
    from mine.
    Development Steps:
    1) Created new OA component page using the default package "oracle.apps.ak.hello"
    The Physical location of the page is C:\JDEV\jdevhome\jdev\myprojects\oracle\apps\ak\hello\webui
    I notice that it is also located under C:\JDEV\jdevhome\jdev\myclasses\oracle\apps\ak\hello\webui. why does it get created in both myprojects and myclasses?
    2) Created and attached the controller class (HelloWorldMainCO.class) as suggested in the dev guide
    Physical location of the class file is C:\JDEV\jdevhome\jdev\myclasses\oracle\apps\ak\hello\webui
    3) Build and run the page. Page runs with out any errors
    Deployment steps(This is where I feel like I am running in circles...)
    1) I manually created a directory structure "/hello/webui" under $JAVA_TOP/oracle/apps/ak since I thought that it should match what I had on my PC. Is this step of creating the directory structure manually even needed?
    2) Then I migrated:
    a)"HelloWorldPG.xml" into $JAVA_TOP/oracle/apps/ak/hello/webui from C:\JDEV\jdevhome\jdev\myprojects\oracle\apps\ak\hello\webui
    as ASCII after ftp'ing into in my UNIX via command prompt
    b) "HelloWorldMainCO.class" into $JAVA_TOP/oracle/apps/ak/hello/webui from C:\JDEV\jdevhome\jdev\myclasses\oracle\apps\ak\hello\webui
    as Binary after ftp'ing into in my UNIX via command prompt
    3) I tried to import the page/region in to the DB using the following command in the command prompt from C:\JDEV\jdevbin\jdev\bin
    import C:\JDEV\jdevhome\jdev\myprojects\oracle\apps\ak\hello\webui\HelloWorldPG.xml -username apps -password <password> -rootdir C:\JDEV\jdevhome\jdev\myprojects\ -dbconnection "(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=172.xx.x.xxx)(PORT=1521))(CONNECT_DATA=(SID=<xxxxxx>)))" -rootPackage /oracle/apps/ak/hello
    Import seems to have completed successfully without any errors. However, I am not sure if I gave the correct rootpackage or not.
    JDR_% tables seem to be updated. I can vouch for only the JDR_PATHS table as only that seems to have the creation date.
    PS: In the above import statement, I masked (only for this post) the password, ip address and the SID for security reasons. I am confident that what I used when importing is accurate.
    4) At this point should I be able to run procedure shown below?
    Begin
    jdr_utils.PrintDocument('/oracle/apps/ak/hello/webui/HelloWorldPG');
    End;
    or should I first create the AOL function/attach it to the menu and then run the above?
    I tried running it, with out creating the AOL Function and attaching the menu. It comes back with the message "Error: Could not find document /oracle/apps/ak/hello/webui/HelloWorldPG".
    5) Then I created the form function called "TOOLBOX_HELLO" with following:
    Type = SSWA jsp function
    HTML Call = "OA.jsp?page=/oracle/apps/ak/hello/webui/HelloWorldPG"
    Now I don't know which menu to add the AOL Function.
    As I mentioned earlier, I tried to read through several other older posts....however, I am getting confused.
    There are multiple places in the above steps where I need guidance. Could any one pls. suggest/correct my steps in deployment?
    Thanks

    Hi there,
    1) Created new OA component page using the default package "oracle.apps.ak.hello"
    The Physical location of the page is C:\JDEV\jdevhome\jdev\myprojects\oracle\apps\ak\hello\webui
    I notice that it is also located under C:\JDEV\jdevhome\jdev\myclasses\oracle\apps\ak\hello\webui. why does it get created in both myprojects and myclasses?
    The folder myclasses holds the .class compiled object files you deploy, the myprojects folder holds the .java source files.
    2) Created and attached the controller class (HelloWorldMainCO.class) as suggested in the dev guide
    Physical location of the class file is C:\JDEV\jdevhome\jdev\myclasses\oracle\apps\ak\hello\webui
    3) Build and run the page. Page runs with out any errors
    Deployment steps(This is where I feel like I am running in circles...)
    1) I manually created a directory structure "/hello/webui" under $JAVA_TOP/oracle/apps/ak since I thought that it should match what I had on my PC. Is this step of creating the directory structure manually even needed?
    Yes. This allows your code to be separate from seeded code so it isn't overwritten on patches.
    2) Then I migrated:
    a)"HelloWorldPG.xml" into $JAVA_TOP/oracle/apps/ak/hello/webui from C:\JDEV\jdevhome\jdev\myprojects\oracle\apps\ak\hello\webui
    as ASCII after ftp'ing into in my UNIX via command prompt
    b) "HelloWorldMainCO.class" into $JAVA_TOP/oracle/apps/ak/hello/webui from C:\JDEV\jdevhome\jdev\myclasses\oracle\apps\ak\hello\webui
    as Binary after ftp'ing into in my UNIX via command prompt
    3) I tried to import the page/region in to the DB using the following command in the command prompt from C:\JDEV\jdevbin\jdev\bin
    import C:\JDEV\jdevhome\jdev\myprojects\oracle\apps\ak\hello\webui\HelloWorldPG.xml -username apps -password <password> -rootdir C:\JDEV\jdevhome\jdev\myprojects\ -dbconnection "(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=172.xx.x.xxx)(PORT=1521))(CONNECT_DATA=(SID=<xxxxxx>)))" -rootPackage /oracle/apps/ak/hello
    Import seems to have completed successfully without any errors. However, I am not sure if I gave the correct rootpackage or not.
    JDR_% tables seem to be updated. I can vouch for only the JDR_PATHS table as only that seems to have the creation date.
    PS: In the above import statement, I masked (only for this post) the password, ip address and the SID for security reasons. I am confident that what I used when importing is accurate.
    4) At this point should I be able to run procedure shown below?
    Begin
    jdr_utils.PrintDocument('/oracle/apps/ak/hello/webui/HelloWorldPG');
    End;
    Yes, that will show you that it was loaded into mds. This is only for diagnostic purposes, not always required.
    or should I first create the AOL function/attach it to the menu and then run the above?
    You can now to do the AOL function.
    I tried running it, with out creating the AOL Function and attaching the menu. It comes back with the message "Error: Could not find document /oracle/apps/ak/hello/webui/HelloWorldPG".
    5) Then I created the form function called "TOOLBOX_HELLO" with following:
    Type = SSWA jsp function
    HTML Call = "OA.jsp?page=/oracle/apps/ak/hello/webui/HelloWorldPG"
    Now I don't know which menu to add the AOL Function.
    As I mentioned earlier, I tried to read through several other older posts....however, I am getting confused.
    There are multiple places in the above steps where I need guidance. Could any one pls. suggest/correct my steps in deployment?
    You need to bounce the apache server on the middle tier to get it to work.
    Hope this helps.
    Kristofer

  • Hi All, I am using JDeveloper 10.1.3.5 for R12.2.4. I am getting an error after deploying my OAF page to application.

    I have developed a custom OAF page with multiple VO, EO and single AM. Below is my directory structure
    server/ AM, VO
    schema/server/ EO
    LOV/server/ LOV
    webui/ CO, Pages
    My page is running perfectly from JDeveloper and all functionalities are working fine.
    The page deployment is successful but when I try to open the custom page from the application I am getting below mentioned error stack for the same:
    Exception Details.
      oracle.apps.fnd.framework.OAException: Could not load application module 'emicon.oracle.apps.PN.propcost.server.PropMngrAM'. at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:279) at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:78) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1324) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:567) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:455) at _pages.__oa._jspService(__oa.java:233) at weblogic.servlet.jsp.JspBase.service(JspBase.java:34) at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227) at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:184) at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:526) at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:253) at weblogic.servlet.jsp.PageContextImpl.forward(PageContextImpl.java:159) at _pages.__rf._jspService(__rf.java:239) at weblogic.servlet.jsp.JspBase.service(JspBase.java:34) at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227) at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301) at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.apps.fnd.security.WLFilter.doFilter(WLFilter.java:213) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.apps.jtf.cabo.interceptor.JTFWrapperFilter.doFilter(JTFWrapperFilter.java:141) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(Unknown Source) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:432) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119) at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315) at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442) at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103) at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171) at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(Unknown Source) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(Unknown Source) at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321) at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120) at weblogic.servlet.internal.WebAppServletContext.securedExecute(Unknown Source) at weblogic.servlet.internal.WebAppServletContext.execute(Unknown Source) at weblogic.servlet.internal.ServletRequestImpl.run(Unknown Source) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256) at weblogic.work.ExecuteThread.run(ExecuteThread.java:221) ## Detail 0 ## JBO-30003: The application pool (emiconerp.emicon.co.inDEV1620emicon.oracle.apps.PN.propcost.server.PropMngrAM) failed to checkout an application module due to the following exception: oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=JBO-29000: Unexpected exception caught: oracle.jbo.NoDefException, msg=JBO-25002: Definition emicon.oracle.apps.PN.propcost.server.PropMngrAM of type ApplicationModule not found at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:2002) at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2793) at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:453) at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:233) at oracle.apps.fnd.framework.webui.OAHttpSessionCookieImpl.useApplicationModule(OAHttpSessionCookieImpl.java:512) at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:424) at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:208) at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:78) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1324) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:567) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:455) at _pages.__oa._jspService(__oa.java:233) at weblogic.servlet.jsp.JspBase.service(JspBase.java:34) at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227) at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:184) at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:526) at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:253) at weblogic.servlet.jsp.PageContextImpl.forward(PageContextImpl.java:159) at _pages.__rf._jspService(__rf.java:239) at weblogic.servlet.jsp.JspBase.service(JspBase.java:34) at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227) at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301) at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.apps.fnd.security.WLFilter.doFilter(WLFilter.java:213) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.apps.jtf.cabo.interceptor.JTFWrapperFilter.doFilter(JTFWrapperFilter.java:141) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(Unknown Source) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:432) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119) at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315) at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442) at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103) at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171) at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(Unknown Source) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(Unknown Source) at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321) at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120) at weblogic.servlet.internal.WebAppServletContext.securedExecute(Unknown Source) at weblogic.servlet.internal.WebAppServletContext.execute(Unknown Source) at weblogic.servlet.internal.ServletRequestImpl.run(Unknown Source) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256) at weblogic.work.ExecuteThread.run(ExecuteThread.java:221) ## Detail 0 ## oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.NoDefException, msg=JBO-25002: Definition emicon.oracle.apps.PN.propcost.server.PropMngrAM of type ApplicationModule not found at oracle.jbo.pool.ResourcePool.createResource(ResourcePool.java:545) at oracle.jbo.common.ampool.ApplicationPoolImpl.prepareApplicationModule(ApplicationPoolImpl.java:2094) at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:1961) at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2793) at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:453) at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:233) at oracle.apps.fnd.framework.webui.OAHttpSessionCookieImpl.useApplicationModule(OAHttpSessionCookieImpl.java:512) at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:425) at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:208) at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:78) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1324) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:567) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:455) at _pages.__oa._jspService(__oa.java:233) at weblogic.servlet.jsp.JspBase.service(JspBase.java:35) at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227) at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:185) at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:526) at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:253) at weblogic.servlet.jsp.PageContextImpl.forward(PageContextImpl.java:160) at _pages.__rf._jspService(__rf.java:239) at weblogic.servlet.jsp.JspBase.service(JspBase.java:35) at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227) at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301) at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:27) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57) at oracle.apps.fnd.security.WLFilter.doFilter(WLFilter.java:213) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57) at oracle.apps.jtf.cabo.interceptor.JTFWrapperFilter.doFilter(JTFWrapperFilter.java:142) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57) at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(Unknown Source) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57) at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:432) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57) at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119) at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315) at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442) at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103) at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171) at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57) at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(Unknown Source) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(Unknown Source) at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321) at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120) at weblogic.servlet.internal.WebAppServletContext.securedExecute(Unknown Source) at weblogic.servlet.internal.WebAppServletContext.execute(Unknown Source) at weblogic.servlet.internal.ServletRequestImpl.run(Unknown Source) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256) at weblogic.work.ExecuteThread.run(ExecuteThread.java:221) ## Detail 0 ## oracle.jbo.NoDefException: JBO-25002: Definition emicon.oracle.apps.PN.propcost.server.PropMngrAM of type ApplicationModule not found at oracle.jbo.mom.DefinitionManager.findDefinitionObject(DefinitionManager.java:465) at oracle.jbo.mom.DefinitionManager.findDefinitionObject(DefinitionManager.java:382) at oracle.jbo.mom.DefinitionManager.findDefinitionObject(DefinitionManager.java:364) at oracle.jbo.server.MetaObjectManager.findMetaObject(MetaObjectManager.java:700) at oracle.jbo.server.ApplicationModuleDefImpl.findDefObject(ApplicationModuleDefImpl.java:232) at oracle.jbo.server.ApplicationModuleImpl.createRootApplicationModule(ApplicationModuleImpl.java:401) at oracle.jbo.server.ApplicationModuleHomeImpl.create(ApplicationModuleHomeImpl.java:91) at oracle.jbo.common.ampool.DefaultConnectionStrategy.createApplicationModule(DefaultConnectionStrategy.java:139) at oracle.jbo.common.ampool.DefaultConnectionStrategy.createApplicationModule(DefaultConnectionStrategy.java:80) at oracle.jbo.common.ampool.ApplicationPoolImpl.instantiateResource(ApplicationPoolImpl.java:2468) at oracle.jbo.pool.ResourcePool.createResource(ResourcePool.java:536) at oracle.jbo.common.ampool.ApplicationPoolImpl.prepareApplicationModule(ApplicationPoolImpl.java:2094) at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:1961) at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2793) at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:453) at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:233) at oracle.apps.fnd.framework.webui.OAHttpSessionCookieImpl.useApplicationModule(OAHttpSessionCookieImpl.java:512) at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:425) at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:208) at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:78) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1324) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:567) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:455) at _pages.__oa._jspService(__oa.java:233) at weblogic.servlet.jsp.JspBase.service(JspBase.java:35) at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227) at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:185) at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:526) at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:253) at weblogic.servlet.jsp.PageContextImpl.forward(PageContextImpl.java:160) at _pages.__rf._jspService(__rf.java:239) at weblogic.servlet.jsp.JspBase.service(JspBase.java:35) at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227) at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301) at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:27) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57) at oracle.apps.fnd.security.WLFilter.doFilter(WLFilter.java:213) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57) at oracle.apps.jtf.cabo.interceptor.JTFWrapperFilter.doFilter(JTFWrapperFilter.java:142) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57) at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(Unknown Source) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57) at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:432) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57) at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119) at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315) at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442) at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103) at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171) at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57) at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(Unknown Source) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(Unknown Source) at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321) at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120) at weblogic.servlet.internal.WebAppServletContext.securedExecute(Unknown Source) at weblogic.servlet.internal.WebAppServletContext.execute(Unknown Source) at weblogic.servlet.internal.ServletRequestImpl.run(Unknown Source) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256) at weblogic.work.ExecuteThread.run(ExecuteThread.java:221) JBO-30003: The application pool (emiconerp.emicon.co.inDEV1620emicon.oracle.apps.PN.propcost.server.PropMngrAM) failed to checkout an application module due to the following exception: oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=JBO-29000: Unexpected exception caught: oracle.jbo.NoDefException, msg=JBO-25002: Definition emicon.oracle.apps.PN.propcost.server.PropMngrAM of type ApplicationModule not found at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:2002) at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2793) at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:453) at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:233) at oracle.apps.fnd.framework.webui.OAHttpSessionCookieImpl.useApplicationModule(OAHttpSessionCookieImpl.java:512) at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:424) at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:208) at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:78) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1324) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:567) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:455) at _pages.__oa._jspService(__oa.java:233) at weblogic.servlet.jsp.JspBase.service(JspBase.java:34) at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227) at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:184) at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:526) at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:253) at weblogic.servlet.jsp.PageContextImpl.forward(PageContextImpl.java:159) at _pages.__rf._jspService(__rf.java:239) at weblogic.servlet.jsp.JspBase.service(JspBase.java:34) at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227) at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301) at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.apps.fnd.security.WLFilter.doFilter(WLFilter.java:213) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.apps.jtf.cabo.interceptor.JTFWrapperFilter.doFilter(JTFWrapperFilter.java:141) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(Unknown Source) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:432) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119) at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315) at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442) at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103) at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171) at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(Unknown Source) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(Unknown Source) at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321) at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120) at weblogic.servlet.internal.WebAppServletContext.securedExecute(Unknown Source) at weblogic.servlet.internal.WebAppServletContext.execute(Unknown Source) at weblogic.servlet.internal.ServletRequestImpl.run(Unknown Source) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256) at weblogic.work.ExecuteThread.run(ExecuteThread.java:221) ## Detail 0 ## oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.NoDefException, msg=JBO-25002: Definition emicon.oracle.apps.PN.propcost.server.PropMngrAM of type ApplicationModule not found at oracle.jbo.pool.ResourcePool.createResource(ResourcePool.java:545) at oracle.jbo.common.ampool.ApplicationPoolImpl.prepareApplicationModule(ApplicationPoolImpl.java:2094) at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:1961) at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2793) at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:453) at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:233) at oracle.apps.fnd.framework.webui.OAHttpSessionCookieImpl.useApplicationModule(OAHttpSessionCookieImpl.java:512) at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:425) at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:208) at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:78) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1324) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:567) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:455) at _pages.__oa._jspService(__oa.java:233) at weblogic.servlet.jsp.JspBase.service(JspBase.java:35) at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227) at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:185) at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:526) at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:253) at weblogic.servlet.jsp.PageContextImpl.forward(PageContextImpl.java:160) at _pages.__rf._jspService(__rf.java:239) at weblogic.servlet.jsp.JspBase.service(JspBase.java:35) at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227) at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301) at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:27) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57) at oracle.apps.fnd.security.WLFilter.doFilter(WLFilter.java:213) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57) at oracle.apps.jtf.cabo.interceptor.JTFWrapperFilter.doFilter(JTFWrapperFilter.java:142) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57) at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(Unknown Source) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57) at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:432) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57) at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119) at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315) at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442) at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103) at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171) at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57) at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(Unknown Source) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(Unknown Source) at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321) at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120) at weblogic.servlet.internal.WebAppServletContext.securedExecute(Unknown Source) at weblogic.servlet.internal.WebAppServletContext.execute(Unknown Source) at weblogic.servlet.internal.ServletRequestImpl.run(Unknown Source) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256) at weblogic.work.ExecuteThread.run(ExecuteThread.java:221) ## Detail 0 ## oracle.jbo.NoDefException: JBO-25002: Definition emicon.oracle.apps.PN.propcost.server.PropMngrAM of type ApplicationModule not found at oracle.jbo.mom.DefinitionManager.findDefinitionObject(DefinitionManager.java:465) at oracle.jbo.mom.DefinitionManager.findDefinitionObject(DefinitionManager.java:382) at oracle.jbo.mom.DefinitionManager.findDefinitionObject(DefinitionManager.java:364) at oracle.jbo.server.MetaObjectManager.findMetaObject(MetaObjectManager.java:700) at oracle.jbo.server.ApplicationModuleDefImpl.findDefObject(ApplicationModuleDefImpl.java:232) at oracle.jbo.server.ApplicationModuleImpl.createRootApplicationModule(ApplicationModuleImpl.java:401) at oracle.jbo.server.ApplicationModuleHomeImpl.create(ApplicationModuleHomeImpl.java:91) at oracle.jbo.common.ampool.DefaultConnectionStrategy.createApplicationModule(DefaultConnectionStrategy.java:139) at oracle.jbo.common.ampool.DefaultConnectionStrategy.createApplicationModule(DefaultConnectionStrategy.java:80) at oracle.jbo.common.ampool.ApplicationPoolImpl.instantiateResource(ApplicationPoolImpl.java:2468) at oracle.jbo.pool.ResourcePool.createResource(ResourcePool.java:536) at oracle.jbo.common.ampool.ApplicationPoolImpl.prepareApplicationModule(ApplicationPoolImpl.java:2094) at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:1961) at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2793) at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:453) at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:233) at oracle.apps.fnd.framework.webui.OAHttpSessionCookieImpl.useApplicationModule(OAHttpSessionCookieImpl.java:512) at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:425) at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:208) at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:78) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1324) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:567) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:455) at _pages.__oa._jspService(__oa.java:233) at weblogic.servlet.jsp.JspBase.service(JspBase.java:35) at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227) at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:185) at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:526) at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:253) at weblogic.servlet.jsp.PageContextImpl.forward(PageContextImpl.java:160) at _pages.__rf._jspService(__rf.java:239) at weblogic.servlet.jsp.JspBase.service(JspBase.java:35) at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227) at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301) at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:27) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57) at oracle.apps.fnd.security.WLFilter.doFilter(WLFilter.java:213) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57) at oracle.apps.jtf.cabo.interceptor.JTFWrapperFilter.doFilter(JTFWrapperFilter.java:142) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57) at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(Unknown Source) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57) at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:432) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57) at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119) at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315) at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442) at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103) at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171) at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57) at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(Unknown Source) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(Unknown Source) at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321) at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120) at weblogic.servlet.internal.WebAppServletContext.securedExecute(Unknown Source) at weblogic.servlet.internal.WebAppServletContext.execute(Unknown Source) at weblogic.servlet.internal.ServletRequestImpl.run(Unknown Source) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256) at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

    As Parvez mentioned it looks like the weblogic server is not able to pick up the custom classes.
    Did you deploy the classes in RUN filesystem or PATCH filesystem ?
    Have a look at Note 1577661.1 in metalink for detailed instruction on deploying the Business Logic Extensions
    (Section 1.6.3.4: Developing OA Framework Business Logic Extensions):
    (Section 1.6.3.4: Deploying OA Framework Business Logic Extensions):
    https://support.oracle.com/epmos/faces/DocumentDisplay?_afrLoop=464975502584896&id=1577661.1&_adf.ctrl-state=1bz4njrrqx_…
    Cheers
    AJ

  • Deploy Oracle OAF Page to local Machine

    Hi,
    I deploy oracle standard OAF page from local machine JDeveloper 9i.I copy files from server ar folder from $COMMAN TOP and copy another MDS folder from $APPLTOP and moved local machine jDeveloper\jdevhome\jdev\myprojects\oracle\apps\.I create workspace and the files and run the ARI_INVOICE_PAYMENT_PAGE.XML error message displayed.
    ERROR:
    unable to open file jdeveloper_11i\jdeveloper\jdev\myprojects\oracle\ar\irec\accountDetails\pay\webui\ARI_INVOICE_PAYMENT_PAGE.XML
    the document is not in XMLpath"D:\Jdeveloper_11i\jdevbin\jdev\myprojects;D:\Jdeveloper_11i\jdevbin\jdev\oamdsxml\fwk"
    Thanks
    Selva

    It appears that the JDEV_USER_HOME environment variable path and where the files are stored do not match up.  I generally keep all files whether they are Oracle files (in the oracle folder) under my projects or custom files (in the custom folder) in the "Home" directory on my local machine.

  • Problem deploying Custom Page to E-Business Server

    Hi All,
    We have the below setup:
    - Single Instance of Oracle E-Business Suite 12.1.3 with Database 10.2.0.5 running on RHEL 5.
    I have developed a custom page which has a "drop down box" with a few selections (type of the file) and a "file upload" item and tested it in JDeveloper (Patch# 9879989) and it works fine.
    Now, I need to deploy and test it on the server and link it to a menu and a responsibility.
    I am trying to understand how to use the Import tool (oracle.jrad.tools.xml.importer.XMLImporter) to deploy this simple page, but I am unable to set the parameters to correct values for import.bat file.
    On my local PC, the directory structure is as follows:
    Classes folder:
    C:\SOFTWARE\ORACLE\JDEVOA\JDEVHOME\JDEV\MYCLASSES\
    └───mycompany
      └───oracle
        └───apps
            └───fnd
                └───upload
                    └───webui
                        │   CustomAppModule.xml
                        │   CustomAppModuleImpl.class
                        │   CustomAppsListEO.xml
                        │   CustomAppsListEOImpl.class
                        │   CustomAppsListEOView.xml
                        │   CustomAppsListEOViewImpl.class
                        │   fndUploadPkg.xml
                        │   NjmcLobs.xml
                        │   NjmcLobsCollImpl.class
                        │   NjmcLobsImpl.class
                        │   NjmcLobsView.xml
                        │   NjmcLobsViewImpl.class
                        │   webui.xml
                        │   xxUploadPG.xml
                        │
                        ├───common
                        │       bc4j.xcfg
                        │
                        └───webui
                                xxUploadCO.class
    Projects folder
    C:\SOFTWARE\ORACLE\JDEVOA\JDEVHOME\JDEV\myprojects
    └───mycompany
        └───oracle
            └───apps
                └───fnd
                    └───upload
                        └───webui
                            │   CustomAppModule.xml
                            │   CustomAppModuleImpl.java
                            │   CustomAppsListEO.xml
                            │   CustomAppsListEOImpl.java
                            │   CustomAppsListEOView.xml
                            │   CustomAppsListEOViewImpl.java
                            │   fndUploadPkg.xml
                            │   webui.xml
                            │   xxUploadPG.xml
                            │
                            ├───common
                            │       bc4j.xcfg
                            │
                            └───webui
                                    xxUploadCO.javaOn the server we have a custom application xxnjmc in $APPL_TOP folder
    How do set the -rootdir, -rootPackage, and -mmddir parameters for the import.bat file?
    I appreciate any comments.
    Thanks,
    Sinan

    Thanks, Prince,
    I figured it all out. I did rename it as xxnjmc as you suggested:
    Here are the steps I typed up for my own reference and just wanted to share:
    DEPLOYING CUSTOM OAF Pages:
    1. Zip "C:\Software\Oracle\JDEVOA\jdevhome\jdev\myclasses\xxxxxx" folder as xxxxxx.zip
    2. Login to middle-tier server with applprod/password
    3. Navigate to $JAVA_TOP
    4. Upload xxxxxx.zip file into $JAVA_TOP and unzip
    5. chmod -R 775 xxxxxx
    6. Navigate to "/u0/oracle/prod/apps/apps_st/appl/xxxxxx/12.0.0/"
    7. mkdir mds
    8. Upload "C:\Software\Oracle\JDEVOA\jdevhome\jdev\myclasses\xxxxxx\oracle\apps\fnd\upload\webui" (with the webui folder) into "/u0/oracle/prod/apps/apps_st/appl/xxxxxx/12.0.0/mds"
    9. chmod -R 775 /u0/oracle/prod/apps/apps_st/appl/xxxxxx/12.0.0/mds
    10. On the local PC
    cd C:\Software\Oracle\JDEVOA\jdevbin\oaext\bin>
    import C:\Software\Oracle\JDEVOA\jdevhome\jdev\myprojects\xxxxxx\oracle\apps\fnd\upload\webui\xxUploadPG.xml -username APPS -password APPS -rootdir C:\Software\Oracle\JDEVOA\jdevhome\jdev\myprojects -dbconnection "(description = (address_list = (address = (community = tcp.world) (protocol = tcp)(host = 10.1.0.6)(port = 1521)))(connect_data = (sid = PROD)))"
    BOUNCE APACHE
    adapcctl.sh stop
    adapcctl.sh start
    11. Login to E-Business Suite with SYSADMIN/SYSADMIN user and "Application Developer" responsibility
    12. Navigate to Application-> Function
    13. Add xxxxxx_FILEUPLOAD function with the following values:
    User Function Name: Company File Upload
    Description : Company File Upload
    In the Properties tab:
    Type : SSWA jsp function
    In the Web HTML tab:
    HTML Call : OA.jsp?page=/xxxxxx/oracle/apps/fnd/upload/webui/xxUploadPG
    14. Switch to System Administrator responsibility
    Navigate to Application-> Menu
    Query for the menu you want to add this function to
    Add the following menu item:
    Prompt: File Uploader
    Function: Company File Upload
    Description: Upload files for custom applications
    Sinan

  • How to deploy web.xml in OAF to server?

    Hello,
    Currently i used oracle 9i jeveloper to develop OAF page for EBS 11.5.10
    based on requirement, i need create a new JSP file and change default web.xml file in jeveloper. Who can help how to deploy new web.xml to server? Thank you very much!
    Added following code to web.xml
    ---web.xml------------
    <servlet>
    <servlet-name>barbecue</servlet-name>
    <servlet-class>net.sourceforge.barbecue.BarcodeServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
    <servlet-name>barbecue</servlet-name>
    <url-pattern>/CreateBarCode</url-pattern>
    </servlet-mapping>
    -----------------------------------

    Anyone know how to deploy web.xml in local jeveloper to server? thanks a lot!

  • Customizing a Create Database Deployment Procedure Error

    I'm trying to set up a DbaaS, as it's part of the training I'm undergoing in Oracle in Caracas, Venezuela.
    In a topic, of the same title, I was asked to "please post your questions to internal forum. Please check out http://em.us.oracle.com/pls/htmldb/f?p=120:266:88354713473366::NO:::" because "It appears that you are an Oracle employee" and shortly after, my thread was closed, I am not a Oracle Employee, I do not have access to this internal forum, my supervisor has, not me, and my supervisor has denied my plea to get this issue posted on the internal forums or MOS, mostly because its just training and it has nothing to do with a client, I'd appreciate feedback instead of offtopic comments, getting my thread closed will certainly not get me any answers.
    I've managed to set up my zone, install the software, configure it and everything is running smoothly, until now. I've been following this cookbook and the information on the documentation for EM12c and I ran across this little issue which, seems like, no one in the office seems to have ever gotten (makes sense, considering I'm the only one who's actually managed to install the EM12 in the laboratory, and the only one who was assigned with the DbaaS). Running on a Solaris 11 SPARC zone.
    If you check the page 22 on the cookbook (linked above) I have to launch the "Create Oracle Database" deployment procedure, after this, the wizard asks me to select the version (11.0.2.1.0) and lock it, also have to tell the wizards its a single instance, after this I select the host and the ORACLE_HOME where the db files are installed. Once I do that and try to go for NEXT, I get the following error:
    User "oracle" is not the owner of Oracle Home "/oracle/app/oracle/product/11.2.0/dbhome_1" on target "dbaas"
    and I'm not able to continue setting up my DbaaS. One of the trainees thought it was a good idea to, from /, use chown -R /oracle oracle:oinstall to see if that would fix the error, sadly he was mistaken, after this, the wizard told me I had to run the root.sh from the Agent Home, there are 3 folders that must be owned by root and once I ran the root.sh I still got the same error. I have no idea if there are any logs I can check about this, if they are needed, It'd be nice of you to tell me where I can find them.
    Another thing I tried, was using the Create Like... option, make a copy of the "Create Oracle Database" and edit the error handling in the procedure steps by selecting Continue On Error, but I can't. Trying to select Continue On Error justs brings Stop On Error again.
    I also had this problem before:
    Can't locate db/dbclone/clone_util.pl in @INC (@INC contains: /u01/app/oracle/product/12.1.0.1/agent/core/12.1.0.1.0/perl/lib/5.10.0/x86_64-linux-thread-multi /u01/app/oracle/product/12.1.0.1/agent/core/12.1.0.1.0/perl/lib/5.10.0 /u01/app/oracle/product/12.1.0.1/agent/core/12.1.0.1.0/perl/lib/site_perl/5.10.0/x86_64-linux-thread-multi /u01/app/oracle/product/12.1.0.1/agent/core/12.1.0.1.0/perl/lib/site_perl/5.10.0 /u01/app/oracle/product/12.1.0.1/agent/core/12.1.0.1.0/perl/lib/5.10.0/x86_64-linux-thread-multi /u01/app/oracle/product/12.1.0.1/agent/core/12.1.0.1.0/perl/lib/5.10.0/x86_64-linux-thread-multi /u01/app/oracle/product/12.1.0.1/agent/core/12.1.0.1.0/perl/lib/5.10.0 /u01/app/oracle/product/12.1.0.1/agent/core/12.1.0.1.0/perl/lib/site_perl/5.10.0/x86_64-linux-thread-multi /u01/app/oracle/product/12.1.0.1/agent/core/12.1.0.1.0/perl/lib/site_perl/5.10.0 /u01/app/oracle/product/12.1.0.1/agent/core/12.1.0.1.0/perl/lib/site_perl .) at - line 1
    Luckily my supervisor told me he went in to the MOS website (website I can't visit, but my supervisor can) and found a way around it, he simply told me to edit the Privilege Delegation to: /usr/bin/sudo -E -u %RUNAS% %COMMAND%, but he wasn't able to find any feedback on the error I posted before, I'd just like to know if this two errors are related, maybe there's something we missed.
    Thank you very much beforehand, this would really help me with my training. Also, please bear with me, I'm currently in the first semester of Computer Science and I had absolutely no experience or any knowledge on installing/configuring/running Oracle products and what I would call "advanced" UNIX handling (because apache server and mysql isn't really rocket science) until 3 weeks ago.
    Regards,
    Daniel.

    you should not have run chown -R for oracle software. where was your agent installed ?
    was that also installed on /oracle ? by what OS account it was installed . if it was oracle, you did the right thing by running root.sh as root.
    however rdbms s/w could still be in mess. can you please restore it to its original owner/permission. and then when launching the "Create Oracle Database" deployment procedure, use original owner (of rdbms s/w) credentials to continue.
    for setting up DBaaS, you must NOT use "Create Like".

  • Problems with Deployment Overview  in Support Portal pages

    Hi gurus, I am facing a problem or maybe it is more a doubt:
    When I launch the report for Deployment Overview  in the support page in the portal , I can see that I have a lot of components that are not installed but they are in the repository.
    First question: do I have to install all of them?
    Second question : Is there a better way for doing it , a massive way? Because clicking one by one is really a pain!!
    Thanks and best regards

    Hi gurus, I am facing a problem or maybe it is more a doubt:
    When I launch the report for Deployment Overview  in the support page in the portal , I can see that I have a lot of components that are not installed but they are in the repository.
    First question: do I have to install all of them?
    Second question : Is there a better way for doing it , a massive way? Because clicking one by one is really a pain!!
    Thanks and best regards

  • Fusion Middleware Provisioning Deployment Procedure - Failing

    Hi,
    I have been trying to run the Fusion Middleware Provisioning (version 4.1) deployment procedure by choosing the existing installation as Fusion Middleware Home.
    Going through the logs, the perl script (applyclone.pl) is unable to create the destination directory. However, I am unable to find the cause for it. Also, the directive "Create FMW Clone Archive" generates the following log - with error "Oracle home is not cloneable".
    Any help would be highly appreciated. Thanks.
    Below are details :
    OEM version 11g installed on Linux box.
    Source Machine - Windows, Agent version 11g
    Target Machine - Windows, Agent version 11g
    - Dinu
    Logs -
    Job Log -
    Run privilege of the step is : Normal
    This is Provisioning Executor Script(Windows)
    Input PropertyFilePath is D:\Agent11g\agent11g\EMStage\PAF\Job_931f3d44a76852aae040b40a7f161fef\properties
    Input directiveScriptFilePath is D:\Agent11g\agent11g\EMStage\PAF\Job_931f3d44a76852aae040b40a7f161fef\applyClone.pl
    Input directiveTypeProperty is NAME_Executor
    Input componentPath is null
    Input directivePath is Directive
    Input componentFilename is null
    Directive Type is SUB_Perl
    Dir to CD is D:\Agent11g\agent11g\EMStage\PAF\Job_931f3d44a76852aae040b40a7f161fef
    Final command line to execute is %PERL_HOME%\perl "D:\Agent11g\agent11g\EMStage\PAF\Job_931f3d44a76852aae040b40a7f161fef\applyClone.pl" -java_home "D:\Agent11g\agent11g/jdk" -cloning_jar "cloningclient.jar" -archive "D:\wkd//20101102061046/wls_prov/archive.jar" -mwhome "D:\fmwtest" -log_dir "D:\wkd//20101102061046" -work_dir "D:\wkd//20101102061046"
    The output of the directive is:
    Unable to create directory at D:\Agent11g\agent11g\EMStage\PAF\Job_931f3d44a76852aae040b40a7f161fef\applyClone.pl line 38.
    Creating directory: D:\wkd//20101102061046/wls_prov/
    Creating MW directory:
    OMS Log (For brevity's sake, only mentioning from the point it says 'Failed')
    INFO: _receiving event StatusChangedEvent [ instance = 918CBF4A67A4FADDE040B40A7F161FDE , state = 931F3D44A76752AAE040B40A7F161FEF , data = null , reason = Job Failed]
    Nov 2, 2010 6:20:29 PM oracle.sysman.pp.paf.engine.impl.BaseStateImpl log
    CONFIG: ProcedureStateImpl [ Inst Name: Fusion Middleware Provisioning_2010-11-02_06-10-46PM GUID: 918CBF4A67A5FADDE040B40A7F161FDE ]: Received Event: StatusChangedEvent [ instance = 918CBF4A67A4FADDE040B40A7F161FDE , state = 931F3D44A76752AAE040B40A7F161FEF , data = null , reason = Job Failed]
    Nov 2, 2010 6:20:29 PM oracle.sysman.pp.paf.engine.impl.BaseStateImpl log
    CONFIG: ProcedureStateImpl [ Inst Name: Fusion Middleware Provisioning_2010-11-02_06-10-46PM GUID: 918CBF4A67A5FADDE040B40A7F161FDE ]: Received Event: StatusChangedEvent [ instance = 918CBF4A67A4FADDE040B40A7F161FDE , state = 931F3D44A76752AAE040B40A7F161FEF , data = null , reason = Job Failed]
    Nov 2, 2010 6:20:29 PM oracle.sysman.pp.paf.engine.impl.BaseStateImpl log
    CONFIG: ParallelStateImpl [ Phase Name: FMWPROV_TRS_CLONE_ARC_TO_MWH_NAME GUID: 931F3D44A75E52AAE040B40A7F161FEF ]: Event recd: StatusChangedEvent [ instance = 918CBF4A67A4FADDE040B40A7F161FDE , state = 931F3D44A76752AAE040B40A7F161FEF , data = null , reason = Job Failed]
    Nov 2, 2010 6:20:29 PM oracle.sysman.pp.paf.engine.impl.BaseStateImpl log
    CONFIG: ParallelStateImpl [ Phase Name: FMWPROV_TRS_CLONE_ARC_TO_MWH_NAME GUID: 931F3D44A75E52AAE040B40A7F161FEF ]: Broadcasting event to all child states
    Nov 2, 2010 6:20:29 PM oracle.sysman.pp.paf.engine.impl.BaseStateImpl log
    CONFIG: ParallelStateImpl [ Phase Name: FMWPROV_TRS_CLONE_ARC_TO_MWH_NAME GUID: 931F3D44A75E52AAE040B40A7F161FEF ]: Firing event StatusChangedEvent [ instance = 918CBF4A67A4FADDE040B40A7F161FDE , state = 931F3D44A76752AAE040B40A7F161FEF , data = null , reason = Job Failed] to tgtState TargetStateImpl [ TargetName: IFLMUD5HP0645.i-flex.com TargetType: host GUID: 931F3D44A75F52AAE040B40A7F161FEF ]
    Nov 2, 2010 6:20:29 PM oracle.sysman.pp.paf.engine.impl.BaseStateImpl log
    CONFIG: TargetStateImpl [ TargetName: IFLMUD5HP0645.i-flex.com TargetType: host GUID: 931F3D44A75F52AAE040B40A7F161FEF ]: Received Event: StatusChangedEvent [ instance = 918CBF4A67A4FADDE040B40A7F161FDE , state = 931F3D44A76752AAE040B40A7F161FEF , data = null , reason = Job Failed]
    Nov 2, 2010 6:20:29 PM oracle.sysman.pp.paf.engine.impl.BaseStateImpl log
    CONFIG: JobProducerStateImpl [ Step Name: FMWPROV_APPLY_CLONE_TRG_NAME GUID: 931F3D44A76752AAE040B40A7F161FEF ]: Receive Event: StatusChangedEvent [ instance = 918CBF4A67A4FADDE040B40A7F161FDE , state = 931F3D44A76752AAE040B40A7F161FEF , data = null , reason = Job Failed]
    Nov 2, 2010 6:20:29 PM oracle.sysman.pp.paf.engine.impl.BaseStateImpl log
    CONFIG: JobProducerStateImpl [ Step Name: FMWPROV_APPLY_CLONE_TRG_NAME GUID: 931F3D44A76752AAE040B40A7F161FEF ]: Updating job status: 4 of this state and saving to repository
    Nov 2, 2010 6:20:29 PM oracle.sysman.pp.paf.engine.impl.BaseStateImpl log
    CONFIG: JobProducerStateImpl [ Step Name: FMWPROV_APPLY_CLONE_TRG_NAME GUID: 931F3D44A76752AAE040B40A7F161FEF ]: Step failed, firing status update event
    Nov 2, 2010 6:20:29 PM oracle.sysman.pp.paf.engine.impl.BaseStateImpl log
    INFO: JobProducerStateImpl [ Step Name: FMWPROV_APPLY_CLONE_TRG_NAME GUID: 931F3D44A76752AAE040B40A7F161FEF ]: [Updating status: STEPGUID = 918CBF4A5F83FADDE040B40A7F161FDE STATEGUID = 931F3D44A76752AAE040B40A7F161FEF STEPNAME = FMWPROV_APPLY_CLONE_TRG_NAME OLDSTATUS = Running NEWSTATUS = Failed ]
    Nov 2, 2010 6:20:32 PM oracle.sysman.pp.paf.engine.impl.BaseStateImpl log
    CONFIG: JobProducerStateImpl [ Step Name: FMWPROV_APPLY_CLONE_TRG_NAME GUID: 931F3D44A76752AAE040B40A7F161FEF ]: error mode stop on error.
    Nov 2, 2010 6:20:32 PM oracle.sysman.pp.paf.engine.impl.BaseStateImpl log
    CONFIG: JobProducerStateImpl [ Step Name: FMWPROV_APPLY_CLONE_TRG_NAME GUID: 931F3D44A76752AAE040B40A7F161FEF ]: Processing event StatusUpdateEvent [ instance = 918CBF4A67A4FADDE040B40A7F161FDE , state = 931F3D44A76752AAE040B40A7F161FEF , reason = Job Failed , status = Failed]
    Nov 2, 2010 6:20:32 PM oracle.sysman.pp.paf.engine.impl.BaseStateImpl log
    CONFIG: JobProducerStateImpl [ Step Name: FMWPROV_APPLY_CLONE_TRG_NAME GUID: 931F3D44A76752AAE040B40A7F161FEF ]: Updating job status: 4 of this state and saving to repository
    Nov 2, 2010 6:20:32 PM oracle.sysman.pp.paf.engine.impl.BaseStateImpl log
    CONFIG: TargetStateImpl [ TargetName: IFLMUD5HP0645.i-flex.com TargetType: host GUID: 931F3D44A75F52AAE040B40A7F161FEF ]: Processing event StatusUpdateEvent [ instance = 918CBF4A67A4FADDE040B40A7F161FDE , state = 931F3D44A76752AAE040B40A7F161FEF , reason = Job Failed , status = Failed]
    Nov 2, 2010 6:20:32 PM oracle.sysman.pp.paf.engine.impl.BaseStateImpl log
    CONFIG: TargetStateImpl [ TargetName: IFLMUD5HP0645.i-flex.com TargetType: host GUID: 931F3D44A75F52AAE040B40A7F161FEF ]: Setting status to : Failed
    Nov 2, 2010 6:20:32 PM oracle.sysman.pp.paf.engine.impl.BaseStateImpl log
    INFO: TargetStateImpl [ TargetName: IFLMUD5HP0645.i-flex.com TargetType: host GUID: 931F3D44A75F52AAE040B40A7F161FEF ]: [Updating status: STEPGUID = 918CBF4A5F80FADDE040B40A7F161FDE STATEGUID = 931F3D44A75F52AAE040B40A7F161FEF STEPNAME = FMWPROV_TRS_CLONE_ARC_TO_MWH_NAME OLDSTATUS = Running NEWSTATUS = Failed ]
    Nov 2, 2010 6:20:32 PM oracle.sysman.pp.paf.engine.impl.BaseStateImpl log
    CONFIG: TargetStateImpl [ TargetName: IFLMUD5HP0645.i-flex.com TargetType: host GUID: 931F3D44A75F52AAE040B40A7F161FEF ]: Firing status update event to parent.
    Nov 2, 2010 6:20:32 PM oracle.sysman.pp.paf.engine.impl.BaseStateImpl log
    CONFIG: TargetStateImpl [ TargetName: IFLMUD5HP0645.i-flex.com TargetType: host GUID: 931F3D44A75F52AAE040B40A7F161FEF ]: Processing event StatusUpdateEvent [ instance = 918CBF4A67A4FADDE040B40A7F161FDE , state = 931F3D44A75F52AAE040B40A7F161FEF , reason = Job Failed , status = Failed]
    Nov 2, 2010 6:20:32 PM oracle.sysman.pp.paf.engine.impl.BaseStateImpl log
    CONFIG: ParallelStateImpl [ Phase Name: FMWPROV_TRS_CLONE_ARC_TO_MWH_NAME GUID: 931F3D44A75E52AAE040B40A7F161FEF ]: processing event StatusUpdateEvent [ instance = 918CBF4A67A4FADDE040B40A7F161FDE , state = 931F3D44A75F52AAE040B40A7F161FEF , reason = Job Failed , status = Failed]
    Nov 2, 2010 6:20:32 PM oracle.sysman.pp.paf.engine.impl.BaseStateImpl log
    CONFIG: ParallelStateImpl [ Phase Name: FMWPROV_TRS_CLONE_ARC_TO_MWH_NAME GUID: 931F3D44A75E52AAE040B40A7F161FEF ]: Setting status to : Failed
    Nov 2, 2010 6:20:32 PM oracle.sysman.pp.paf.engine.impl.BaseStateImpl log
    INFO: ParallelStateImpl [ Phase Name: FMWPROV_TRS_CLONE_ARC_TO_MWH_NAME GUID: 931F3D44A75E52AAE040B40A7F161FEF ]: [Updating status: STEPGUID = 918CBF4A5F80FADDE040B40A7F161FDE STATEGUID = 931F3D44A75E52AAE040B40A7F161FEF STEPNAME = FMWPROV_TRS_CLONE_ARC_TO_MWH_NAME OLDSTATUS = Running NEWSTATUS = Failed ]
    Nov 2, 2010 6:20:32 PM oracle.sysman.pp.paf.engine.impl.BaseStateImpl log
    CONFIG: ParallelStateImpl [ Phase Name: FMWPROV_TRS_CLONE_ARC_TO_MWH_NAME GUID: 931F3D44A75E52AAE040B40A7F161FEF ]: Firing status update event to parent. ParallelStateImpl [ Phase Name: FMWPROV_TRS_CLONE_ARC_TO_MWH_NAME GUID: 931F3D44A75E52AAE040B40A7F161FEF ]
    Nov 2, 2010 6:20:32 PM oracle.sysman.pp.paf.engine.impl.BaseStateImpl log
    CONFIG: ParallelStateImpl [ Phase Name: FMWPROV_TRS_CLONE_ARC_TO_MWH_NAME GUID: 931F3D44A75E52AAE040B40A7F161FEF ]: Processing event StatusUpdateEvent [ instance = 918CBF4A67A4FADDE040B40A7F161FDE , state = 931F3D44A75E52AAE040B40A7F161FEF , reason = Job Failed , status = Failed]
    Nov 2, 2010 6:20:32 PM oracle.sysman.pp.paf.engine.impl.BaseStateImpl log
    CONFIG: ProcedureStateImpl [ Inst Name: Fusion Middleware Provisioning_2010-11-02_06-10-46PM GUID: 918CBF4A67A5FADDE040B40A7F161FDE ]: Processing event StatusUpdateEvent [ instance = 918CBF4A67A4FADDE040B40A7F161FDE , state = 931F3D44A75E52AAE040B40A7F161FEF , reason = Job Failed , status = Failed]
    Nov 2, 2010 6:20:32 PM oracle.sysman.pp.paf.engine.impl.BaseStateImpl log
    CONFIG: ProcedureStateImpl [ Inst Name: Fusion Middleware Provisioning_2010-11-02_06-10-46PM GUID: 918CBF4A67A5FADDE040B40A7F161FDE ]: Setting status to : Failed
    Nov 2, 2010 6:20:32 PM oracle.sysman.pp.paf.engine.impl.BaseStateImpl log
    INFO: ProcedureStateImpl [ Inst Name: Fusion Middleware Provisioning_2010-11-02_06-10-46PM GUID: 918CBF4A67A5FADDE040B40A7F161FDE ]: [Updating status: STEPGUID = 918CBF4A5FBAFADDE040B40A7F161FDE STATEGUID = 918CBF4A67A5FADDE040B40A7F161FDE OLDSTATUS = Running NEWSTATUS = Failed ]
    Nov 2, 2010 6:20:32 PM oracle.sysman.pp.paf.engine.impl.BaseStateImpl log
    CONFIG: ProcedureStateImpl [ Inst Name: Fusion Middleware Provisioning_2010-11-02_06-10-46PM GUID: 918CBF4A67A5FADDE040B40A7F161FDE ]: Firing status update event to parent.
    Nov 2, 2010 6:20:32 PM oracle.sysman.pp.paf.engine.impl.BaseStateImpl log
    CONFIG: ProcedureStateImpl [ Inst Name: Fusion Middleware Provisioning_2010-11-02_06-10-46PM GUID: 918CBF4A67A5FADDE040B40A7F161FDE ]: Processing event StatusUpdateEvent [ instance = 918CBF4A67A4FADDE040B40A7F161FDE , state = 918CBF4A67A5FADDE040B40A7F161FDE , reason = Job Failed , status = Failed]
    Nov 2, 2010 6:20:32 PM oracle.sysman.pp.paf.engine.impl.BaseStateImpl log
    CONFIG: ProcedureStateImpl [ Inst Name: Fusion Middleware Provisioning_2010-11-02_06-10-46PM GUID: 918CBF4A67A5FADDE040B40A7F161FDE ]: Discarding event: StatusUpdateEvent [ instance = 918CBF4A67A4FADDE040B40A7F161FDE , state = 918CBF4A67A5FADDE040B40A7F161FDE , reason = Job Failed , status = Failed]
    Logs for "Create FMW Clone Archive" Job -
    Run privilege of the step is : Normal
    This is Provisioning Executor Script(Windows)
    Input PropertyFilePath is D:\Agent11g\agent11g\EMStage\PAF\Job_931f3d44a75952aae040b40a7f161fef\properties
    Input directiveScriptFilePath is D:\Agent11g\agent11g\EMStage\PAF\Job_931f3d44a75952aae040b40a7f161fef\createClone.pl
    Input directiveTypeProperty is NAME_Executor
    Input componentPath is null
    Input directivePath is Directive
    Input componentFilename is null
    Directive Type is SUB_Perl
    Dir to CD is D:\Agent11g\agent11g\EMStage\PAF\Job_931f3d44a75952aae040b40a7f161fef
    Final command line to execute is %PERL_HOME%\perl "D:\Agent11g\agent11g\EMStage\PAF\Job_931f3d44a75952aae040b40a7f161fef\createClone.pl" -cloning_jar "cloningclient.jar" -archive "D:\wkd//20101102061046/archive.jar" -mwhome "C:\oracle\Middleware" -exp "*.xxx" -soh "n/a" -log_dir "D:\wkd"
    The output of the directive is:
    Creating directory: D:\wkd//20101102061046/
    created.
    found WLS Home:C:\oracle\Middleware\wlserver_10.3
    got C:\oracle\Middleware\wlserver_10.3
    Reading properties from C:\oracle\Middleware\wlserver_10.3\.product.properties
    JAVA_HOME=C:\Oracle\Middleware\jdk160_14_R27.6.5-32
    C:\Oracle\Middleware\jdk160_14_R27.6.5-32\bin\java.exe
    D:\wkd//20101102061046/archive.jar
    Executing: C:\Oracle\Middleware\jdk160_14_R27.6.5-32\bin\java.exe -jar "C:\oracle\Middleware\oracle_common\jlib\cloningclient.jar" createclone -al "D:\wkd//20101102061046/archive.jar" -smw "C:\oracle\Middleware" -silent true -ldl D:\wkd
    Log File : "D:\wkd\CLONE2010-11-02_06-12-27PM.log" .
    Error File : "D:\wkd\CLONE2010-11-02_06-12-27PM.error" .
    2010-11-02_06-12-28PM : INFO : CLONE-21130 The component Dummy Top Component under Oracle home C:\oracle\Middleware\oracle_common is not cloneable.
    2010-11-02_06-12-28PM : INFO : CLONE-21130 The component Bogus under Oracle home C:\oracle\Middleware\oracle_common is not cloneable.
    2010-11-02_06-12-28PM : ERROR : CLONE-20280 Oracle home is not cloneable.
    2010-11-02_06-12-28PM : CAUSE : CLONE-20280 Some component(s) under the Oracle home C:\oracle\Middleware\oracle_common were not cloneable.
    2010-11-02_06-12-28PM : ACTION : CLONE-20280 Make sure that all components in the Oracle home are cloneable.
    2010-11-02_06-12-28PM : INFO : CLONE-21009 The list of Middleware home that will be included in the archive is =
    C:\oracle\Middleware .
    2010-11-02_06-12-28PM : INFO : CLONE-21013 Primary validation prior to clone operation is successful for C:\oracle\Middleware.
    2010-11-02_06-12-28PM : INFO : CLONE-21154 Checking free space availability for createClone operation.
    2010-11-02_06-12-30PM : INFO : CLONE-21155 Required free space is available for createClone operation.
    2010-11-02_06-12-32PM : INFO : CLONE-21095 Create archive for C:\oracle\Middleware started .... at 2010-11-02_06-12-32PM.
    2010-11-02_06-12-32PM : INFO : CLONE-21166 Addition of the Middleware home C:\oracle\Middleware to the archive started....
    2010-11-02_06-12-34PM : INFO : CLONE-21167 Creating archive of Middleware home C:\oracle\Middleware ....
    2010-11-02_06-15-35PM : INFO : CLONE-21168 Creating archive of Middleware home C:\oracle\Middleware finished .
    2010-11-02_06-15-35PM : INFO : CLONE-21169 Adding archive of Middleware home C:\oracle\Middleware to the main jar file started.....
    2010-11-02_06-15-35PM : INFO : CLONE-21053 Total size of the file(s) , to be included in the main jar from source location D:\wkd = 0.421 GB .
    2010-11-02_06-16-49PM : INFO : CLONE-21055 100% completed in "73" seconds, and "0" more seconds required.
    2010-11-02_06-16-49PM : INFO : CLONE-21170 Adding archive of Middleware home C:\oracle\Middleware to the main jar file finished .
    2010-11-02_06-16-49PM : INFO : CLONE-21096 Time taken for this process =257015 milli sec.
    2010-11-02_06-16-49PM : INFO : CLONE-21030 Adding "C:\oracle\Middleware" to the archive is successful.
    2010-11-02_06-16-53PM : INFO : CLONE-21031 Time taken to add all the cloners to archive ="262,266" milli seconds .
    2010-11-02_06-16-53PM : INFO : CLONE-21032 Archive created successfully at D:\wkd\20101102061046\archive.jar.
    2010-11-02_06-16-53PM : INFO : CLONE-21006 Total time taken by cloningclient ="265" seconds .
    2010-11-02_06-16-53PM : INFO : CLONE-21007 Cloning operation completed successfully.
    Executing: C:\Oracle\Middleware\jdk160_14_R27.6.5-32\bin\jar.exe uf D:\wkd//20101102061046/archive.jar -C C:\oracle\Middleware\oracle_common\jlib cloningclient.jar
    found WLS Home:C:\oracle\Middleware\wlserver_10.3
    got C:\oracle\Middleware\wlserver_10.3
    Reading properties from C:\oracle\Middleware\wlserver_10.3\.product.properties
    JAVA_HOME=C:\Oracle\Middleware\jdk160_14_R27.6.5-32
    MW_HOME=C\:\\Oracle\\Middleware
    Java Home is installed outside of FMW Home - Agent JDK will be bound to this WLS installation
    JavaExternal=true
    Executing: C:\Oracle\Middleware\jdk160_14_R27.6.5-32\bin\jar.exe uf D:\wkd//20101102061046/archive.jar -C D:\wkd\20101102061046 extra.info
    Cloning Successful
    Cleaning up files after successful run...
    unlink D:\Agent11g\agent11g\EMStage\PAF\Job_931f3d44a75952aae040b40a7f161fef\createClone.pl
    unlink D:\Agent11g\agent11g\EMStage\PAF\Job_931f3d44a75952aae040b40a7f161fef\invoke.pl
    unlink D:\Agent11g\agent11g\EMStage\PAF\Job_931f3d44a75952aae040b40a7f161fef\invoke.sh
    unlink D:\Agent11g\agent11g\EMStage\PAF\Job_931f3d44a75952aae040b40a7f161fef\properties
    unlink D:\Agent11g\agent11g\EMStage\PAF\Job_931f3d44a75952aae040b40a7f161fef\provisioningUtil.pl
    rmdir D:/Agent11g/agent11g/EMStage/PAF/Job_931f3d44a75952aae040b40a7f161fef
    Successfully deleted all leftover files and directories.
    Edited by: user13299429 on Nov 2, 2010 11:15 PM

    CHeck this thread:
    BINDING.JCA-12510 JCA Resource Adapter location error in SOA 11g Suite
    Did you have set the correct parameters to the DBAdpater; it look lik it can not bind the parameters (BINDING JCA-12563).
    Marc

  • Error - on using deployment procedures to patch a RAC cluster - 10.2.0.5

    I am using EM grid control 10.2.0.5. Using the deployment procedures to patch to a target host ucmlab that is on server devorclrac001.yeoman.dev.
    Here is the output log from the error. Any ideas. It appears to look like configuration missing.
    Thank you
    Output Log
    Downloading the patches from My Oracle Support.
    Building the runtime data for the deployment procedure ...
    Processing Target "ucmlab.yeoman.dev" on Oracle Home "/opt/app/oracle/product/10.2.0/db_1", Host "devorclrac001.yeoman.dev":
    For Target "ucmlab.yeoman.dev" patch will be applied to Oracle Home "/opt/app/oracle/product/10.2.0/db_1" on Host "devorclrac001.yeoman.dev".
    Processing Target "ucmlab.yeoman.dev" on Oracle Home "/opt/app/oracle/product/10.2.0/db_1", Host "devorclrac002.yeoman.dev":
    For Target "ucmlab.yeoman.dev" patch will be applied to Oracle Home "/opt/app/oracle/product/10.2.0/db_1" on Host "devorclrac002.yeoman.dev".
    Target "ucmlab.yeoman.dev" has a non-shared Oracle Home.
    Targets present in the Target List (Target Name, Host, Oracle Home):
    ucmlab.yeoman.dev,devorclrac001.yeoman.dev,/opt/app/oracle/product/10.2.0/db_1
    ucmlab.yeoman.dev,devorclrac002.yeoman.dev,/opt/app/oracle/product/10.2.0/db_1
    Oracle Homes being patched (Host, Oracle Home):
    devorclrac001.yeoman.dev,/opt/app/oracle/product/10.2.0/db_1
    devorclrac002.yeoman.dev,/opt/app/oracle/product/10.2.0/db_1
    Following Error(s) Occured :
    Property "NodeName" is not found for target "devorclrac001.yeoman.dev" of type "host"
    Property "NodeName" is not found for target "devorclrac002.yeoman.dev" of type "host"
    CAUSE: Insufficient Configuration Properties for the target(s)
    ACTION: Recompute the properties for the Agent with the target being in 'UP' status.
    (i) Run the following commands on the Agent of the target:
    $ emctl stop agent
    $ emctl start agent
    (ii) Run the following command: $ emctl reload agent dynamicproperties

    I decided to uninstall the agent, remove the target from EM and reinstall. It appears to be a little better. I get a different error now with the "opatch upgrade" step.
    I checked and OPATch_update job has already ran successfully once and software components have been downloaded once.
    Command Arguments: expandPatch -oh /opt/app/oracle/product/10.2.0/db_1 -pa_stage_loc /opt/app/oracle/product/10.2.0/agent10g/EMStage -i 6880880 -f p6880880.zip, Current Dir: /home/oracle
    Running: /opt/app/oracle/product/10.2.0/agent10g/sysman/admin/scripts/osm/ecmPatchDatabase.pl
    Argument count: 9
    Perl version: 5.008003
    Hostname: devorclrac002.yeoman.dev
    Operating system: linux
    Time: Tue Jul 14 14:49:36 2009
    Unpacking patch file p6880880.zip in /opt/app/oracle/product/10.2.0/agent10g/EMStage/6880880...
    /opt/app/oracle/product/10.2.0/agent10g/bin/unzip -o p6880880.zip
    Archive: p6880880.zip
    End-of-central-directory signature not found. Either this file is not
    a zipfile, or it constitutes one disk of a multi-part archive. In the
    latter case the central directory and zipfile comment will be found on
    the last disk(s) of this archive.
    unzip: cannot find zipfile directory in one of p6880880.zip or
    p6880880.zip.zip, and cannot find p6880880.zip.ZIP, period.
    ---------- Error Message ----------
    Error: 009
    Could not unpack p6880880.zip
    ----------- End Message -----------
    expandPatch failed

  • Provisioning weblogic domain thr FMW Provisioning Deployment Procedure

    I have successfully created a replica of the Fusion Middleware Home through the Fusion Middleware Deployment Procedure, but am not able to deploy the weblogic domain using the same.
    I am providing all the inputs/details required in the procedure , but at the end while submitting the procedure it shows .. some values are invalid.
    I am not able to get any logs or any information on the invalid values.
    The steps where I provide the inputs are :
    1) Select Source
    2) Select Target
    3) Configure Domain
    4) Scehdule Deployment
    5) Review
    and after this when i submit it .. am not able to submit.
    Pls provide guidance for it.

    Hi,
    In order to install Forms and Reports , Weblogic on windows server the prerequisites needs to be met :-
    Assign Proper ip, hostname & domain name
    Entry of ip, host name & domain name in etc/hosts file
    Disable anti-virus if any
    Disable ipv6
    Disable Windows Firewall, Windows Update & Windows Management Instrumentation at Service level (services.msc)
    Create 2 folder "tmp" & "Java" for temp, jdk & jre installation. And set the path of installed jdk in Environment Variable
    RAM - Minimum 4GB (Recommended)
    HDD - C & D with 20-50GB
    Regards,
    Prakash.

  • Patching through Deployment Procedures

    Hi
    I try to patch my databases 10.2.0.4 (CPU Oct release) through Deployment Procedures in Grid Control but its failing on Step: stagePatchStageApply without any warnings or comments. (Everything was working until GC crashed because of lack of space on filesystem. I have deleted the old files from softwareLibrary and restarted GC. OS reboot do not help as well.). Besides patching all is working well.
    OS: Enterprise Linux 4.

    Paste the emoms.trc meanwhile Can you try by setting up another software lib

Maybe you are looking for

  • My Palm IIIxe crashed and I can't find my data...

    I have a Palm IIIxe (yes, it's old) but it works or worked for me.  I don't use it too often, maybe twice a month.  When I tried to use it I noticed nothing happened when I turned it on.  Dead Batteries.  When I replaced the batteries I had no data. 

  • Ordered a pre-order and got charged still when cancelled pre-order

    I pre-ordered the new example album of "Live Life Living" but then cancelled the pre-order but yet I have been charged 99p for one of the songs off the album and I want to know why?

  • SB Live! 5.1 (sb0100) software probl

    Hi. I got recently a SoundBlaster Li've 5. (code SB000), with original software CD, but when I tried to install it, things gone wrong. First of all I use WinXP pro sp2, and when I installed the card, it found itself the drivers, but I wanted to try t

  • How to Pass Filter value to Filter dependent BADI ?

    Hi, I am having some doubt related to CRM Badi's there are two types of BADI's one is Muliple use badi and other in Filter dependent BADI.     Incase of filter dependent BADI. when we are creating implentation for filter BADI how to pass this filter

  • 3G: play count updated, but not last played

    I have a 3G 10GB iPod, and since updating to iTunes 7, my stats are not syncing correctly. When I play something on my iPod and then sync the stats back to iTunes, the play count field is properly adjusted, but the last played count does not. I under