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

Similar Messages

  • Reg first JSF page deployment

    hi,
    when I try to run my firstjsf application it says the following error;
    org.apache.jasper.JasperException: null(-1,-1) This absolute uri (http://java.sun.com/jsf/html) cannot be resolved in either web.xml or the jar files deployed with this application
    I think, this error means that there is no mapping for the <tag-uri> to the "tld" file in web.xml, so
    I copy the "html_basic.tld" and "jsf_core.tld" into my application path and map it in web.xml
    still the same error occures... how to resolve this?
    More question;
    - I found that no uri mapping in web.xml file in the sample jsf pages provided by jsf-1.1 specification? Is this mapping is necessary one or not?
    regards,
    arun.

    I have resolved myself what i have asked before in this forum...
    Actually the URL mapping to the TLD file is set in jsf-api.jar and jsf-impl.jar files, So no need to set the taglib mapping tags in "web.xml".
    And I have tested my sample application both in Tomcat 4.1.x and Tomcat 5.0.x, it's works fine...
    Any way thanks to this forum to expose various ways to identify the bugs when deploying JSF web application into the server.
    - Arun.

  • Add new field in OAF Page.

    I want to personalize a OAF page. My question is, Can i add new field in OAF page linked with database field and some calculations.
    I am trying to add new field in Termination page of Self service HR which will show the hiredate of employee and number of year served.

    Hi,
    As already specified by Kali..
    Step 1 - Create a new Field of type MessageStyledText using Personalization Link.
    Step 2 - Set the corresponding VO Attribute, which will fetch Hire Date.
    Step 3 - Extend the CO and calculate the Served Year, using Java Code.
    Step 4- Set the same value over the bean manually.
    Regards,
    Gyan

  • OAF: Emailing the current OAF page

    Hi Everyone,
    I have developed an OAF page with many tables and many fields.
    And have a button "Email". The requirement is :
    When user clicks on Email button the current page should be attached and send as an email to the user.
    Note: One field is there to enter email so to that address this page has to be emailed.
    How can i achieve this requirement???
    Any answers will be really useful.
    Thanks..........

    Hi Kumar ,
    In OA framework we have mailto option to send a mail .
    mailto:{@<ViewObjectAttributeName>} syntax, the OA Framework substitutes the associated view object attribute value for everything between the curly braces at runtime.
    Set the below property
    Destination URI      mailto:{@EmployeeEmail}
    CSS Class      OraLinkText
    Please refer drill down to details exercise in Jdev Doc , Let me know if its not clear .
    Keerthi
    Edited by: keerthioaf on Oct 31, 2012 10:28 PM

  • 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.

  • 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

  • Is there a way to preview the dissing of the pages on OAF without deployment ??

    Is there a way to preview the dissing of the pages on OAF without deployment ??
    Hi to all,
    I´m recently  working with OAF and the main server are in Argetina, so when I try to make a deploy  to check the development it takes a lot of time. Is there a way to make a preview of the pages (Something like the visual designer of netbeans )
    thanks to all

    Run the page from your JDeveloper locally using the DBC file. I assume you are developing the pages using JDeveloper, so you should be able to run the page.
    Thanks
    Shree

  • 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.

  • OAF page customization question - help needed urgently!

    Hi,
    To minimize customizations on an OAF page we are trying to handle some validations at the databse layer using a db trigger. The flow is that when the user hits Save on an OAF page and a certain column in a table is updated by the EO, a db trigger set on this column will fire off. Based upon whether the validation went through or not the db trigger might fail
    with an error message. Question is will this message be displayed on the UI without any customizations so that the user knows what happened or will the OAF page just throw a null pointer exception? Also since OAF is writing directly to DB using an EO, will it be too late by the time the trigger kicks in and validates stuff and then based on if there was an error it rollsback the data? Can we rollback the entire transaction or not?
    Please help!

    Adding to Mukul's reply, yes if you are using OAF, let all the control be through the OAF. In your case any error in the DB will be sent back to the user in a very raw way which surely will annoy any user. Also we cann't comment on the rollback status.
    My suggestion is to make use of a callable statement and call a wrapper pl/sql procedure which does all the validations for you (in case you have varied and complex validations) and returns a true or false based on which you can commit the transaction.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • While runing an OAF page , it opens up the Application Login Page first

    Hi,
    Whenever i run any simple OAF page from my machine it always opens up the login page and once I login by giving the application username /password , it then shows my OAF page.
    I have verified the run time connection and the user name password and the responsibilities are all correct.
    Please help me in getting rid of the login page everytime I am getting while running the page

    Did you copy the dbc file to local directory? Are you able to connect database from JDeveloper? Also, make sure that, the responsibility is of type 'Self-Service'. There could be something else, I'm just trying to troubleshoot.

  • Adding new field to OAF Page

    Hi All,
    I am beginner in OAF. We want to add a new field in a OAF page. We wanted to do it by extending Standard VO i.e. present already. Now will it be sufficient if I download only View Object and XXPG.xml related to the OA Page or should I download all the class files and xml files from APPL_TOP to deploy the environment in Jdeveloper
    As I want to add a field to VO to reflect the change in OA Page, does it mean I am extending OA Page or just extending VO. Iis there any better way of doing it.
    Please advice.
    Thanks,
    Abhishek.
    Edited by: 853343 on Jan 11, 2012 6:36 AM

    Abhishek.
    please post your question in the forum {forum:id=210}
    Timo

  • Extending Controller for a std OAF page

    Hi,
    I have a requirment to extend the CO of a std OAF page.
    The requirement is,On click of a submit button (Apply) invoke a custom method before the std code gets executed
    To achieve the same I will use personalization and extend the standard CO and override PFR as follows
    CustomCO extends StdCO
    public void PR()
    super.PR(); ----do I need to invoke super here?
    public void PFR()
    super.PFR();-----------A
    if( Apply button clicked)
    invoke custom code()
    super.PFR(); -----------B
    My question is
    1) Can i copy the part std CO code(using decompiler) in my custom CO (i guess not a good practice)
    2) Instead of 1) above can i invoke super as shown in B(in the code above)?
    3) If i invoke super after my custom code in the if loop can I remove super pointed as A (in the code above)? Will it harm the std functionality?
    Thanks,
    kamath.

    I agree with you, Tapash .... there might be a few cases where you might want to call seeded code first. But, the point I wanted to stress is for a submitButton, mostly the seeded controller will redirect to currentpage or any other page (depending on logic) in its code. So if you are extending the functionality of it, it becomes necessary to call ur custom code first. If you still want the seeded code to be executed first, then you might have to decompile the class file, paste the complete code in custom controller and insert your custom logic whereever you feel is appropriate.
    And Senthil's suggestion also shows calling super method after custom code ... so we are all on same page :-)

  • Identifying the customization is OAF Page

    Hi,
    I have a requirement to identify the customizations in  OAF pages from back end , in modules like AP,AR,GL.
    I had used the below query
    SELECT jdr_mds_internal.getdocumentname(ja.att_comp_docid) AS customized_document
                               FROM jdr_attributes ja
                              WHERE att_value LIKE '/oracle/apps/%customizations%';
    ex: /oracle/apps/ap/oie/webui/customizations/responsibility/23/OIEMAINPAGE
    Here how to identify the the above path is related to AP (Acccounts payable).
    Thanks in Advance
    Harry !!

    There are 3 concepts in OAF: Personalizations, BC4J extensions/substitutions and Customizations.
    Personalizations are stored in the MDS and there is a page under System Administration to list the personalizations for any given page.
    Now, have in mind that there are personalizations for certain products that are provided also by Oracle.
    BC4J extensions/substitutions involve the replacement of the BC4J objects referenced by a given page by custom BC4J objects (i.e.: queries) that can be achieved
    via the personalizations feature (replacing the AMs referenced by the page).
    Customizations involve custom controllers (java code), custom pages, custom BC4J objects, etc. and are more difficult to track if they are implemented as
    "in-site" customizations (for example, a standard shipped file by oracle that is changed by the customer)
    With all of these in mind, the first 2 can be detected by scanning the MDS for a certain group of pages.  The third is more complicated and the reason why we request customers to follow the standards in terms of splicing a new custom module.
    Refer to the OAF troubleshooting guide for more information. See MOS note 1496055.1 for reference.
    Let me know if any question.
    Thanks
    --Gustavo

  • JSPELL Installation in OAF Pages

    Hi All,
    Can any body help me to install jspell in oaf pages? i just want to install spell check in self service pages.
    is this feasible in SS pages like Forms and javascript?
    Any input will be appreciated.
    Thanks,
    Ramesh Medepalli

    Have you looked at the webapps documentation?
    http://docs.sun.com/app/docs/doc/819-6518
    especially the section on deploying webapps?
    http://docs.sun.com/app/docs/doc/819-6518/6n8hd7tej?a=view
    I have found that often the web.xml file for an app that runs OK in other environments needs to be edited to appease SWS -- root elements and DTD/doctype declarations are usually all that requires special attention. Sun has docs on a sample config here:
    http://docs.sun.com/app/docs/doc/819-6518/6n8hd7tev?a=view
    Our typical web.xml start with
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
    As for unpakcing the war files, you can deploy a webapp with 'wdeploy' (http://docs.sun.com/app/docs/doc/819-6518/6n8hd7ten?a=view) without unpacking it, but we've moved away from that. I find it easier to manually add a line like this to server.xml inside the <VS> element:
    <WEBAPP uri="/Appname" path="/path/to/Appname" enabled="true"/>
    where I've unpacked the warfile into /path/to/Appname such that web.xml is /path/to/Appname/WEB-INF/web.xml, etc.
    With a default SWS config (i.e., one with the default J2EE functions/entries intact in the various config files), you can probably unpack the webapp to /path/to/Appname, edit server.xml, and stop+start SWS to get the app running.
    To update/redeploy the app, we have a custom script that replaces /path/to/Appname and conditionally runs the 'reconfig' script for the SWS instance if there's a major change (vs. static content, JSPs, etc.).
    More caveats: 'reconfig' is nice (usually quicker & less intrusive than a full stop + start cycle), but we've found you can't run it too many times before the JVM starts running out of resources (memory) and requires you to stop & start up again the SWS instance to clear things up.

  • How do you merge two OAF Pages?

    Hi Experts,
    I need to merge regions of one OAF page into another in R12. In this example, it is an AP Approval Notification where in the notification there is a link where it opens into another page which details the lines in the invoice. The idea is to put some of the information in this second page into the first, so there is only the one page in the notification so the user does not have to click into another.
    I've never had to do this before and would welcome any comments on the approach. My idea is to customise the first page, i.e the main notification. The top and bottom parts page of the page is made up of standard workflow notification regions. This I would leave as it is. The central part is made up of a region that is specific to ap invoice. I could extend this region and add in the region from the second invoice lines page that I need, I would also migrate the functionality required in the controller class to the controller class in the first page.
    How does this sound? Is there anything else I need to consider?
    Many thanks,
    Mark

    Hi All,
    Many thanks for your help, which has been useful.
    The central part of the notification that is referenced by the AP workflow is the following page:
    JSP:/OA_HTML/OA.jsp?page=/oracle/apps/ap/invoice/request/negotiation/webui/NotifPGRN;INVOICEID=-&INVOICE_ID-&ITEMKEY=-&NOTIFICATION_KEY-&ITEMTYPE=-&ITEMKEY_CONST-
    Under this following page (/oracle/apps/ap/invoice/request/negotiation/webui/NotifPGRN) there is the following region:
    oracle.apps.ap.invoice.request.negotiation.webui.NotifPGRN
    So this is the main notification. On it, the lines page is referenced as a link and this goes to the follwoing region:
    /oracle/apps/ap/invoice/request/negotiation/webui/InvPoLineRN
    So just to re-iterate, I need to insert this lines region into the first page. Could I then do it by taking the controller classes out of the lines region and adding it to controller classes of the main page region and having this main page region substitute the region that is already present?
    I'm trying to get in my head what is the right approach and technically what I need to consider. Any help again is greatly recieved.
    thanks,
    Mark

Maybe you are looking for

  • XServe is slow over 100MB/s switch

    I have a big problem that's getting bigger by the month. My LAN is sloooowww! I am the assistant (i.e. volunteer technology coordinator at a small private elementary school and we are using a Dual G5 XServe (all the latest patches) for our main serve

  • How to consume 3rd Party WSDL which contains the Include statement

    I have a 3rd Party WSDL I am trying to consume using the BizTalk WCF Consume Wizard. When I try and consume the WSDL it gives me blank XSDs and Binding files. It does produce the Port Types in an Orchestration. This article mentions how to use the sv

  • Errrors

    Hi all, I been  attending some interviews lately. I was facing a common question from the interviewers is that wat type of errors did u come across? and how did u solve them.Am sure everybody who is working should have come across several problems or

  • I can't download apps with ios 6

    i have downloaded iOS 6 and now I can't download apps, books or anyhting for that matter. What can  I do to resolved this???

  • How can I get Shockwave to stop crashing?

    Shockwave keeps crashing and now won't even let me load Farmville on fb....I have gone so far as to uninstall and reinstall it but this problem still persists. Has any one else encountered this problem? If so how can I fix it?