Error in OAF page (Definition CLOSE_PO_FLAG of type Attribute not found)

Hi All,
In OAF, When we go to receive a requisition order, on that page for a column called PO Close, below this column in the value text, I am getting the below error:
Error
You have encountered an unexpected error. Please contact the System Administrator for assistance.
Click here for exception details.
About Previous Page
When I click the here for exception details. I see the below error. What is this error. Any idea.
=============
oracle.apps.fnd.framework.OAException: oracle.jbo.NoDefException: JBO-25002: Definition CLOSE_PO_FLAG of type Attribute not found
     at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(OAPageErrorHandler.java:1223)
     at oracle.apps.fnd.framework.webui.OAPageBean.renderDocument(OAPageBean.java:2946)
     at oracle.apps.fnd.framework.webui.OAPageBean.renderDocument(OAPageBean.java:2743)
     at oa_html._OA._jspService(_OA.java:101)
     at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
     at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
     at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
     at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
     at oracle.jsp.JspServlet.service(JspServlet.java:156)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
     at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
     at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
     at oa_html._OA._jspService(_OA.java:94)
===========
Help greatly appreciated.
Thanks
Aman

Hi JulianE.
Looks good. But strange .Please bounce the middletier once and set the permissions of this file to 7777
Thanks
Sandeep

