Disabling jbo.ampool.timetolive

Hi!
I want to disable the use of the parameter jbo.ampool.timetolive, because I set the limit of the AM pool to zero using jbo.ampool.minavaiblesize.
Now, I don´t know if this is possible, my best guess is to set the value to -1. Am I right?
Thanks!

The number -1 has no special significance for this property.
If you have minavailablesize set to 0 and you set the timetolive to a value in milliseconds that is larger than the max idle time, then you will effectively have disabled the time to live consideration since you'll always have removed the AM from the pool for being idle before you'd ever have to consider removing it for having exceeded its time-to-live setting.

Similar Messages

  • ADF 10g: AM pool dropped to zero after the jbo.ampool.timetolive is reached

    Hi,
    JDev: 10.1.3.2.0.4066
    I have a problem where all appModules in the application module pool are removed when the jbo.ampool.timetolive threshold is reached, even the currently referenced ones. This causing serious performance issues in our application. I have seen reports from Steve Muench on his blog (http://radio-weblogs.com/0118231/2006/03/30.html) that this issue can happen under certain circumstances but the link is broken, so am not sure what the reason is. Does anyone have a link to where this was moved to? Steve also has added (Disabling jbo.ampool.timetolive on this forum of how to "disabled the time to live consideration" but the timetolive is still removing all the appModules in the pool. Why is the pool being completely wiped out after the timetolive?
    Here is the BC4J configuration that is being used:
    NB:
    * web session timeout is 45 minutes
    * I am using a JDBC pool as well
          <AppModuleConfig name="Oracle">
             <DeployPlatform>LOCAL</DeployPlatform>
             <JDBCName>cvclaims_Oracle</JDBCName>
             <jbo.TypeMapEntries>Java</jbo.TypeMapEntries>
             <jbo.project>Model</jbo.project>
             <AppModuleJndiName>my.adf.root.RootAppModule</AppModuleJndiName>        
             <java.naming.factory.initial>oracle.jbo.common.JboInitialContextFactory</java.naming.factory.initial>
             <ApplicationName>my.adf.root.RootAppModule</ApplicationName>        
             <jbo.locking.mode>optimistic</jbo.locking.mode>        
             <jbo.ampool.initpoolsize>50</jbo.ampool.initpoolsize>
             <jbo.ampool.maxpoolsize>100</jbo.ampool.maxpoolsize>
             <jbo.recyclethreshold>50</jbo.recyclethreshold>
             <jbo.ampool.maxavailablesize>50</jbo.ampool.maxavailablesize>
             <jbo.ampool.minavailablesize>50</jbo.ampool.minavailablesize>
             <jbo.poolmaxavailablesize>51</jbo.poolmaxavailablesize>
             <jbo.maxpoolsize>51</jbo.maxpoolsize>
             <jbo.initpoolsize>51</jbo.initpoolsize>
             <jbo.poolminavailablesize>51</jbo.poolminavailablesize>
             <jbo.ampool.maxinactiveage>2760000</jbo.ampool.maxinactiveage>
             <jbo.ampool.monitorsleepinterval>60000</jbo.ampool.monitorsleepinterval>
             <jbo.ampool.timetolive>2850000</jbo.ampool.timetolive>
          </AppModuleConfig> Here is the code that logs out a user:
                    // Check whether the URL is the LOGOUT URL
                    if (requestURL.endsWith(logoutUrl)) {
                        // Log out, invalidate the session.
                        // Tried the patch mentioned in this thread with no change:
                        // ADF BC/ Faces - Logout exception
                        // This linked blog reports that the below ADFContext
                        // addition fixed it:
                        // http://vgoldin.blogspot.com/2007/02/adf-invalidating-web-session-in-apache.html
                        // but there may be more than one problem here.
                        // Others have suggested just wrapping the invalidate code
                        // in try/catch.
                        // Trying both here.
                        try {
                            ADFContext.getCurrent().removeScope(ADFContext.SESSION_SCOPE);
                        } catch (Exception e) {
                            e.printStackTrace();
                        try {
                            session.invalidate();
                        } catch (Exception e) {
                            e.printStackTrace();
                        MDC.remove(MDC_USERNAME);
                        if (!logoutDestinationUrlChecked && logoutDestinationUrl.startsWith("/")) {
                            logoutDestinationUrlChecked = true;
                            logoutDestinationUrl = request.getContextPath() + logoutDestinationUrl;
                            // relative path, prefix with request context path;
                        log.debug("Session is invalidated, redirecting to " + logoutDestinationUrl);
                        // we do redirect instead of forward so that this filter
                        // will be visisted again for the requested logout
                        // destination
                        // forcing a new login when applicable.
                        response.sendRedirect(response.encodeRedirectURL(logoutDestinationUrl)); DumpPoolStatistics.jsp page output
    This page is explained in Steve Muench's blog
    head:Application module lifetime statistics
    Number of application module creations,3208
    Number of application module removals,3184
    head:State management statistics
    Number of transactional state activations,2073
    Number of transactional state passivations,2873
    head:Application pool use statistics
    Number of application pool check outs,193821
    Number of application pool check ins,193818
    Number of referenced application modules that were reused,183071
    Number of referenced application modules that were recycled,0
    Number of unreferenced application modules that were recycled,7594
    Number of application pool check out failures,8
    head:Application module statistics
    Total number of application modules in the pool,24
    Maximum number of application modules in the pool,50
    Average number of application modules in the pool,23
    Total number of available application modules in the pool,21
    Average number of available application modules in the pool,21
    Average number of unavailable application modules in the pool,2
    Total number of referenced application modules in the pool,24
    head:Application module age statistics
    Number of referenced instances unused for >10 min,7
    Number of referenced instances unused for >5 min,2
    Number of referenced instances unused for >1 min,6
    Number of referenced instances used during last 1 min,9
    Number of instances unused for >10 min,0
    Number of instances unused for >5 min,0
    Number of instances unused for >1 min,0
    Number of instances used during last 1 min,0
    head:Session statistics
    Number of sessions registered with the pool,32
    Average number of sessions referencing transactional state,427
    head:Session age statistics
    Number of sessions inactive for >10 min,14
    Number of sessions inactive for >5 min,2
    Number of sessions inactive for >1 min,7
    Number of sessions active during last 1 min,9 The above DumpPoolStatistics page shows the AM pool shortly after the timetolive has kicked in. There is 24 app modules in the pool despite the jbo.ampool.minavailablesize being 50. There is also 32 users in the application so I would of expected there to be a corresponding number of appModules.
    Thanks
    Barry
    Edited by: Bar on Mar 9, 2011 5:18 PM
    Edited by: Bar on Mar 9, 2011 5:20 PM

    I believe my problem is that the jbo.ampool.minavailablesize is higher than the normal load on the system. This is stopping app modules to be removed once the jbo.ampool.maxinactiveage time is reached, therefore the only time an AM is removed is when the jbo.ampool.timetolive limit is reached.
    e.g.
    * 35 users log into the application in the morning. The AM pool contains 35 AM's
    * GC on the pool happens. If an AM has reached the jbo.ampool.maxinactiveage then they will not be removed because it would mean that the pool (currently 35) drops below the jbo.ampool.minavailablesize (50)
    * GC happens again and the jbo.ampool.timetolive threshold is now reached on all AM's so they are all removed from the pool.

  • NullpointerException after App module jbo.ampool.timetolive time

    Hi friends,
    I face a strange scenario where my page gives NullpointerException exactly after my jbo.ampool.timetolive time elapses (In my case 2min).
    When I gave the "Disconnect Application upon release" in the App configuration the same NullException raises on page load itself.
    This is the following piece of code where the null pointer raises,
    public <T> T resolveValueExpression(String expression, Class<T> type) {
    ELContext context = FacesContext.getCurrentInstance().getELContext();
    ValueExpression value = getExpressionFactory().createValueExpression(context, expression, type);
    //Null raises in this Value.getValue(Contect)
    // returns null even when value and context is not null
    return (T) value.getValue(context);
    The stack trace is as follows:
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: java.lang.NullPointerException, msg=Cannot invoke method getAttribute() on null object
         at oracle.jbo.ExprEval.internalEvaluateGroovyScript(ExprEval.java:1048)
         at oracle.jbo.ExprEval.doEvaluate(ExprEval.java:1081)
         at oracle.jbo.ExprEval.evaluateForRow(ExprEval.java:911)
         at oracle.jbo.server.ViewObjectImpl.createViewAccessorRS(ViewObjectImpl.java:15564)
         at oracle.jbo.server.ViewRowImpl.createViewAccessorRS(ViewRowImpl.java:2572)
         at oracle.jbo.server.ViewRowImpl.createViewAccessorRS(ViewRowImpl.java:2583)
         at oracle.jbo.server.ViewRowStorage.getAttributeInternal(ViewRowStorage.java:1721)
         at oracle.jbo.server.ViewRowImpl.getAttributeValue(ViewRowImpl.java:1891)
         at oracle.jbo.server.ViewRowImpl.getAttributeInternal(ViewRowImpl.java:834)
         at com.symmetry.dashboard.panels.model.vo.EditPurchaseInvoiceViewRowImpl.getGoodsReceiptAuthoriserLOV1(EditPurchaseInvoiceViewRowImpl.java:2204)
         at com.symmetry.dashboard.panels.model.vo.EditPurchaseInvoiceViewRowImpl$AttributesEnum$71.get(EditPurchaseInvoiceViewRowImpl.java:945)
         at com.symmetry.dashboard.panels.model.vo.EditPurchaseInvoiceViewRowImpl.getAttrInvokeAccessor(EditPurchaseInvoiceViewRowImpl.java:2224)
         at oracle.jbo.server.ViewRowImpl.getAttribute(ViewRowImpl.java:864)
         at oracle.jbo.server.RowImpl.isRefreshRequired(RowImpl.java:574)
         at oracle.jbo.server.ViewRowImpl.isRefreshRequired(ViewRowImpl.java:5481)
         at oracle.jbo.server.RowImpl.isRefreshRequired(RowImpl.java:559)
         at oracle.jbo.server.RowImpl.checkAndAutoClearLOVAttributes(RowImpl.java:351)
         at oracle.jbo.server.ViewObjectImpl.activateTransients(ViewObjectImpl.java:18358)
         at oracle.jbo.server.ViewObjectImpl.activateTransients(ViewObjectImpl.java:18289)
         at oracle.jbo.server.ViewObjectImpl.activateState(ViewObjectImpl.java:18512)
         at oracle.jbo.server.ViewObjectImpl.activateState(ViewObjectImpl.java:18407)
         at oracle.jbo.server.ViewRowSetIteratorImpl.activateIteratorState(ViewRowSetIteratorImpl.java:4025)
         at oracle.jbo.server.ViewRowSetImpl.activateIteratorState(ViewRowSetImpl.java:7235)
         at oracle.jbo.server.ViewObjectImpl.activateIteratorState(ViewObjectImpl.java:18742)
         at oracle.jbo.server.ApplicationModuleImpl.activateVOs(ApplicationModuleImpl.java:8172)
         at oracle.jbo.server.ApplicationModuleImpl.doActivateState(ApplicationModuleImpl.java:7918)
         at oracle.jbo.server.ApplicationModuleImpl.doActivateAMState(ApplicationModuleImpl.java:7884)
         at oracle.jbo.server.Serializer.activate(Serializer.java:296)
         at oracle.jbo.server.DBSerializer.activateRootAM(DBSerializer.java:330)
         at oracle.jbo.server.ApplicationModuleImpl.activateState(ApplicationModuleImpl.java:6207)
         at oracle.jbo.server.ApplicationPoolMessageHandler.doPoolMessage(ApplicationPoolMessageHandler.java:219)
         at oracle.jbo.server.ApplicationModuleImpl.doPoolMessage(ApplicationModuleImpl.java:8933)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.sendPoolMessage(ApplicationPoolImpl.java:4496)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.prepareApplicationModule(ApplicationPoolImpl.java:2458)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:2270)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:3168)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:460)
         at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:234)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:431)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:426)
         at oracle.adf.model.bc4j.DCJboDataControl.initializeApplicationModule(DCJboDataControl.java:516)
         at oracle.adf.model.bc4j.DCJboDataControl.getDataProvider(DCJboDataControl.java:869)
         at oracle.adf.model.binding.DCDataControl.internalGet(DCDataControl.java:1963)
         at oracle.adf.model.bc4j.DCJboDataControl.internalGet(DCJboDataControl.java:855)
         at oracle.adf.model.binding.DCDataControl.get(DCDataControl.java:1929)
         at javax.el.MapELResolver.getValue(MapELResolver.java:164)
         at com.sun.faces.el.DemuxCompositeELResolver._getValue(DemuxCompositeELResolver.java:173)
         at com.sun.faces.el.DemuxCompositeELResolver.getValue(DemuxCompositeELResolver.java:200)
         at com.sun.el.parser.AstValue.getValue(Unknown Source)
         at com.sun.el.ValueExpressionImpl.getValue(Unknown Source)
         at com.symmetry.dashboard.panels.util.BackingUtilsImpl.resolveValueExpression(BackingUtilsImpl.java:36)
         at com.symmetry.dashboard.panels.util.BackingUtilsImpl.getApplicationModuleForDataControl(BackingUtilsImpl.java:29)
         at com.symmetry.dashboard.panels.util.BackingUtils.getApplicationModuleForDataControl(BackingUtils.java:21)
         at com.symmetry.dashboard.panels.view.backing.purchase.EditInvoice.viewMatchedOrders(EditInvoice.java:1070)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.sun.el.parser.AstValue.invoke(Unknown Source)
         at com.sun.el.MethodExpressionImpl.invoke(Unknown Source)
         at javax.faces.component.UIViewRoot.notifyPhaseListeners(UIViewRoot.java:608)
         at javax.faces.component.UIViewRoot.notifyBefore(UIViewRoot.java:510)
         at javax.faces.component.UIViewRoot.encodeBegin(UIViewRoot.java:564)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:928)
         at com.sun.faces.application.ViewHandlerImpl.doRenderView(ViewHandlerImpl.java:266)
         at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:197)
         at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:189)
         at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:193)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:777)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:293)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:213)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:266)
         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:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:175)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
         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:136)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         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(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    Caused by: java.lang.NullPointerException: Cannot invoke method getAttribute() on null object
         at org.codehaus.groovy.runtime.NullObject.invokeMethod(NullObject.java:77)
         at org.codehaus.groovy.runtime.InvokerHelper.invokePogoMethod(InvokerHelper.java:750)
         at org.codehaus.groovy.runtime.InvokerHelper.invokeMethod(InvokerHelper.java:727)
         at org.codehaus.groovy.runtime.callsite.NullCallSite.call(NullCallSite.java:17)
         at org.codehaus.groovy.runtime.callsite.CallSiteArray.defaultCall(CallSiteArray.java:40)
         at org.codehaus.groovy.runtime.callsite.AbstractCallSite.call(AbstractCallSite.java:117)
         at org.codehaus.groovy.runtime.callsite.AbstractCallSite.call(AbstractCallSite.java:125)
         at bc4j.CreatedBy.gs.run(bc4j.CreatedBy.gs.groovy:1)
         at oracle.jbo.ExprEval.internalEvaluateGroovyScript(ExprEval.java:1032)
         ... 117 more
    Pls do give be possible solution to fix this

    I believe my problem is that the jbo.ampool.minavailablesize is higher than the normal load on the system. This is stopping app modules to be removed once the jbo.ampool.maxinactiveage time is reached, therefore the only time an AM is removed is when the jbo.ampool.timetolive limit is reached.
    e.g.
    * 35 users log into the application in the morning. The AM pool contains 35 AM's
    * GC on the pool happens. If an AM has reached the jbo.ampool.maxinactiveage then they will not be removed because it would mean that the pool (currently 35) drops below the jbo.ampool.minavailablesize (50)
    * GC happens again and the jbo.ampool.timetolive threshold is now reached on all AM's so they are all removed from the pool.

  • Jbo.ampool.maxavailablesize/jbo.recyclethreshold vs recent activity

    I have an ADF application with application pooling but not connection pooling. I have a situation where a recently active ADF application has its pool/session released.
    The number of active pools/sessions exceed the jbo.ampool.maxavailablesize/jbo.recyclethreshold. They have all been active for a shorter period of time than the idle instance timeout (jbo.ampool.maxinactiveage) (10 hours) and jbo.ampool.timetolive (10 hours) so there are no automatic choices for which pool/session to clean up. At this point, the pool/session that gets cleaned up does not appear to be the least recently used. Is there a setting that causes the least recently active pool/session to get cleaned up? If there was a choice between one active 1 hour ago and one active 1 minute ago, I would prefer it to clean up the 1 hour ago case.
    -- Chuck

    Any hints are appreciated
    Thanks
    Frank Brandstetter

  • Question about  ampool.timetolive property

    Hi, the question is what happens when ampool.timetolive property expires and the
    user continues to use the module in it’s session.
    I’m getting some suspicious null pointer exceptions caused by the framework and database connections lost and I’m wondering
    if these are related to the ampool.timetolive property or session timeout property in web.xml.
    Any comment will be helpful,
    Thanks

    Only inactive AM instances are removed from the pool according to the documentation. Try setting the jbo.ampool.monitorsleepinterval parameter to a high enough value so that the background clean-up process does not run for a long time. By default it runs every 10 minutes.
    Hope it helps,
    Nick

  • What does jbo.ampool.dynamicjdbccredentials do?

    Can someone provide a more detailed explanation of this AM configuration property than what is in the documentation?
    jbo.ampool.dynamicjdbccredentials
    The documentation simply says:
    Enables additional pooling lifecycle events to allow developer-written code to change the database credentials (username/password) each time a new user session begins to use the application module.
    This feature is enabled by default (true), however this setting is a necessary but not sufficient condition to implement the feature. The complete implementation requires additional developer-written code.
    I am not actually changing the database credentials, but I am using the AM method, prepareSession, to set an Oracle Context (CREATE CONTEXT command in DDL) and the context settings must remain the same or be reset before any database action by the same user.

    John,
    As far as I understand it, this parameter enables the custom credential and session cookie providers to be called. It should not have an impact upon your use of prepareSession(), as it's only needed if you need to switch the actual user that is being used to connect to the database.
    JOhn

  • How to correctly set jbo.ampool.maxavailablesize and minavailablesize ?

    Hi all,
    On performance tuning of our ADF BC application, during load test I notice from application server (10.1.3.3) console that :
    Request Processing Time (seconds) 11.45
    Requests per second 7.91
    From the docs, it is recommended to set both jbo.ampool.maxavailablesize and minavailablesize to be mutiplication of the above values, i.e : 90.
    We have about 12 application modules (AM) in the application, no nested one.
    The question is :
    1) Should I set maxavailablesize and minavailablesize of ALL the 12 application modules to be 90 ?
    Or Should I set the values selectively based on which AMs mostly accessed by the application invoked by the user ?
    2) After I change the maxavailablesize and minavailablesize to be 90, I notice that just after the OC4J start and no user access the application yet, the database already has 20-30 sessions opened, Is this normal ?
    Thank you for your help,
    xtanto

    Can you be more specific about what docs are recommending this? I don't see why you would want the max available size and min available size to be the same thing, but I'd like to review what documentation you are referring to for context.
    max pool size puts an upper limit on the number of AM's that can be created in that pool. If you hit this limit users wait until one of the existing instances is freed up.
    max available size gives a desired maximum that the pool should shrink down to after a period of higher-than-expected load.
    the min available size is the lowest number that the AM pool can shrink down to when the system is less loaded.
    I'd need to see all of your pool parameters, understand if you're using JDBC datasource or URL connection, and understand whether you use jbo.doconnectionpooling= true or false to explain any given set of behavior.

  • Errors when changing  jbo.ampool.doampooling

    Hi.
    I turned jbo.ampool.doampooling=false to test my app. All objects in the processScope disappears between http requests. I had the same error passivating in the database or in the filesystem. I have put jbo.debugoutput=console and seems to be passivating well.
    When the VO find for the bind parameters from the processScope it crashes.
    The error:
    oracle.jbo.SQLStmtException: JBO-27122: Error SQL durante la preparación de la sentencia. Sentencia:
    at oracle.jbo.server.BaseSQLBuilderImpl.processException(BaseSQLBuilderImpl.java:3383)     at oracle.jbo.server.OracleSQLBuilderImpl.processException(OracleSQLBuilderImpl.java:3972)     at oracle.jbo.server.QueryCollection.buildResultSet(QueryCollection.java:958)     at oracle.jbo.server.QueryCollection.executeQuery(QueryCollection.java:666)     at oracle.jbo.server.ViewObjectImpl.executeQueryForCollection(ViewObjectImpl.java:3655)     at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:742)     at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:687)     at oracle.jbo.server.ViewRowSetIteratorImpl.ensureRefreshed(ViewRowSetIteratorImpl.java:2657)     at oracle.jbo.server.ViewRowSetIteratorImpl.ensureRefreshed(ViewRowSetIteratorImpl.java:2634)     at oracle.jbo.server.ViewRowSetIteratorImpl.first(ViewRowSetIteratorImpl.java:1474)     at oracle.jbo.server.ViewRowSetImpl.first(ViewRowSetImpl.java:2827)     at oracle.jbo.server.ViewObjectImpl.first(ViewObjectImpl.java:5724)     at oracle.adf.model.binding.DCIteratorBinding.refreshControl(DCIteratorBinding.java:649)     at oracle.adf.model.binding.DCIteratorBinding.refresh(DCIteratorBinding.java:3499)     at oracle.adf.model.binding.DCExecutableBinding.refreshIfNeeded(DCExecutableBinding.java:255)     at oracle.adf.model.binding.DCIteratorBinding.getEstimatedRowCount(DCIteratorBinding.java:2983)     at oracle.jbo.uicli.binding.JUCtrlRangeBinding.getEstimatedRowCount(JUCtrlRangeBinding.java:115)     at oracle.adfinternal.view.faces.model.binding.FacesCtrlRangeBinding$FacesModel.getRowCount(FacesCtrlRangeBinding.java:395)     at oracle.adf.view.faces.component.UIXCollection.getRowCount(UIXCollection.java:271)     at oracle.adf.view.faces.model.ModelUtils.findLastIndex(ModelUtils.java:117)     at oracle.adf.view.faces.component.TableUtils.getLast(TableUtils.java:65)     at oracle.adf.view.faces.component.TableUtils.getLast(TableUtils.java:39)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.table.TableUtils.getVisibleRowCount(TableUtils.java:125)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.table.RowData.<init>(RowData.java:22)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.table.TableRenderingContext.<init>(TableRenderingContext.java:56)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.TableRenderer.createRenderingContext(TableRenderer.java:375)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.TableRenderer.encodeAll(TableRenderer.java:198)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.DesktopTableRenderer.encodeAll(DesktopTableRenderer.java:80)     at oracle.adfinternal.view.faces.renderkit.core.CoreRenderer.encodeEnd(CoreRenderer.java:169)     at oracle.adf.view.faces.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:624)     at oracle.adf.view.faces.component.UIXCollection.encodeEnd(UIXCollection.java:456)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode._renderComponent(UIComponentUINode.java:317)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode.render(UIComponentUINode.java:262)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode.render(UIComponentUINode.java:239)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderChild(BaseRenderer.java:412)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:330)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:222)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderContent(BaseRenderer.java:129)     at oracle.adfinternal.view.faces.ui.BaseRenderer.render(BaseRenderer.java:81)     at oracle.adfinternal.view.faces.ui.laf.base.xhtml.XhtmlLafRenderer.render(XhtmlLafRenderer.java:69)     at oracle.adfinternal.view.faces.uinode.UIXComponentUINode.renderInternal(UIXComponentUINode.java:177)     at oracle.adfinternal.view.faces.uinode.UINodeRendererBase.encodeEnd(UINodeRendererBase.java:53)     at oracle.adf.view.faces.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:624)     at oracle.adfinternal.view.faces.renderkit.core.CoreRenderer.encodeChild(CoreRenderer.java:246)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.PanelFormRenderer.encodeColumnChild(PanelFormRenderer.java:275)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.PanelFormRenderer.renderColumn(PanelFormRenderer.java:251)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.PanelFormRenderer._renderColumns(PanelFormRenderer.java:545)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.PanelFormRenderer._encodeChildren(PanelFormRenderer.java:153)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.PanelFormRenderer.encodeAll(PanelFormRenderer.java:69)     at oracle.adfinternal.view.faces.renderkit.core.CoreRenderer.encodeEnd(CoreRenderer.java:169)     at oracle.adf.view.faces.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:624)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode._renderComponent(UIComponentUINode.java:317)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode.render(UIComponentUINode.java:262)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode.render(UIComponentUINode.java:239)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderChild(BaseRenderer.java:412)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:330)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:222)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderContent(BaseRenderer.java:129)     at oracle.adfinternal.view.faces.ui.laf.base.desktop.ContentContainerRenderer.renderChildContent(ContentContainerRenderer.java:149)     at oracle.adfinternal.view.faces.ui.laf.simple.desktop.ContentContainerRenderer._renderContentsRow(ContentContainerRenderer.java:342)     at oracle.adfinternal.view.faces.ui.laf.simple.desktop.ContentContainerRenderer._renderContents(ContentContainerRenderer.java:304)     at oracle.adfinternal.view.faces.ui.laf.simple.desktop.ContentContainerRenderer.renderContent(ContentContainerRenderer.java:65)     at oracle.adfinternal.view.faces.ui.BaseRenderer.render(BaseRenderer.java:81)     at oracle.adfinternal.view.faces.ui.laf.base.xhtml.XhtmlLafRenderer.render(XhtmlLafRenderer.java:69)     at oracle.adfinternal.view.faces.uinode.UIXComponentUINode.renderInternal(UIXComponentUINode.java:177)     at oracle.adfinternal.view.faces.uinode.UINodeRendererBase.encodeEnd(UINodeRendererBase.java:53)     at oracle.adf.view.faces.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:624)     at oracle.adfinternal.view.faces.renderkit.RenderUtils.encodeRecursive(RenderUtils.java:54)     at oracle.adfinternal.view.faces.renderkit.RenderUtils.encodeRecursive(RenderUtils.java:50)     at oracle.adfinternal.view.faces.renderkit.core.CoreRenderer.encodeChild(CoreRenderer.java:242)     at oracle.adfinternal.view.faces.renderkit.core.CoreRenderer.encodeAllChildren(CoreRenderer.java:265)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.PanelPartialRootRenderer.renderContent(PanelPartialRootRenderer.java:65)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.BodyRenderer.renderContent(BodyRenderer.java:117)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.PanelPartialRootRenderer.encodeAll(PanelPartialRootRenderer.java:147)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.BodyRenderer.encodeAll(BodyRenderer.java:60)     at oracle.adfinternal.view.faces.renderkit.core.CoreRenderer.encodeEnd(CoreRenderer.java:169)     at oracle.adf.view.faces.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:624)     at javax.faces.webapp.UIComponentTag.encodeEnd(UIComponentTag.java:645)     at javax.faces.webapp.UIComponentTag.doEndTag(UIComponentTag.java:568)     at oracle.adf.view.faces.webapp.UIXComponentTag.doEndTag(UIXComponentTag.java:100)     at paginas.en._entec30pEntidad._jspService(_entec30pEntidad.java:3998)     [paginas/en/entec30pEntidad.jsp]     at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.3.0) ].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[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)     at es.sefcarm.adaptech.com.filtros.FiltroGefe.doFilter(FiltroGefe.java:171)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)     at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:162)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:287)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:51)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193)     at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:283)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)     at com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:346)     at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:152)     at oracle.adfinternal.view.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:157)     at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:107)     at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:245)     at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:137)     at javax.faces.webapp.FacesServlet.service(FacesServlet.java:214)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)     at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._invokeDoFilter(AdfFacesFilterImpl.java:228)     at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._doFilterImpl(AdfFacesFilterImpl.java:197)     at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(AdfFacesFilterImpl.java:123)     at oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.java:103)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)     at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:162)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:122)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:111)     at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)     at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)     at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)     at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)     at java.lang.Thread.run(Thread.java:595)## Detail 0 ##java.sql.SQLException: Falta el parámetro IN o OUT en el índice:: 1     at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:138)     at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:175)     at oracle.jdbc.driver.OraclePreparedStatement.processCompletedBindRow(OraclePreparedStatement.java:1566)     at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:2996)     at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3043)     at oracle_jdbc_driver_T4CPreparedStatement_Proxy.executeQuery()     at oracle.jbo.server.QueryCollection.buildResultSet(QueryCollection.java:857)     at oracle.jbo.server.QueryCollection.executeQuery(QueryCollection.java:666)     at oracle.jbo.server.ViewObjectImpl.executeQueryForCollection(ViewObjectImpl.java:3655)     at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:742)     at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:687)     at oracle.jbo.server.ViewRowSetIteratorImpl.ensureRefreshed(ViewRowSetIteratorImpl.java:2657)     at oracle.jbo.server.ViewRowSetIteratorImpl.ensureRefreshed(ViewRowSetIteratorImpl.java:2634)     at oracle.jbo.server.ViewRowSetIteratorImpl.first(ViewRowSetIteratorImpl.java:1474)     at oracle.jbo.server.ViewRowSetImpl.first(ViewRowSetImpl.java:2827)     at oracle.jbo.server.ViewObjectImpl.first(ViewObjectImpl.java:5724)     at oracle.adf.model.binding.DCIteratorBinding.refreshControl(DCIteratorBinding.java:649)     at oracle.adf.model.binding.DCIteratorBinding.refresh(DCIteratorBinding.java:3499)     at oracle.adf.model.binding.DCExecutableBinding.refreshIfNeeded(DCExecutableBinding.java:255)     at oracle.adf.model.binding.DCIteratorBinding.getEstimatedRowCount(DCIteratorBinding.java:2983)     at oracle.jbo.uicli.binding.JUCtrlRangeBinding.getEstimatedRowCount(JUCtrlRangeBinding.java:115)     at oracle.adfinternal.view.faces.model.binding.FacesCtrlRangeBinding$FacesModel.getRowCount(FacesCtrlRangeBinding.java:395)     at oracle.adf.view.faces.component.UIXCollection.getRowCount(UIXCollection.java:271)     at oracle.adf.view.faces.model.ModelUtils.findLastIndex(ModelUtils.java:117)     at oracle.adf.view.faces.component.TableUtils.getLast(TableUtils.java:65)     at oracle.adf.view.faces.component.TableUtils.getLast(TableUtils.java:39)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.table.TableUtils.getVisibleRowCount(TableUtils.java:125)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.table.RowData.<init>(RowData.java:22)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.table.TableRenderingContext.<init>(TableRenderingContext.java:56)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.TableRenderer.createRenderingContext(TableRenderer.java:375)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.TableRenderer.encodeAll(TableRenderer.java:198)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.DesktopTableRenderer.encodeAll(DesktopTableRenderer.java:80)     at oracle.adfinternal.view.faces.renderkit.core.CoreRenderer.encodeEnd(CoreRenderer.java:169)     at oracle.adf.view.faces.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:624)     at oracle.adf.view.faces.component.UIXCollection.encodeEnd(UIXCollection.java:456)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode._renderComponent(UIComponentUINode.java:317)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode.render(UIComponentUINode.java:262)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode.render(UIComponentUINode.java:239)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderChild(BaseRenderer.java:412)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:330)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:222)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderContent(BaseRenderer.java:129)     at oracle.adfinternal.view.faces.ui.BaseRenderer.render(BaseRenderer.java:81)     at oracle.adfinternal.view.faces.ui.laf.base.xhtml.XhtmlLafRenderer.render(XhtmlLafRenderer.java:69)     at oracle.adfinternal.view.faces.uinode.UIXComponentUINode.renderInternal(UIXComponentUINode.java:177)     at oracle.adfinternal.view.faces.uinode.UINodeRendererBase.encodeEnd(UINodeRendererBase.java:53)     at oracle.adf.view.faces.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:624)     at oracle.adfinternal.view.faces.renderkit.core.CoreRenderer.encodeChild(CoreRenderer.java:246)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.PanelFormRenderer.encodeColumnChild(PanelFormRenderer.java:275)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.PanelFormRenderer.renderColumn(PanelFormRenderer.java:251)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.PanelFormRenderer._renderColumns(PanelFormRenderer.java:545)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.PanelFormRenderer._encodeChildren(PanelFormRenderer.java:153)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.PanelFormRenderer.encodeAll(PanelFormRenderer.java:69)     at oracle.adfinternal.view.faces.renderkit.core.CoreRenderer.encodeEnd(CoreRenderer.java:169)     at oracle.adf.view.faces.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:624)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode._renderComponent(UIComponentUINode.java:317)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode.render(UIComponentUINode.java:262)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode.render(UIComponentUINode.java:239)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderChild(BaseRenderer.java:412)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:330)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:222)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderContent(BaseRenderer.java:129)     at oracle.adfinternal.view.faces.ui.laf.base.desktop.ContentContainerRenderer.renderChildContent(ContentContainerRenderer.java:149)     at oracle.adfinternal.view.faces.ui.laf.simple.desktop.ContentContainerRenderer._renderContentsRow(ContentContainerRenderer.java:342)     at oracle.adfinternal.view.faces.ui.laf.simple.desktop.ContentContainerRenderer._renderContents(ContentContainerRenderer.java:304)     at oracle.adfinternal.view.faces.ui.laf.simple.desktop.ContentContainerRenderer.renderContent(ContentContainerRenderer.java:65)     at oracle.adfinternal.view.faces.ui.BaseRenderer.render(BaseRenderer.java:81)     at oracle.adfinternal.view.faces.ui.laf.base.xhtml.XhtmlLafRenderer.render(XhtmlLafRenderer.java:69)     at oracle.adfinternal.view.faces.uinode.UIXComponentUINode.renderInternal(UIXComponentUINode.java:177)     at oracle.adfinternal.view.faces.uinode.UINodeRendererBase.encodeEnd(UINodeRendererBase.java:53)     at oracle.adf.view.faces.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:624)     at oracle.adfinternal.view.faces.renderkit.RenderUtils.encodeRecursive(RenderUtils.java:54)     at oracle.adfinternal.view.faces.renderkit.RenderUtils.encodeRecursive(RenderUtils.java:50)     at oracle.adfinternal.view.faces.renderkit.core.CoreRenderer.encodeChild(CoreRenderer.java:242)     at oracle.adfinternal.view.faces.renderkit.core.CoreRenderer.encodeAllChildren(CoreRenderer.java:265)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.PanelPartialRootRenderer.renderContent(PanelPartialRootRenderer.java:65)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.BodyRenderer.renderContent(BodyRenderer.java:117)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.PanelPartialRootRenderer.encodeAll(PanelPartialRootRenderer.java:147)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.BodyRenderer.encodeAll(BodyRenderer.java:60)     at oracle.adfinternal.view.faces.renderkit.core.CoreRenderer.encodeEnd(CoreRenderer.java:169)     at oracle.adf.view.faces.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:624)     at javax.faces.webapp.UIComponentTag.encodeEnd(UIComponentTag.java:645)     at javax.faces.webapp.UIComponentTag.doEndTag(UIComponentTag.java:568)     at oracle.adf.view.faces.webapp.UIXComponentTag.doEndTag(UIXComponentTag.java:100)     at paginas.en._entec30pEntidad._jspService(_entec30pEntidad.java:3998)     [paginas/en/entec30pEntidad.jsp]     at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.3.0) ].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[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)     at es.sefcarm.adaptech.com.filtros.FiltroGefe.doFilter(FiltroGefe.java:171)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)     at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:162)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:287)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:51)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193)     at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:283)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)     at com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:346)     at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:152)     at oracle.adfinternal.view.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:157)     at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:107)     at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:245)     at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:137)     at javax.faces.webapp.FacesServlet.service(FacesServlet.java:214)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)     at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._invokeDoFilter(AdfFacesFilterImpl.java:228)     at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._doFilterImpl(AdfFacesFilterImpl.java:197)     at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(AdfFacesFilterImpl.java:123)     at oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.java:103)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)     at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:162)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:122)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:111)     at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)     at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)     at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)     at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)     at java.lang.Thread.run(Thread.java:595)
    Any idea?
    Thanks.
    Message was edited by:
    jpedreno

    I'm surprised your issue is solved by this patch as the error isn't the same.
    See Note 413797.1 - Intermittent Error JBO-27122 and "Missing IN or OUT parameter at index: ..."

  • 10g vs 11g: VO bind variable values stale on jbo.ampool.doampooling = false

    Hi gang
    (JDev 11g Build 5188)
    I'm currently doing some testing as recommended by the Fusion 11g Guide to test the ADF BC state management with jbo.ampool.doampooling = false (see sections 36 and 37). I'm seeing different behaviour under 11g vs 10g.
    I have a single updateable VO with a query restricted by a single bind variable. I have a single JSF page with the bind variable as an inputText control, the executeWithParams operation as a commandButton, and a table showing the results from the VO.
    Under 10g I can:
    1) Open the page
    2) Enter a value (say X) for the bind variable, hit the executeWithParams button and correctly see results in the table matching bind variable value X.
    3) Enter a different value for the bind variable (say Y), hit the executeWithParams button and correctly see results in the table matching value of the bind variable value Y.
    Under 11g I get different behaviour for # 3. Instead when I press the executeWithParams button with the value set to Y, the table still show results for the previous bind variable value X?
    It must be noted that if I set jbo.ampool.doampooling = true, the problem disappears, but presumably the error will reappear in a production system under load, so I need to track down what's happening here.
    Possibly I'm seeing a bug, but given the large amount of 11g changes and large amount of documentation I need to read on state management, it could just be I've missed something vital for 11g.
    Does anybody have any opinions what's happening here?
    Thanks for your help in advance.
    CM.

    Hi Chris,
    Yes, waking up in my lair after the long winter ;-)
    No problem for the version numbers.
    The reason I was asking was that the referenced issue was reported for JDeveloper 10.1.3.4.0
    So I'm not convinced this is the same issue.
    Bug 7517882 is fixed in 11.1.1.1.0, but a patch is available for 11.1.1.0.1
    I checked I could download it myself:
    1) in (classic) MetaLink, click tab "Patches & Updates"
    2) click "Simple Search"
    3) select "Search By" "Patch Number"
    4) enter the patch number: 7517882
    5) select the Platform "Microsoft Windows (32 bits)"
    6) click "Go"
    7) Download the patch for version 11.1.1.1.0
    8) click "View Readme" and follow instructions to install the patch.
    If you have any problem, open a SR requesting a support engineer to upload the patch on our FTP server.
    I would recommend you test the patch to ensure this is the same issue and the problem is fixed in your case after applying the patch.
    If not, you can easily de-install it anyway.
    For completeness, the following bugs were closed as duplicated of Bug 7517882
    Bug 7553275 - VOIMPL.GETBINDVARIABLE() RETURNS NULL AFTER APPLICATION MODULE ACTIVATION.
    (logged against 10.1.3.4.0)
    Bug 7556903 - JDEVELOPER 11G EXECUTEWITHPARAMS DOES NOT WORK CORRECTLY WITH AMPOOLING OFF
    (logged against 11.1.1.0.0)
    Regards,
    Didier.

  • Problems understanding jbo.ampool... Parameters

    Hi
    I'm using the DumpPoolStatistics.jsp as descrived in http://radio.weblogs.com/0118231/stories/2004/05/10/gettingApplicationModulePoolStatisticsToAidWithSizeTuning.html.
    But I do not completely understand the meanings of the terms used. Please help me to understand the following terms:
    "available ApplicationModule":
    I guess this is an ApplicationModule, which has been checked into the pool "stateless", "stateful" or "reserved".
    (Or is this an ApplicationModule checked in "stateless" only?)
    "unavailable ApplicationModule":
    I guess this is an ApplicationModule, which has currently not been checked into the Pool by "releasePageResources".
    (Or is this an ApplicationModule which is referenced, because it is "stateful" or "reserved"?)
    "referenced ApplicationModule":
    I guess this is an ApplicationModule which has been checked into the pool "stateful" or "reserved".
    (Or is this an ApplicationModule which is is currently checked out?)
    a "reused ApplicationModule":
    Is this an ApplicationModule, which has been assigned to the same session as before, so no activation or passivation has taken place?
    a "recyled ApplicationModule":
    is this an ApplicationModule, which has been assigned to another session, so some activation and passivation have taken place (in case of "stateful" AM)?
    "Total Number of ApplicationModules":
    The sum of all "available" and "unavailable" ApplicationModules in the Pool?
    Furthermore I haven't understand the meaning of the following jbo... Parameters:
    - jbo.recyclethreshold
    - jbo.ampool.minavailablesize
    - jbo.ampool.maxavailablesize
    I've set jbo.recyclethreshold and jbo.ampool.minavailablesize to the same Value of 40 and jbo.ampool.maxavailablesize is 100. When watching my application I realize that continuously ApplicationModules are created and removed. However: DumpPoolStatistics.jsp reports a "Maximum number of application modules in the pool" of 9. I can't understand what's happening here.
    I've already read http://www.oracle.com/technology/products/jdev/tips/muench/ampooling/index.html, but sorry, it didn't help me to understand this.
    If anyone can help me to understand the concepts of am- pooling and the meaning of the mentioned terms and parameters I'd be wery happy.
    Thanks in advance
    Frank Brandstetter

    Any hints are appreciated
    Thanks
    Frank Brandstetter

  • Stateless with Session Affinity and set jbo.ampool.maxpoolsize = 1

    Hi,
    I would like to know more about "Stateless with Session Affinity".
    If I set
    jbo.ampool.maxpoolsize = 1
    jbo.ampool.minavailablesize = 1
    jbo.ampool.maxavailablesize = 1
    in application module configuration
    and have two browser clients at different computers.
    If I update some values and post changed data to database without commit
    at one browser
    some updates using jdbc prepared statements through database connection
    with following code snippet in application module
    Implementation:
    private Connection getCurrentConnection() throws SQLException {
    PreparedStatement st = getDBTransaction().createPreparedStatement("commit",1);
    Connection conn = st.getConnection();
    st.close();
    return conn;
    , will the other web client see these post changed data with the only one
    application module through the only one database connection (ignores PS_TXN connection)?
    If the answer is "no", can someone explain why bc4j can do this?

    Hi,
    It's not clear to me from your post what you are trying to test. Generally speaking, every HttpSession (~browser) is assocated with a pooled AM that is associated with a single transaction context that is associated with a single "application" JDBC connection.
    HttpSession->AM->Txn->Connection
    The session affinity features of the BC4J framework maintain this logical dependency for you without necessarily having to tie up the physical resources at each layer.
    Now, if one session posts but does not commit then the other sessions will not "see" those changes (different AMx, Txns, Connections). Once a session does commit then those changes will be visible to other sessions. However, if those other sessions have already queried/cached the modified data then those sessions will not "see" it until their caches are refreshed. Please see the documentation for a description of BC4J caching and refreshing caches. The standard technique to refresh a VO cache is to invoke executeQuery.
    Hope this helps,
    JR

  • AM instance removal from pool

    Hi experts.
    I need some help with clarifying some application module pool concepts.
    What happens with application module instances and their database connections once they are removed from the AM pool, either because of Idle Instance Timeout or Maximum Instance Time to Live Timeout?
    1. Aren't reserved DB connections returned back to the JDBC connection pool immediately? As Andrejus stated in his post ( [Optimizing Oracle ADF Application Pool|http://andrejusb.blogspot.com.es/2010/02/optimizing-oracle-adf-application-pool.html] ), even after an application module instance is removed from the pool, it's still alive and keeps DB connection reserved - in order to clean it, maximum time to live is set.
    2. Why would be want to preserve DB connection after AM instance removal?
    3. Do removed AM instances ever go back into the pool? Or else, wait to be garbage collected?
    4. If Idle Instance Timeout (jbo.ampool.maxinactiveage) is set to be less than Maximum Instance Time to Live (jbo.ampool.timetolive). Which role plays the latter in AM instance removal / DB connection release?
    Thanks,
    Barbara

    Hello, Frank. Thanks for your reply. More comments below:
    (In our case, we are using data source connections)
    +1. Aren't reserved DB connections returned back to the JDBC connection pool immediately? As Andrejus stated in his post ( [Optimizing Oracle ADF Application Pool|http://andrejusb.blogspot.com.es/2010/02/optimizing-oracle-adf-application-pool.html] ), even after an application module instance is removed from the pool, it's still alive and keeps DB connection reserved - in order to clean it, maximum time to live is set.+
    +[Frank] Its configurable. If a user returns in time so the AM he used before could be handed back to him/her then the performance is better if no new database connection needed to be created. However, with the use of JDBC DataSources instead of JDBC URL in ADF BC the connection would be held and pooled by the Java EE container and not ADF Bc. So it is released.+
    I know we can configure AM to disconnect DB connections upon release (Disconnect Application Module Upon Release option under Pooling and Scalability tab). This applies to AM instances being returned back to the pool. However, my question refers to AM instances being removed from the pool. Do they preserve DB connection even after removal?
    +2. Why would be want to preserve DB connection after AM instance removal?+
    +[Frank] To the time where ADF BC was configured with JDBC URL it was a performance gain+
    What about JDBC data source connections?
    +4. If Idle Instance Timeout (jbo.ampool.maxinactiveage) is set to be less than Maximum Instance Time to Live (jbo.ampool.timetolive). Which role plays the latter in AM instance removal / DB connection release?+
    +[Frank] I guess the answer is that the first "jbo.ampool.maxinactiveage" would not see light. However, maxinactiveage leads to passivation and so this should not be sacrified+
    Steve Muench on OTN Forums: Disabling jbo.ampool.timetolive
    +"If you have minavailablesize set to 0 and you set the timetolive to a value in milliseconds that is larger than the max idle time, then you will effectively have disabled the time to live consideration since you'll always have removed the AM from the pool for being idle before you'd ever have to consider removing it for having exceeded its time-to-live setting."+
    So, it's my understanding that when maxinactiveage < timetolive, then maxinactiveage determines AM instance removal while timetolive is a don't care value. Does it care for anything else?
    I also read the following Note in section 40.2.2.2 How passivation Changes When Optional Failover Mode is Enabled of the Fusion Developer's Guide for Oracle ADF: "Passivation can also occur when an application module is timed out [...] (jbo.ampool.timetolive), ...". Therefore, it is timetolive and not maxinactiveage that leads to passivation. Am I right?
    Thanks again,
    Barbara

  • JBO-30011 on running JClient Applet for ADF (10g)

    After starting an (JClient) Applet created using "Swing/JClient for ADF" for an existing BC4J project following exception is thrown on startup:
    oracle.jbo.common.ampool.ApplicationPoolException: JBO-30011: A null session cookie application id, session id, or application pool reference (null, null, bcpackage.AppModuleLocal) was specified during cookie construction. The cookie could not be constructed.
    at oracle.jbo.common.ampool.SessionCookieImpl.<init>(SessionCookieImpl.java:112)
    at oracle.jbo.common.ampool.SessionCookieImpl.<init>(SessionCookieImpl.java:149)
    at oracle.jbo.common.ampool.DefaultSessionCookieFactory.createSessionCookie(DefaultSessionCookieFactory.java:32)
    at oracle.jbo.common.ampool.ApplicationPoolImpl.createSessionCookie(ApplicationPoolImpl.java:415)
    at oracle.adf.model.bc4j.DataControlFactoryImpl.findOrCreateSessionCookie(DataControlFactoryImpl.java:154)
    at oracle.adf.model.bc4j.DataControlFactoryImpl.createSession(DataControlFactoryImpl.java:220)
    at oracle.jbo.uicli.mom.JUMetaObjectManager.createDataControl(JUMetaObjectManager.java:678)
    at oracle.jbo.uicli.mom.JUMetaObjectManager.createApplicationObject(JUMetaObjectManager.java:629)
    at oracle.jbo.uicli.mom.JUMetaObjectManager.createApplicationObject(JUMetaObjectManager.java:399)
    at form.AppletUserlog.startApp(AppletUserlog.java:253)
    at form.AppletUserlog.start(AppletUserlog.java:229)
    at sun.applet.AppletPanel.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    Generated forms or panels are working well. Does anybody have the same problem ?

    I believe my problem is that the jbo.ampool.minavailablesize is higher than the normal load on the system. This is stopping app modules to be removed once the jbo.ampool.maxinactiveage time is reached, therefore the only time an AM is removed is when the jbo.ampool.timetolive limit is reached.
    e.g.
    * 35 users log into the application in the morning. The AM pool contains 35 AM's
    * GC on the pool happens. If an AM has reached the jbo.ampool.maxinactiveage then they will not be removed because it would mean that the pool (currently 35) drops below the jbo.ampool.minavailablesize (50)
    * GC happens again and the jbo.ampool.timetolive threshold is now reached on all AM's so they are all removed from the pool.

  • [SOLVED]Connecting DB problem

    Hi
    i have an error connecting with DX XE from TP3 View objects
    07/12/24 11:49:06 [364] java.sql.SQLException: ORA-01882: timezone region not found
    how to correct this ?
    Thanks
    here is a full lof
    07/12/24 11:49:01 Diagnostics: (BC4J Bootstrap) Routing diagnostics to standard output (use -Djbo.debugoutput=silent to remove)
    07/12/24 11:49:01 [00] Diagnostic Properties: Timing:false Functions:false Linecount:true Threshold:9
    07/12/24 11:49:01 [01] JavaVMVersion: 1.5.0_11-b03
    07/12/24 11:49:01 [02] JavaVMVendor: Sun Microsystems Inc.
    07/12/24 11:49:01 [03] JavaVMName: Java HotSpot(TM) Client VM
    07/12/24 11:49:01 [04] OperatingSystemName: Windows XP
    07/12/24 11:49:01 [05] OperatingSystemVersion: 5.1
    07/12/24 11:49:01 [06] OperatingSystemUsername: soso
    07/12/24 11:49:01 [07] jbo.323.compatible Flag: false, str: null
    07/12/24 11:49:01 [08] jbo.903.compatible Flag: false, str: null
    07/12/24 11:49:01 [09] oracle.adfm.usemds Flag: true, str: null
    07/12/24 11:49:01 [10] MDS parser created
    07/12/24 11:49:01 [11] Accumulated view/DataBindings.cpx from file:/C:/JDeveloper/mywork/WebApp1.0/View/classes/view/DataBindings.cpx
    07/12/24 11:49:01 [12] Created cpxList, size: 1 for current-workspace-app.web.WebApp1.0-View-webapp:0.0.0
    07/12/24 11:49:01 [13] loadCpx used services: view.DataBindings.cpx
    07/12/24 11:49:03 [14] Loading the Containees for the Package 'DataBindings.DataBindings'.
    07/12/24 11:49:03 [15] Loading Child Containers for the container 'DataBindings.DataBindings'.
    07/12/24 11:49:03 [16] BindingContext.put( TasksModuleDataControl_view_DataBindings_cpx, oracle.adf.model.binding.DCDataControlReference )
    07/12/24 11:49:03 [17] BindingContext.put( indexPageDef, oracle.adf.model.binding.DCBindingContainerReference )
    07/12/24 11:49:03 [18] MDS parser created
    07/12/24 11:49:03 [19] BC4J: Instrumentation is enabled.....
    07/12/24 11:49:03 [20] {{ type: 'METAOBJECT_LOAD' Loading meta-object: view.pageDefs.indexPageDef
    07/12/24 11:49:03 [21] {{ type: 'METAOBJECT_LOAD' Loading meta-object: view.pageDefs.pageDefs
    07/12/24 11:49:03 [22] No XML file /view/pageDefs/pageDefs.xml for metaobject view.pageDefs.pageDefs
    07/12/24 11:49:03 [23] MDS error (MetadataNotFoundException): MDS-00013: No metadata found for metadata object "/view/pageDefs/pageDefs.xml"
    07/12/24 11:49:03 [24] }}+++ End Event2 null
    07/12/24 11:49:03 [25] Cannot Load parent Package : view.pageDefs.pageDefs
    07/12/24 11:49:03 [26] Business Object Browsing may be unavailable
    07/12/24 11:49:03 [27] }}+++ End Event1 null
    07/12/24 11:49:03 [28] BindingContext.put( indexPageDef, oracle.jbo.uicli.binding.JUFormBinding )
    07/12/24 11:49:03 [29] BindingContext.put( indexPageDef, oracle.jbo.uicli.binding.JUFormBinding )
    07/12/24 11:49:03 [30] **** refreshControl() for BindingContainer :indexPageDef
    07/12/24 11:49:03 [31] **** refreshControl() for BindingContainer :indexPageDef
    07/12/24 11:49:04 [32] DCUtil, returning:oracle.adf.model.binding.DCParameter, for TasksModuleDataControl
    07/12/24 11:49:04 [33] getDCKey for data.indexPageDef yielded view.DataBindings.cpx
    07/12/24 11:49:04 [34] Reusing DC transform for TasksModuleDataControl_indexPageDef
    07/12/24 11:49:04 [35] BindingContext.put( TasksModuleDataControl_view_DataBindings_cpx, oracle.jbo.uicli.binding.JUApplication )
    07/12/24 11:49:05 [36] BC4J Property jbo.maxpoolcookieage='-1' -->(Configuration) from System Default
    07/12/24 11:49:05 [37] * jbo.ejb.useampool='false'
    07/12/24 11:49:06 [38] SessionCookieImpl SSOUSER anonymous
    07/12/24 11:49:06 [39] SessionCookieImpl SSOSUBSCRIBER null
    07/12/24 11:49:06 [40] SessionCookieImpl User Principal oracle.oc4j.security.BasicUserProxy
    07/12/24 11:49:06 [41] Reusing DC transform for TasksModuleDataControl_indexPageDef
    07/12/24 11:49:06 [42] BindingContext.put( TasksModuleDataControl_view_DataBindings_cpx, oracle.jbo.uicli.binding.JUApplication )
    07/12/24 11:49:06 [43] (oracle.adf.model.bc4j.DataControlFactoryImpl.SyncMode = Immediate
    07/12/24 11:49:06 [44] Creating a new pool resource
    07/12/24 11:49:06 [45] BC4JDeployPlatform: LOCAL
    07/12/24 11:49:06 [46] Propertymanager: searching for file and system based properties
    07/12/24 11:49:06 [47] {{ begin Loading BC4J properties
    07/12/24 11:49:06 [48] -----------------------------------------------------------
    07/12/24 11:49:06 [49] BC4J Property jbo.default.language='en' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [50] BC4J Property jbo.default.country='US' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [51] Skipping empty Property jbo.default.locale.variant from System Default
    07/12/24 11:49:06 [52] BC4J Property DeployPlatform='LOCAL' -->(SessionImpl) from Client Environment
    07/12/24 11:49:06 [53] Skipping empty Property ConnectionMode from System Default
    07/12/24 11:49:06 [54] Skipping empty Property HostName from System Default
    07/12/24 11:49:06 [55] Skipping empty Property ConnectionPort from System Default
    07/12/24 11:49:06 [56] BC4J Property jbo.locking.mode='pessimistic' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [57] BC4J Property jbo.txn.disconnect_level='0' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [58] Skipping empty Property ApplicationPath from System Default
    07/12/24 11:49:06 [59] BC4J Property AppModuleJndiName='model.tasks.TasksModule' -->(SessionImpl) from Client Environment
    07/12/24 11:49:06 [60] Skipping empty Property java.naming.security.principal from System Default
    07/12/24 11:49:06 [61] Skipping empty Property java.naming.security.credentials from System Default
    07/12/24 11:49:06 [62] BC4J Property jbo.user.principal='anonymous' -->(SessionImpl) from Client Environment
    07/12/24 11:49:06 [63] BC4J Property jbo.simulate.remote='false' -->(SessionImpl) from System Default
    07/12/24 11:49:06 [64] BC4J Property jbo.security.context='oracle.security.jazn' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [65] Skipping empty Property jbo.object.marshaller from System Default
    07/12/24 11:49:06 [66] BC4J Property jbo.use.pers.coll='false' -->(SessionImpl) from System Default
    07/12/24 11:49:06 [67] BC4J Property jbo.pers.max.rows.per.node='70' -->(SessionImpl) from System Default
    07/12/24 11:49:06 [68] BC4J Property jbo.pers.max.active.nodes='30' -->(SessionImpl) from System Default
    07/12/24 11:49:06 [69] BC4J Property jbo.validation.threshold='10' -->(SessionImpl) from System Default
    07/12/24 11:49:06 [70] Skipping empty Property jbo.pcoll.mgr from System Default
    07/12/24 11:49:06 [71] BC4J Property jbo.txn_table_name='PS_TXN' -->(SessionImpl) from System Default
    07/12/24 11:49:06 [72] BC4J Property jbo.txn_seq_name='PS_TXN_seq' -->(SessionImpl) from System Default
    07/12/24 11:49:06 [73] BC4J Property jbo.txn_seq_inc='50' -->(SessionImpl) from System Default
    07/12/24 11:49:06 [74] BC4J Property jbo.control_table_name='PCOLL_CONTROL' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [75] BC4J Property jbo.stringmanager.factory.class='use_default' -->(SessionImpl) from System Default
    07/12/24 11:49:06 [76] BC4J Property jbo.domain.date.suppress_zero_time='true' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [77] BC4J Property jbo.domain.bind_sql_date='true' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [78] BC4J Property jbo.domain.string.as.bytes.for.raw='false' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [79] BC4J Property jbo.fetch.mode='AS.NEEDED' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [80] BC4J Property jbo.323.compatible='false' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [81] BC4J Property jbo.903.compatible='false' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [82] Skipping empty Property JBODynamicObjectsPackage from System Default
    07/12/24 11:49:06 [83] BC4J Property MetaObjectContextFactory='oracle.jbo.mom.xml.DefaultMomContextFactory' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [84] BC4J Property jbo.load.components.lazily='false' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [85] BC4J Property MetaObjectContext='oracle.jbo.mom.xml.XMLContextImpl' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [86] BC4J Property java.naming.factory.initial='oracle.jbo.common.JboInitialContextFactory' -->(SessionImpl) from Client Environment
    07/12/24 11:49:06 [87] BC4J Property IsLazyLoadingTrue='true' -->(MetaObjectManager) from /oracle/jbo/server/jboserver.properties resource
    07/12/24 11:49:06 [88] BC4J Property oracle.jbo.usemds='true' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [89] BC4J Property oracle.adfm.usemds='true' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [90] BC4J Property ActivateSharedDataHandle='false' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [91] Skipping empty Property HandleName from System Default
    07/12/24 11:49:06 [92] Skipping empty Property Factory-Substitution-List from System Default
    07/12/24 11:49:06 [93] BC4J Property jbo.project='model.Model' -->(Configuration) from Client Environment
    07/12/24 11:49:06 [94] BC4J Property jbo.max.cursors='50' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [95] BC4J Property jbo.dofailover='false' -->(Configuration) from System Default
    07/12/24 11:49:06 [96] Skipping empty Property jbo.envinfoprovider from System Default
    07/12/24 11:49:06 [97] BC4J Property jbo.rowid_am_conn_name='ROWIDAM_DB' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [98] BC4J Property jbo.ampool.writecookietoclient='false' -->(Configuration) from System Default
    07/12/24 11:49:06 [99] BC4J Property jbo.doconnectionpooling='false' -->(Configuration) from System Default
    07/12/24 11:49:06 [100] BC4J Property jbo.recyclethreshold='10' -->(Configuration) from System Default
    07/12/24 11:49:06 [101] BC4J Property jbo.ampool.dynamicjdbccredentials='true' -->(Configuration) from System Default
    07/12/24 11:49:06 [102] BC4J Property jbo.ampool.resetnontransactionalstate='true' -->(SessionImpl) from System Default
    07/12/24 11:49:06 [103] BC4J Property jbo.ampool.sessioncookiefactoryclass='oracle.jbo.common.ampool.DefaultSessionCookieFactory' -->(Configuration) from System Default
    07/12/24 11:49:06 [104] BC4J Property jbo.ampool.connectionstrategyclass='oracle.jbo.common.ampool.DefaultConnectionStrategy' -->(Configuration) from System Default
    07/12/24 11:49:06 [105] BC4J Property jbo.ampool.maxpoolsize='2147483647' -->(Configuration) from System Default
    07/12/24 11:49:06 [106] BC4J Property jbo.ampool.initpoolsize='0' -->(Configuration) from System Default
    07/12/24 11:49:06 [107] BC4J Property jbo.ampool.monitorsleepinterval='600000' -->(Configuration) from System Default
    07/12/24 11:49:06 [108] BC4J Property jbo.ampool.minavailablesize='5' -->(Configuration) from System Default
    07/12/24 11:49:06 [109] BC4J Property jbo.ampool.maxavailablesize='25' -->(Configuration) from System Default
    07/12/24 11:49:06 [110] BC4J Property jbo.ampool.maxinactiveage='600000' -->(Configuration) from System Default
    07/12/24 11:49:06 [111] BC4J Property jbo.ampool.timetolive='-1' -->(Configuration) from System Default
    07/12/24 11:49:06 [112] BC4J Property jbo.ampool.doampooling='true' -->(Configuration) from System Default
    07/12/24 11:49:06 [113] BC4J Property jbo.ampool.issupportspassivation='true' -->(Configuration) from System Default
    07/12/24 11:49:06 [114] BC4J Property jbo.ampool.isuseexclusive='true' -->(Configuration) from System Default
    07/12/24 11:49:06 [115] BC4J Property jbo.passivationstore='null' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [116] BC4J Property jbo.saveforlater='false' -->(SessionImpl) from System Default
    07/12/24 11:49:06 [117] BC4J Property jbo.snapshotstore.undo='persistent' -->(SessionImpl) from System Default
    07/12/24 11:49:06 [118] BC4J Property jbo.maxpassivationstacksize='10' -->(SessionImpl) from System Default
    07/12/24 11:49:06 [119] BC4J Property jbo.txn.handleafterpostexc='false' -->(SessionImpl) from System Default
    07/12/24 11:49:06 [120] BC4J Property jbo.connectfailover='true' -->(SessionImpl) from System Default
    07/12/24 11:49:06 [121] BC4J Property jbo.maxpoolcookieage='-1' -->(Configuration) from System Default
    07/12/24 11:49:06 [122] BC4J Property PoolClassName='oracle.jbo.common.ampool.ApplicationPoolImpl' -->(Configuration) from System Default
    07/12/24 11:49:06 [123] BC4J Property jbo.maxpoolsize='2147483647' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [124] BC4J Property jbo.initpoolsize='0' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [125] BC4J Property jbo.poolrequesttimeout='30000' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [126] BC4J Property jbo.poolmonitorsleepinterval='600000' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [127] BC4J Property jbo.poolminavailablesize='5' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [128] BC4J Property jbo.poolmaxavailablesize='25' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [129] BC4J Property jbo.poolmaxinactiveage='600000' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [130] BC4J Property jbo.pooltimetolive='-1' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [131] BC4J Property RELEASE_MODE='Stateful' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [132] BC4J Property jbo.assoc.consistent='true' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [133] BC4J Property jbo.viewlink.consistent='DEFAULT' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [134] BC4J Property jbo.passivation.TrackInsert='true' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [135] Skipping empty Property jbo.ViewCriteriaAdapter from System Default
    07/12/24 11:49:06 [136] BC4J Property jbo.SQLBuilder='Oracle' -->(MetaObjectManager) from /oracle/jbo/server/jboserver.properties resource
    07/12/24 11:49:06 [137] BC4J Property jbo.ConnectionPoolManager='oracle.jbo.server.ConnectionPoolManagerImpl' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [138] BC4J Property jbo.TypeMapEntries='Oracle' -->(MetaObjectManager) from /oracle/jbo/server/jboserver.properties resource
    07/12/24 11:49:06 [139] Skipping empty Property jbo.sql92.JdbcDriverClass from System Default
    07/12/24 11:49:06 [140] BC4J Property jbo.sql92.LockTrailer='FOR UPDATE' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [141] BC4J Property jbo.jdbc.trace='true' -->(MetaObjectManager) from System Property
    07/12/24 11:49:06 [142] BC4J Property jbo.abstract.base.check='true' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [143] BC4J Property jbo.assoc.where.early.set='false' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [144] BC4J Property jbo.sql92.DbTimeQuery='select sysdate from dual' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [145] BC4J Property oracle.jbo.defineColumnLength='skipDefines' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [146] BC4J Property jbo.jdbc_bytes_conversion='jdbc' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [147] Skipping empty Property jbo.tmpdir from System Default
    07/12/24 11:49:06 [148] Skipping empty Property jbo.server.internal_connection from System Default
    07/12/24 11:49:06 [149] BC4J Property SessionClass='oracle.jbo.server.SessionImpl' -->(SessionImpl) from System Default
    07/12/24 11:49:06 [150] Skipping empty Property TransactionFactory from System Default
    07/12/24 11:49:06 [151] Skipping empty Property jbo.def.mgr.listener from System Default
    07/12/24 11:49:06 [152] Skipping empty Property jbo.use.global.sub.map from System Default
    07/12/24 11:49:06 [153] BC4J Property jbo.debugoutput='console' -->(Diagnostic) from System Property
    07/12/24 11:49:06 [154] BC4J Property jbo.debug.prefix='DBG: ' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    07/12/24 11:49:06 [155] BC4J Property jbo.logging.show.timing='false' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    07/12/24 11:49:06 [156] BC4J Property jbo.logging.show.function='false' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    07/12/24 11:49:06 [157] BC4J Property jbo.logging.show.level='false' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    07/12/24 11:49:06 [158] BC4J Property jbo.logging.show.linecount='true' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    07/12/24 11:49:06 [159] BC4J Property jbo.logging.trace.threshold='9' -->(Diagnostic) from System Property
    07/12/24 11:49:06 [160] BC4J Property jbo.jdbc.driver.verbose='false' -->(Diagnostic) from System Default
    07/12/24 11:49:06 [161] BC4J Property oracle.home='C:\JDeveloper' -->(Diagnostic) from System Property
    07/12/24 11:49:06 [162] Skipping empty Property oc4j.name from System Default
    07/12/24 11:49:06 [163] BC4J Property jbo.ejb.txntimeout='1830' -->(SessionImpl) from System Default
    07/12/24 11:49:06 [164] BC4J Property jbo.ejb.txntype='global' -->(SessionImpl) from System Default
    07/12/24 11:49:06 [165] BC4J Property jbo.ejb.txn.disconnect_on_completion='false' -->(SessionImpl) from System Default
    07/12/24 11:49:06 [166] BC4J Property jbo.ejb.useampool='false' -->(SessionImpl) from Client Environment
    07/12/24 11:49:06 [167] Skipping empty Property oracle.jbo.schema from System Default
    07/12/24 11:49:06 [168] BC4J Property jbo.xml.validation='false' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [169] BC4J Property ord.RetrievePath='ordDeliverMedia' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [170] BC4J Property ord.HttpMaxMemory='102400' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [171] Skipping empty Property ord.HttpTempDir from System Default
    07/12/24 11:49:06 [172] BC4J Property ord.wmp.classid='clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [173] BC4J Property ord.qp.classid='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [174] BC4J Property ord.rp.classid='clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [175] BC4J Property ord.wmp.codebase='http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [176] BC4J Property ord.qp.codebase='http://www.apple.com/qtactivex/qtplugin.cab' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [177] Skipping empty Property ord.rp.codebase from System Default
    07/12/24 11:49:06 [178] BC4J Property ord.wmp.plugins.page='http://www.microsoft.com/isapi/redir.dll?prd=windows&sbp=mediaplayer&ar=Media&sba=Plugin&' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [179] BC4J Property ord.qp.plugins.page='http://www.apple.com/quicktime/download/' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [180] BC4J Property ord.rp.plugins.page='http://www.real.com/player/' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [181] BC4J Property jbo.security.enforce='None' -->(SessionImpl) from System Default
    07/12/24 11:49:06 [182] BC4J Property jbo.security.loginmodule='oracle.security.jazn.oc4j.JAZNUserManager' -->(SessionImpl) from System Default
    07/12/24 11:49:06 [183] Skipping empty Property jbo.security.config from System Default
    07/12/24 11:49:06 [184] BC4J Property jbo.server.useNullDbTransaction='false' -->(SessionImpl) from System Default
    07/12/24 11:49:06 [185] BC4J Property jbo.domain.reopenblobstream='false' -->(MetaObjectManager) from System Default
    07/12/24 11:49:06 [186] Copying unknown Client property (user='soso') to session
    07/12/24 11:49:06 [187] Copying unknown Client property (java.naming.factory.url.pkgs='oracle.oc4j.naming.url') to session
    07/12/24 11:49:06 [188] Copying unknown Client property (jbo.applicationmoduleclassname='model.tasks.TasksModule') to session
    07/12/24 11:49:06 [189] Copying unknown Client property (jbo.security.authorized='true') to session
    07/12/24 11:49:06 [190] Copying unknown Client property (JDBCName='XE') to session
    07/12/24 11:49:06 [191] Copying unknown Client property (name='TasksModuleLocal') to session
    07/12/24 11:49:06 [192] Copying unknown Client property (ApplicationName='model.tasks.TasksModule') to session
    07/12/24 11:49:06 [193] Copying unknown Client property (password='*****') to session
    07/12/24 11:49:06 [194] Copying unknown Client property (jbo.jndi.use_default_context='true') to session
    07/12/24 11:49:06 [195] Copying unknown Client property (DBconnection='jdbc:oracle:thin:@localhost:1521:XE') to session
    07/12/24 11:49:06 [196] WARNING: Unused property: sun.io.unicode.encoding='UnicodeLittle' found in System Property
    07/12/24 11:49:06 [197] WARNING: Unused property: java.version='1.5.0_11' found in System Property
    07/12/24 11:49:06 [198] WARNING: Unused property: java.awt.graphicsenv='sun.awt.Win32GraphicsEnvironment' found in System Property
    07/12/24 11:49:06 [199] WARNING: Unused property: jacorb.security.support_ssl='on' found in System Property
    07/12/24 11:49:06 [200] WARNING: Unused property: java.specification.vendor='Sun Microsystems Inc.' found in System Property
    07/12/24 11:49:06 [201] WARNING: Unused property: os.version='5.1' found in System Property
    07/12/24 11:49:06 [202] WARNING: Unused property: sun.boot.class.path='C:\JDeveloper\jdk\jre\lib\rt.jar;C:\JDeveloper\jdk\jre\lib\i18n.jar;C:\JDeveloper\jdk\jre\lib\sunrsasign.jar;C:\JDeveloper\jdk\jre\lib\jsse.jar;C:\JDeveloper\jdk\jre\lib\jce.jar;C:\JDeveloper\jdk\jre\lib\charsets.jar;C:\JDeveloper\jdk\jre\classes' found in System Property
    07/12/24 11:49:06 [203] WARNING: Unused property: http.proxyHost='10.30.0.100' found in System Property
    07/12/24 11:49:06 [204] WARNING: Unused property: file.encoding='Cp1252' found in System Property
    07/12/24 11:49:06 [205] WARNING: Unused property: org.xml.sax.driver='oracle.xml.parser.v2.SAXParser' found in System Property
    07/12/24 11:49:06 [206] WARNING: Unused property: disable.checkForUpdate='true' found in System Property
    07/12/24 11:49:06 [207] WARNING: Unused property: https.proxyHost='10.30.0.100' found in System Property
    07/12/24 11:49:06 [208] WARNING: Unused property: oracle.containers.for.j2ee='true' found in System Property
    07/12/24 11:49:06 [209] WARNING: Unused property: oracle.security.jazn.persistence.enable='true' found in System Property
    07/12/24 11:49:06 [210] WARNING: Unused property: javax.management.builder.initial='oracle.oc4j.admin.jmx.server.Oc4jMBeanServerBuilder' found in System Property
    07/12/24 11:49:06 [211] WARNING: Unused property: https.proxyPort='80' found in System Property
    07/12/24 11:49:06 [212] WARNING: Unused property: oracle.dms.sensors='5' found in System Property
    07/12/24 11:49:06 [213] WARNING: Unused property: jacorb.security.ssl.client.required_options='0' found in System Property
    07/12/24 11:49:06 [214] WARNING: Unused property: java.io.tmpdir='C:\DOCUME~1\soso\LOCALS~1\Temp\' found in System Property
    07/12/24 11:49:06 [215] WARNING: Unused property: user.name='soso' found in System Property
    07/12/24 11:49:06 [216] WARNING: Unused property: awt.toolkit='sun.awt.windows.WToolkit' found in System Property
    07/12/24 11:49:06 [217] WARNING: Unused property: code.source.policy='index2' found in System Property
    07/12/24 11:49:06 [218] WARNING: Unused property: java.specification.name='Java Platform API Specification' found in System Property
    07/12/24 11:49:06 [219] WARNING: Unused property: oracle.j2ee.home='C:\Documents and Settings\soso\Application Data\JDeveloper\system11.1.1.0.22.47.96\o.j2ee\embedded-oc4j' found in System Property
    07/12/24 11:49:06 [220] WARNING: Unused property: oracle.j2ee.container.version='11.1.1.0.0' found in System Property
    07/12/24 11:49:06 [221] WARNING: Unused property: user.variant='' found in System Property
    07/12/24 11:49:06 [222] WARNING: Unused property: java.ext.dirs='C:\JDeveloper\jdk\jre\lib\ext' found in System Property
    07/12/24 11:49:06 [223] WARNING: Unused property: oracle.security.jazn.config='C:\Documents and Settings\soso\Application Data\JDeveloper\system11.1.1.0.22.47.96\o.j2ee\embedded-oc4j\config\jazn.xml' found in System Property
    07/12/24 11:49:06 [224] WARNING: Unused property: jacorb.ssl.server_socket_factory='oracle.oc4j.corba.iiop.security.JacorbServerSecureSocketFactory' found in System Property
    07/12/24 11:49:06 [225] WARNING: Unused property: java.vm.specification.version='1.0' found in System Property
    07/12/24 11:49:06 [226] WARNING: Unused property: OAPort='5655' found in System Property
    07/12/24 11:49:06 [227] WARNING: Unused property: java.vm.name='Java HotSpot(TM) Client VM' found in System Property
    07/12/24 11:49:06 [228] WARNING: Unused property: org.omg.PortableInterceptor.ORBInitializerClass.oc4j_tx='oracle.oc4j.corba.jacorb.JacorbServerInterceptorInitializer' found in System Property
    07/12/24 11:49:06 [229] WARNING: Unused property: oracle.j2ee.http.socket.timeout='500' found in System Property
    07/12/24 11:49:06 [230] WARNING: Unused property: user.timezone='GMT+03:00' found in System Property
    07/12/24 11:49:06 [231] WARNING: Unused property: LC='Calling Function' found in /oracle/jbo/common/Diagnostic.properties resource
    07/12/24 11:49:06 [232] WARNING: Unused property: jacorb.interop.strict_check_on_tc_creation='off' found in System Property
    07/12/24 11:49:06 [233] WARNING: Unused property: ajp.connection.listener.state='down' found in System Property
    07/12/24 11:49:06 [234] WARNING: Unused property: class.load.log.level='CONFIG' found in System Property
    07/12/24 11:49:06 [235] WARNING: Unused property: sun.boot.library.path='C:\JDeveloper\jdk\jre\bin' found in System Property
    07/12/24 11:49:06 [236] WARNING: Unused property: line.separator='
    ' found in System Property
    07/12/24 11:49:06 [237] WARNING: Unused property: java.vm.vendor='Sun Microsystems Inc.' found in System Property
    07/12/24 11:49:06 [238] WARNING: Unused property: java.security.policy='C:\Documents and Settings\soso\Application Data\JDeveloper\system11.1.1.0.22.47.96\o.j2ee\embedded-oc4j\config\java2.policy' found in System Property
    07/12/24 11:49:06 [239] WARNING: Unused property: java.awt.printerjob='sun.awt.windows.WPrinterJob' found in System Property
    07/12/24 11:49:06 [240] WARNING: Unused property: sun.java.launcher='SUN_STANDARD' found in System Property
    07/12/24 11:49:06 [241] WARNING: Unused property: java.runtime.version='1.5.0_11-b03' found in System Property
    07/12/24 11:49:06 [242] WARNING: Unused property: java.endorsed.dirs='C:\JDeveloper\jdk\jre\lib\endorsed' found in System Property
    07/12/24 11:49:06 [243] WARNING: Unused property: java.library.path='C:\JDeveloper\jdk\bin;.;C:\WINDOWS\system32;C:\WINDOWS;C:\oraclexe\app\oracle\product\10.2.0\server\bin;C:\Program Files\CodeGear\RAD Studio\5.0\bin;C:\Documents and Settings\All Users\Documents\RAD Studio\5.0\Bpl;C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\;C:\Program Files\Borland\BDS\4.0\Bin;D:\oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\system32\WBEM;C:\Program Files\Borland\Delphi7\Bin;C:\Program Files\Borland\Delphi7\Projects\Bpl\;C:\Program Files\Microsoft SQL Server\80\Tools\Binn\;C:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\Program Files\Microsoft SQL Server\90\DTS\Binn\;C:\Program Files\Microsoft SQL Server\90\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PrivateAssemblies\;C:\Documents and Settings\soso\My Documents\Borland Studio Projects\Bpl' found in System Property
    07/12/24 11:49:06 [244] WARNING: Unused property: sun.cpu.isalist='' found in System Property
    07/12/24 11:49:06 [245] WARNING: Unused property: j2ee.home='C:\JDeveloper\j2ee\home' found in System Property
    07/12/24 11:49:06 [246] WARNING: Unused property: user.dir='C:\Documents and Settings\soso\Application Data\JDeveloper\system11.1.1.0.22.47.96\o.j2ee\embedded-oc4j\config' found in System Property
    07/12/24 11:49:06 [247] WARNING: Unused property: java.vendor='Sun Microsystems Inc.' found in System Property
    07/12/24 11:49:06 [248] WARNING: Unused property: oracle.j2ee.container.name='Oracle Containers for J2EE 11g (11.1.1.0.0) ' found in System Property
    07/12/24 11:49:06 [249] WARNING: Unused property: java.class.path='C:\JDeveloper\j2ee\home\oc4j.jar;C:\JDeveloper\jdev\lib\jdev-oc4j-embedded.jar' found in System Property
    07/12/24 11:49:06 [250] WARNING: Unused property: user.language='en' found in System Property
    07/12/24 11:49:06 [251] WARNING: Unused property: sun.os.patch.level='Service Pack 2' found in System Property
    07/12/24 11:49:06 [252] WARNING: Unused property: jacorb.ssl.socket_factory='oracle.oc4j.corba.iiop.security.JacorbClientSecureSocketFactory' found in System Property
    07/12/24 11:49:06 [253] WARNING: Unused property: java.class.version='49.0' found in System Property
    07/12/24 11:49:06 [254] WARNING: Unused property: oracle.j2ee.dont.use.memory.archive='true' found in System Property
    07/12/24 11:49:06 [255] WARNING: Unused property: java.vm.version='1.5.0_11-b03' found in System Property
    07/12/24 11:49:06 [256] WARNING: Unused property: sun.desktop='windows' found in System Property
    07/12/24 11:49:06 [257] WARNING: Unused property: java.util.logging.manager='oracle.classloader.util.ApplicationLogManager' found in System Property
    07/12/24 11:49:06 [258] WARNING: Unused property: http.proxyPort='80' found in System Property
    07/12/24 11:49:06 [259] WARNING: Unused property: oracle.application.environment='development' found in System Property
    07/12/24 11:49:06 [260] WARNING: Unused property: java.home='C:\JDeveloper\jdk\jre' found in System Property
    07/12/24 11:49:06 [261] WARNING: Unused property: oracle.security.jps.config='C:\Documents and Settings\soso\Application Data\JDeveloper\system11.1.1.0.22.47.96\o.j2ee\embedded-oc4j\config\jps-config.xml' found in System Property
    07/12/24 11:49:06 [262] WARNING: Unused property: java.net.preferIPv4Stack='true' found in System Property
    07/12/24 11:49:06 [263] WARNING: Unused property: java.vm.info='mixed mode' found in System Property
    07/12/24 11:49:06 [264] WARNING: Unused property: org.omg.CORBA.ORBSingletonClass='org.jacorb.orb.ORBSingleton' found in System Property
    07/12/24 11:49:06 [265] WARNING: Unused property: sun.arch.data.model='32' found in System Property
    07/12/24 11:49:06 [266] WARNING: Unused property: java.vm.specification.name='Java Virtual Machine Specification' found in System Property
    07/12/24 11:49:06 [267] WARNING: Unused property: sun.cpu.endian='little' found in System Property
    07/12/24 11:49:06 [268] WARNING: Unused property: sun.management.compiler='HotSpot Client Compiler' found in System Property
    07/12/24 11:49:06 [269] WARNING: Unused property: path.separator=';' found in System Property
    07/12/24 11:49:06 [270] WARNING: Unused property: oracle.security.enablejps='true' found in System Property
    07/12/24 11:49:06 [271] WARNING: Unused property: java.protocol.handler.pkgs='com.evermind.protocol' found in System Property
    07/12/24 11:49:06 [272] WARNING: Unused property: user.country='US' found in System Property
    07/12/24 11:49:06 [273] WARNING: Unused property: jacorb.orb.objectKeyMap.NameService='StandardNS/NameServer-POA/_root' found in System Property
    07/12/24 11:49:06 [274] WARNING: Unused property: jacorb.orb.objectKeyMap.INIT='StandardNS/NameServer-POA/_init' found in System Property
    07/12/24 11:49:06 [275] WARNING: Unused property: file.separator='\' found in System Property
    07/12/24 11:49:06 [276] WARNING: Unused property: os.arch='x86' found in System Property
    07/12/24 11:49:06 [277] WARNING: Unused property: org.omg.PortableInterceptor.ORBInitializerClass.oc4j_client='oracle.oc4j.corba.jacorb.JacorbClientInterceptorInitializer' found in System Property
    07/12/24 11:49:06 [278] WARNING: Unused property: file.encoding.pkg='sun.io' found in System Property
    07/12/24 11:49:06 [279] WARNING: Unused property: oracle.oc4j.http.socket.sendbuffersize='16384' found in System Property
    07/12/24 11:49:06 [280] WARNING: Unused property: org.omg.CORBA.ORBClass='org.jacorb.orb.ORB' found in System Property
    07/12/24 11:49:06 [281] WARNING: Unused property: jacorb.implname='StandardNS' found in System Property
    07/12/24 11:49:06 [282] WARNING: Unused property: https.nonProxyHosts='localhost|127.0.0.1' found in System Property
    07/12/24 11:49:06 [283] WARNING: Unused property: java.vendor.url.bug='http://java.sun.com/cgi-bin/bugreport.cgi' found in System Property
    07/12/24 11:49:06 [284] WARNING: Unused property: os.name='Windows XP' found in System Property
    07/12/24 11:49:06 [285] WARNING: Unused property: java.vendor.url='http://java.sun.com/' found in System Property
    07/12/24 11:49:06 [286] WARNING: Unused property: java.naming.factory.url.pkgs='oracle.oc4j.naming.url' found in System Property
    07/12/24 11:49:06 [287] WARNING: Unused property: http.nonProxyHosts='localhost|127.0.0.1' found in System Property
    07/12/24 11:49:06 [288] WARNING: Unused property: sun.jnu.encoding='Cp1252' found in System Property
    07/12/24 11:49:06 [289] WARNING: Unused property: oc4j.jms.usePersistenceLockFiles='false' found in System Property
    07/12/24 11:49:06 [290] WARNING: Unused property: java.vm.specification.vendor='Sun Microsystems Inc.' found in System Property
    07/12/24 11:49:06 [291] WARNING: Unused property: jacorb.security.ssl.client.supported_options='64' found in System Property
    07/12/24 11:49:06 [292] WARNING: Unused property: java.runtime.name='Java(TM) 2 Runtime Environment, Standard Edition' found in System Property
    07/12/24 11:49:06 [293] WARNING: Unused property: user.home='C:\Documents and Settings\soso' found in System Property
    07/12/24 11:49:06 [294] WARNING: Unused property: java.specification.version='1.5' found in System Property
    07/12/24 11:49:06 [295] WARNING: Unused property: org.omg.PortableInterceptor.ORBInitializerClass.standard_init='org.jacorb.orb.standardInterceptors.IORInterceptorInitializer' found in System Property
    07/12/24 11:49:06 [296] }} finished loading BC4J properties
    07/12/24 11:49:06 [297] -----------------------------------------------------------
    07/12/24 11:49:06 Diagnostics: (Properties (re)loaded) Routing diagnostics to standard output (use -Djbo.debugoutput=silent to remove)
    07/12/24 11:49:06 [298] Diagnostic Properties: Timing:false Functions:false Linecount:true Threshold:9
    07/12/24 11:49:06 [299] JavaVMVersion: 1.5.0_11-b03
    07/12/24 11:49:06 [300] JavaVMVendor: Sun Microsystems Inc.
    07/12/24 11:49:06 [301] JavaVMName: Java HotSpot(TM) Client VM
    07/12/24 11:49:06 [302] OperatingSystemName: Windows XP
    07/12/24 11:49:06 [303] OperatingSystemVersion: 5.1
    07/12/24 11:49:06 [304] OperatingSystemUsername: soso
    07/12/24 11:49:06 [305] jbo.323.compatible Flag: false, str: false
    07/12/24 11:49:06 [306] jbo.903.compatible Flag: false, str: false
    07/12/24 11:49:06 [307] oracle.jbo.usemds Flag: true, str: true
    07/12/24 11:49:06 [308] MDS parser created
    07/12/24 11:49:06 [309] Loading from individual XML files
    07/12/24 11:49:06 [310] Loading the Containees for the Package 'model.Model'.
    07/12/24 11:49:06 [311] Connected to Oracle JBO Server - Version: 11.1.1.47.96
    07/12/24 11:49:06 [312] {{ type: 'BC4J_CREATE_ROOTAM' Create Root Application Module 'model.tasks.TasksModule'
    07/12/24 11:49:06 [313] {{ type: 'METAOBJECT_LOAD' Loading meta-object: model.tasks.TasksModule
    07/12/24 11:49:06 [314] {{ type: 'METAOBJECT_LOAD' Loading meta-object: model.tasks.tasks
    07/12/24 11:49:06 [315] No XML file /model/tasks/tasks.xml for metaobject model.tasks.tasks
    07/12/24 11:49:06 [316] MDS error (MetadataNotFoundException): MDS-00013: No metadata found for metadata object "/model/tasks/tasks.xml"
    07/12/24 11:49:06 [317] }}+++ End Event5 null
    07/12/24 11:49:06 [318] Cannot Load parent Package : model.tasks.tasks
    07/12/24 11:49:06 [319] Business Object Browsing may be unavailable
    07/12/24 11:49:06 [320] }}+++ End Event4 null
    07/12/24 11:49:06 [321] {{ type: 'METAOBJECT_LOAD' Loading meta-object: model.tasks.FunctionsView
    07/12/24 11:49:06 [322] ViewObjectImpl's default fetch mode = 0
    07/12/24 11:49:06 [323] Loading Typemap entries from oracle.jbo.common.OracleTypeMapEntries
    07/12/24 11:49:06 [324] CSMessageBundle (language base) being initialized
    07/12/24 11:49:06 [325] OracleSQLBuilder reached getInterface
    07/12/24 11:49:06 [326] * * * Use jdbc with no defineColumnType calls * * *
    07/12/24 11:49:06 [327] Oracle SQL Builder Version 3.2.0.0.0
    07/12/24 11:49:06 [328] }}+++ End Event6 null
    07/12/24 11:49:06 [329] {{ type: 'BC4J_CREATE_VIEWOBJECT' Create ViewObject 'FunctionsView1'
    07/12/24 11:49:06 [330] }}+++ End Event7 null
    07/12/24 11:49:06 [331] Using DatabaseTransactionFactory implementation oracle.jbo.server.DatabaseTransactionFactory
    07/12/24 11:49:06 [332] DBTransactionImpl.mDefaultValidationThreshold is 10
    07/12/24 11:49:06 [333] mPCollUsePMgr is false
    07/12/24 11:49:06 [334] ViewObjectImpl.mDefaultMaxRowsPerNode is 70
    07/12/24 11:49:06 [335] ViewObjectImpl.mDefaultMaxActiveNodes is 30
    07/12/24 11:49:06 [336] DBTransactionImpl Max Cursors is 50
    07/12/24 11:49:06 [337] Created root application module: 'model.tasks.TasksModule'
    07/12/24 11:49:06 [338] Locale is: 'en_US'
    07/12/24 11:49:06 [339] }}+++ End Event3 null
    07/12/24 11:49:06 [340] ApplicationPoolImpl.resourceStateChanged wasn't release related. No notify invoked.
    07/12/24 11:49:06 [341] Oracle SQLBuilder: Registered driver: oracle.jdbc.OracleDriver
    07/12/24 11:49:06 [342] import java.util.*; // JBO-JDBC-INTERACT
    07/12/24 11:49:06 [343] import java.sql.*; // JBO-JDBC-INTERACT
    07/12/24 11:49:06 [344] import java.io.*; // JBO-JDBC-INTERACT
    07/12/24 11:49:06 [345] public class JDBCCalls // JBO-JDBC-INTERACT
    07/12/24 11:49:06 [346] {  // JBO-JDBC-INTERACT
    07/12/24 11:49:06 [347] public Connection conn = null; // JBO-JDBC-INTERACT
    07/12/24 11:49:06 [348] public CallableStatement cStmt = null; // JBO-JDBC-INTERACT
    07/12/24 11:49:06 [349] public PreparedStatement pStmt = null; // JBO-JDBC-INTERACT
    07/12/24 11:49:06 [350] public Statement stmt = null; // JBO-JDBC-INTERACT
    07/12/24 11:49:06 [351] public ResultSet rslt = null; // JBO-JDBC-INTERACT
    07/12/24 11:49:06 [352] public static void main(String argv[]) // JBO-JDBC-INTERACT
    07/12/24 11:49:06 [353] {  // JBO-JDBC-INTERACT
    07/12/24 11:49:06 [354] DriverManager.registerDriver(new oracle.jdbc.OracleDriver()); // JBO-JDBC-INTERACT
    07/12/24 11:49:06 [355] {{ type: 'JDBC_CONNECT' ADF Instrumented Event
    07/12/24 11:49:06 [356] Creating a new pool resource
    07/12/24 11:49:06 [357] Trying connection/2: url='jdbc:oracle:thin:@localhost:1521:XE' ...
    07/12/24 11:49:06 [358] conn = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:XE", /*properties*/); // JBO-JDBC-INTERACT
    07/12/24 11:49:06 [359] }}+++ End Event8 null
    07/12/24 11:49:06 [360] **** DBTransactionImpl establishNewConnection
    07/12/24 11:49:06 [361] conn.setAutoCommit(false); // JBO-JDBC-INTERACT
    07/12/24 11:49:06 [362] OracleSQLBuilderImpl.setSessionTimeZone failed...
    07/12/24 11:49:06 [363] X/Open SQL State is: 22008
    07/12/24 11:49:06 [364] java.sql.SQLException: ORA-01882: timezone region not found
         at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:77)
         at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:111)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:174)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:472)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:422)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:1089)
         at oracle.jdbc.driver.T4CStatement.doOall8(T4CStatement.java:192)
         at oracle.jdbc.driver.T4CStatement.executeForRows(T4CStatement.java:1021)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1347)
         at oracle.jdbc.driver.OracleStatement.executeUpdateInternal(OracleStatement.java:1963)
         at oracle.jdbc.driver.OracleStatement.executeUpdate(OracleStatement.java:1913)
         at oracle.jdbc.driver.OracleStatementWrapper.executeUpdate(OracleStatementWrapper.java:299)
         at oracle.jdbc.driver.PhysicalConnection.setSessionTimeZone(PhysicalConnection.java:11840)
         at oracle.jbo.server.OracleSQLBuilderImpl.setSessionTimeZone(OracleSQLBuilderImpl.java:4798)
         at oracle.jbo.server.DBTransactionImpl.refreshConnectionMetadata(DBTransactionImpl.java:4965)
         at oracle.jbo.server.DBTransactionImpl.initTransaction(DBTransactionImpl.java:1271)
         at oracle.jbo.server.DBTransactionImpl.initTxn(DBTransactionImpl.java:6326)
         at oracle.jbo.server.DBTransactionImpl2.connect(DBTransactionImpl2.java:118)
         at oracle.jbo.common.ampool.DefaultConnectionStrategy.connect(DefaultConnectionStrategy.java:217)
         at oracle.jbo.server.ApplicationPoolMessageHandler.doPoolConnect(ApplicationPoolMessageHandler.java:527)
         at oracle.jbo.server.ApplicationPoolMessageHandler.doPoolMessage(ApplicationPoolMessageHandler.java:383)
         at oracle.jbo.server.ApplicationModuleImpl.doPoolMessage(ApplicationModuleImpl.java:8155)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.sendPoolMessage(ApplicationPoolImpl.java:4299)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.prepareApplicationModule(ApplicationPoolImpl.java:2370)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:2156)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:3023)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:453)
         at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:233)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:424)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:419)
         at oracle.adf.model.bc4j.DCJboDataControl.initializeApplicationModule(DCJboDataControl.java:487)
         at oracle.adf.model.bc4j.DCJboDataControl.getApplicationModule(DCJboDataControl.java:815)
         at oracle.adf.model.binding.DCDataControl.setErrorHandler(DCDataControl.java:471)
         at oracle.jbo.uicli.binding.JUApplication.setErrorHandler(JUApplication.java:265)
         at oracle.adf.model.BindingContext.put(BindingContext.java:914)
         at oracle.adf.model.binding.DCDataControlReference.getDataControl(DCDataControlReference.java:167)
         at oracle.adf.model.BindingContext.instantiateDataControl(BindingContext.java:673)
         at oracle.adf.model.dcframe.DataControlFrameImpl.doFindDataControl(DataControlFrameImpl.java:730)
         at oracle.adf.model.dcframe.DataControlFrameImpl.findDataControl(DataControlFrameImpl.java:650)
         at oracle.adf.model.BindingContext.internalFindDataControl(BindingContext.java:769)
         at oracle.adf.model.BindingContext.get(BindingContext.java:755)
         at oracle.adf.model.binding.DCBindingContainer.findDataControl(DCBindingContainer.java:1327)
         at oracle.adf.model.binding.DCIteratorBinding.initDataControl(DCIteratorBinding.java:2310)
         at oracle.adf.model.binding.DCIteratorBinding.getDataControl(DCIteratorBinding.java:2265)
         at oracle.adf.model.binding.DCIteratorBinding.getAttributeDefs(DCIteratorBinding.java:2933)
         at oracle.jbo.uicli.binding.JUCtrlValueBinding.getAttributeDefs(JUCtrlValueBinding.java:420)
         at oracle.jbo.uicli.binding.JUCtrlValueBinding.findAttributeDef(JUCtrlValueBinding.java:552)
         at oracle.jbo.uicli.binding.JUCtrlValueBinding.lookupAttributeDef(JUCtrlValueBinding.java:522)
         at oracle.jbo.uicli.binding.JUCtrlHierBinding$1JUCtrlHierHintsMap.internalGet(JUCtrlHierBinding.java:148)
         at oracle.jbo.common.JboAbstractMap.get(JboAbstractMap.java:58)
         at javax.el.MapELResolver.getValue(MapELResolver.java:164)
         at javax.el.CompositeELResolver.getValue(CompositeELResolver.java:143)
         at com.sun.faces.el.FacesCompositeELResolver.getValue(FacesCompositeELResolver.java:64)
         at com.sun.el.parser.AstValue.getValue(AstValue.java:117)
         at com.sun.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:192)
         at org.apache.myfaces.trinidad.bean.FacesBeanImpl.getProperty(FacesBeanImpl.java:70)
         at oracle.adfinternal.view.faces.renderkit.rich.table.BaseColumnRenderer.getProperty(BaseColumnRenderer.java:768)
         at oracle.adfinternal.view.faces.renderkit.rich.table.BaseColumnRenderer.layoutHeader(BaseColumnRenderer.java:374)
         at oracle.adfinternal.view.faces.renderkit.rich.table.BaseColumnRenderer.encodeAll(BaseColumnRenderer.java:81)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:947)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:220)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:749)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:299)
         at oracle.adfinternal.view.faces.renderkit.rich.table.BaseTableRenderer.layoutColumnHeader(BaseTableRenderer.java:791)
         at oracle.adfinternal.view.faces.renderkit.rich.TableRenderer.encodeAll(TableRenderer.java:275)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:947)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:220)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:749)
         at org.apache.myfaces.trinidad.component.UIXCollection.encodeEnd(UIXCollection.java:527)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:299)
         at oracle.adfinternal.view.faces.renderkit.rich.ShowDetailItemRenderer._encodeChildren(ShowDetailItemRenderer.java:332)
         at oracle.adfinternal.view.faces.renderkit.rich.ShowDetailItemRenderer.encodeAll(ShowDetailItemRenderer.java:69)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:947)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:220)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:749)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:299)
         at oracle.adf.view.rich.render.RichRenderer.encodeStretchedChild(RichRenderer.java:1246)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelAccordionRenderer._encodeDetailItem(PanelAccordionRenderer.java:1250)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelAccordionRenderer._encodeChildren(PanelAccordionRenderer.java:843)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelAccordionRenderer.encodeAll(PanelAccordionRenderer.java:268)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:947)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:220)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:749)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:299)
         at oracle.adf.view.rich.render.RichRenderer.encodeStretchedChild(RichRenderer.java:1246)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelSplitterRenderer._renderPane(PanelSplitterRenderer.java:860)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelSplitterRenderer._renderFirstPane(PanelSplitterRenderer.java:744)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelSplitterRenderer.encodeAll(PanelSplitterRenderer.java:130)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:947)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:220)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:749)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:299)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelStretchLayoutRenderer.encodeCenterFacet(PanelStretchLayoutRenderer.java:228)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelStretchLayoutRenderer._encodeCenterPane(PanelStretchLayoutRenderer.java:455)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelStretchLayoutRenderer.encodeAll(PanelStretchLayoutRenderer.java:178)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:947)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:220)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:749)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:299)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:316)
         at oracle.adfinternal.view.faces.renderkit.rich.FormRenderer.encodeAll(FormRenderer.java:163)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:947)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:220)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:749)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:299)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:316)
         at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer.encodeAll(DocumentRenderer.java:441)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:947)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:220)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:749)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.__encodeRecursive(UIXComponentBase.java:1287)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeAll(UIXComponentBase.java:769)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:892)
         at com.sun.faces.application.ViewHandlerImpl.doRenderView(ViewHandlerImpl.java:245)
         at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:176)
         at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:178)
         at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:176)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:633)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:244)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:204)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:245)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:178)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.adfinternal.view.faces.webapp.rich.SharedLibraryFilter.doFilter(SharedLibraryFilter.java:135)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:281)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:69)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:281)
         at oracle.adfinternal.view.faces.activedata.ADSFilter.doFilter(ADSFilter.java:74)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:281)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._invokeDoFilter(TrinidadFilterImpl.java:241)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:198)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:141)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17)
         at oracle.security.jazn.oc4j.JAZNFilter$3.run(JAZNFilter.java:434)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:308)
         at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:452)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:583)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:334)
         at com.evermind.server.http.HttpRequestHandler.doDispatchRequest(HttpRequestHandler.java:942)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:843)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:646)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:614)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:405)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:168)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:149)
         at oracle.oc4j.network.ServerSocketReadHandler$ClientRunnable.run(ServerSocketReadHandler.java:275)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:237)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$800(ServerSocketAcceptHandler.java:29)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:877)
         at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:650)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:675)
         at java.lang.Thread.run(Thread.java:595)
    07/12/24 11:49:06 [365] Successfully logged in
    07/12/24 11:49:06 [366] JDBCDriverVersion: 11.1.0.6.0-Production+
    07/12/24 11:49:06 [367] DatabaseProductName: Oracle
    07/12/24 11:49:06 [368] DatabaseProductVersion: Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    07/12/24 11:49:06 [369] DBTransactionImpl initTransaction
    07/12/24 11:49:06 [370] MDS parser created
    07/12/24 11:49:06 [371] Reusing DC transform for TasksModuleDataControl_indexPageDef
    07/12/24 11:49:06 [372] BindingContext.put( TasksModuleDataControl_view_DataBindings_cpx, oracle.jbo.uicli.binding.JUApplication )
    07/12/24 11:49:06 [373] BindingContext.put( indexPageDef, oracle.jbo.uicli.binding.JUFormBinding )
    07/12/24 11:49:06 [374] BindingContext.put( indexPageDef, oracle.jbo.uicli.binding.JUFormBinding )
    07/12/24 11:49:06 [375] Deferred refresh for :FunctionsView1Iterator
    07/12/24 11:49:06 [376] Executing and syncing on IteratorBinding.refresh from :FunctionsView1Iterator
    07/12/24 11:49:06 [377] Resolving VO:FunctionsView1 for iterator binding:FunctionsView1Iterator
    07/12/24 11:49:06 [378] DCUtil, returning:oracle.adfinternal.view.faces.model.binding.FacesCtrlHierBinding, for FunctionsView1
    07/12/24 11:49:06 [379] Changing iterator range size from :1 to :25
    07/12/24 11:49:06 [380] releasing hier_binding..FunctionsView1
    07/12/24 11:49:06 [381] releasing hier_binding..FunctionsView1
    07/12/24 11:49:06 [382] releasing hier_binding..FunctionsView1
    07/12/24 11:49:06 [383] **** PoolMessage REQ ATTACH LWS
    07/12/24 11:49:06 [384] **** PoolMessage REQ DETACH LWS
    07/12/24 11:49:06 [385] (oracle.adf.model.bc4j.DataControlFactoryImpl.SyncMode = Immediate
    07/12/24 11:49:06 [386] **** refreshControl() for BindingContainer :indexPageDef
    07/12/24 11:49:06 [387] valiateToken:Decompressed BC state:BCST:=0%V%=NFunctionsView1Iterator=-D-,
    07/12/24 11:49:06 [388] **** refreshControl() for BindingContainer :indexPageDef
    07/12/24 11:49:06 [389] Deferred refresh for :FunctionsView1Iterator
    07/12/24 11:49:06 [390] Executing and syncing on IteratorBinding.refresh from :FunctionsView1Iterator
    07/12/24 11:49:06 [391] DCUtil, returning:oracle.adf.model.binding.DCParameter, for TasksModuleDataControl
    07/12/24 11:49:06 [392] (oracle.adf.model.bc4j.DataControlFactoryImpl.SyncMode = Immediate
    07/12/24 11:49:06 [393] Reusing a cached session application module instance
    07/12/24 11:49:06 [394] BindingContext.put( indexPageDef, oracle.jbo.uicli.binding.JUFormBinding )
    07/12/24 11:49:07 [395] BindingContext.put( indexPageDef, oracle.jbo.uicli.binding.JUFormBinding )
    07/12/24 11:49:07 [396] Resolving VO:FunctionsView1 for iterator binding:FunctionsView1Iterator
    07/12/24 11:49:07 [397] DCUtil, returning:oracle.adfinternal.view.faces.model.binding.FacesCtrlHierBinding, for FunctionsView1
    07/12/24 11:49:07 [398] FunctionsView1 ViewRowSetImpl.execute caused params to be "un"changed
    07/12/24 11:49:07 [399] Column count: 4
    07/12/24 11:49:07 [400] {{ type: 'EXECUTE_QUERY' ViewObject executeQueryForCollection FunctionsView1
    07/12/24 11:49:07 [401] {{ type: 'VIEWOBJECT_GETSTATEMENT' Viewobject: FunctionsView1 getting prepared statement
    07/12/24 11:49:07 [402] ViewObject: FunctionsView1 Created new QUERY statement
    07/12/24 11:49:07 [403] FunctionsView1>#q computed SQLStmtBufLen: 211, actual=171, storing=201
    07/12/24 11:49:07 [404] SELECT T.FUNCTION_ID FUNCTION_ID,
    T.FUNCTION_NAME FUNCTION_NAME,
    T.FUNCTION_URL FUNCTION_URL,
    T.FUNCTION_PARAMS FUNCTION_PARAMS
    FROM TASKS.FUNCTIONS T
    07/12/24 11:49:07 [405] {{ type: 'JDBC_CREATE_STATEMENT' createPreparedStatement - prefetch size: 1
    07/12/24 11:49:07 [406] pStmt = conn.prepareStatement("SELECT T.FUNCTION_ID FUNCTION_ID,
    T.FUNCTION_NAME FUNCTION_NAME,
    T.FUNCTION_URL FUNCTION_URL,
    T.FUNCTION_PARAMS FUNCTION_PARAMS
    FROM TASKS.FUNCTIONS T"); // JBO-JDBC-INTERACT
    07/12/24 11:49:07 [407] }}+++ End Event11 null
    07/12/24 11:49:07 [408] }}+++ End Event10 ViewObject: Creating new QUERY statementSELECT T.FUNCTION_ID FUNCTION_ID,
    T.FUNCTION_NAME FUNCTION_NAME,
    T.FUNCTION_URL FUNCTION_URL,
    T.FUNCTION_PARAMS FUNCTION_PARAMS
    FROM TASKS.FUNCTIONS T
    07/12/24 11:49:07 [409] Bind params for ViewObject: FunctionsView1
    07/12/24 11:49:07 [410] {{ type: 'JDBC_EXECUTE' QueryCollection jdbc executeQuery FunctionsView1
    07/12/24 11:49:07 [411] }}+++ End Event12 null
    07/12/24 11:49:07 [412] ViewObject: FunctionsView1 close single-use prepared statements
    07/12/24 11:49:07 [413] pStmt.close(); // JBO-JDBC-INTERACT
    07/12/24 11:49:07 [414] QueryCollection.executeQuery failed...
    07/12/24 11:49:07 [415] java.sql.SQLException: ORA-01866: the datetime class is invalid
         at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:77)
         at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:111)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:174)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:472)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:422)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:1089)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:204)
         at oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:861)
         at oracle.jdbc.driver.T4CPreparedStatement.executeMaybeDescribe(T4CPreparedStatement.java:945)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1303)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3556)
         at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3608)
         at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(OraclePreparedStatementWrapper.java:1341)
         at oracle.jbo.server.QueryCollection.buildResultSet(QueryCollection.java:993)
         at oracle.jbo.server.QueryCollection.executeQuery(QueryCollection.java:722)
         at oracle.jbo.server.ViewObjectImpl.executeQueryForCollection(ViewObjectImpl.java:5256)
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:921)
         at oracle.jbo.server.ViewRowSetImpl.executeQueryForMasters(ViewRowSetImpl.java:1071)
         at oracle.jbo.server.ViewRowSetImpl.executeQueryForMode(ViewRowSetImpl.java:991)
         at oracle.jbo.server.ViewRowSetImpl.executeQuery(ViewRowSetImpl.java:985)
         at oracle.jbo.server.ViewObjectImpl.executeQuery(ViewObjectImpl.java:5176)
         at oracle.adf.model.bc4j.DCJboDataControl.executeIteratorBindingIfNeeded(DCJboDataControl.java:1307)
         at oracle.adf.model.binding.DCIteratorBinding.executeQueryIfNeeded(DCIteratorBinding.java:2037)
         at oracle.jbo.uicli.binding.JUCtrlHierBinding.getRootNodeBinding(JUCtrlHierBinding.java:71)
         at oracle.adfinternal.view.faces.model.binding.RowDataManager.getParent(RowDataManager.java:229)
         at oracle.adfinternal.view.faces.model.binding.RowDataManager.getRowCount(RowDataManager.java:215)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlHierBinding$FacesModel.getRowCount(FacesCtrlHierBinding.java:414)
         at org.apache.myfaces.trinidad.component.UIXCollection.getRowCount(UIXCollection.java:337)
         at oracle.adfinternal.view.faces.renderkit.rich.TableRenderer.renderDataBlockRows(TableRenderer.java:1080)
         at oracle.adfinternal.view.faces.renderkit.rich.TableRenderer._renderSingleDataBlock(TableRenderer.java:1008)
         at oracle.adfinternal.view.faces.renderkit.rich.TableRenderer._handleDataFetch(TableRenderer.java:633)
         at oracle.adfinternal.view.faces.renderkit.rich.TableRenderer.encodeAll(TableRenderer.java:255)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:947)
         at org.apache.myfaces.t

    I don't know if is the same issue or solution. I'm using a linux (FC7) and setting the enviroment variable TZ='America/Buenos_Aires' works for me.

  • Not able to run standard iProcurement Shopping cart page through jDevloper10g in R12.1.3

    Dear All,
    I am trying to run standard iProcurement Shopping cart page (Negotiation Tab) through jDevloper10g in R12.1.3 instance but on click of "View Cart and Checkout" button
    it gives an exception as "ArrayIndexOutOfBoundsException".
    I had copied these .class & .xml files under Myclasses -> oracle.apps.icx and oracle.apps.po and oracle.apps.fnd was same which comes part of the standard OA tutorial.
    I copied same under Myprojects as well.
    When I access the page directly from the instance it works fine. Problem is only through jDeveloper.
    Please advice what is missing here.
    I tried debugging as well in jDEV and below is the log of the same. I noticed every time when VO is called, while binding numeric values it throws error.
    Any pointers would be of great help!!
    Regards
    Rohit
    ======================
    Debug Info
    ======================
    13/09/20 09:22:12 [403] BC4J Property jbo.use.pers.coll='false' -->(SessionImpl) from Client Environment
    13/09/20 09:22:12 [404] BC4J Property jbo.pers.max.rows.per.node='70' -->(SessionImpl) from System Default
    13/09/20 09:22:12 [405] BC4J Property jbo.pers.max.active.nodes='30' -->(SessionImpl) from System Default
    13/09/20 09:22:12 [406] Skipping empty Property jbo.pcoll.mgr from System Default
    13/09/20 09:22:12 [407] BC4J Property jbo.txn_table_name='FND_PS_TXN' -->(SessionImpl) from Client Environment
    13/09/20 09:22:12 [408] BC4J Property jbo.txn_seq_name='FND_PS_TXN_S' -->(SessionImpl) from Client Environment
    13/09/20 09:22:12 [409] BC4J Property jbo.txn_seq_inc='1' -->(SessionImpl) from System Default
    13/09/20 09:22:12 [410] BC4J Property jbo.control_table_name='FND_PCOLL_CONTROL' -->(MetaObjectManager) from Client Environment
    13/09/20 09:22:12 [411] BC4J Property jbo.stringmanager.factory.class='use_default' -->(SessionImpl) from System Default
    13/09/20 09:22:12 [412] BC4J Property jbo.domain.date.suppress_zero_time='true' -->(MetaObjectManager) from System Default
    13/09/20 09:22:12 [413] BC4J Property jbo.domain.bind_sql_date='true' -->(MetaObjectManager) from System Default
    13/09/20 09:22:12 [414] BC4J Property jbo.domain.string.as.bytes.for.raw='false' -->(MetaObjectManager) from System Default
    13/09/20 09:22:12 [415] BC4J Property jbo.fetch.mode='AS.NEEDED' -->(MetaObjectManager) from System Default
    13/09/20 09:22:12 [416] BC4J Property jbo.323.compatible='false' -->(MetaObjectManager) from System Default
    13/09/20 09:22:12 [417] BC4J Property jbo.903.compatible='false' -->(MetaObjectManager) from System Default
    13/09/20 09:22:12 [418] Skipping empty Property JBODynamicObjectsPackage from System Default
    13/09/20 09:22:12 [419] BC4J Property MetaObjectContextFactory='oracle.jbo.mom.xml.DefaultMomContextFactory' -->(MetaObjectManager) from System Default
    13/09/20 09:22:12 [420] BC4J Property jbo.load.components.lazily='false' -->(MetaObjectManager) from Client Environment
    13/09/20 09:22:12 [421] BC4J Property MetaObjectContext='oracle.adf.mds.jbo.JBODefManager' -->(MetaObjectManager) from System Property
    13/09/20 09:22:12 [422] BC4J Property java.naming.factory.initial='oracle.jbo.common.JboInitialContextFactory' -->(SessionImpl) from Client Environment
    13/09/20 09:22:12 [423] BC4J Property IsLazyLoadingTrue='true' -->(MetaObjectManager) from /oracle/jbo/server/jboserver.properties resource
    13/09/20 09:22:12 [424] BC4J Property oracle.jbo.usemds='false' -->(MetaObjectManager) from System Default
    13/09/20 09:22:12 [425] BC4J Property oracle.adfm.usemds='false' -->(MetaObjectManager) from System Default
    13/09/20 09:22:12 [426] BC4J Property ActivateSharedDataHandle='false' -->(MetaObjectManager) from System Default
    13/09/20 09:22:12 [427] Skipping empty Property HandleName from System Default
    13/09/20 09:22:12 [428] Skipping empty Property Factory-Substitution-List from System Default
    13/09/20 09:22:12 [429] Skipping empty Property jbo.project from System Default
    13/09/20 09:22:12 [430] BC4J Property jbo.max.cursors='50' -->(MetaObjectManager) from System Default
    13/09/20 09:22:12 [431] BC4J Property jbo.dofailover='false' -->(Configuration) from Client Environment
    13/09/20 09:22:12 [432] BC4J Property jbo.ampool.writecookietoclient='true' -->(Configuration) from Client Environment
    13/09/20 09:22:12 [433] BC4J Property jbo.doconnectionpooling='false' -->(Configuration) from Client Environment
    13/09/20 09:22:12 [434] BC4J Property jbo.recyclethreshold='10' -->(Configuration) from Client Environment
    13/09/20 09:22:12 [435] BC4J Property jbo.ampool.dynamicjdbccredentials='true' -->(Configuration) from System Default
    13/09/20 09:22:12 [436] BC4J Property jbo.ampool.resetnontransactionalstate='false' -->(SessionImpl) from Client Environment
    13/09/20 09:22:12 [437] BC4J Property jbo.ampool.sessioncookiefactoryclass='oracle.apps.fnd.framework.webui.OAHttpSessionCookieFactory' -->(Configuration) from Client Environment
    13/09/20 09:22:12 [438] BC4J Property jbo.ampool.connectionstrategyclass='oracle.apps.fnd.framework.OAConnectionStrategy' -->(Configuration) from Client Environment
    13/09/20 09:22:12 [439] BC4J Property jbo.ampool.maxpoolsize='2147483647' -->(Configuration) from System Default
    13/09/20 09:22:12 [440] BC4J Property jbo.ampool.initpoolsize='0' -->(Configuration) from System Default
    13/09/20 09:22:12 [441] BC4J Property jbo.ampool.monitorsleepinterval='300000' -->(Configuration) from Client Environment
    13/09/20 09:22:12 [442] BC4J Property jbo.ampool.minavailablesize='0' -->(Configuration) from Client Environment
    13/09/20 09:22:12 [443] BC4J Property jbo.ampool.maxavailablesize='10' -->(Configuration) from Client Environment
    13/09/20 09:22:12 [444] BC4J Property jbo.ampool.maxinactiveage='180000' -->(Configuration) from Client Environment
    13/09/20 09:22:12 [445] BC4J Property jbo.ampool.timetolive='3600000' -->(Configuration) from System Default
    13/09/20 09:22:12 [446] BC4J Property jbo.ampool.doampooling='true' -->(Configuration) from System Default
    13/09/20 09:22:12 [447] BC4J Property jbo.ampool.isuseexclusive='true' -->(Configuration) from System Default
    13/09/20 09:22:12 [448] BC4J Property jbo.passivationstore='database' -->(MetaObjectManager) from Client Environment
    13/09/20 09:22:12 [449] BC4J Property jbo.saveforlater='false' -->(SessionImpl) from System Default
    13/09/20 09:22:12 [450] BC4J Property jbo.snapshotstore.undo='persistent' -->(SessionImpl) from Client Environment
    13/09/20 09:22:12 [451] BC4J Property jbo.maxpassivationstacksize='10' -->(SessionImpl) from System Default
    13/09/20 09:22:12 [452] BC4J Property jbo.txn.handleafterpostexc='false' -->(SessionImpl) from System Default
    13/09/20 09:22:12 [453] BC4J Property jbo.connectfailover='true' -->(SessionImpl) from System Default
    13/09/20 09:22:12 [454] BC4J Property jbo.maxpoolcookieage='-1' -->(Configuration) from System Default
    13/09/20 09:22:12 [455] BC4J Property PoolClassName='oracle.apps.fnd.framework.OAApplicationPoolImpl' -->(Configuration) from Client Environment
    13/09/20 09:22:12 [456] BC4J Property jbo.maxpoolsize='5' -->(MetaObjectManager) from Client Environment
    13/09/20 09:22:12 [457] BC4J Property jbo.initpoolsize='0' -->(MetaObjectManager) from System Default
    13/09/20 09:22:12 [458] BC4J Property jbo.poolrequesttimeout='5000' -->(MetaObjectManager) from Client Environment
    13/09/20 09:22:12 [459] BC4J Property jbo.poolmonitorsleepinterval='600000' -->(MetaObjectManager) from System Default
    13/09/20 09:22:12 [460] BC4J Property jbo.poolminavailablesize='5' -->(MetaObjectManager) from System Default
    13/09/20 09:22:12 [461] BC4J Property jbo.poolmaxavailablesize='25' -->(MetaObjectManager) from System Default
    13/09/20 09:22:12 [462] BC4J Property jbo.poolmaxinactiveage='600000' -->(MetaObjectManager) from System Default
    13/09/20 09:22:12 [463] BC4J Property jbo.pooltimetolive='3600000' -->(MetaObjectManager) from System Default
    13/09/20 09:22:12 [464] BC4J Property RELEASE_MODE='Stateful' -->(MetaObjectManager) from System Default
    13/09/20 09:22:12 [465] BC4J Property jbo.assoc.consistent='true' -->(MetaObjectManager) from System Default
    13/09/20 09:22:12 [466] BC4J Property jbo.viewlink.consistent='DEFAULT' -->(MetaObjectManager) from System Default
    13/09/20 09:22:12 [467] BC4J Property jbo.passivation.TrackInsert='true' -->(MetaObjectManager) from System Default
    13/09/20 09:22:12 [468] Skipping empty Property jbo.ViewCriteriaAdapter from System Default
    13/09/20 09:22:12 [469] BC4J Property jbo.SQLBuilder='oracle.apps.fnd.framework.server.OAOracleSQLBuilderImpl' -->(MetaObjectManager) from Client Environment
    13/09/20 09:22:12 [470] BC4J Property jbo.ConnectionPoolManager='oracle.apps.fnd.framework.server.OAConnectionPoolManagerImpl' -->(MetaObjectManager) from Client Environment
    13/09/20 09:22:12 [471] BC4J Property jbo.TypeMapEntries='Oracle' -->(MetaObjectManager) from /oracle/jbo/server/jboserver.properties resource
    13/09/20 09:22:12 [472] Skipping empty Property jbo.sql92.JdbcDriverClass from System Default
    13/09/20 09:22:12 [473] BC4J Property jbo.sql92.LockTrailer='FOR UPDATE' -->(MetaObjectManager) from System Default
    13/09/20 09:22:12 [474] BC4J Property jbo.jdbc.trace='true' -->(MetaObjectManager) from System Property
    13/09/20 09:22:12 [475] BC4J Property jbo.abstract.base.check='true' -->(MetaObjectManager) from System Default
    13/09/20 09:22:12 [476] BC4J Property jbo.assoc.where.early.set='false' -->(MetaObjectManager) from System Default
    13/09/20 09:22:12 [477] BC4J Property jbo.sql92.DbTimeQuery='select sysdate from dual' -->(MetaObjectManager) from System Default
    13/09/20 09:22:12 [478] BC4J Property oracle.jbo.defineColumnLength='as_chars' -->(MetaObjectManager) from System Default
    13/09/20 09:22:12 [479] BC4J Property jbo.jdbc_bytes_conversion='jdbc' -->(MetaObjectManager) from System Default
    13/09/20 09:22:12 [480] Skipping empty Property jbo.tmpdir from System Default
    13/09/20 09:22:12 [481] Skipping empty Property jbo.server.internal_connection from System Default
    13/09/20 09:22:12 [482] Skipping empty Property SessionClass from System Default
    13/09/20 09:22:12 [483] Skipping empty Property TransactionFactory from System Default
    13/09/20 09:22:12 [484] Skipping empty Property jbo.def.mgr.listener from System Default
    13/09/20 09:22:12 [485] BC4J Property jbo.debugoutput='console' -->(Diagnostic) from System Property
    13/09/20 09:22:12 [486] BC4J Property jbo.debug.prefix='DBG: ' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    13/09/20 09:22:12 [487] BC4J Property jbo.logging.show.timing='false' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    13/09/20 09:22:12 [488] BC4J Property jbo.logging.show.function='false' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    13/09/20 09:22:12 [489] BC4J Property jbo.logging.show.level='false' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    13/09/20 09:22:12 [490] BC4J Property jbo.logging.show.linecount='true' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    13/09/20 09:22:12 [491] BC4J Property jbo.logging.trace.threshold='9' -->(Diagnostic) from System Property
    13/09/20 09:22:12 [492] BC4J Property jbo.jdbc.driver.verbose='true' -->(Diagnostic) from System Property
    13/09/20 09:22:12 [493] BC4J Property oracle.home='C:\jDev10g\jdevbin' -->(Diagnostic) from System Property
    13/09/20 09:22:12 [494] Skipping empty Property oc4j.name from System Default
    13/09/20 09:22:12 [495] BC4J Property jbo.ejb.txntimeout='1830' -->(SessionImpl) from System Default
    13/09/20 09:22:12 [496] BC4J Property jbo.ejb.txntype='global' -->(SessionImpl) from System Default
    13/09/20 09:22:12 [497] BC4J Property jbo.ejb.txn.disconnect_on_completion='false' -->(SessionImpl) from System Default
    13/09/20 09:22:12 [498] Skipping empty Property jbo.ejb.useampool from System Default
    13/09/20 09:22:12 [499] Skipping empty Property oracle.jbo.schema from System Default
    13/09/20 09:22:12 [500] BC4J Property jbo.xml.validation='false' -->(MetaObjectManager) from System Default
    13/09/20 09:22:12 [501] BC4J Property ord.RetrievePath='ordDeliverMedia' -->(MetaObjectManager) from System Default
    13/09/20 09:22:12 [502] BC4J Property ord.HttpMaxMemory='102400' -->(MetaObjectManager) from System Default
    13/09/20 09:22:12 [503] Skipping empty Property ord.HttpTempDir from System Default
    13/09/20 09:22:12 [504] BC4J Property ord.wmp.classid='clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95' -->(MetaObjectManager) from System Default
    13/09/20 09:22:12 [505] BC4J Property ord.qp.classid='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' -->(MetaObjectManager) from System Default
    13/09/20 09:22:12 [506] BC4J Property ord.rp.classid='clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA' -->(MetaObjectManager) from System Default
    13/09/20 09:22:12 [507] BC4J Property ord.wmp.codebase='http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701' -->(MetaObjectManager) from System Default
    13/09/20 09:22:12 [508] BC4J Property ord.qp.codebase='http://www.apple.com/qtactivex/qtplugin.cab' -->(MetaObjectManager) from System Default
    13/09/20 09:22:12 [509] Skipping empty Property ord.rp.codebase from System Default
    13/09/20 09:22:12 [510] BC4J Property ord.wmp.plugins.page='http://www.microsoft.com/isapi/redir.dll?prd=windows&sbp=mediaplayer&ar=Media&sba=Plugin&' -->(MetaObjectManager) from System Default
    13/09/20 09:22:12 [511] BC4J Property ord.qp.plugins.page='http://www.apple.com/quicktime/download/' -->(MetaObjectManager) from System Default
    13/09/20 09:22:12 [512] BC4J Property ord.rp.plugins.page='http://www.real.com/player/' -->(MetaObjectManager) from System Default
    13/09/20 09:22:12 [513] BC4J Property jbo.security.enforce='None' -->(SessionImpl) from System Default
    13/09/20 09:22:12 [514] BC4J Property jbo.security.loginmodule='oracle.security.jazn.tools.Admintool' -->(SessionImpl) from System Default
    13/09/20 09:22:12 [515] Skipping empty Property jbo.security.config from System Default
    13/09/20 09:22:12 [516] BC4J Property jbo.server.useNullDbTransaction='true' -->(SessionImpl) from Client Environment
    13/09/20 09:22:12 [517] BC4J Property jbo.domain.reopenblobstream='false' -->(MetaObjectManager) from System Default
    13/09/20 09:22:12 [518] Copying unknown Client property (Sid='1528') to session
    13/09/20 09:22:12 [519] Copying unknown Client property (DBC_FILE_NAME='C:\jDev10g\jdevhome\jdev\dbc_files\secure\EGLDEV2.dbc.dbc') to session
    13/09/20 09:22:12 [520] Copying unknown Client property (ApplicationModuleName='oracle.apps.icx.por.req.server.RequisitionAM') to session
    13/09/20 09:22:12 [521] Copying unknown Client property (DB_HOST_NAME='eglfdbd1.rhb.my') to session
    13/09/20 09:22:12 [522] Copying unknown Client property (OADeveloperMode='1') to session
    13/09/20 09:22:12 [523] Copying unknown Client property (OA_JSP_MODE='Y') to session
    13/09/20 09:22:12 [524] Copying unknown Client property (java.naming.factory.url.pkgs='oracle.oc4j.naming.url') to session
    13/09/20 09:22:12 [525] Copying unknown Client property (ConnectMode='Local') to session
    13/09/20 09:22:12 [526] Copying unknown Client property (COOKIE_ID='qkLJ4a8mNoGGEj4VYXZ9rNoo6N') to session
    13/09/20 09:22:12 [527] Copying unknown Client property (OADiagnostic='1') to session
    13/09/20 09:22:12 [528] Copying unknown Client property (ServerName='172.30.90.61') to session
    13/09/20 09:22:12 [529] Copying unknown Client property (JndiPath='test') to session
    13/09/20 09:22:12 [530] Copying unknown Client property (FNDNAM='APPS') to session
    13/09/20 09:22:12 [531] Copying unknown Client property (ImageBase='OA_MEDIA\') to session
    13/09/20 09:22:12 [532] Copying unknown Client property (jbo.applicationmoduleclassname='oracle.apps.icx.por.req.server.RequisitionAM') to session
    13/09/20 09:22:12 [533] Copying unknown Client property (jbo.jdbc.connectstring='jdbc:oracle:thin:APPLSYSPUB/PUB@(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=eglfdbd1.rhb.my)(PORT=1528)))(CONNECT_DATA=(SID=1528)))') to session
    13/09/20 09:22:12 [534] Copying unknown Client property (GWYUID='APPLSYSPUB/PUB') to session
    13/09/20 09:22:12 [535] Copying unknown Client property (ServerPort='8988') to session
    13/09/20 09:22:12 [536] }} finished loading BC4J properties
    13/09/20 09:22:12 [537] -----------------------------------------------------------
    13/09/20 09:22:12 [538] Connected to Oracle JBO Server - Version: 10.1.3.41.57
    13/09/20 09:22:12 [539] No XML file /oracle/apps/icx/por/req/server/server.xml for metaobject oracle.apps.icx.por.req.server.server
    13/09/20 09:22:12 [540] CSMessageBundle (language base) being initialized
    13/09/20 09:22:12 [541] Cannot Load parent Package : oracle.apps.icx.por.req.server.server
    13/09/20 09:22:12 [542] Business Object Browsing may be unavailable
    13/09/20 09:22:12 [543] Loading from XML file /oracle/apps/icx/por/req/server/RequisitionAM.xml
    13/09/20 09:22:12 [544] Created root application module: 'oracle.apps.icx.por.req.server.RequisitionAM'
    13/09/20 09:22:12 [545] Locale is: 'en_US'
    13/09/20 09:22:12 [546] ApplicationPoolImpl.resourceStateChanged wasn't release related. No notify invoked.
    13/09/20 09:22:12 [547] OAApplicationPoolImpl.setConnectionReleaseLevel was called with isReleased = false, isReserved = false
    13/09/20 09:22:12 [548] mPCollUsePMgr is false
    13/09/20 09:22:12 [549] ViewObjectImpl.mDefaultMaxRowsPerNode is 70
    13/09/20 09:22:12 [550] ViewObjectImpl.mDefaultMaxActiveNodes is 30
    13/09/20 09:22:12 [551] Oracle SQLBuilder: Registered driver: oracle.jdbc.driver.OracleDriver
    13/09/20 09:22:12 [552] import java.util.*;  // JBO-JDBC-INTERACT
    13/09/20 09:22:12 [553] import java.sql.*;  // JBO-JDBC-INTERACT
    13/09/20 09:22:12 [554] import java.io.*;  // JBO-JDBC-INTERACT
    13/09/20 09:22:12 [555] public class JDBCCalls  // JBO-JDBC-INTERACT
    13/09/20 09:22:12 [556] {  // JBO-JDBC-INTERACT
    13/09/20 09:22:12 [557]    public Connection conn = null;  // JBO-JDBC-INTERACT
    13/09/20 09:22:12 [558]    public CallableStatement cStmt = null;  // JBO-JDBC-INTERACT
    13/09/20 09:22:12 [559]    public PreparedStatement pStmt = null;  // JBO-JDBC-INTERACT
    13/09/20 09:22:12 [560]    public Statement stmt = null;  // JBO-JDBC-INTERACT
    13/09/20 09:22:12 [561]    public ResultSet rslt = null;  // JBO-JDBC-INTERACT
    13/09/20 09:22:12 [562]    public static void main(String argv[])  // JBO-JDBC-INTERACT
    13/09/20 09:22:12 [563]    {  // JBO-JDBC-INTERACT
    13/09/20 09:22:12 [564]       DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());  // JBO-JDBC-INTERACT
    13/09/20 09:22:12 [565]       conn = DriverManager.getConnection("jdbc:oracle:thin:APPLSYSPUB/PUB@(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=eglfdbd1.rhb.my)(PORT=1528)))(CONNECT_DATA=(SID=1528)))", /*properties*/);  // JBO-JDBC-INTERACT
    13/09/20 09:22:12 [566]       conn.setAutoCommit(false);  // JBO-JDBC-INTERACT
    13/09/20 09:22:12 [567] Successfully logged in
    13/09/20 09:22:12 [568] JDBCDriverVersion: 10.1.0.5.0
    13/09/20 09:22:12 [569] DatabaseProductName: Oracle
    13/09/20 09:22:12 [570] DatabaseProductVersion: Oracle Database 11g Release 11.1.0.0.0 - Production
    13/09/20 09:22:12 [571] Root application module, oracle.apps.icx.por.req.server.RequisitionAM, was created at 2013-09-20 09:22:12.35
    13/09/20 09:22:12 [572] setConnectionReleaseLevel - Set connection release level to 0
    13/09/20 09:22:12 [573]       cStmt = conn.prepareCall("begin dbms_application_info.set_module(:1, :2); end;");  // JBO-JDBC-INTERACT
    13/09/20 09:22:12 [574]       cStmt = conn.prepareCall("BEGIN mo_global.init(:1); END;");  // JBO-JDBC-INTERACT
    13/09/20 09:22:12 [575] OAPB: Page Securing Expression = ${oa.FunctionSecurity.ICX_POR_SHOPPING_CART}
    13/09/20 09:22:12 [576]
    <ICX_SessionValues_Diagnostics - ICX Cookie = qkLJ4a8mNoGGEj4VYXZ9rNoo6N>: WebRequestUtil.validateContext is called.
    13/09/20 09:22:12 [577]
    <ICX_SessionValues_Diagnostics - ICX Cookie = qkLJ4a8mNoGGEj4VYXZ9rNoo6N>: WebRequestUtil.validateContext returned status = VALID.
    ICX Session Values after WebRequestUtil.validateContext:
    ===========================================================================
    <ICX_SessionValues_Diagnostics - ICX Cookie = qkLJ4a8mNoGGEj4VYXZ9rNoo6N>:
    Current ICX Session (Oracle Applications User Session) Values:
    1. User ID (DB, ICX_SESSIONS) = 1118
    2. Responsibility ID (DB, ICX_SESSIONS) = 21584
    3. Responsibility Application ID (DB, ICX_SESSIONS) = 178
    4. Org ID (DB, ICX_SESSIONS) = 88
    5. Org ID (DB, CLIENT_INFO) = -1
    6. Org ID (ProfileStore.getProfile) = 88
    7. Org ID (ProfileStore.getSpecificProfile with new ICX_SESSIONS values) = 88
    8. Employee ID (DB, FND_GLOBAL.EMPLOYEE_ID) = 157
    9. Employee ID (AppsContext.getFNDGlobal) = 157
    10. Function ID (DB, ICX_SESSIONS) = -1
    11. Security Group ID (DB, ICX_SESSIONS) = 0
    ===========================================================================
    13/09/20 09:22:12 [578]       cStmt = conn.prepareCall("BEGIN mo_global.init(:1); END;");  // JBO-JDBC-INTERACT
    13/09/20 09:22:12 [579] New Language Code = null
    13/09/20 09:22:12 [580] Current Language Code = US
    13/09/20 09:22:12 [581] _1>#q computed SQLStmtBufLen: 64, actual=24, storing=54
    13/09/20 09:22:12 [582] select sysdate from dual
    13/09/20 09:22:12 [583]       pStmt = conn.prepareStatement("select sysdate from dual");  // JBO-JDBC-INTERACT
    13/09/20 09:22:12 [584] *** createViewAttributeDefImpls: oracle.jdbc.driver.T4CPreparedStatement@2bc102
    13/09/20 09:22:12 [585] Bind params for ViewObject: _1
    13/09/20 09:22:12 [586] Column count: 1
    13/09/20 09:22:12 [587] Column count: 1
    13/09/20 09:22:12 [588] ViewObject: _1 Created new QUERY statement
    13/09/20 09:22:12 [589] _1>#q old SQLStmtBufLen: 54, actual=24, storing=54
    13/09/20 09:22:12 [590] select sysdate from dual
    13/09/20 09:22:12 [591]       pStmt = conn.prepareStatement("select sysdate from dual");  // JBO-JDBC-INTERACT
    13/09/20 09:22:12 [592] Bind params for ViewObject: _1
    13/09/20 09:22:12 [593] ViewObject: _1 close prepared statements...
    13/09/20 09:22:12 [594]       pStmt.close();  // JBO-JDBC-INTERACT
    13/09/20 09:22:12 [595] ##### QueryCollection.finl no RowFilter
    13/09/20 09:22:13 [596] Loading from XML file /oracle/apps/ak/region/server/server.xml
    13/09/20 09:22:13 [597] Loading from individual XML files
    13/09/20 09:22:13 [598] Loading the Containees for the Package 'oracle.apps.ak.region.server.server'.
    13/09/20 09:22:13 [599] Loading from XML file /oracle/apps/ak/region/server/AkAmParameterRegistryVO.xml
    13/09/20 09:22:13 [600] ViewDef: oracle.apps.ak.region.server.AkAmParameterRegistryVO using glue class
    13/09/20 09:22:13 [601] Column count: 2
    13/09/20 09:22:13 [602] ViewObject: AkAmParameterRegistryVO Created new QUERY statement
    13/09/20 09:22:13 [603] AkAmParameterRegistryVO>#q computed SQLStmtBufLen: 140, actual=100, storing=130
    13/09/20 09:22:13 [604] select PARAM_NAME, PARAM_SOURCE
    from AK_AM_PARAMETER_REGISTRY
    where APPLICATIONMODULE_DEFN_NAME = :1
    13/09/20 09:22:13 [605]       pStmt = conn.prepareStatement("select PARAM_NAME, PARAM_SOURCE
    from AK_AM_PARAMETER_REGISTRY
    where APPLICATIONMODULE_DEFN_NAME = :1");  // JBO-JDBC-INTERACT
    13/09/20 09:22:13 [606] Bind params for ViewObject: AkAmParameterRegistryVO
    13/09/20 09:22:13 [607] Binding param 1: oracle.apps.icx.por.req.server.RequisitionAM
    13/09/20 09:22:13 [608]       pStmt.setObject(1, "oracle.apps.icx.por.req.server.RequisitionAM");  // JBO-JDBC-INTERACT
    13/09/20 09:22:13 [609] Column count: 4
    13/09/20 09:22:13 [610] ViewObject: FndApplicationVO_2 close prepared statements...
    13/09/20 09:22:13 [611] ViewObject: FndApplicationVO_2 Created new QUERY statement
    13/09/20 09:22:13 [612] FndApplicationVO_2>#q computed SQLStmtBufLen: 277, actual=259, storing=289
    13/09/20 09:22:13 [613] SELECT * FROM (select application_short_name||'  '||to_char(application_id)||'  '||application_name application, application_id, application_short_name, application_name
    from fnd_application_vl) QRSLT  WHERE (application_id=:1) ORDER BY application_short_name
    13/09/20 09:22:13 [614]       pStmt = conn.prepareStatement("SELECT * FROM (select application_short_name||'  '||to_char(application_id)||'  '||application_name application, application_id, application_short_name, application_name
    from fnd_application_vl) QRSLT  WHERE (application_id=:1) ORDER BY application_short_name");  // JBO-JDBC-INTERACT
    13/09/20 09:22:13 [615] Bind params for ViewObject: FndApplicationVO_2
    13/09/20 09:22:13 [616] Binding param 1: 0
    13/09/20 09:22:13 [617]       pStmt.setObject(1, new Integer(0));  // JBO-JDBC-INTERACT
    13/09/20 09:22:13 [618] Could not find method:getApplicationShortName in oracle.apps.fnd.framework.server.OAViewRowImpl__Glue__ - oracle.apps.fnd.framework.server.OAViewRowImpl__Glue__.getApplicationShortName()
    13/09/20 09:22:13 [619] Could not find method:getApplicationShortName in oracle.apps.fnd.framework.server.OAViewRowImpl - oracle.apps.fnd.framework.server.OAViewRowImpl.getApplicationShortName()
    13/09/20 09:22:13 [620] Could not find method:getApplicationShortName in oracle.jbo.server.OAJboViewRowImpl - oracle.jbo.server.OAJboViewRowImpl.getApplicationShortName()
    13/09/20 09:22:13 [621] Could not find method:getApplicationShortName in oracle.jbo.server.ViewRowServiceImpl - oracle.jbo.server.ViewRowServiceImpl.getApplicationShortName()
    13/09/20 09:22:13 [622] Could not find method:setApplicationShortName in oracle.apps.fnd.framework.server.OAViewRowImpl__Glue__ - oracle.apps.fnd.framework.server.OAViewRowImpl__Glue__.setApplicationShortName(java.lang.String)
    13/09/20 09:22:13 [623] Could not find method:setApplicationShortName in oracle.apps.fnd.framework.server.OAViewRowImpl - oracle.apps.fnd.framework.server.OAViewRowImpl.setApplicationShortName(java.lang.String)
    13/09/20 09:22:13 [624] Could not find method:setApplicationShortName in oracle.jbo.server.OAJboViewRowImpl - oracle.jbo.server.OAJboViewRowImpl.setApplicationShortName(java.lang.String)
    13/09/20 09:22:13 [625] Could not find method:setApplicationShortName in oracle.jbo.server.ViewRowServiceImpl - oracle.jbo.server.ViewRowServiceImpl.setApplicationShortName(java.lang.String)
    13/09/20 09:22:13 [626] ViewObject: FndApplicationVO_2 close prepared statements...
    13/09/20 09:22:13 [627]       pStmt.close();  // JBO-JDBC-INTERACT
    13/09/20 09:22:13 [628] No XML file /oracle/apps/icx/por/req/server/server.xml for metaobject oracle.apps.icx.por.req.server.server
    13/09/20 09:22:13 [629] Cannot Load parent Package : oracle.apps.icx.por.req.server.server
    13/09/20 09:22:13 [630] Business Object Browsing may be unavailable
    13/09/20 09:22:13 [631] ##### QueryCollection.finl no RowFilter
    13/09/20 09:22:13 [632] Loading from XML file /oracle/apps/icx/por/req/server/PoRequisitionLinesVO.xml
    13/09/20 09:22:13 [633] Loading from XML file /oracle/apps/icx/por/schema/server/server.xml
    13/09/20 09:22:13 [634] Loading from individual XML files
    13/09/20 09:22:13 [635] Loading the Containees for the Package 'oracle.apps.icx.por.schema.server.server'.
    13/09/20 09:22:13 [636] Loading from XML file /oracle/apps/icx/por/schema/server/PoRequisitionLineEO.xml
    13/09/20 09:22:13 [637] Loading from XML file /oracle/apps/icx/por/schema/server/PoRequisitionLineEO.xml
    13/09/20 09:22:13 [638] Loading from XML file /oracle/apps/icx/por/schema/server/PoRequisitionHeaderEO.xml
    13/09/20 09:22:13 [639] Loading from XML file /oracle/apps/icx/por/schema/server/PorItemAttributeValueEO.xml
    13/09/20 09:22:13 [640] ViewRowSetImpl's jbo.viewlink.consistent = default (2)
    13/09/20 09:22:13 [641] No XML file /oracle/apps/icx/por/req/server/server.xml for metaobject oracle.apps.icx.por.req.server.server
    13/09/20 09:22:13 [642] Cannot Load parent Package : oracle.apps.icx.por.req.server.server
    13/09/20 09:22:13 [643] Business Object Browsing may be unavailable
    13/09/20 09:22:13 [644] Loading from XML file /oracle/apps/icx/por/req/server/PoRequisitionHeadersVO.xml
    13/09/20 09:22:13 [645] No XML file /oracle/apps/icx/por/req/server/server.xml for metaobject oracle.apps.icx.por.req.server.server
    13/09/20 09:22:13 [646] Cannot Load parent Package : oracle.apps.icx.por.req.server.server
    13/09/20 09:22:13 [647] Business Object Browsing may be unavailable
    13/09/20 09:22:13 [648] Loading from XML file /oracle/apps/icx/por/req/server/ReqHeaderToReqLinesVL.xml
    13/09/20 09:22:13 [649] Loading from XML file /oracle/apps/icx/por/schema/server/ReqHeaderToReqLinesAO.xml
    13/09/20 09:22:13 [650] No XML file /oracle/apps/icx/por/req/server/server.xml for metaobject oracle.apps.icx.por.req.server.server
    13/09/20 09:22:13 [651] Cannot Load parent Package : oracle.apps.icx.por.req.server.server
    13/09/20 09:22:13 [652] Business Object Browsing may be unavailable
    13/09/20 09:22:13 [653] Loading from XML file /oracle/apps/icx/por/req/server/ReqLineToDistributionsVL.xml
    13/09/20 09:22:13 [654] No XML file /oracle/apps/icx/por/req/server/server.xml for metaobject oracle.apps.icx.por.req.server.server
    13/09/20 09:22:13 [655] Cannot Load parent Package : oracle.apps.icx.por.req.server.server
    13/09/20 09:22:13 [656] Business Object Browsing may be unavailable
    13/09/20 09:22:13 [657] Loading from XML file /oracle/apps/icx/por/req/server/PoReqDistributionsVO.xml
    13/09/20 09:22:13 [658] Loading from XML file /oracle/apps/icx/por/schema/server/PoReqDistributionEO.xml
    13/09/20 09:22:13 [659] Loading from XML file /oracle/apps/icx/por/schema/server/PoReqDistributionEO.xml
    13/09/20 09:22:13 [660] Loading from XML file /oracle/apps/icx/por/schema/server/ReqLineToDistributionsAO.xml
    13/09/20 09:22:13 [661] No XML file /oracle/apps/icx/por/req/server/server.xml for metaobject oracle.apps.icx.por.req.server.server
    13/09/20 09:22:13 [662] Cannot Load parent Package : oracle.apps.icx.por.req.server.server
    13/09/20 09:22:13 [663] Business Object Browsing may be unavailable
    13/09/20 09:22:13 [664] Loading from XML file /oracle/apps/icx/por/req/server/ReqLineToInfoTemplatesVL.xml
    13/09/20 09:22:13 [665] No XML file /oracle/apps/icx/por/req/server/server.xml for metaobject oracle.apps.icx.por.req.server.server
    13/09/20 09:22:13 [666] Cannot Load parent Package : oracle.apps.icx.por.req.server.server
    13/09/20 09:22:13 [667] Business Object Browsing may be unavailable
    13/09/20 09:22:13 [668] Loading from XML file /oracle/apps/icx/por/req/server/PorInfoTemplatesVO.xml
    13/09/20 09:22:13 [669] Loading from XML file /oracle/apps/icx/por/schema/server/PorTemplateInfoEO.xml
    13/09/20 09:22:13 [670] Loading from XML file /oracle/apps/icx/por/schema/server/PorTemplateInfoEO.xml
    13/09/20 09:22:13 [671] Loading from XML file /oracle/apps/icx/por/schema/server/ReqLineToInfoTemplatesAO.xml
    13/09/20 09:22:13 [672] No XML file /oracle/apps/icx/por/req/server/server.xml for metaobject oracle.apps.icx.por.req.server.server
    13/09/20 09:22:13 [673] Cannot Load parent Package : oracle.apps.icx.por.req.server.server
    13/09/20 09:22:13 [674] Business Object Browsing may be unavailable
    13/09/20 09:22:13 [675] Loading from XML file /oracle/apps/icx/por/req/server/ReqLineToOneTimeLocationsVL.xml
    13/09/20 09:22:13 [676] No XML file /oracle/apps/icx/por/req/server/server.xml for metaobject oracle.apps.icx.por.req.server.server
    13/09/20 09:22:13 [677] Cannot Load parent Package : oracle.apps.icx.por.req.server.server
    13/09/20 09:22:13 [678] Business Object Browsing may be unavailable
    13/09/20 09:22:13 [679] Loading from XML file /oracle/apps/icx/por/req/server/OneTimeLocationsVO.xml
    13/09/20 09:22:13 [680] Loading from XML file /oracle/apps/icx/por/schema/server/ReqLineToItemAttrValuesAO.xml
    13/09/20 09:22:13 [681] No XML file /oracle/apps/icx/por/req/server/server.xml for metaobject oracle.apps.icx.por.req.server.server
    13/09/20 09:22:13 [682] Cannot Load parent Package : oracle.apps.icx.por.req.server.server
    13/09/20 09:22:13 [683] Business Object Browsing may be unavailable
    13/09/20 09:22:13 [684] Loading from XML file /oracle/apps/icx/por/req/server/ReqLineToReqSuppliersVL.xml
    13/09/20 09:22:13 [685] No XML file /oracle/apps/icx/por/req/server/server.xml for metaobject oracle.apps.icx.por.req.server.server
    13/09/20 09:22:13 [686] Cannot Load parent Package : oracle.apps.icx.por.req.server.server
    13/09/20 09:22:13 [687] Business Object Browsing may be unavailable
    13/09/20 09:22:13 [688] Loading from XML file /oracle/apps/icx/por/req/server/PoReqSuppliersVO.xml
    13/09/20 09:22:13 [689] Loading from XML file /oracle/apps/icx/por/schema/server/PoRequisitionSupplierEO.xml
    13/09/20 09:22:13 [690] Loading from XML file /oracle/apps/icx/por/schema/server/ReqLineToReqSuppliersAO.xml
    13/09/20 09:22:13 [691] addBreadCrumb: N
    13/09/20 09:22:14 [692] No XML file /oracle/apps/icx/por/req/server/server.xml for metaobject oracle.apps.icx.por.req.server.server
    13/09/20 09:22:14 [693] Cannot Load parent Package : oracle.apps.icx.por.req.server.server
    13/09/20 09:22:14 [694] Business Object Browsing may be unavailable
    13/09/20 09:22:14 [695] Loading from XML file /oracle/apps/icx/por/req/server/ActiveReqHeaderVO.xml
    13/09/20 09:22:14 [696] Column count: 1
    13/09/20 09:22:14 [697] ViewObject: ActiveReqHeaderVO Created new QUERY statement
    13/09/20 09:22:14 [698] ActiveReqHeaderVO>#q computed SQLStmtBufLen: 180, actual=140, storing=170
    13/09/20 09:22:14 [699] SELECT requisition_header_id
    FROM po_requisition_headers_all
    WHERE active_shopping_cart_flag = 'Y'
    AND last_updated_by = :1
    AND org_id = :2
    13/09/20 09:22:14 [700]       pStmt = conn.prepareStatement("SELECT requisition_header_id
    FROM po_requisition_headers_all
    WHERE active_shopping_cart_flag = 'Y'
    AND last_updated_by = :1
    AND org_id = :2");  // JBO-JDBC-INTERACT
    13/09/20 09:22:14 [701] Bind params for ViewObject: ActiveReqHeaderVO
    13/09/20 09:22:14 [702] Binding param 1: 1118
    13/09/20 09:22:14 [703]       pStmt.setObject(1, new Integer(1118));  // JBO-JDBC-INTERACT
    13/09/20 09:22:14 [704] Binding param 2: 88
    13/09/20 09:22:14 [705]       pStmt.setObject(2, new Integer(88));  // JBO-JDBC-INTERACT
    13/09/20 09:22:14 [706] Column count: 84
    13/09/20 09:22:14 [707] ViewObject: PoRequisitionHeadersVO Created new QUERY statement
    13/09/20 09:22:14 [708] PoRequisitionHeadersVO>#q computed SQLStmtBufLen: 3336, actual=3246, storing=3276
    13/09/20 09:22:14 [709] SELECT PoRequisitionHeaderEO.PROGRAM_UPDATE_DATE,         PoRequisitionHeaderEO.INTERFACE_SOURCE_CODE,          PoRequisitionHeaderEO.INTERFACE_SOURCE_LINE_ID,          PoRequisitionHeaderEO.CLOSED_CODE,         PoRequisitionHeaderEO.ORG_ID,          PoRequisitionHeaderEO.DESCRIPTION,         PoRequisitionHeaderEO.AUTHORIZATION_STATUS,          PoRequisitionHeaderEO.NOTE_TO_AUTHORIZER,         PoRequisitionHeaderEO.TYPE_LOOKUP_CODE,          PoRequisitionHeaderEO.TRANSFERRED_TO_OE_FLAG,          PoRequisitionHeaderEO.ATTRIBUTE_CATEGORY,         PoRequisitionHeaderEO.ON_LINE_FLAG,          PoRequisitionHeaderEO.PRELIMINARY_RESEARCH_FLAG,          PoRequisitionHeaderEO.RESEARCH_COMPLETE_FLAG,         PoRequisitionHeaderEO.PREPARER_FINISHED_FLAG,          PoRequisitionHeaderEO.PREPARER_FINISHED_DATE,          PoRequisitionHeaderEO.AGENT_RETURN_FLAG,         PoRequisitionHeaderEO.AGENT_RETURN_NOTE,          PoRequisitionHeaderEO.CANCEL_FLAG,         PoRequisitionHeaderEO.USSGL_TRANSACTION_CODE,          PoRequisitionHeaderEO.GOVERNMENT_CONTEXT,         PoRequisitionHeaderEO.REQUEST_ID,          PoRequisitionHeaderEO.PROGRAM_APPLICATION_ID,          PoRequisitionHeaderEO.PROGRAM_ID,         PoRequisitionHeaderEO.REQUISITION_HEADER_ID,          PoRequisitionHeaderEO.PREPARER_ID,         PoRequisitionHeaderEO.LAST_UPDATE_DATE,          PoRequisitionHeaderEO.LAST_UPDATED_BY,         PoRequisitionHeaderEO.SEGMENT1,          PoRequisitionHeaderEO.SUMMARY_FLAG,         PoRequisitionHeaderEO.ENABLED_FLAG,          PoRequisitionHeaderEO.START_DATE_ACTIVE,         PoRequisitionHeaderEO.END_DATE_ACTIVE,          PoRequisitionHeaderEO.LAST_UPDATE_LOGIN,         PoRequisitionHeaderEO.CREATION_DATE,          PoRequisitionHeaderEO.CREATED_BY,         PoRequisitionHeaderEO.WF_ITEM_TYPE,          PoRequisitionHeaderEO.WF_ITEM_KEY,         PoRequisitionHeaderEO.EMERGENCY_PO_NUM,          PoRequisitionHeaderEO.PCARD_ID,         PoRequisitionHeaderEO.APPS_SOURCE_CODE,          PoRequisitionHeaderEO.SEGMENT2,         PoRequisitionHeaderEO.SEGMENT3,          PoRequisitionHeaderEO.SEGMENT4,         PoRequisitionHeaderEO.SEGMENT5,          PoRequisitionHeaderEO.ATTRIBUTE1,         PoRequisitionHeaderEO.ATTRIBUTE2,          PoRequisitionHeaderEO.ATTRIBUTE3,         PoRequisitionHeaderEO.ATTRIBUTE4,          PoRequisitionHeaderEO.ATTRIBUTE5,         PoRequisitionHeaderEO.ATTRIBUTE6,          PoRequisitionHeaderEO.ATTRIBUTE7,         PoRequisitionHeaderEO.ATTRIBUTE8,          PoRequisitionHeaderEO.ATTRIBUTE9,         PoRequisitionHeaderEO.ATTRIBUTE10,          PoRequisitionHeaderEO.ATTRIBUTE11,         PoRequisitionHeaderEO.ATTRIBUTE12,          PoRequisitionHeaderEO.ATTRIBUTE13,         PoRequisitionHeaderEO.ATTRIBUTE14,          PoRequisitionHeaderEO.ATTRIBUTE15,         PoRequisitionHeaderEO.CBC_ACCOUNTING_DATE,          PoRequisitionHeaderEO.CHANGE_PENDING_FLAG,         PoRequisitionHeaderEO.CONTRACTOR_REQUISITION_FLAG,          PoRequisitionHeaderEO.ACTIVE_SHOPPING_CART_FLAG,          PoRequisitionHeaderEO.CONTRACTOR_STATUS,         PoRequisitionHeaderEO.SUPPLIER_NOTIFIED_FLAG,          PoRequisitionHeaderEO.EMERGENCY_PO_ORG_ID FROM PO_REQUISITION_HEADERS_ALL PoRequisitionHeaderEO WHERE requisition_header_id = :1
    13/09/20 09:22:14 [710]       pStmt = conn.prepareStatement("SELECT PoRequisitionHeaderEO.PROGRAM_UPDATE_DATE,         PoRequisitionHeaderEO.INTERFACE_SOURCE_CODE,          PoRequisitionHeaderEO.INTERFACE_SOURCE_LINE_ID,          PoRequisitionHeaderEO.CLOSED_CODE,         PoRequisitionHeaderEO.ORG_ID,          PoRequisitionHeaderEO.DESCRIPTION,         PoRequisitionHeaderEO.AUTHORIZATION_STATUS,          PoRequisitionHeaderEO.NOTE_TO_AUTHORIZER,         PoRequisitionHeaderEO.TYPE_LOOKUP_CODE,          PoRequisitionHeaderEO.TRANSFERRED_TO_OE_FLAG,          PoRequisitionHeaderEO.ATTRIBUTE_CATEGORY,         PoRequisitionHeaderEO.ON_LINE_FLAG,          PoRequisitionHeaderEO.PRELIMINARY_RESEARCH_FLAG,          PoRequisitionHeaderEO.RESEARCH_COMPLETE_FLAG,         PoRequisitionHeaderEO.PREPARER_FINISHED_FLAG,          PoRequisitionHeaderEO.PREPARER_FINISHED_DATE,          PoRequisitionHeaderEO.AGENT_RETURN_FLAG,         PoRequisitionHeaderEO.AGENT_RETURN_NOTE,          PoRequisitionHeaderEO.CANCEL_FLAG,         PoRequisitionHeaderEO.USSGL_TRANSACTION_CODE,          PoRequisitionHeaderEO.GOVERNMENT_CONTEXT,         PoRequisitionHeaderEO.REQUEST_ID,          PoRequisitionHeaderEO.PROGRAM_APPLICATION_ID,          PoRequisitionHeaderEO.PROGRAM_ID,         PoRequisitionHeaderEO.REQUISITION_HEADER_ID,          PoRequisitionHeaderEO.PREPARER_ID,         PoRequisitionHeaderEO.LAST_UPDATE_DATE,          PoRequisitionHeaderEO.LAST_UPDATED_BY,         PoRequisitionHeaderEO.SEGMENT1,          PoRequisitionHeaderEO.SUMMARY_FLAG,         PoRequisitionHeaderEO.ENABLED_FLAG,          PoRequisitionHeaderEO.START_DATE_ACTIVE,         PoRequisitionHeaderEO.END_DATE_ACTIVE,          PoRequisitionHeaderEO.LAST_UPDATE_LOGIN,         PoRequisitionHeaderEO.CREATION_DATE,          PoRequisitionHeaderEO.CREATED_BY,         PoRequisitionHeaderEO.WF_ITEM_TYPE,          PoRequisitionHeaderEO.WF_ITEM_KEY,         PoRequisitionHeaderEO.EMERGENCY_PO_NUM,          PoRequisitionHeaderEO.PCARD_ID,         PoRequisitionHeaderEO.APPS_SOURCE_CODE,          PoRequisitionHeaderEO.SEGMENT2,         PoRequisitionHeaderEO.SEGMENT3,          PoRequisitionHeaderEO.SEGMENT4,         PoRequisitionHeaderEO.SEGMENT5,          PoRequisitionHeaderEO.ATTRIBUTE1,         PoRequisitionHeaderEO.ATTRIBUTE2,          PoRequisitionHeaderEO.ATTRIBUTE3,         PoRequisitionHeaderEO.ATTRIBUTE4,          PoRequisitionHeaderEO.ATTRIBUTE5,         PoRequisitionHeaderEO.ATTRIBUTE6,          PoRequisitionHeaderEO.ATTRIBUTE7,         PoRequisitionHeaderEO.ATTRIBUTE8,          PoRequisitionHeaderEO.ATTRIBUTE9,         PoRequisitionHeaderEO.ATTRIBUTE10,          PoRequisitionHeaderEO.ATTRIBUTE11,         PoRequisitionHeaderEO.ATTRIBUTE12,          PoRequisitionHeaderEO.ATTRIBUTE13,         PoRequisitionHeaderEO.ATTRIBUTE14,          PoRequisitionHeaderEO.ATTRIBUTE15,         PoRequisitionHeaderEO.CBC_ACCOUNTING_DATE,          PoRequisitionHeaderEO.CHANGE_PENDING_FLAG,         PoRequisitionHeaderEO.CONTRACTOR_REQUISITION_FLAG,          PoRequisitionHeaderEO.ACTIVE_SHOPPING_CART_FLAG,          PoRequisitionHeaderEO.CONTRACTOR_STATUS,         PoRequisitionHeaderEO.SUPPLIER_NOTIFIED_FLAG,          PoRequisitionHeaderEO.EMERGENCY_PO_ORG_ID FROM PO_REQUISITION_HEADERS_ALL PoRequisitionHeaderEO WHERE requisition_header_id = :1");  // JBO-JDBC-INTERACT
    13/09/20 09:22:14 [711] Bind params for ViewObject: PoRequisitionHeadersVO
    13/09/20 09:22:14 [712] Binding param 1: 6122
    13/09/20 09:22:14 [713] // ERROR:  Unknown data type oracle.jbo.domain.Number    // JBO-JDBC-INTERACT
    13/09/20 09:22:14 [714]       pStmt.setObject(1, "6122");  // JBO-JDBC-INTERACT
    13/09/20 09:22:14 [715] Column count: 430
    13/09/20 09:22:14 [716] ViewObject: PoRequisitionLinesVO close prepared statements...
    13/09/20 09:22:14 [717] ViewObject: PoRequisitionLinesVO Created new QUERY statement
    13/09/20 09:22:14 [718] PoRequisitionLinesVO>#q computed SQLStmtBufLen: 9060, actual=8966, storing=8996
    13/09/20 09:22:14 [719] SELECT PoRequisitionLineEO.REQUISITION_LINE_ID,         PoRequisitionLineEO.REQUISITION_HEADER_ID,         PoRequisitionLineEO.LINE_NUM,         PoRequisitionLineEO.LAST_UPDATE_DATE,         PoRequisitionLineEO.LAST_UPDATED_BY,         PoRequisitionLineEO.LAST_UPDATE_LOGIN,         PoRequisitionLineEO.CREATION_DATE,         PoRequisitionLineEO.CREATED_BY,         PoRequisitionLineEO.DELIVER_TO_LOCATION_ID,         PoRequisitionLineEO.TO_PERSON_ID,         PoRequisitionLineEO.ITEM_DESCRIPTION,         PoRequisitionLineEO.CATEGORY_ID,         PoRequisitionLineEO.UNIT_MEAS_LOOKUP_CODE,         PoRequisitionLineEO.UNIT_PRICE,         PoRequisitionLineEO.QUANTITY,         PoRequisitionLineEO.LINE_TYPE_ID,         PoRequisitionLineEO.SOURCE_TYPE_CODE,         PoRequisitionLineEO.ITEM_ID,         PoRequisitionLineEO.ITEM_REVISION,         PoRequisitionLineEO.QUANTITY_DELIVERED,         PoRequisitionLineEO.SUGGESTED_BUYER_ID,         PoRequisitionLineEO.ENCUMBERED_FLAG,         PoRequisitionLineEO.RFQ_REQUIRED_FLAG,         PoRequisitionLineEO.NEED_BY_DATE,         PoRequisitionLineEO.LINE_LOCATION_ID,         PoRequisitionLineEO.MODIFIED_BY_AGENT_FLAG,         PoRequisitionLineEO.PARENT_REQ_LINE_ID,         PoRequisitionLineEO.JUSTIFICATION,         PoRequisitionLineEO.NOTE_TO_AGENT,         PoRequisitionLineEO.NOTE_TO_RECEIVER,         PoRequisitionLineEO.PURCHASING_AGENT_ID,         PoRequisitionLineEO.DOCUMENT_TYPE_CODE,         PoRequisitionLineEO.BLANKET_PO_HEADER_ID,         PoRequisitionLineEO.BLANKET_PO_LINE_NUM,         PoRequisitionLineEO.CURRENCY_CODE,         PoRequisitionLineEO.RATE_TYPE,         PoRequisitionLineEO.RATE_DATE,         PoRequisitionLineEO.RATE,         PoRequisitionLineEO.CURRENCY_UNIT_PRICE,         PoRequisitionLineEO.SUGGESTED_VENDOR_NAME,         PoRequisitionLineEO.SUGGESTED_VENDOR_LOCATION,         PoRequisitionLineEO.SUGGESTED_VENDOR_CONTACT,         PoRequisitionLineEO.SUGGESTED_VENDOR_PHONE,         PoRequisitionLineEO.SUGGESTED_VENDOR_PRODUCT_CODE,         PoRequisitionLineEO.UN_NUMBER_ID,         PoRequisitionLineEO.HAZARD_CLASS_ID,         PoRequisitionLineEO.MUST_USE_SUGG_VENDOR_FLAG,         PoRequisitionLineEO.REFERENCE_NUM,         PoRequisitionLineEO.ON_RFQ_FLAG,         PoRequisitionLineEO.URGENT_FLAG,         PoRequisitionLineEO.CANCEL_FLAG,         PoRequisitionLineEO.SOURCE_ORGANIZATION_ID,         PoRequisitionLineEO.SOURCE_SUBINVENTORY,         PoRequisitionLineEO.DESTINATION_TYPE_CODE,         PoRequisitionLineEO.DESTINATION_ORGANIZATION_ID,         PoRequisitionLineEO.DESTINATION_SUBINVENTORY,         PoRequisitionLineEO.QUANTITY_CANCELLED,         PoRequisitionLineEO.CANCEL_DATE,         PoRequisitionLineEO.CANCEL_REASON,         PoRequisitionLineEO.CLOSED_CODE,         PoRequisitionLineEO.AGENT_RETURN_NOTE,         PoRequisitionLineEO.CHANGED_AFTER_RESEARCH_FLAG,         PoRequisitionLineEO.VENDOR_ID,         PoRequisitionLineEO.VENDOR_SITE_ID,         PoRequisitionLineEO.VENDOR_CONTACT_ID,         PoRequisitionLineEO.RESEARCH_AGENT_ID,         PoRequisitionLineEO.ON_LINE_FLAG,         PoRequisitionLineEO.WIP_ENTITY_ID,         PoRequisitionLineEO.WIP_LINE_ID,         PoRequisitionLineEO.WIP_REPETITIVE_SCHEDULE_ID,         PoRequisitionLineEO.WIP_OPERATION_SEQ_NUM,         PoRequisitionLineEO.WIP_RESOURCE_SEQ_NUM,         PoRequisitionLineEO.ATTRIBUTE_CATEGORY,         PoRequisitionLineEO.DESTINATION_CONTEXT,         PoRequisitionLineEO.INVENTORY_SOURCE_CONTEXT,         PoRequisitionLineEO.VENDOR_SOURCE_CONTEXT,         PoRequisitionLineEO.BOM_RESOURCE_ID,         PoRequisitionLineEO.REQUEST_ID,         PoRequisitionLineEO.PROGRAM_APPLICATION_ID,         PoRequisitionLineEO.PROGRAM_ID,         PoRequisitionLineEO.PROGRAM_UPDATE_DATE,         PoRequisitionLineEO.USSGL_TRANSACTION_CODE,         PoRequisitionLineEO.GOVERNMENT_CONTEXT,         PoRequisitionLineEO.CLOSED_REASON,         PoRequisitionLineEO.CLOSED_DATE,         PoRequisitionLineEO.TRANSACTION_REASON_CODE,         PoRequisitionLineEO.QUANTITY_RECEIVED,         PoRequisitionLineEO.SOURCE_REQ_LINE_ID,         PoRequisitionLineEO.ORG_ID,         PoRequisitionLineEO.KANBAN_CARD_ID,         PoRequisitionLineEO.CATALOG_TYPE,         PoRequisitionLineEO.CATALOG_SOURCE,         PoRequisitionLineEO.MANUFACTURER_ID,         PoRequisitionLineEO.MANUFACTURER_NAME,         PoRequisitionLineEO.MANUFACTURER_PART_NUMBER,         PoRequisitionLineEO.REQUESTER_EMAIL,         PoRequisitionLineEO.REQUESTER_FAX,         PoRequisitionLineEO.REQUESTER_PHONE,         PoRequisitionLineEO.UNSPSC_CODE,         PoRequisitionLineEO.OTHER_CATEGORY_CODE,         PoRequisitionLineEO.SUPPLIER_DUNS,         PoRequisitionLineEO.TAX_STATUS_INDICATOR,         PoRequisitionLineEO.PCARD_FLAG,         PoRequisitionLineEO.NEW_SUPPLIER_FLAG,         PoRequisitionLineEO.AUTO_RECEIVE_FLAG,         PoRequisitionLineEO.TAX_USER_OVERRIDE_FLAG,         PoRequisitionLineEO.TAX_CODE_ID,         PoRequisitionLineEO.NOTE_TO_VENDOR,         PoRequisitionLineEO.OKE_CONTRACT_VERSION_ID,         PoRequisitionLineEO.OKE_CONTRACT_HEADER_ID,         PoRequisitionLineEO.ITEM_SOURCE_ID,         PoRequisitionLineEO.SUPPLIER_REF_NUMBER,         PoRequisitionLineEO.SECONDARY_UNIT_OF_MEASURE,         PoRequisitionLineEO.SECONDARY_QUANTITY,         PoRequisitionLineEO.PREFERRED_GRADE,         PoRequisitionLineEO.SECONDARY_QUANTITY_RECEIVED,         PoRequisitionLineEO.SECONDARY_QUANTITY_CANCELLED,         PoRequisitionLineEO.AUCTION_HEADER_ID,         PoRequisitionLineEO.AUCTION_DISPLAY_NUMBER,         PoRequisitionLineEO.AUCTION_LINE_NUMBER,         PoRequisitionLineEO.REQS_IN_POOL_FLAG,         PoRequisitionLineEO.VMI_FLAG,         PoRequisitionLineEO.ATTRIBUTE1,         PoRequisitionLineEO.ATTRIBUTE2,         PoRequisitionLineEO.ATTRIBUTE3,         PoRequisitionLineEO.ATTRIBUTE4,         PoRequisitionLineEO.ATTRIBUTE5,         PoRequisitionLineEO.ATTRIBUTE6,         PoRequisitionLineEO.ATTRIBUTE7,         PoRequisitionLineEO.ATTRIBUTE8,         PoRequisitionLineEO.ATTRIBUTE9,         PoRequisitionLineEO.ATTRIBUTE10,         PoRequisitionLineEO.ATTRIBUTE11,         PoRequisitionLineEO.ATTRIBUTE12,         PoRequisitionLineEO.ATTRIBUTE13,         PoRequisitionLineEO.ATTRIBUTE14,         PoRequisitionLineEO.ATTRIBUTE15,         PoRequisitionLineEO.GLOBAL_ATTRIBUTE1,         PoRequisitionLineEO.GLOBAL_ATTRIBUTE2,         PoRequisitionLineEO.GLOBAL_ATTRIBUTE3,         PoRequisitionLineEO.GLOBAL_ATTRIBUTE4,         PoRequisitionLineEO.GLOBAL_ATTRIBUTE5,         PoRequisitionLineEO.GLOBAL_ATTRIBUTE6,         PoRequisitionLineEO.GLOBAL_ATTRIBUTE7,         PoRequisitionLineEO.GLOBAL_ATTRIBUTE8,         PoRequisitionLineEO.GLOBAL_ATTRIBUTE9,         PoRequisitionLineEO.GLOBAL_ATTRIBUTE10,         PoRequisitionLineEO.GLOBAL_ATTRIBUTE11,         PoRequisitionLineEO.GLOBAL_ATTRIBUTE12,         PoRequisitionLineEO.GLOBAL_ATTRIBUTE13,         PoRequisitionLineEO.GLOBAL_ATTRIBUTE14,         PoRequisitionLineEO.GLOBAL_ATTRIBUTE15,         PoRequisitionLineEO.GLOBAL_ATTRIBUTE16,         PoRequisitionLineEO.GLOBAL_ATTRIBUTE17,         PoRequisitionLineEO.GLOBAL_ATTRIBUTE18,         PoRequisitionLineEO.GLOBAL_ATTRIBUTE19,         PoRequisitionLineEO.GLOBAL_ATTRIBUTE20,         PoRequisitionLineEO.GLOBAL_ATTRIBUTE_CATEGORY,         PoRequisitionLineEO.BID_NUMBER,         PoRequisitionLineEO.BID_LINE_NUMBER,         PoRequisitionLineEO.AMOUNT,         PoRequisitionLineEO.CURRENCY_AMOUNT,         PoRequisitionLineEO.NONCAT_TEMPLATE_ID,         PoRequisitionLineEO.JOB_ID,         PoRequisitionLineEO.CONTACT_INFORMATION,         PoRequisitionLineEO.CANDIDATE_SCREENING_REQD_FLAG,         PoRequisitionLineEO.SUGGESTED_SUPPLIER_FLAG,         PoRequisitionLineEO.ASSIGNMENT_END_DATE,         PoRequisitionLineEO.OVERTIME_ALLOWED_FLAG,         PoRequisitionLineEO.CONTRACTOR_REQUISITION_FLAG,         PoRequisitionLineEO.LABOR_REQ_LINE_ID,         PoRequisitionLineEO.JOB_LONG_DESCRIPTION,         PoRequisitionLineEO.CONTRACTOR_STATUS,         PoRequisitionLineEO.SUGGESTED_VENDOR_CONTACT_FAX,         PoRequisitionLineEO.SUGGESTED_VENDOR_CONTACT_EMAIL,         PoRequisitionLineEO.CANDIDATE_FIRST_NAME,         PoRequisitionLineEO.CANDIDATE_LAST_NAME,         PoRequisitionLineEO.ASSIGNMENT_START_DATE,         PoRequisitionLineEO.ORDER_TYPE_LOOKUP_CODE,         PoRequisitionLineEO.PURCHASE_BASIS,         PoRequisitionLineEO.MATCHING_BASIS,         PoRequisitionLineEO.NEGOTIATED_BY_PREPARER_FLAG,         PoRequisitionLineEO.BASE_UNIT_PRICE,         PoRequisitionLineEO.AT_SOURCING_FLAG,         PoRequisitionLineEO.TAX_ATTRIBUTE_UPDATE_CODE,         PoRequisitionLineEO.DROP_SHIP_FLAG,         PoRequisitionLineEO.SHIP_METHOD,         PoRequisitionLineEO.ESTIMATED_PICKUP_DATE,         PoRequisitionLineEO.SUPPLIER_NOTIFIED_FOR_CANCEL,         PoRequisitionLineEO.TAX_NAME FROM PO_REQUISITION_LINES_ALL PoRequisitionLineEO WHERE PoRequisitionLineEO.REQUISITION_HEADER_ID = :1 ORDER BY Line_NUM ASC
    13/09/20 09:22:14 [720]       pStmt = conn.prepareStatement("SELECT PoRequisitionLineEO.REQUISITION_LINE_ID,         PoRequisitionLineEO.REQUISITION_HEADER_ID,         PoRequisitionLineEO.LINE_NUM,         PoRequisitionLineEO.LAST_UPDATE_DATE,         PoRequisitionLineEO.LAST_UPDATED_BY,         PoRequisitionLineEO.LAST_UPDATE_LOGIN,         PoRequisitionLineEO.CREATION_DATE,         PoRequisitionLineEO.CREATED_BY,         PoRequisitionLineEO.DELIVER_TO_LOCATION_ID,         PoRequisitionLineEO.TO_PERSON_ID,         PoRequisitionLineEO.ITEM_DESCRIPTION,         PoRequisitionLineEO.CATEGORY_ID,         PoRequisitionLineEO.UNIT_MEAS_LOOKUP_CODE,         PoRequisitionLineEO.UNIT_PRICE,         PoRequisitionLineEO.QUANTITY,         PoRequisitionLineEO.LINE_TYPE_ID,         PoRequisitionLineEO.SOURCE_TYPE_CODE,         PoRequisitionLineEO.ITEM_ID,         PoRequisitionLineEO.ITEM_REVISION,         PoRequisitionLineEO.QUANTITY_DELIVERED,         PoRequisitionLineEO.SUGGESTED_BUYER_ID,         PoRequisitionLineEO.ENCUMBERED_FLAG,         PoRequisitionLineEO.RFQ_REQUIRED_FLAG,         PoRequisitionLineEO.NEED_BY_DATE,         PoRequisitionLineEO.LINE_LOCATION_ID,         PoRequisitionLineEO.MODIFIED_BY_AGENT_FLAG,         PoRequisitionLineEO.PARENT_REQ_LINE_ID,         PoRequisitionLineEO.JUSTIFICATION,         PoRequisitionLineEO.NOTE_TO_AGENT,         PoRequisitionLineEO.NOTE_TO_RECEIVER,         PoRequisitionLineEO.PURCHASING_AGENT_ID,         PoRequisitionLineEO.DOCUMENT_TYPE_CODE,         PoRequisitionLineEO.BLANKET_PO_HEADER_ID,         PoRequisitionLineEO.BLANKET_PO_LINE_NUM,         PoRequisitionLineEO.CURRENCY_CODE,         PoRequisitionLineEO.RATE_TYPE,         PoRequisitionLineEO.RATE_DATE,         PoRequisitionLineEO.RATE,         PoRequisitionLineEO.CURRENCY_UNIT_PRICE,         PoRequisitionLineEO.SUGGESTED_VENDOR_NAME,         PoRequisitionLineEO.SUGGESTED_VENDOR_LOCATION,         PoRequisitionLineEO.SUGGESTED_VENDOR_CONTACT,         PoRequisitionLineEO.SUGGESTED_VENDOR_PHONE,         PoRequisitionLineEO.SUGGESTED_VENDOR_PRODUCT_CODE,         PoRequisitionLineEO.UN_NUMBER_ID,         PoRequisitionLineEO.HAZARD_CLASS_ID,         PoRequisitionLineEO.MUST_USE_SUGG_VENDOR_FLAG,         PoRequisitionLineEO.REFERENCE_NUM,         PoRequisitionLineEO.ON_RFQ_FLAG,         PoRequisitionLineEO.URGENT_FLAG,         PoRequisitionLineEO.CANCEL_FLAG,         PoRequisitionLineEO.SOURCE_ORGANIZATION_ID,         PoRequisitionLineEO.SOURCE_SUBINVENTORY,         PoRequisitionLineEO.DESTINATION_TYPE_CODE,         PoRequisitionLineEO.DESTINATION_ORGANIZATION_ID,         PoRequisitionLineEO.DESTINATION_SUBINVENTORY,         PoRequisitionLineEO.QUANTITY_CANCELLED,         PoRequisitionLineEO.CANCEL_DATE,         PoRequisitionLineEO.CANCEL_REASON,         PoRequisitionLineEO.CLOSED_CODE,         PoRequisitionLineEO.AGENT_RETURN_NOTE,         PoRequisitionLineEO.CHANGED_AFTER_RESEARCH_FLAG,         PoRequisitionLineEO.VENDOR_ID,         PoRequisitionLineEO.VENDOR_SITE_ID,         PoRequisitionLineEO.VENDOR_CONTACT_ID,         PoRequisitionLineEO.RESEARCH_AGENT_ID,         PoRequisitionLineEO.ON_LINE_FLAG,         PoRequisitionLineEO.WIP_ENTITY_ID,         PoRequisitionLineEO.WIP_LINE_ID,         PoRequisitionLineEO.WIP_REPETITIVE_SCHEDULE_ID,         PoRequisitionLineEO.WIP_OPERATION_SEQ_NUM,         PoRequisitionLineEO.WIP_RESOURCE_SEQ_NUM,         PoRequisitionLineEO.ATTRIBUTE_CATEGORY,         PoRequisitionLineEO.DESTINATION_CONTEXT,         PoRequisitionLineEO.INVENTORY_SOURCE_CONTEXT,         PoRequisitionLineEO.VENDOR_SOURCE_CONTEXT,         PoRequisitionLineEO.BOM_RESOURCE_ID,         PoRequisitionLineEO.REQUEST_ID,         PoRequisitionLineEO.PROGRAM_APPLICATION_ID,         PoRequisitionLineEO.PROGRAM_ID,         PoRequisitionLineEO.PROGRAM_UPDATE_DATE,         PoRequisitionLineEO.USSGL_TRANSACTION_CODE,         PoRequisitionLineEO.GOVERNMENT_CONTEXT,         PoRequisitionLineEO.CLOSED_REASON,         PoRequisitionLineEO.CLOSED_DATE,         PoRequisitionLineEO.TRANSACTION_REASON_CODE,         PoRequisitionLineEO.QUANTITY_RECEIVED,         PoRequisitionLineEO.SOURCE_REQ_LINE_ID,         PoRequisitionLineEO.ORG_ID,         PoRequisitionLineEO.KANBAN_CARD_ID,         PoRequisitionLineEO.CATALOG_TYPE,         PoRequisitionLineEO.CATALOG_SOURCE,         PoRequisitionLineEO.MANUFACTURER_ID,         PoRequisitionLineEO.MANUFACTURER_NAME,         PoRequisitionLineEO.MANUFACTURER_PART_NUMBER,         PoRequisitionLineEO.REQUESTER_EMAIL,         PoRequisitionLineEO.REQUESTER_FAX,         PoRequisitionLineEO.REQUESTER_PHONE,         PoRequisitionLineEO.UNSPSC_CODE,         PoRequisitionLineEO.OTHER_CATEGORY_CODE,         PoRequisitionLineEO.SUPPLIER_DUNS,         PoRequisitionLineEO.TAX_STATUS_INDICATOR,         PoRequisitionLineEO.PCARD_FLAG,         PoRequisitionLineEO.NEW_SUPPLIER_FLAG,         PoRequisitionLineEO.AUTO_RECEIVE_FLAG,         PoRequisitionLineEO.TAX_USER_OVERRIDE_FLAG,         PoRequisitionLineEO.TAX_CODE_ID,         PoRequisitionLineEO.NOTE_TO_VENDOR,         PoRequisitionLineEO.OKE_CONTRACT_VERSION_ID,         PoRequisitionLineEO.OKE_CONTRACT_HEADER_ID,         PoRequisitionLineEO.ITEM_SOURCE_ID,         PoRequisitionLineEO.SUPPLIER_REF_NUMBER,         PoRequisitionLineEO.SECONDARY_UNIT_OF_MEASURE,         PoRequisitionLineEO.SECONDARY_QUANTITY,         PoRequisitionLineEO.PREFERRED_GRADE,         PoRequisitionLineEO.SECONDARY_QUANTITY_RECEIVED,         PoRequisitionLineEO.SECONDARY_QUANTITY_CANCELLED,         PoRequisitionLineEO.AUCTION_HEADER_ID,         PoRequisitionLineEO.AUCTION_DISPLAY_NUMBER,         PoRequisitionLineEO.AUCTION_LINE_NUMBER,         PoRequisitionLineEO.REQS_IN_POOL_FLAG,         PoRequisitionLineEO.VMI_FLAG,         PoRequisitionLineEO.ATTRIBUTE1,         PoRequisitionLineEO.ATTRIBUTE2,         PoRequisitionLineEO.ATTRIBUTE3,         PoRequisitionLineEO.ATTRIBUTE4,         PoRequisitionLineEO.ATTRIBUTE5,         PoRequisitionLineEO.ATTRIBUTE6,         PoRequisitionLineEO.ATTRIBUTE7,         PoRequisitionLineEO.ATTRIBUTE8,         PoRequisitionLineEO.ATTRIBUTE9,         PoRequisitionLineEO.ATTRIBUTE10,         PoRequisitionLineEO.ATTRIBUTE11,         PoRequisitionLineEO.ATTRIBUTE12,         PoRequisitionLineEO.ATTRIBUTE13,         PoRequisitionLineEO.ATTRIBUTE14,         PoRequisitionLineEO.ATTRIBUTE15,         PoRequisitionLineEO.GLOBAL_ATTRIBUTE1,         PoRequisitionLineEO.GLOBAL_ATTRIBUTE2,         PoRequisitionLineEO.GLOBAL_ATTRIBUTE3,         PoRequisitionLineEO.GLOBAL_ATTRIBUTE4,         PoRequisitionLineEO.GLOBAL_ATTRIBUTE5,         PoRequisitionLineEO.GLOBAL_ATTRIBUTE6,         PoRequisitionLineEO.GLOBAL_ATTRIBUTE7,         PoRequisitionLineEO.GLOBAL_ATTRIBUTE8,         PoRequisitionLineEO.GLOBAL_ATTRIBUTE9,         PoRequisitionLineEO.GLOBAL_ATTRIBUTE10,         PoRequisitionLineEO.GLOBAL_ATTRIBUTE11,         PoRequisitionLineEO.GLOBAL_ATTRIBUTE12,         PoRequisitionLineEO.GLOBAL_ATTRIBUTE13,         PoRequisitionLineEO.GLOBAL_ATTRIBUTE14,         PoRequisitionLineEO.GLOBAL_ATTRIBUTE15,         PoRequisitionLineEO.GLOBAL_ATTRIBUTE16,         PoRequisitionLineEO.GLOBAL_ATTRIBUTE17,         PoRequisitionLineEO.GLOBAL_ATTRIBUTE18,         PoRequisitionLineEO.GLOBAL_ATTRIBUTE19,         PoRequisitionLineEO.GLOBAL_ATTRIBUTE20,         PoRequisitionLineEO.GLOBAL_ATTRIBUTE_CATEGORY,         PoRequisitionLineEO.BID_NUMBER,         PoRequisitionLineEO.BID_LINE_NUMBER,         PoRequisitionLineEO.AMOUNT, 

        Hi Rohit ,
    I had copied these .class & .xml files under Myclasses -> oracle.apps.icx and oracle.apps.po and oracle.apps.fnd was same which comes part of the standard OA tutorial.
    I copied same under Myprojects as well.
    you have to decompile the class file into java file and then place it in Myproject directory , also copy all dependency files like BC4J components , and then
    try to run from Jdeveloper .
    Alternatively you can get the entire ICX folder and zip it and add it via library .
    --Keerthi

Maybe you are looking for

  • Page size in smartforms..

    Hi.. In my smartform i have the secondary windows and a main window.. In the main window iam using the table layout for the line items display... But when the number of line items are more, the main window is getting displayed in the next page at the

  • RFC Receivers in the Communication Channel

    I created, within an XI scenario, an RFC Receiver object in XI that has the ALE Remote User ID and password to connect to a specific environment that grabs idocs and puts them into files (Outbound from R3 to XI). However, I noticed when I did this an

  • GOP / UEFI Vbios Request N660 TF 2GD5/OC

    Hello, I would like to request the updated VBios for the N660 TF 2GD5/OC S/N:602-V287-050B1301121706 I have a problem with a fan, which is away from the chip, at ignition computer spin, al al fit and only after the AB lift over 70%. Sorry for the bad

  • Create Report on List , group by data and email as PDF

    Hi , I have a survey List , that contain 7 Question and each question have 5 possible answers (Radio Button , between Strongly agree to strongly Disagree). How can I create a report on the list , and send the email to instructors that are also stored

  • How to create rule for repoting soa server down state in OEM12c

    Hi All, I am very new to OEM 12c. I want to monitor my weblogic server from OEM 12c. I want to configure rule such that if any of the servers viz. Admin Server, soa server, bam server or osb server goes down it send a notification mail to the adminis