Similar Messages

  • Definition VendorSiteCode of type Attribute not found in InvoiceheaderVO_InvoiceInstallment_InvoiceHeaderVOToInvoiceInstallmentVO_InvoiceInstallmentVO

    Hi All,
    We had deployed Fusion Payables applications locally and tried creating invoice on invoice work bench.
    After selecting BU, getting error saying 'an error occurred Domain: AP_domain, Server instance: AdminServer, application: PayablesApp
    After clicking ok for error, selected supplier and received same error and clicked OK and proceeded to select vendor site.
    When clicked on Supplier site, getting error saying "oracle.jbo.NoDefException: JBO-25058:Definition VendorSiteCode of type Attribute not found in InvoiceheaderVO_InvoiceInstallment_InvoiceHeaderVOToInvoiceInstallmentVO_InvoiceInstallmentVO"
    I had verified vendor_site_code available in POZ_Supplier_sites_v table and tried refreshing view, redeployed view multiple times but still issue persists.
    Please help in this regard.
    Thanks,
    Mahesh

    as your error say - oracle.jbo.NoDefException: JBO-25058:Definition VendorSiteCode of type Attribute
    VendorSiteCode is not found in VO definition.check you page definition file and VO.

  • Definition STATUS of type Attribute not found in ReqStatusVO1

    HI
    i created vo for the folowing statement.
    select status_code from fnd_concurrent_requests;
    when i tried to execute statement like:
    String status=(String)vor.getAttribute("STATUS");
    it gives the error like:
    Definition STATUS of type Attribute not found in ReqStatusVO1
    can you please hellp to solve this.

    Hi ,
    Right click on view object - > edit VO - > select attributes - > select attribute status - >(in view attribute) copy the name ( it should be something like - StatusCode/ status )
    Looks like you are using Alias name we should not use alias name , always use attribute name .
    try this , String status=(String)vor.getAttribute("status");
    or String status=(String)vor.getAttribute("StatusCode");
    --Keerthi                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Help! "1046: Type was not found or was not a compile-time constant:TimerEvent."

    I am getting the followiing error in my main document class:
    "1046: Type was not found or was not a compile-time constant:TimerEvent."
    It's showing in line 47 and 54 (in red below). Any help would be appreciated. BTW, this is my first time creating a main document class since graduating to class files!:
    package
        //**************** IMPORT STATMENTS *********************
        import flash.display.MovieClip;
        import com.greensock.TweenLite;
        import flash.utils.Timer;
        public class Main extends MovieClip
            //***************** Variables ***************************
            /*private var appStoreURL:URLRequest = new URLRequest("http://itunes.apple.com/us/artist/quackenworth/id518210161");
            private var facebookURL:URLRequest = new URLRequest("http://www.facebook.com/quackenworth");
            private var twitterURL:URLRequest = new URLRequest("http://www.twitter.com/quackenworth");*/
            private var MainScene:Main = new Main();
            private var PopUp_MoreApps:MoreApps_mc = new MoreApps_mc();
            private var PopUp_About:About_mc = new About_mc();
            //*****SPLASH SCREEN ***
            private var mc_timerSplash:Timer;
            private var splashScreen:mcSplashScreen;
            //*****************CONSTRUCTOR CODE ***********************************************************************************
            public function Main()
                mc_timerSplash = new Timer(3000,1);
                mc_timerSplash.addEventListener(TimerEvent.TIMER,  StartTimer);
                //When timer is finished stop the timer;
                mc_timerSplash.addEventListener(TimerEvent.TIMER_COMPLETE, timerCompleted);
                splashScreen = new mcSplashScreen();
                 addChild(splashScreen);
                splashScreen.x = stage.stageWidth / 2;
                splashScreen.y = stage.stageHeight / 2;
                mc_timerSplash.start();
            //*********** FUNCTIONS *********************************
            private function timerCompleted(e:TimerEvent):void
                    mc_timerSplash.stop();
                    mc_timerSplash = null;
            private function StartTimer(e:TimerEvent):void
                TweenLite.to(splashScreen, 1, {alpha:0, onComplete: SplashScreen});
            private function SplashScreen():void
                removeChild(splashScreen);
                addMainScene();
            private function addMainScene():void
                addChild(MainScene);
                MainScene.x = 489;
                MainScene.y = 350;
                //TweenLite.from(MainScene.wbbIntro_mc, .5, {alpha: 0});
                TweenLite.from(MainScene, 1, {alpha:0});
                TweenLite.to(MainScene.girls_mc, 1, {y:395, delay:.3});
                TweenLite.to(MainScene.boys_mc, .5, {y:396, delay: .6});
                TweenLite.to(MainScene.Joe_mc, .5, {y:339, delay: 1});
                TweenLite.to(MainScene.Paul_mc, .5, {y:322, delay:1.2});
            private function removeMainScene():void
                removeChild(MainScene);
                TweenLite.to(MainScene.girls_mc, .1, {y:690});
                TweenLite.to(MainScene.boys_mc, .1, {y:693});
                TweenLite.to(MainScene.Joe_mc, .1, {y:636});
                TweenLite.to(MainScene.Paul_mc, .1, {y:619});

    Now that the error is solved, when I test nothing happens. I just get a blank screen.
    What is supposed to happen? When the program opens a splash screen should be added for 3 seconds and then fade out. Then some main screen movie clips should be added to the stage.

  • Error:JBO-25004: Definition name  for type Attribute is invalid

    Hi,
    I just modified the query of the VO to correct the spelling of an alias name and since then the JDeveloper is failing with the below error message. I even tried changing the sql query used in the VO to its original state but still the program is failing with the below message.
    oracle.apps.fnd.framework.OAException: oracle.jbo.InvalidDefNameException: JBO-25004: Definition name for type Attribute is invalid
    Error Stack:
    oracle.apps.fnd.framework.OAException: oracle.jbo.InvalidDefNameException: JBO-25004: Definition name for type Attribute is invalid
         at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.renderDocument(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.renderDocument(Unknown Source)
         at OA.jspService(_OA.java:87)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259)
         at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:51)
         at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193)
         at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:283)
         at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)
         at com.evermind.server.http.EvermindPageContext.forward(EvermindPageContext.java:392)
         at OA.jspService(_OA.java:80)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:122)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:111)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    ## Detail 0 ##
    oracle.apps.fnd.framework.OAException: oracle.jbo.InvalidDefNameException: JBO-25004: Definition name for type Attribute is invalid
         at oracle.apps.fnd.framework.OAException.wrapperException(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.renderDocument(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.renderDocument(Unknown Source)
         at OA.jspService(_OA.java:87)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259)
         at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:51)
         at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193)
         at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:283)
         at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)
         at com.evermind.server.http.EvermindPageContext.forward(EvermindPageContext.java:392)
         at OA.jspService(_OA.java:80)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:122)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:111)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    oracle.apps.fnd.framework.OAException: oracle.jbo.InvalidDefNameException: JBO-25004: Definition name for type Attribute is invalid
         at oracle.apps.fnd.framework.OAException.wrapperException(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.renderDocument(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.renderDocument(Unknown Source)
         at OA.jspService(_OA.java:87)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259)
         at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:51)
         at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193)
         at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:283)
         at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)
         at com.evermind.server.http.EvermindPageContext.forward(EvermindPageContext.java:392)
         at OA.jspService(_OA.java:80)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:122)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:111)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)

    Hi,
    As in error thrown the name of the attribute name is missing so I think there is some point where you need to mention the attribute name but there you have not provided the attribute name.
    Regards,
    Reetesh Sharma

  • JBO-25002: Definition of type ApplicationModule not found

    Hello Gurus,
    I am getting this Error for a LOV page,
    oracle.apps.fnd.framework.OAException: oracle.jbo.NoDefException: JBO-25002: Definition company.oracle.apps.xxscp.lov.server.BufferStockLovAM of type ApplicationModule not found after deploying to a Quality instance.
    1. Class files & XML files have been deployed .
    2. I have Bounced the server as well as the oc4j container after the installation.
    3. The file permissions are good .
    All files as well as directories have 755 .
    The same files work in jdeveloper and in other instances. This happens for files in a particular directory.
    $JAVA_TOP/<company>/oracle/apps/xxscp/lov/server
    All files in other directories like
    $JAVA_TOP/<company>/oracle/apps/xxscp/<module>/server
    $JAVA_TOP/<company>/oracle/apps/xxscp/<module>/webui
    are getting picked up.
    the only difference (in comparison to other instances) I found was in server.xml , which did not have the Files as entries. But then I thought server.xml is only used when you want to extend any objects. However I deleted the server.xml (bounced webserver &oc4j) and tried , still the same error.
    Any idea what could be wrong or Am I missing something.
    Thanks and Regards
    Hari
    ERROR STACK
    at java.lang.Thread.run(Thread.java:595)
    ## Detail 0 ##
    oracle.apps.fnd.framework.OAException: oracle.jbo.NoDefException: JBO-25002: Definition company.oracle.apps.xxscp.lov.server.BufferStockLovAM of type ApplicationModule not found
    at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:896)
    at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(OAPageErrorHandler.java:1169)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:2143)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:533)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:421)
    at OA.jspService(_OA.java:212)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:335)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:478)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:401)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
    at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
    at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
    at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:627)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)
    at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:299)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:187)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:595)
    oracle.apps.fnd.framework.OAException: oracle.jbo.NoDefException: JBO-25002: Definition company.oracle.apps.xxscp.lov.server.BufferStockLovAM of type ApplicationModule not found
    at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:896)
    at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(OAPageErrorHandler.java:1169)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:2143)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:533)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:421)
    at OA.jspService(_OA.java:212)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:335)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:478)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:401)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
    at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
    at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
    at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:627)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)
    at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:299)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:187)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:595)
    Extra Details
    Product/Component Version
    OA Framework 12.0.4
    Oracle OA Extension 10.1.3 - build 1028
    Business Components 10.1.3.3
    UIX (Cabo) 2_3_6_2
    BiBeans Runtime 3.1.1.5 nondebug BI Beans 3.1.1.x
    MDS 9.0.6.0.0_26
    XML Oracle XML Developers Kit 10.1.3.0.0 - Production
    AOL/J Applications Object Library, Core Java Roll Up Patch J
    Servlet 2.4
    Java 1.5.0_08
    JDBC Driver 10.2.0.3.0
    Database Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bi
    Operating System Linux 2.6.9-55.ELsmp
    Browser Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)
    Other cases which i tried:-
    1. Checked if all the VO Classes which the AM refes to are there , the classes were present.
    2. Recompiled all classes again
    3. Checked if the LOV page was imported into the DB correctly , it was.

    There can be 3 possibilities here :
    1)Your application server has load balance scenario, where you have more than 1 application servers and all servers code are in sync. Now you might have deployed code in one server and other servers might now have that, so http request is not able to find AM.
    2) There are more than 1 boxes mounted on 1 server and your deploying code in the wrong instance.
    3) While bouncing the server you have bounced only http server and not OC4J container, this is valid only in case of R12. In R12, you need to run 2 scripts for making OAF changes into effect :
    1)adapcctl.sh
    2)adoacorectl.sh
    See details of r12 techstack at : http://mukx.blogspot.com/2008/05/some-facts-about-r12-oaf-techstack.html
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Error: Public member 'Dispose' on type 'ISCDReportClientDocument' not found.

    Hi everyone,
    I have an ASP VB.NET web application developed in Visual Studio 2010 4.0 loaded on server A making a call to server B running Crystal reports 2013. I want to use the same Viewer and use Case to pass the name of the report. But I can’t Dispose of the document I am getting an error: Public member 'Dispose' on type 'ISCDReportClientDocument' not found. I would appropriate any help on this one because I am stuck.
    Here is my code:
    Public Class GLReports
        Inherits System.Web.UI.Page
        Private boEnterpriseSession As EnterpriseSession
        Private boInfoObject As InfoObject
        Private boReportClientDocument As ReportClientDocument
        Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
            If Session("UserID") Is Nothing Then Response.Redirect("..\Login.aspx")
            Dim blnIsError As Boolean = False
            Try
                Dim boSessionMgr As SessionMgr
                Dim boInfoStore As InfoStore
                Dim boEnterpriseService As EnterpriseService
                Dim boInfoObjects As InfoObjects
                Dim boReportName As String = Request("FormName")
                Dim boQuery As String
                Dim boReportAppFactory As ReportAppFactory
                If Session("boEnterpriseSession") IsNot Nothing Then
    boEnterpriseSession = DirectCast(Session("boEnterpriseSession"), EnterpriseSession)
                Else
    boSessionMgr = New CrystalDecisions.Enterprise.SessionMgr()
    boEnterpriseSession = boSessionMgr.Logon("username ", " password ", " cms ", " authtype ")
    Session.Add("boEnterpriseSession", boEnterpriseSession)
                End If
                If Session("boReportClientDocument") IsNot Nothing Then
    boReportClientDocument = DirectCast(Session("boReportClientDocument"), ReportClientDocument)
                Else
    boEnterpriseService = boEnterpriseSession.GetService("", "InfoStore")
    boInfoStore = New CrystalDecisions.Enterprise.InfoStore(boEnterpriseService)
    Select Case boReportName
    Case "Test1"
                            boReportName = "rptTest1.rpt"
    Case "Test2"
                            boReportName = " rptTest2.rpt "
    End Select
    boQuery = "Select Query"
    boInfoObjects = boInfoStore.Query(boQuery)
    boInfoObject = boInfoObjects(1)
    boEnterpriseService = Nothing
    'Retrieve the RASReportFactory
    boEnterpriseService = boEnterpriseSession.GetService("RASReportFactory")
    boReportAppFactory = DirectCast(boEnterpriseService.[Interface], CrystalDecisions.ReportAppServer.ClientDoc.ReportAppFactory)
    'Open the report from Enterprise
    boReportClientDocument = boReportAppFactory.OpenDocument(boInfoObject.ID, 0)
    'Add the reportClientDocument to session
    Session.Add("boReportClientDocument", boReportClientDocument)
                End If
                'Set the ReportSource of the viewer to the report in Session
    CRViewer.ReportSource = Session("boReportClientDocument")
                boReportClientDocument.Close()
                boReportClientDocument.Dispose()
            Catch ex As Exception
    blnIsError = True 'if any error occured then no need to udpate the batch status
    lblMessage.Text = "Error, " & ex.Message
    lblMessage.ForeColor = System.Drawing.ColorTranslator.FromHtml("Red")
                cGeneral.WriteLog(ex)
            End Try
        End Sub
    End Class

    Hi Milena,
    The report is in session so you don't want to dispose of it. Only when you are done with the report then close it and dispose.
    Don

  • Temporary VO throws JBO-25058: Definition 0 of type Attribute is not found

    Hello,
    I'm working with ADF 11.1.1.5.
    I know that this error message usually indicates a misspelled attribute name.
    But my code ist this:ViewObject tVO = _myApplicationModel.createViewObjectFromQueryStmt(null,
                                "select count(1) as my_count from table where other_attr = ?");
    tVO.setWheresetWhereClauseParam(0, someValue);
    tVO.execureQuery();
    Object countReturned = tVO.first().getAttribute(0); // literal int 0 as indexThis code was working for several years. My SCM shows no differences to the last known working version.
    But today it started throwing oracle.jbo.NoDefException: JBO-25058: Definition 0 of type Attribute is not found in ViewDefImpl_189_190.
         at oracle.jbo.server.ViewRowImpl.getAttribute(ViewRowImpl.java:866)
         at my.package.MyApplicationClass.methodUsingTempVo(MyApplicationClass.java:lastLineInExample)
    ...How can this code fail at all?
    How do I solve this?
    bye
    TPD

    Alejandro Profet wrote:
    My fault, I read too fast :)at least you were quick... ;o)
    I suppose you check this before:Object countReturned = tVO.first().getAttribute("my_count");
    No. I did not expect this to work anyhow while accessing via index fails.
    BTW:
    Currently the error disapeaed.
    The only thing I did was to relaunche the application. I did not change any code. Neither I recompiled.
    I'm not a religious man but look's like I have sacrifice something to any good for this not happening in production. I'm thinking of an Oracle licence... ;o)
    bye
    TPD

  • NoDefException: Definition CostProfile of type Attribute is not found

    Hi All,
    I have a StdCostVO based on StdCostEO and I'm getting this error suddenly in my AM tester (was running fine earlier today):
    oracle.jbo.NoDefException: JBO-25058: Definition CostProfile of type Attribute is not found in __LOCAL_VIEW_USAGE_oracle_apps_scm_costing_standardCosts_stdCostDefinitions_model_entity_StdCostEO_ValUnitVA_findByVC_8fc_LOV_ValUnit__lov__filterlist__vcr___.
    Here ValUnitVA is a view accessor (using ValUnitVO) in StdCostEO. StdCostVO has two attributes ValUnitCode with LOV (based in ValUnitVA) and CostProfileCode. ValUnitVO has attributes ValUnit and CostProfile, so the LOV returns ValUnitVO.CostProfile to StdCostVO.CostProfileCode.
    The error message looks like it couldn't find the attribute CostProfile in ValUnitVO, however I can see this attribute there and no spelling error too. Pasting the source code of the attribute in ValUnitVO below. Please let me know if you see anything suspicious...
    I've tried to recreate the CostProfile attribute in ValUnitVO with different name, but still same error. Also to mention, ValUnitVO is expert mode VO.
    Thanks,
    Sophy
    <ViewAttribute
    Name="CostProfile"
    IsUpdateable="false"
    IsPersistent="false"
    PrecisionRule="true"
    Precision="30"
    Type="java.lang.String"
    ColumnType="VARCHAR2"
    AliasName="COST_PROFILE"
    Expression="COST_PROFILE"
    SQLType="VARCHAR">
    <DesignTime>
    <Attr Name="_DisplaySize" Value="30"/>
    </DesignTime>
    </ViewAttribute>

    I'm not using pageDef yet. I got this error in AM tester which is at the uiModel project level only.

  • Vimeo video unable to connect. Error message says "video format or mime type is not supported.

    Hi I am using a template with a full screen video landing page but i am unable to get Vimeo to video to connect. Error message says "video format or mime type is not supported".
    I have uploaded successfully to Vimeo however when published to catalyst and previewed the error message "video format or mime type is not supported." is displayed.
    Is this a format issue? I should point out I am using a template from Museworld as I am not a designer or graphic artist just another noob.@

    Hi,
    This seems to be a Firefox error:
    Firefox error: video format or MME type not supported - Articulate Storyline Discussions - E-Learning Heroes
    Kindly check if you are able to view the video on Vimeo.
    Also, try using another browser.
    Hope it helps,
    Sonam

  • Error 1046: Type was not found or was not a compile-time constant: Component Event.

    Hi Everyone..
    I am getting an Error 1046: Type was not found or was not a compile-time constant: Component Event.
    The ComponentEvent class has been imported,and also the event handling code is there. I am not sure what else is wrong, hope somebody can advise me. Thanks. The code is below, the point where the error occurs as indicated by the compiler has been highlighted.
    package 
    import flash.display.Sprite;
    import flash.media.Camera;
    import flash.media.Microphone;
    import flash.media.Video;
    import fl.controls.TextArea;
    import fl.controls.Button;
    import fl.controls.TextInput;
    import flash.events.SyncEvent;
    import flash.events.MouseEvent;
    import flash.events.FocusEvent;
    import flash.net.SharedObject;
    import flash.net.NetConnection;
    import flash.net.NetStream;
    import flash.events.NetStatusEvent;
    import flash.events.FocusEvent;
    import flash.events.ComponentEvent;
    public class VideoChat extends Sprite
      private var button:Button;
      private var text_so:SharedObject; 
      private var textArea:TextArea;
      private var textInput:TextInput;
      private var chatName:TextInput; 
      private var nc:NetConnection;
      private var nsOut:NetStream;
      private var nsIn:NetStream;
      private var rtmpNow:String;
      private var msg:Boolean; 
      private var cam:Camera;
      private var mic:Microphone;
      private var vid:Video;
      public function VideoChat ()
       //Set up UI
       textArea = new TextArea();
       textArea.setSize(500,280);
       textArea.move(20,54);
       addChild(textArea);
       textInput = new TextInput();
       textInput.setSize(500,24);
       textInput.move(20,340);
       textInput.addEventListener(ComponentEvent.ENTER,checkKey);
       addChild(textInput);
       button = new Button();
       button.width=50;
       button.label="Send";
       button.move(20,370);
       button.addEventListener(MouseEvent.CLICK, sendMsg);
       addChild(button);
       chatName = new TextInput;
       chatName.setSize (100,24);
       chatName.move (80,370);
       chatName.text="<Enter Name>";
       chatName.addEventListener (FocusEvent.FOCUS_IN, cleanName);
       addChild(chatName); 
       //Connect
       rtmpNow="rtmp:/VideoChat ";  
       nc=new NetConnection;
       nc.connect (rtmpNow);
       nc.addEventListener(NetStatusEvent.NET_STATUS,doSO);
       cam = Camera.getCamera();
       mic=Microphone.getMicrophone();
       //Camera Settings
       cam.setKeyFrameInterval(15);
       cam.setMode (240, 180, 15, false);
       cam.setMotionLevel(35,3000);
       cam.setQuality(40000 / 8,0);
       //Microphone Settings
       mic.gain = 85;
       mic.rate=11;
       mic.setSilenceLevel (25,1000);
       mic.setUseEchoSuppression (true);
       //Video Setup
       vid=new Video(cam.width, cam.height);
       addChild (vid);
       vid.x=10, vid.y=20;  
       //Attach local video and camera
       vid.attachCamera(cam);  
      private function doSO(e:NetStatusEvent):void
       good=e.info.code == "NetConnection.Connect.Success";
       if(good)
        //Set up shared object
        text_so=SharedObject.getRemote("test", nc.uri, false);
        text_so.connect (nc);
        text_so.addEventListener(SyncEvent.SYNC, checkSO);
      private function checkSO(e:SyncEvent):void
       for (var chung:uint; change<e.changeList.length; chng++)
        switch(e.chageList[chng].code)
         case "clear":
          break;
         case "success":
          break;
         case "change":
          textArea.appendText (text_so.data.msg + "\n");
          break;
      private function cleanName(e:FocusEvent): void
       chatName.text="";
      private function sendMsg(e:MouseEvent):void
       noName=(chatName.text=="<Enter Name>" || chatName.text=="");
       if (noName)
         textArea.appendText("You must enter your name \n");
       else
        text_so.setProperty("msg", chatName.text +": " + textInput.text);
        textArea.appendText (chatName.text +": "+textInput.text +"\n");
        textInput.text="";
      private function checkKey (e:ComponentEvent):void
       noName=(chatName.text=="<Enter Name>" || chatName.text=="");
       if (noName)
         textArea.appendText("You must enter your name \n");
       else
        text_so.setProperty("msg", chatName.text +": " + textInput.text);
        textArea.appendText (chatName.text +": "+textInput.text +"\n");
        textInput.text="";
      //Create NetStream instances
      private function checkConnect  (e:NetStatusEvent):void
       msg=e.info.code == "NetConnection.Connect.Success";
       if(msg)
        nsOut=new NetStream(nc);
        nsIn=new NetStream(nc);
        //NetStream
        nsOut.attachAudio(mic);
        nsOut.attachCamera(cam);
        nsOut.publish("camstream");
        nsIn.play("camstream");

    Hi Guys...
    I have found out what is wrong. I was importing the wrong package the correct one should have been:
    import fl.events.ComponentEvent;
    instead of
    import flash.events.ComponentEvent;
    I hope this is helpful for anyone caught in a simillar situation as me...Thanks..

  • BDoc Error :  Assignment of usage AD_DEFAULT to communication type TEL not

    Hi ,
    I got the below BDoc error with BDoc type : VEND_MAIN
        Error : Assignment of usage AD_DEFAULT to communication type TEL not unique
    Thanks

    We had a similiar issue with pushing vendors from R/3 > SNC.  I took all the entries out of but020 then used those address numbers to get a list of all the values in ADRCOMC.  In ADRCOMC there was a single entry whose HIGH_VALUE was 999 and that was causing the issue.  I went into the BP and manually deleted the Telephone & Email address of the BP then saved it.  I then went back in and re-created the tele & email address for the BP and that fixed he sequence error.
    We have several other BP's that have an usually high consnumber and I'm not sure why.  Most of our BP have a connumber of 001, 002, 003,,, etc, howver there are some that have skipped a lot of numbers and gone straight from 12, 13, 991, 992.  This last example is what happened with our problem BP record.
    After I manually changed the data I was able to process the inbound CIF.
    I hope this helps.
    Will Foster

  • Update -Graph and Pivot Table model.DataControls.dcx of type null not found

    Now Solved.
    I upgraded to the new Jdeveloper release and the Preview works.
    Update
    I created a new application and the graphs work ok.
    Now, why in my current project won't the graphs work???
    Chuck
    This just occured today 6/22/09.
    When ever I preview a graph or pivot table i receive this message:
    oracle.jbo.NoDefException: JBO-25002: Definition model.DataControls.dcx of type null not found
    I drop the query on a form as a table and it works fine.
    I have used Graphs before, and ahve never recieved this error.
    I just remenbered, I was using the previous release of Jdeveloper when I built the graphs.
    Probably nothing !!
    In the developers manual this message is mentioned:
    +29.3 Correcting Simple Oracle ADF Runtime Errors+
    Failures of the Oracle ADF Model layer cannot be detected by the JDeveloper
    compiler, in part because the page’s data-display and method-execution behavior
    relies on the declarative Oracle ADF page definition files. The Oracle ADF Model layer
    utilizes those declarative files at runtime to create the objects of the Oracle ADF
    binding container.
    To go beyond simple schema validation, you will want to routinely run and test your
    web pages to ensure that none of the following conditions exists:
    +■ The project dependency between the data model project and the user interface+
    project is disabled.
    By default, the dependency between projects is enabled whenever you create a
    web page that accesses a data control in the data model project. However, if the
    dependency is disabled and remains disabled when you attempt to run the
    application, an internal servlet error will be generated at runtime:
    oracle.jbo.NoDefException: JBO-25002: Definition
    model.DataControls.dcx of type null not found
    To correct the error, double-click the user interface project, and select the
    Dependencies node in the dialog. Make sure that the ModelProjectName.jpr
    option appears selected in the panel.
    I checked and the model.jpr is there.
    I re-installed jdeveloper but the same error occurs.
    I have no idea on how to proceed.
    Chuck
    Edited by: user634580 on Jun 24, 2009 11:59 AM
    Edited by: user634580 on Jun 24, 2009 12:02 PM
    Edited by: user634580 on Jul 4, 2009 8:23 AM

    Well, Shay
    I search my entire C drive for datacontrol.dcx and *.dcx and no files found.
    I am usiing ADF.
    The new application that I created that works in preview does not have this file.
    I unstalled jdeveloper, downloaded a new copy, deleted Oracle directory, installed jdeveloper and results are the same.
    Is the datacontrol.dcx file the same as the "datacontrol in the Data Controls Folder "?
    The datacontrol is present the Data Controls Folder (model.jpr model.appmodule)
    There are 3 messages in the log pertaining to DVT listed below.
    **WARNING: A duplicate definition for the feature "AdfDvtGraph" has been found at*** zip:C:/Oracle/Middleware/jdeveloper/system/system11.1.1.0.31.52.05/DefaultDomain/servers/DefaultServer/tmp/_WL_user/NBCV3/1k9n8d/war/WEB-INF/lib/dvt-faces.jar!/META-INF/adf-js-features.xml, line 3. A feature with the same name was originally defined at zip:C:/Oracle/Middleware/jdeveloper/dvt/lib/dvt-faces.jar!/META-INF/adf-js-features.xml, line 3. This may indicate that multiple copies of the same jar file are present on the class path. Ignoring the new feature definition.
    Jun 26, 2009 7:53:29 AM oracle.adfinternal.view.faces.partition.FeatureUtils _addFeatures
    WARNING: A duplicate definition for the feature "AdfDvtGauge" has been found at zip:C:/Oracle/Middleware/jdeveloper/system/system11.1.1.0.31.52.05/DefaultDomain/servers/DefaultServer/tmp/_WL_user/NBCV3/1k9n8d/war/WEB-INF/lib/dvt-faces.jar!/META-INF/adf-js-features.xml, line 7. A feature with the same name was originally defined at zip:C:/Oracle/Middleware/jdeveloper/dvt/lib/dvt-faces.jar!/META-INF/adf-js-features.xml, line 7. This may indicate that multiple copies of the same jar file are present on the class path. Ignoring the new feature definition.
    Jun 26, 2009 7:53:29 AM oracle.adfinternal.view.faces.partition.FeatureUtils _addFeatures
    WARNING: A duplicate definition for the feature "AdfRichPivotTable" has been found at zip:C:/Oracle/Middleware/jdeveloper/system/system11.1.1.0.31.52.05/DefaultDomain/servers/DefaultServer/tmp/_WL_user/NBCV3/1k9n8d/war/WEB-INF/lib/dvt-faces.jar!/META-INF/adf-js-features.xml, line 11. A feature with the same name was originally defined at zip:C:/Oracle/Middleware/jdeveloper/dvt/lib/dvt-faces.jar!/META-INF/adf-js-features.xml, line 11. This may indicate that multiple copies of the same jar file are present on the class path. Ignoring the new feature definition.
    A

  • Trouble adding a web url link to an existing file: 1046: Type was not found or was not a compile-time constant:

    Hi There,
    We're trying to add a simple link to an existing Flash file. There looks to be at least 7 separate .as files and a separate swf that loads the main swf which all seems overly complex for what is essentially a page with six buttons on it.
    However, we need to add a URL to some of the text. So we converted the text to a button, added an instance name of <ssbpurchasetickets_btn> then added the following Actionscript into the actions layer on the frame the text/button appears:
    ssbpurchasetickets_btn.addEventListener(MouseEvent.CLICK, ssbButtonPurchase);
    function ssbButtonPurchase(event:MouseEvent):void
    navigateToURL(new URLRequest("http://www.url.com/tickets.html"));
    When we publish the file we get the following error which seems to cascade into a whole bunch more errors:
    Description: 1046: Type was not found or was not a compile-time constant: MouseEvent.
    Source: function ssbButtonPurchase(event:MouseEvent):void
    We added "ssb" onto the button and functions to ensure there were no conflicts but the same thing occurred. If we copy the button into a new file everything works so it must be conflicting with something in the main files.
    Any help would be MUCH appreciated!!!!
    Cheers

    Thanks for the reply Ned,
    The file is set to use AS3 and I'm pretty sure the original should be set to AS3 as the .as files look like AS3 syntax to me - here's a sample:
    protected function handleWwrdButtonClick(e:ButtonEvent):void {
    Browser.open(globalVar.xml.wwrd.item[0].@url, globalVar.xml.wwrd.item[0].@target);
    OmnitureTracker.trackFeaturedContentClick('http://www.url.com/movies/international', 'wwrd_button');
    timer.stop();
    timer.removeEventListener(TimerEvent.TIMER, onTimer);
    I'm wondering if all the Actionscript has be placed into one of the .as files as there isn't any Actionscript in the Flash project - a part from the odd stop()
    Really stuck on this one (I'm not an expert at all) so any help in deciphering the project would be much appreciated.
    Cheers

  • Error: unable to copy to output directory, ReqMgmtActionsVO.xml not found

    hi,
    While running a page using jdeveloper am getting error like
    Error: unable to copy to output directory, ReqMgmtActionsVO.xml not found.
    am very thankful to the response
    Thanks
    Surya

    Hi,
    I faced the same issue.
    I fixed it by searching the missing file (In my case MyEO.xml which is a removed file) using JDeveloper (Menu Search/Search Files...).
    It found an occurence in the related .jpr file.
    In the .jpr, I deleted the related lines:
    <Item>
    <Key class="java.net.URL" path="xx/oracle/apps/.../MyEO.xml"/>
    <Value idref="15"/>
    </Item>
    That's it.
    Regards,
    Olivier

Maybe you are looking for

  • Maintaining Constant Sender Address in the Email of Batch Job

    Hi, I have created a smartform whcih will be sent via Batch job at a partcular time .And everytime the Sender Id is "BATCH.JOB".  Actually the businesswants the sender address to be XYZ.com instead of BATCH.JOB Iam using the below FM to send email. C

  • Removing background noise from captured clip

    I wanted to edit an audio which was captured with Video also it contains some background noise.Which filter should I try for this in FCP.

  • Issue with Planning sequence authorization in WAD

    Hi, There is a planning sequence which I can execute through Modeler without any issue. However I am not able to execute the same from WAD. It says 'You are not authorized to execute planning sequence....' Please advise. Regards, SSC

  • Restoring Old Bookmarks on TenFourFox

    I backed up my applications and data, including TenFourFox on my Mac G-4 PPS running OS 105.8 (Tiger). I then installed a new OS and restored backed up applications. Where on my Mac files are my old bookmarks? What is that file called?

  • Can we do that ???

    Hi all, Can u convert java Application to .exe file?? yes u can but do u must have a JVM in ur computer to run this file ????? anybody can help me plz