JBO DebugOutput Question

We're having some trouble with our views auto-querying when we attempt to add a new row. It's a JClient app that doesn't initially query any rows. We turned on jbo.debugoutput=console to get more information on the problem. Now we have a couple of questions on what some of the debug messages mean. The entries below were generated when we brought the form up and went into Find mode. Here is a snippet from the console:
[751] Changing iterator range size from :1 to :1000
[752] Column count: 13
[753] ViewObject: PaymentTermsView Created new QUERY statement
[754] PaymentTermsView>#q computed SQLStmtBufLen: 999, actual=982, storing=1012
[755] SELECT * FROM (SELECT PaymentTerms.PAYMENT_TERM,
       PaymentTerms.LAWSON_TERM_CODE,
       PaymentTerms.DESCRIPTION,
       PaymentTerms.IP_TERM_CODE,
       PaymentTerms.DISCOUNT_PCT,
       PaymentTerms.DISCOUNT_DAYS,
       PaymentTerms.NET_DAYS,
       PaymentTerms.ACTIVE_FLAG,
       PaymentTerms.CREATE_SOURCE,
       PaymentTerms.CREATE_DATE,
       PaymentTerms.LAST_UPDATE_SOURCE,
       PaymentTerms.LAST_UPDATE_DATE,
        PaymentTerms.PAYMENT_TERM as SORTED
FROM PAYMENT_TERMS PaymentTerms
WHERE PaymentTerms.ACTIVE_FLAG = 1
union all
SELECT null as PAYMENT_TERM,
       null as LAWSON_TERM_CODE,
       null as DESCRIPTION,
       null as IP_TERM_CODE,
       null as DISCOUNT_PCT,
       null as DISCOUNT_DAYS,
       null as NET_DAYS,
       null as ACTIVE_FLAG,
       null as CREATE_SOURCE,
       null as CREATE_DATE,
       null as LAST_UPDATE_SOURCE,
       null as LAST_UPDATE_DATE,
        -1 as SORTED
FROM dual) QRSLT  ORDER BY SORTED asc
[757] Bind params for ViewObject: PaymentTermsView
[758] EntityCache:add WARNING - ignoring row with no primary key
[759] $$added root$$ id=-2
[760] EntityRowSetImpl's jbo.assoc.consistent = true (1) This query is used as the lookup for a Combobox binding and we need a blank row to provide a null selection, so that is the reason for the union.
What we are most curious about is what the meaning of lines 758, 759, and 760 is.
I suspect that line 758 is caused by the unioned null row since it wouldn't have a valid primary key.
Also, I would expect that line 759 might be ADF creating a row in the Entity cache for the null row and attempting to generate a temp id if the primary key was an attribute type of DbSequence, but that isn't the case here.
Line 760 seems to be enforcing/setting the association consistency property for the view, but most of the other views don't have this entry. Seems like it might have been due to the Entity the view is based on having a Composition Association to another Entity, but that isn't the case for this view.
Any help understanding these entries would be greatly appreciated.
Thanks
Erik

After further review, I have discovered that line 760 does indeed correlate to the Composition setting of the Association. It also appears to come in the beginning when setting up the view's query, so it actually goes with the next view in our log, which does have a Composition Association.
Also, I believe my assessment of line 758 is correct in that it is caused by the null row. This could explain why we have noticed that the trick of including a queried null row doesn't always work for some comboboxes. In some cases the null row still doesn't show in the list. Now, I believe that this is because those Views are based on an Entity. The Entity most contain the primary key for a row in order to cache it. For the null row, there is no valid primary key, so the cache ignores it. This would mean that the combobox wouldn't show the null row, because it doesn't get it back from the Entity cache. For the comboboxes based on Views that are ViewOnly, they would show the null row because the View cache has no requirement for a valid primary key. This is only speculation at this point. I'll try and confirm.
If the above answers are correct, then we really only need clarification on what line 759 means.
Erik

Similar Messages

  • How to use jbo.debugoutput=file

    Using debugoutput=console has as a disadvantage that ik makes the application very slow. There is an option to write debug to file by using jbo.debugoutput=file. Might this reduce the slowing down of the application?
    Problem is that I couldn't test it, because I don't know how to set the file to write the debug output to.
    Greets,
    Maurice

    I am not sure if the file type is implemented...
    We use Apache Log4J and used the org.apache.log4j.Logger to implement the oracle.jbo.common.IDiagnostic interface.
    Then you can set the jbo.debugoutput to the FQN of your IDiagnostic implementation.
    Markus

  • Where to put "jbo.debugoutput=console" in WLS?

    Hi gang
    I'd like to turn the ADF BC debug output on via the "jbo.debugoutput=console" flag, for a standalone WebLogic Server (WLS) 10.3 ADF 11g application install.
    Section 6.3.7 of the Fusion 11g guide shows how to turn this on via JDeveloper (http://download.oracle.com/docs/cd/E12839_01/web.1111/b31974/bcqueryresults.htm#CHDBBEEB), but how do I turn it on for an application deployed to WLS? Is there a WLS console feature available for doing this?
    Cheers,
    CM.

    They normally are written into the tmp directory. You should get a message like Diagnostics: (Properties (re)loaded) Routing diagnostics to File: /tmp/bc4j61464.log in your server log file.
    The files are all names bc4jnnnn.log at some points in the application live cycle new files are generated automatically. So you have to check the log to find the actual one.
    Timo

  • jbo:InputSelectLOV Question

    I have a BC4J/JSP application with no struts or UIX in 9.0.3.3 (1025). I have some questions about the LOV tag. I want to use this to popup an LOV that passes the ID of a field back to the originating form. I want that form to be able to display friendly text instead of the ID.
    For example, lets say that I have an employee edit screen which allows you to add a deparment to an employee by selecting them in a LOV. The tag for the LOV might look like this:
    <jbo:InputSelectLOV datasource="dsEmp" dataitem="DeptId" displaydatasource="dsDept" displaydataitem="DeptName" displayvaluedataitem="DeptId" formname="myForm" ></jbo:InputSelectLOV>
    This would put a text field on the page with a button next to it. When the user clicks on the button it pops up a window with all the department names. The user clicks on a name and in the original field the id is shown. I want the Name to be shown.
    The other concern I have is that it doesn't indicate which choice was previously selected in the LOV. I.E. if we are editing an employee and changing their department, I want the LOV to indicate what the department was before we opened the LOV..
    Is there any way to implement these ideas without writing my own Javascript to handle it?

    I tried using a bc4j view object that I pass value to
    but got an error, but when I used datatable to display
    the same record, I got what I was looking for!
    Have you tried creating an inputLOV with a view that
    takes in parameters at runtime?
    Thanks for all your help!
    see below:
    <jbo:ApplicationModule id="AppModule" definition="LOVprj.AppModule" releasemode="Stateful" />
    <jbo:DataSource appid="AppModule" id="dsdocV" viewobject="DocView1" />
    <jbo:SetWhereClauseParam datasource= "dsdocV" index="0" value="value1" />
    <jbo:SetWhereClauseParam datasource= "dsdocV" index="1" value="value2" />
    Commented out Data Table used to test view.
    =============================================
    <%--
    <table border="1" width=50%>
    <tr>
    <td><jbo:DataTable datasource="dsdocV" /></td>
    </tr>
    </table>
    --%>
    LOV Syntax
    ==========
    <form name="doc_lov" >
    <jbo:InputSelectLOV datasource="SpotsBc4jModule.SpMastersView1" dataitem="DocumentId" displaydatasource="dsdocV" displaydataitem="DocumentId" displayvaluedataitem="DocumentId" formname="doc_lov" ></jbo:InputSelectLOV>
    </form>

  • Jbo.doconnectionpooling=true

    I have a big problem with jbo.doconnectionpooling=true. In JDeveloper 9.0.3.4 (and also 9.0.5.2) when i turn this parameter on for my root application module (AM), then in my web application each request does Activate and Passivate operations on every AM instance usage (even if the AM pool size is sufficient to hold the active instance and jbo.dofailover=false). I dont post any data to database before commit, but between consequtive requests some or all state in BC Java layer (inserted, current rows, changed attribute values) of my VOs with jbo.doconnectionpooling=true are forgotten.
    Reason why I need this so critically is that i have 9 separate applications, that each may have up to 1000 concurrent users. To make this configuration most performant, I'd like to have AM pools of 1000 instances. Without jbo.doconnectionpooling=true this would need potentially 9000 open connections to DB, but my service provider doesnt allow more than 1000 (and is complaining already on that). JDBC connection doesnt hold any uncommitted state for my application, so I decided to use jbo.doconnectionpooling=true, but unfortunately it behaves in my opinion not as stated in documentation.
    Best Regards!
    Mihkel Nõges
    AS Cell Network
    Estonia

    Example BC log:
    [537] Diagnostic Properties: Timing:false Functions:false Linecount:true Threshold:6
    [538] Column count: 50
    [539] ViewObject close prepared statements...
    [540] ViewObject : Created new QUERY statement
    [541] SELECT OppekavaVer.ID,         OppekavaVer.VERSIOON_NR,         OppekavaVer.OPPEKAVA_ID,          OppekavaVer.NIMETUS,         OppekavaVer.NIMETUS_ENG,          OppekavaVer.KVALIFIKATSIOON_ID,         OppekavaVer.KOGUMAHT,          OppekavaVer.PRAKTIKA_MAHT,         OppekavaVer.MAHU_MOOTYHIK_ID,          OppekavaVer.NOMINAALKESTVUS,         OppekavaVer.EESMARGID,          OppekavaVer.VASTUVOTUTINGIMUSED,         OppekavaVer.OPPETOO_KORRALDUS,          OppekavaVer.PRAKTIKA_VOIMALUSED,         OppekavaVer.ON_OSAKOORMUS,          OppekavaVer.OPPEJOUDUDE_KVALIFIKATSIOON,         OppekavaVer.ISCED_KOOD,          OppekavaVer.ON_ASENDATUD,         OppekavaVer.MUUTM_ARV,          OppekavaVer.MUUTJA,         OppekavaVer.MUUTM_AEG,          OppekavaVer.HARIDUSTASE_ID,         OppekavaVer.OPPEASUTUS_ID,          OppekavaVer.STANDARDID,         OppekavaVer.LOPETAMISE_TINGIMUSED,          OppekavaVer.ISCED_TASE,         OppekavaVer.NIMETUS_OTSING,          OppekavaVer.NOMINAALKESTVUS_KUUD,         Oppekava.ID  AS ID1,         Oppekava.KOOD,         Oppekava.OPPEASUTUS_ID  AS OPPEASUTUS_ID1,         Oppekava.ON_RIIKLIK_OPPEKAVA,          Oppekava.OPPEKAVA_KOOD,         OLEKUD.OKV_STAATUS(OppekavaVer.ID)  AS STAATUS,         Oppeasutus.NIMETUS_SHORT,         Oppeasutus.ID  AS ID2,         OppekavaVer.VASTUVOTU_OLEK,         OppekavaVer.AVAMISE_KUUP,          OppekavaVer.SULGEMISE_KUUP,         (select ms.syndmuse_aeg  from koolitusluba kl inner join menetlus                 m on  kl.ID=m.KOOLITUSLUBA_ID inner join menetlus_syndmus              ms    on   m.ID=ms.MENETLUS_ID and ms.OMISTATUD_OLEK=12570            where    OppekavaVer.OPPEKAVA_ID=kl.OPPEKAVA_ID union     select          ms.syndmuse_aeg     from menetlus m inner  join    menetlus_syndmus           ms on m.ID=ms.MENETLUS_ID      and    ms.OMISTATUD_OLEK=12570       where   OppekavaVer.ID=m.OPPEKAVA_VER_ID     and not exists(select  * from koolitusluba where oppekava_id=OppekavaVer.OPPEKAVA_ID))  AS REGISTREERIMISE_AEG FROM OPPEKAVA_VER OppekavaVer, OPPEKAVA Oppekava, OPPEASUTUS Oppeasutus WHERE OppekavaVer.OPPEKAVA_ID = Oppekava.ID AND OppekavaVer.OPPEASUTUS_ID = Oppeasutus.ID(+) AND (OppekavaVer.OPPEASUTUS_ID=? and OppekavaVer.VERSIOON_NR=(select max(versioon_nr) from oppekava_ver okv2 where okv2.oppekava_id=Oppekava.id)) ORDER BY OppekavaVer.NIMETUS ASC
    [542] Binding param 1: 1014
    [543] Column count: 9
    [544] OracleSQLBuilder Executing Select on: OPPEASUTUS (false)
    [545] Built select: 'SELECT ID, NIMETUS, KL_TYYP, REG_NR, KL_OMANDIVORM, NIMETUS_SHORT FROM OPPEASUTUS Oppeasutus'
    [546] Executing FAULT-IN...SELECT ID, NIMETUS, KL_TYYP, REG_NR, KL_OMANDIVORM, NIMETUS_SHORT FROM OPPEASUTUS Oppeasutus WHERE ID=:1
    [547] Column count: 9
    [548] ViewObject close prepared statements...
    [549] ViewObject : Created new QUERY statement
    [550] SELECT Oppeasutus.ID,         Oppeasutus.NIMETUS,         Oppeasutus.KL_TYYP,         Oppeasutus.KL_OMANDIVORM,         Oppeasutus.REG_NR,         Oppeasutus.NIMETUS_SHORT FROM OPPEASUTUS Oppeasutus WHERE (Oppeasutus.ID = :1) ORDER BY Oppeasutus.NIMETUS
    [551] Binding param 1: 1014
    [552] DefaultConnectionStrategy is disconnecting an application module connection
    [553] Database state was detected while disconnecting the application module's connection
    [554] Passivating the application module state.
    [555] **PCollManager.resolveName** tabName=PS_TXN
    [556] Getting a connection for internal use...
    [557]    Creating internal connection...
    [558] Trying connection: DataSource='com.evermind.sql.OrionCMTDataSource@1c5'...
    [559] <AM MomVer="0">
       <cd/>
       <TXN Def="0" New="0" Lok="2"/>
       <VO>
          <VO ac="0" Def="ehis.ok.da.OppeasutuseNimetus" Name="OppeasutuseNimetus"/>
          <VO It="1" Sz="100" St="0" ac="0" Def="ehis.ok.da.OppekavaVersioonid" Name="OppekavaVersioonidOtsing">
             <Wh>
                <![CDATA[OppekavaVer.OPPEASUTUS_ID=? and OppekavaVer.VERSIOON_NR=(select max(versioon_nr) from oppekava_ver okv2 where okv2.oppekava_id=Oppekava.id)]]>
             </Wh>
             <Or>
                <![CDATA[OppekavaVer.NIMETUS ASC]]>
             </Or>
             <args ct="1">
                <arg>
                   <![CDATA[1014]]>
                </arg>
             </args>
             <Key>
                <![CDATA[00030000000433333838000000043333383800000003C20B0F]]>
             </Key>
          </VO>
       </VO>
    </AM>
    [560] **insert** id=1, parid=-1, collid=38612, keyArr.len=-1, cont.len=970
    [561]    stmt: begin insert into "PS_TXN" values (:1, :2, :3, empty_blob(), sysdate) returning content into :4; end;
    [562] **commit** #pending ops=1
    [563] **insert** id=-1, parid=0, collid=38612, keyArr.len=-1, cont.len=665
    [564]    stmt: begin insert into "PS_TXN" values (:1, :2, :3, empty_blob(), sysdate) returning content into :4; end;
    [565] **commit** #pending ops=1
    [566] OppekavaVersioonidOtsing notify ROLLBACK ...
    [567] Clearing VO cache for OppekavaVersioonidOtsing
    [568] Clear QueryCollection in cache...
    [569] OppeasutuseNimetus notify ROLLBACK ...
    [570] Clearing VO cache for OppeasutuseNimetus
    [571] Clear QueryCollection in cache...
    [572] OppeasutuseNimetus_0_findByKey notify ROLLBACK ...
    [573] Clearing VO cache for OppeasutuseNimetus_0_findByKey
    [574] Clear QueryCollection in cache...
    [575] Clearing EO cache for ehis.ok.bo.OppekavaVer
    [576] Clearing VO cache for OppekavaVersioonid
    ... Lots of Clearing VO caches
    [830] Resetting AM=EhakAM
    [831] ViewObject close prepared statements...
    ... Lots of closing prepared statements...
    [911] DefaultConnectionStrategy is disconnecting an application module connection
    [912] *** closing jdbc connection now **** ([Connection : com.evermind.sql.OrionCMTConnection@224])
    [913] Reusing a cached session application module instance
    [914] DefaultConnectionStrategy is re-establishing an application module connection
    [915] Resetting AM=EhisOkModule
    [916] Trying connection: DataSource='com.evermind.sql.OrionCMTDataSource@1c5'...
    [917] Successfully logged in
    [918] JDBCDriverVersion: 9.2.0.5.0
    [919] DatabaseProductName: Oracle
    [920] DatabaseProductVersion: Oracle9i Release 9.2.0.4.0 - Production JServer Release 9.2.0.4.0 - Production
    [921] Propertymanager: skipping reload of file and system based properties
    [922] {{ begin Loading BC4J properties
    [923] -----------------------------------------------------------
    [924] BC4J Property jbo.default.language='et' -->(MetaObjectManager) from System Default
    [925] BC4J Property jbo.default.country='EE' -->(MetaObjectManager) from System Default
    [926] BC4J Property DeployPlatform='LOCAL' -->(SessionImpl) from Client Environment
    [927] Skipping empty Property ConnectionMode from System Default
    [928] Skipping empty Property HostName from System Default
    [929] Skipping empty Property ConnectionPort from System Default
    [930] BC4J Property jbo.locking.mode='optimistic' -->(MetaObjectManager) from Client Environment
    [931] Skipping empty Property ApplicationPath from System Default
    [932] BC4J Property AppModuleJndiName='ehis.ok.da.EhisOkModule' -->(SessionImpl) from Client Environment
    [933] BC4J Property java.naming.security.principal='37009232731' -->(SessionImpl) from Client Environment
    [934] Skipping empty Property java.naming.security.credentials from System Default
    [935] Skipping empty Property jbo.user.principal from System Default
    [936] Skipping empty Property jbo.object.marshaller from System Default
    [937] BC4J Property jbo.use.pers.coll='false' -->(SessionImpl) from System Default
    [938] BC4J Property jbo.pers.max.rows.per.node='70' -->(SessionImpl) from System Default
    [939] BC4J Property jbo.pers.max.active.nodes='30' -->(SessionImpl) from System Default
    [940] Skipping empty Property jbo.pcoll.mgr from System Default
    [941] BC4J Property jbo.txn_table_name='PS_TXN' -->(SessionImpl) from System Default
    [942] BC4J Property jbo.txn_seq_name='PS_TXN_seq' -->(SessionImpl) from System Default
    [943] BC4J Property jbo.control_table_name='PCOLL_CONTROL' -->(MetaObjectManager) from System Default
    [944] BC4J Property jbo.stringmanager.factory.class='use_default' -->(SessionImpl) from System Default
    [945] BC4J Property jbo.fetch.mode='AS.NEEDED' -->(MetaObjectManager) from System Default
    [946] BC4J Property jbo.323.compatible='false' -->(MetaObjectManager) from System Default
    [947] Skipping empty Property JBODynamicObjectsPackage from System Default
    [948] BC4J Property MetaObjectContextFactory='oracle.jbo.mom.xml.DefaultMomContextFactory' -->(MetaObjectManager) from System Default
    [949] BC4J Property jbo.load.components.lazily='false' -->(MetaObjectManager) from System Default
    [950] BC4J Property MetaObjectContext='oracle.jbo.mom.xml.XMLContextImpl' -->(MetaObjectManager) from System Default
    [951] BC4J Property java.naming.factory.initial='oracle.jbo.common.JboInitialContextFactory' -->(SessionImpl) from Client Environment
    [952] BC4J Property IsLazyLoadingTrue='true' -->(MetaObjectManager) from /oracle/jbo/server/jboserver.properties resource
    [953] BC4J Property ActivateSharedDataHandle='false' -->(MetaObjectManager) from System Default
    [954] Skipping empty Property HandleName from System Default
    [955] Skipping empty Property Factory-Substitution-List from System Default
    [956] BC4J Property jbo.project='OK_BC4J' -->(Configuration) from Client Environment
    [957] BC4J Property jbo.max.cursors='50' -->(MetaObjectManager) from System Default
    [958] BC4J Property jbo.dofailover='false' -->(Configuration) from Client Environment
    [959] BC4J Property jbo.doconnectionpooling='true' -->(Configuration) from Client Environment
    [960] BC4J Property jbo.recyclethreshold='20' -->(Configuration) from Client Environment
    [961] BC4J Property jbo.ampool.dynamicjdbccredentials='false' -->(Configuration) from Client Environment
    [962] BC4J Property jbo.ampool.resetnontransactionalstate='true' -->(SessionImpl) from System Default
    [963] BC4J Property jbo.ampool.sessioncookiefactoryclass='oracle.jbo.http.HttpSessionCookieFactory' -->(Configuration) from Client Environment
    [964] BC4J Property jbo.ampool.connectionstrategyclass='oracle.jbo.common.ampool.DefaultConnectionStrategy' -->(Configuration) from System Default
    [965] BC4J Property jbo.ampool.maxpoolsize='2147483647' -->(Configuration) from System Default
    [966] BC4J Property jbo.ampool.initpoolsize='0' -->(Configuration) from System Default
    [967] BC4J Property jbo.ampool.monitorsleepinterval='600000' -->(Configuration) from System Default
    [968] BC4J Property jbo.ampool.minavailablesize='10' -->(Configuration) from Client Environment
    [969] BC4J Property jbo.ampool.maxavailablesize='50' -->(Configuration) from Client Environment
    [970] BC4J Property jbo.ampool.maxinactiveage='600000' -->(Configuration) from System Default
    [971] BC4J Property jbo.ampool.doampooling='true' -->(Configuration) from System Default
    [972] BC4J Property jbo.passivationstore='null' -->(MetaObjectManager) from System Default
    [973] BC4J Property jbo.saveforlater='false' -->(SessionImpl) from System Default
    [974] BC4J Property jbo.snapshotstore.undo='persistent' -->(SessionImpl) from System Default
    [975] BC4J Property jbo.maxpassivationstacksize='10' -->(SessionImpl) from System Default
    [976] BC4J Property jbo.txn.handleafterpostexc='false' -->(SessionImpl) from System Default
    [977] BC4J Property jbo.maxpoolcookieage='-1' -->(Configuration) from System Default
    [978] BC4J Property PoolClassName='oracle.jbo.common.ampool.ApplicationPoolImpl' -->(Configuration) from System Default
    [979] BC4J Property jbo.maxpoolsize='2147483647' -->(Configuration) from System Default
    [980] BC4J Property jbo.initpoolsize='0' -->(Configuration) from System Default
    [981] BC4J Property jbo.poolrequesttimeout='30000' -->(Configuration) from System Default
    [982] BC4J Property jbo.poolmonitorsleepinterval='600000' -->(Configuration) from System Default
    [983] BC4J Property jbo.poolminavailablesize='5' -->(Configuration) from System Default
    [984] BC4J Property jbo.poolmaxavailablesize='25' -->(Configuration) from System Default
    [985] BC4J Property jbo.poolmaxinactiveage='600000' -->(Configuration) from System Default
    [986] BC4J Property RELEASE_MODE='Stateful' -->(MetaObjectManager) from System Default
    [987] BC4J Property jbo.assoc.consistent='true' -->(MetaObjectManager) from System Default
    [988] BC4J Property jbo.viewlink.consistent='false' -->(MetaObjectManager) from /oracle/jbo/server/jboserver.properties resource
    [989] BC4J Property jbo.passivation.TrackInsert='true' -->(MetaObjectManager) from System Default
    [990] Skipping empty Property jbo.ViewCriteriaAdapter from System Default
    [991] BC4J Property jbo.SQLBuilder='Oracle' -->(MetaObjectManager) from /oracle/jbo/server/jboserver.properties resource
    [992] BC4J Property jbo.ConnectionPoolManager='oracle.jbo.server.ConnectionPoolManagerImpl' -->(MetaObjectManager) from System Default
    [993] BC4J Property jbo.TypeMapEntries='Oracle' -->(MetaObjectManager) from /oracle/jbo/server/jboserver.properties resource
    [994] Skipping empty Property jbo.sql92.JdbcDriverClass from System Default
    [995] BC4J Property jbo.sql92.LockTrailer='FOR UPDATE' -->(MetaObjectManager) from System Default
    [996] BC4J Property jbo.jdbc.trace='false' -->(MetaObjectManager) from System Default
    [997] BC4J Property jbo.sql92.DbTimeQuery='select sysdate from dual' -->(MetaObjectManager) from System Default
    [998] BC4J Property oracle.jbo.defineColumnLength='as_chars' -->(MetaObjectManager) from System Default
    [999] Skipping empty Property jbo.tmpdir from System Default
    [1000] Skipping empty Property jbo.server.internal_connection from System Default
    [1001] Skipping empty Property SessionClass from System Default
    [1002] Skipping empty Property TransactionFactory from System Default
    [1003] BC4J Property jbo.debugoutput='file' -->(Diagnostic) from System Property
    [1004] BC4J Property jbo.debug.prefix='DBG: ' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    [1005] BC4J Property jbo.logging.show.timing='false' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    [1006] BC4J Property jbo.logging.show.function='false' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    [1007] BC4J Property jbo.logging.show.level='false' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    [1008] BC4J Property jbo.logging.show.linecount='true' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    [1009] BC4J Property jbo.logging.trace.threshold='6' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    [1010] BC4J Property jbo.jdbc.driver.verbose='false' -->(Diagnostic) from System Default
    [1011] Skipping empty Property oracle.home from System Default
    [1012] Skipping empty Property oc4j.name from System Default
    [1013] BC4J Property jbo.ejb.txntimeout='1830' -->(SessionImpl) from System Default
    [1014] BC4J Property jbo.ejb.txntype='global' -->(SessionImpl) from System Default
    [1015] BC4J Property jbo.ejb.txn.disconnect_on_completion='false' -->(SessionImpl) from System Default
    [1016] Skipping empty Property oracle.jbo.schema from System Default
    [1017] BC4J Property jbo.xml.validation='false' -->(MetaObjectManager) from System Default
    [1018] BC4J Property ord.RetrievePath='ordDeliverMedia' -->(MetaObjectManager) from System Default
    [1019] BC4J Property ord.HttpMaxMemory='102400' -->(MetaObjectManager) from System Default
    [1020] Skipping empty Property ord.HttpTempDir from System Default
    [1021] BC4J Property ord.wmp.classid='clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95' -->(MetaObjectManager) from System Default
    [1022] BC4J Property ord.qp.classid='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' -->(MetaObjectManager) from System Default
    [1023] BC4J Property ord.rp.classid='clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA' -->(MetaObjectManager) from System Default
    [1024] BC4J Property ord.wmp.codebase='http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701' -->(MetaObjectManager) from System Default
    [1025] BC4J Property ord.qp.codebase='http://www.apple.com/qtactivex/qtplugin.cab' -->(MetaObjectManager) from System Default
    [1026] Skipping empty Property ord.rp.codebase from System Default
    [1027] 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
    [1028] BC4J Property ord.qp.plugins.page='http://www.apple.com/quicktime/download/' -->(MetaObjectManager) from System Default
    [1029] BC4J Property ord.rp.plugins.page='http://www.real.com/player/' -->(MetaObjectManager) from System Default
    [1030] BC4J Property jbo.security.enforce='None' -->(SessionImpl) from System Default
    [1031] BC4J Property jbo.security.loginmodule='oracle.security.jazn.tools.Admintool' -->(SessionImpl) from System Default
    [1032] BC4J Property jbo.server.useNullDbTransaction='false' -->(SessionImpl) from System Default
    [1033] Copying unknown Client property (jbo.applicationmoduleclassname='ehis.ok.da.EhisOkModule') to session
    [1034] Copying unknown Client property (ApplicationName='ehis.ok.da.EhisOkModule') to session
    [1035] Copying unknown Client property (JDBCDataSource='jdbc/OKREGDS') to session
    [1036] Copying unknown Client property (jbo.jdbc.connectstring='jdbc/OKREGDS') to session
    [1037] Copying unknown Client property (jbo.jndi.use_default_context='true') to session
    [1038] Copying unknown Client property (DBconnection='jdbc/OKREGDS') to session
    [1039] WARNING: Unused property: LC='Calling Function' found in /oracle/jbo/common/Diagnostic.properties resource
    [1040] }} finished loading BC4J properties
    [1041] -----------------------------------------------------------

  • JBO Debug Info

    After running my applet in the java plugin i get the following error:
    the Diagnostic.properties in jbomt.zip are set to the defaults in the package. i think the jbo wants to open a local stream for debugoutput, but i can to that by security restriction. what can i do. thanx for any help
    Armin
    Failed to query environment: 'access denied (java.util.PropertyPermission jbo.debugoutput read)'
    Diagnostics: Silencing all diagnostic output (use -Djbo.debugoutput=console to see it)
    Failed to query environment: 'access denied (java.util.PropertyPermission jbo.logging.show.timing read)'
    Failed to query environment: 'access denied (java.util.PropertyPermission jbo.logging.show.function read)'
    Failed to query environment: 'access denied (java.util.PropertyPermission jbo.logging.show.level read)'
    Failed to query environment: 'access denied (java.util.PropertyPermission jbo.logging.show.linecount read)'
    Failed to query environment: 'access denied (java.util.PropertyPermission jbo.logging.trace.threshold read)'
    Failed to query environment: 'access denied (java.util.PropertyPermission jbo.jdbc.driver.verbose read)'
    java.lang.ExceptionInInitializerError: java.security.AccessControlException: access denied (java.sql.SQLPermission setLog)
    at java.security.AccessControlContext.checkPermission(Unknown Source)
    at java.security.AccessController.checkPermission(Unknown Source)
    at java.lang.SecurityManager.checkPermission(Unknown Source)
    at java.sql.DriverManager.setLogStream(Unknown Source)
    at oracle.jbo.common.Diagnostic.init(Diagnostic.java:119)
    at oracle.jbo.common.Diagnostic.<clinit>(Diagnostic.java:62)
    at oracle.jbo.common.JboInitialContextFactory.getInitialContext(JboInitialContextFactory.java:49)
    at javax.naming.spi.NamingManager.getInitialContext(Unknown Source)
    at javax.naming.InitialContext.getDefaultInitCtx(Unknown Source)
    at javax.naming.InitialContext.init(Unknown Source)
    at javax.naming.InitialContext.<init>(Unknown Source)
    at oracle.dacf.dataset.SessionInfo._createAppModule(SessionInfo.java:2279)
    at oracle.dacf.dataset.SessionInfo.connect(SessionInfo.java:1787)
    at oracle.dacf.dataset.SessionInfo.openProducerObject(SessionInfo.java:1833)
    at oracle.dacf.dataset.ProducerObject.open(ProducerObject.java:94)
    at oracle.dacf.dataset.SessionInfo.publishSession(SessionInfo.java:1315)
    at package6.Applet1.init(Applet1.java:307)
    at sun.applet.AppletPanel.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)

    Hi Rahul,
       Try to Use this Function Module. "BAPI_IPAK_START".
    Excute the Function Module, input your infopackage Name and excute in <b>"Debugging Mode".</b>
    Or I am not sure, it will work or not... but try, write <b>BREAK-POINT</b> as first line of your routine and excute the infopackage, It will go into degugging mode(dont forget to remove break-point, before transporting into production).
    Hope it Helps
    Srini

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

  • JBO-25034 at rollback

    I am deploying my business components to OC4J as EJB (BMT) in JDeveloper 9i (Production). When testing, the transaction handling works fine only if I set the attributes of my entity and view objects to 'allways updateable'. Otherwise, if I set an attribute to 'updateable while new' commit is working but rollback of an insert action is only working as long as I haven't typed in any values. As soon as I type in any values in a new recordset and want to rollback I get following error message:
    oracle.jbo.RowNotFoundException: JBO-25034: Row of handle x is not found in RowSet xxxView
    What can I do to avoid this?
    Thanks,
    Matthias

    Hope this is not too much of it. This is the log just for the insert and rollback action.
    Thanks a lot,
    Matthias
    Oracle9iAS (9.0.2.0.0) Containers for J2EE initialized
    Diagnostics: (BC4J Bootstrap) Routing diagnostics to standard output (use -Djbo.debugoutput=silent to remove)
    [00] Diagnostic Properties: Timing:false Functions:false Linecount:true Threshold:6
    [01] Propertymanager: searching for file and system based properties
    [02] {{ begin Loading BC4J properties
    [03] -----------------------------------------------------------
    [04] CommonMessageBundle (language base) being initialized
    [05] Stringmanager using default locale: 'null'
    [06] BC4J Property jbo.default.language='en' -->(MetaObjectManager) from System Default
    [07] BC4J Property jbo.default.country='EN' -->(MetaObjectManager) from Client Environment
    [08] BC4J Property DeployPlatform='Ejb' -->(SessionImpl) from Client Environment
    [09] Skipping empty Property ConnectionMode from System Default
    [10] BC4J Property HostName='localhost' -->(SessionImpl) from Client Environment
    [11] BC4J Property ConnectionPort='-1' -->(SessionImpl) from Client Environment
    [12] BC4J Property jbo.locking.mode='pessimistic' -->(MetaObjectManager) from System Default
    [13] BC4J Property ApplicationPath='wvz_bc01EJB1' -->(SessionImpl) from Client Environment
    [14] BC4J Property AppModuleJndiName='wvz.server.bc.WvzModule' -->(SessionImpl) from Client Environment
    [15] BC4J Property java.naming.security.principal='admin' -->(SessionImpl) from Client Environment
    [16] Skipping empty Property java.naming.security.credentials from System Default
    [17] BC4J Property jbo.use.pers.coll='true' -->(SessionImpl) from System Default
    [18] BC4J Property jbo.pers.max.rows.per.node='70' -->(SessionImpl) from System Default
    [19] BC4J Property jbo.pers.max.active.nodes='30' -->(SessionImpl) from System Default
    [20] Skipping empty Property jbo.pcoll.mgr from System Default
    [21] BC4J Property jbo.stringmanager.factory.class='use_default' -->(SessionImpl) from System Default
    [22] BC4J Property jbo.fetch.mode='AS.NEEDED' -->(MetaObjectManager) from System Default
    [23] BC4J Property jbo.323.compatible='false' -->(MetaObjectManager) from System Default
    [24] Skipping empty Property JBODynamicObjectsPackage from System Default
    [25] BC4J Property MetaObjectContextFactory='oracle.jbo.mom.xml.DefaultMomContextFactory' -->(MetaObjectManager) from System Default
    [26] BC4J Property MetaObjectContext='oracle.jbo.mom.xml.XMLContextImpl' -->(MetaObjectManager) from System Default
    [27] BC4J Property java.naming.factory.initial='oracle.jbo.common.JboInitialContextFactory' -->(SessionImpl) from Client Environment
    [28] BC4J Property IsLazyLoadingTrue='true' -->(MetaObjectManager) from /oracle/jbo/server/jboserver.properties resource
    [29] BC4J Property ActivateSharedDataHandle='false' -->(MetaObjectManager) from System Default
    [30] Skipping empty Property HandleName from System Default
    [31] Skipping empty Property Factory-Substitution-List from System Default
    [32] Skipping empty Property jbo.project from System Default
    [33] BC4J Property jbo.max.cursors='50' -->(MetaObjectManager) from System Default
    [34] BC4J Property jbo.dofailover='true' -->(MetaObjectManager) from System Default
    [35] BC4J Property jbo.doconnectionpooling='true' -->(MetaObjectManager) from Client Environment
    [36] BC4J Property jbo.recyclethreshold='10' -->(MetaObjectManager) from System Default
    [37] BC4J Property jbo.ampool.dynamicjdbccredentials='true' -->(MetaObjectManager) from System Default
    [38] BC4J Property jbo.ampool.resetnontransactionalstate='true' -->(MetaObjectManager) from System Default
    [39] BC4J Property jbo.ampool.sessioncookiefactoryclass='oracle.jbo.common.ampool.DefaultSessionCookieFactory' -->(MetaObjectManager) from System Default
    [40] BC4J Property jbo.ampool.connectionstrategyclass='oracle.jbo.common.ampool.DefaultConnectionStrategy' -->(MetaObjectManager) from System Default
    [41] BC4J Property jbo.ampool.maxpoolsize='10' -->(MetaObjectManager) from Client Environment
    [42] BC4J Property jbo.ampool.initpoolsize='0' -->(MetaObjectManager) from System Default
    [43] BC4J Property jbo.ampool.monitorsleepinterval='600000' -->(MetaObjectManager) from System Default
    [44] BC4J Property jbo.ampool.minavailablesize='5' -->(MetaObjectManager) from System Default
    [45] BC4J Property jbo.ampool.maxavailablesize='2' -->(MetaObjectManager) from Client Environment
    [46] BC4J Property jbo.ampool.maxinactiveage='600000' -->(MetaObjectManager) from System Default
    [47] BC4J Property jbo.passivationstore='null' -->(MetaObjectManager) from System Default
    [48] BC4J Property RELEASE_MODE='Stateful' -->(MetaObjectManager) from System Default
    [49] BC4J Property jbo.maxpoolcookieage='-1' -->(MetaObjectManager) from System Default
    [50] BC4J Property PoolClassName='oracle.jbo.common.ampool.ApplicationPoolImpl' -->(MetaObjectManager) from System Default
    [51] BC4J Property jbo.maxpoolsize='10' -->(MetaObjectManager) from Client Environment
    [52] BC4J Property jbo.initpoolsize='0' -->(MetaObjectManager) from System Default
    [53] BC4J Property jbo.poolrequesttimeout='30000' -->(MetaObjectManager) from System Default
    [54] BC4J Property jbo.poolmonitorsleepinterval='600000' -->(MetaObjectManager) from System Default
    [55] BC4J Property jbo.poolminavailablesize='0' -->(MetaObjectManager) from Client Environment
    [56] BC4J Property jbo.poolmaxavailablesize='5' -->(MetaObjectManager) from Client Environment
    [57] BC4J Property jbo.poolmaxinactiveage='60000' -->(MetaObjectManager) from Client Environment
    [58] BC4J Property jbo.assoc.consistent='true' -->(MetaObjectManager) from System Default
    [59] BC4J Property jbo.viewlink.consistent='false' -->(MetaObjectManager) from System Default
    [60] BC4J Property jbo.passivation.TrackInsert='true' -->(MetaObjectManager) from System Default
    [61] Skipping empty Property jbo.ViewCriteriaAdapter from System Default
    [62] BC4J Property jbo.SQLBuilder='Oracle' -->(MetaObjectManager) from /oracle/jbo/server/jboserver.properties resource
    [63] BC4J Property jbo.ConnectionPoolManager='oracle.jbo.server.ConnectionPoolManagerImpl' -->(MetaObjectManager) from System Default
    [64] BC4J Property jbo.TypeMapEntries='Oracle' -->(MetaObjectManager) from /oracle/jbo/server/jboserver.properties resource
    [65] BC4J Property jbo.sql92.JdbcDriverClass='sun.jdbc.odbc.JdbcOdbcDriver' -->(MetaObjectManager) from System Default
    [66] BC4J Property jbo.jdbc.trace='false' -->(MetaObjectManager) from System Default
    [67] BC4J Property oracle.jbo.defineColumnLength='as_chars' -->(MetaObjectManager) from System Default
    [68] Skipping empty Property jbo.tmpdir from System Default
    [69] BC4J Property jbo.server.internal_connection='jdbc:oracle:thin:wvz/wvz@nb10:1521:sunrise' -->(MetaObjectManager) from Client Environment
    [70] Skipping empty Property SessionClass from System Default
    [71] Skipping empty Property TransactionFactory from System Default
    [72] BC4J Property jbo.debugoutput='console' -->(Diagnostic) from System Property
    [73] BC4J Property jbo.debug.prefix='DBG: ' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    [74] BC4J Property jbo.logging.show.timing='false' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    [75] BC4J Property jbo.logging.show.function='false' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    [76] BC4J Property jbo.logging.show.level='false' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    [77] BC4J Property jbo.logging.show.linecount='true' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    [78] BC4J Property jbo.logging.trace.threshold='6' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    [79] BC4J Property jbo.jdbc.driver.verbose='false' -->(Diagnostic) from System Default
    [80] BC4J Property jbo.ejb.txntimeout='1830' -->(SessionImpl) from System Default
    [81] BC4J Property jbo.ejb.txntype='global' -->(MetaObjectManager) from System Default
    [82] BC4J Property jbo.ejb.txn.disconnect_on_completion='false' -->(SessionImpl) from System Default
    [83] Skipping empty Property oracle.jbo.schema from System Default
    [84] BC4J Property jbo.xml.validation='false' -->(MetaObjectManager) from System Default
    [85] Skipping empty Property ord.HttpMaxMemory from System Default
    [86] Skipping empty Property ord.HttpTempDir from System Default
    [87] BC4J Property ord.wmp.classid='clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95' -->(MetaObjectManager) from System Default
    [88] BC4J Property ord.qp.classid='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' -->(MetaObjectManager) from System Default
    [89] BC4J Property ord.rp.classid='clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA' -->(MetaObjectManager) from System Default
    [90] BC4J Property ord.wmp.codebase='http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701' -->(MetaObjectManager) from System Default
    [91] BC4J Property ord.qp.codebase='http://www.apple.com/qtactivex/qtplugin.cab' -->(MetaObjectManager) from System Default
    [92] Skipping empty Property ord.rp.codebase from System Default
    [93] 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
    [94] BC4J Property ord.qp.plugins.page='http://www.apple.com/quicktime/download/' -->(MetaObjectManager) from System Default
    [95] BC4J Property ord.rp.plugins.page='http://www.real.com/player/' -->(MetaObjectManager) from System Default
    [96] Copying unknown Client property (jbo.server.ejb.beantype='BeanManaged') to session
    [97] Copying unknown Client property (DtMiddleTierDeploymentProfile='wvz_bc01MiddleTier1.deploy') to session
    [98] Copying unknown Client property (DtDeploymentProfile='wvz_bc01EJB1.deploy') to session
    [99] Copying unknown Client property (jbo.server.ejb.vendor='1') to session
    [100] Copying unknown Client property (DtCommonDeploymentProfile='wvz_bc01Common1.deploy') to session
    [101] WARNING: Unused property: LC='Calling Function' found in /oracle/jbo/common/Diagnostic.properties resource
    [102] }} finished loading BC4J properties
    [103] -----------------------------------------------------------
    Diagnostics: (Properties (re)loaded) Routing diagnostics to standard output (use -Djbo.debugoutput=silent to remove)
    [104] Diagnostic Properties: Timing:false Functions:false Linecount:true Threshold:6
    [105] JavaVMVersion: 1.3.1_03-b03
    [106] JavaVMVendor: Sun Microsystems Inc.
    [107] JavaVMName: Java HotSpot(TM) Client VM
    [108] OperatingSystemName: Windows 2000
    [109] OperatingSystemVersion: 5.0
    [110] OperatingSystemUsername: schu
    [111] Jbo323Compatible Flag: false, str: false
    [112] Registered Oracle JDBC driver with BC4J Server
    [113] Exception java.lang.NoClassDefFoundError: oracle/jdeveloper/profiler/ProfilerAPI while loading Ojvm instrumentation: disabled
    [114] BC4J: Instrumentation disabled
    [115] Loading from /wvz/server/bc/bc.xml file
    [116] Loading from indvidual XML files
    [117] Loading the Containees for the Package 'wvz.server.bc.bc'.
    [118] Loading from /wvz/server/bc/WvzModule.xml file
    [119] Loading from /wvz/server/bc/StStatusView.xml file
    [120] ViewObjectImpl's default fetch mode = 0
    [121] Loading from /wvz/server/bc/StStatus.xml file
    [122] Loading Typemap entries from oracle.jbo.common.OracleTypeMapEntries
    [123] CSMessageBundle (language base) being initialized
    [124] OracleSQLBuilder reached getInterface
    [125] Oracle SQL Builder Version 3.2.0.0.0
    [126] Loading from /wvz/server/bc/StFinanzView.xml file
    [127] Loading from /wvz/server/bc/StFinanz.xml file
    [128] Loading from /wvz/server/bc/StTnuWvzView.xml file
    [129] Loading from /wvz/server/bc/StTnuWvz.xml file
    [130] Loading from /wvz/server/bc/StGemarkView.xml file
    [131] Loading from /wvz/server/bc/StGemark.xml file
    [132] Loading from /wvz/server/bc/StGemView.xml file
    [133] Loading from /wvz/server/bc/StGem.xml file
    [134] Loading from /wvz/server/bc/WzFlstView.xml file
    [135] Loading from /wvz/server/bc/WzFlst.xml file
    [136] Loading from /wvz/server/bc/WvzLogin.xml file
    [137] Loading from /wvz/server/bc/WzBestandView.xml file
    [138] Loading from /wvz/server/bc/WzBestand.xml file
    [139] Loading from /wvz/server/bc/WzVorView.xml file
    [140] Loading from /wvz/server/bc/WzVor.xml file
    [141] Loading from /wvz/server/bc/WzLageView.xml file
    [142] Loading from /wvz/server/bc/WzLage.xml file
    [143] Loading from /wvz/server/bc/WzTnuView.xml file
    [144] Loading from /wvz/server/bc/WzTnu.xml file
    [145] Loading from /wvz/server/bc/WzPersonView.xml file
    [146] Loading from /wvz/server/bc/WzPerson.xml file
    [147] Loading from /wvz/server/bc/WzNamenView.xml file
    [148] Loading from /wvz/server/bc/WzNamen.xml file
    [149] Loading from /wvz/server/bc/StAdrView.xml file
    [150] Loading from /wvz/server/bc/StAdr.xml file
    [151] Loading from /wvz/server/bc/WzFlstSearchView.xml file
    [152] Loading from /wvz/server/bc/StLkr.xml file
    [153] Loading from /wvz/server/bc/StWeaView.xml file
    [154] Loading from /wvz/server/bc/StWea.xml file
    [155] Loading from /wvz/server/bc/SearchEigentumView.xml file
    [156] Loading from /wvz/server/bc/StLkrView.xml file
    [157] Loading from /wvz/server/bc/WzFlstAllView.xml file
    [158] Loading from /wvz/server/bc/SearchKlassView.xml file
    [159] Loading from /wvz/server/bc/StOrfb.xml file
    [160] Loading from /wvz/server/bc/StOrfl.xml file
    [161] Loading from /wvz/server/bc/StOrf.xml file
    [162] Loading from /wvz/server/bc/SearchTnuView.xml file
    [163] Loading from /wvz/server/bc/WzTnuFa.xml file
    [164] Loading from /wvz/server/bc/SearchBuchungskView.xml file
    [165] Loading from /wvz/server/bc/StBuch.xml file
    [166] Loading from /wvz/server/bc/StGbb.xml file
    [167] Loading from /wvz/server/bc/SeachFlaecheView.xml file
    [168] Loading from /wvz/server/bc/WzOrfbAlbView.xml file
    [169] Loading from /wvz/server/bc/WzOrfbAlb.xml file
    [170] Loading from /wvz/server/bc/WzOrfFaView.xml file
    [171] Loading from /wvz/server/bc/WzOrfFa.xml file
    [172] Loading from /wvz/server/bc/WzOrflAlbView.xml file
    [173] Loading from /wvz/server/bc/WzOrflAlb.xml file
    [174] Loading from /wvz/server/bc/StOrfView.xml file
    [175] Loading from /wvz/server/bc/StOrfbView.xml file
    [176] Loading from /wvz/server/bc/StOrflView.xml file
    [177] Loading from /wvz/server/bc/WzTnuFaView.xml file
    [178] Loading from /wvz/server/bc/StBuchView.xml file
    [179] Loading from /wvz/server/bc/StGbbView.xml file
    [180] Loading from /wvz/server/bc/StFaView.xml file
    [181] Loading from /wvz/server/bc/StFa.xml file
    [182] Loading from /wvz/server/bc/FkWzBestandWzFlstLink.xml file
    [183] Loading from /wvz/server/bc/FkWzBestandWzFlstAssoc.xml file
    [184] Loading from /wvz/server/bc/FkWzVorWzFlstVorLink.xml file
    [185] Loading from /wvz/server/bc/FkWzVorWzFlstVorAssoc.xml file
    [186] Loading from /wvz/server/bc/FkWzLageWzFlstLink.xml file
    [187] Loading from /wvz/server/bc/FkWzLageWzFlstAssoc.xml file
    [188] Loading from /wvz/server/bc/FkWzTnuWzFlstLink.xml file
    [189] Loading from /wvz/server/bc/FkWzTnuWzFlstAssoc.xml file
    [190] Loading from /wvz/server/bc/FkWzPersonWzBestandLink.xml file
    [191] Loading from /wvz/server/bc/FkWzPersonWzBestandAssoc.xml file
    [192] Loading from /wvz/server/bc/FkWzNamenWzPersonLink.xml file
    [193] Loading from /wvz/server/bc/FkWzNamenWzPersonAssoc.xml file
    [194] Loading from /wvz/server/bc/FkWzPersonStAdrLink2.xml file
    [195] Loading from /wvz/server/bc/FkWzPersonStAdrAssoc2.xml file
    [196] Loading from /wvz/server/bc/FkWzOrfbAlbWzFlstLink.xml file
    [197] Loading from /wvz/server/bc/FkWzOrfbAlbWzFlstAssoc.xml file
    [198] Loading from /wvz/server/bc/FkWzOrfFaWzFlstLink.xml file
    [199] Loading from /wvz/server/bc/FkWzOrfFaWzFlstAssoc.xml file
    [200] Loading from /wvz/server/bc/FkWzOrflAlbWzFlstLink.xml file
    [201] Loading from /wvz/server/bc/FkWzOrflAlbWzFlstAssoc.xml file
    [202] Loading from /wvz/server/bc/FkWzTnuFaWzFlstLink.xml file
    [203] Loading from /wvz/server/bc/FkWzTnuFaWzFlstAssoc.xml file
    [204] Using DatabaseTransactionFactory implementation oracle.jbo.server.DatabaseTransactionFactory
    [205] Created root application module: 'wvz.server.bc.WvzModule'
    [206] Locale is: 'en_EN'
    [207] ViewObjectImpl.mUsePersColl is true
    [208] ViewObjectImpl.mDefaultMaxRowsPerNode is 70
    [209] ViewObjectImpl.mDefaultMaxActiveNodes is 30
    [210] DBTransactionImpl Max Cursors is 50
    [211] Oracle SQLBuilder: Registered driver: oracle.jdbc.driver.OracleDriver
    [212] Transaction timeout set to 1830 secs
    [213] Creating a new pool resource
    [214] Trying connection/2: url='jdbc:oracle:thin:@nb10:1521:sunrise' info='{password=wvz, user=wvz}' ...
    [215] Successfully logged in
    [216] JDBCDriverVersion: 9.0.1.2.0
    [217] DatabaseProductName: Oracle
    [218] DatabaseProductVersion: Oracle9i Enterprise Edition Release 9.0.1.1.1 - Production With the Partitioning option JServer Release 9.0.1.1.1 - Production
    [219] ViewRowSetImpl's jbo.viewlink.consistent = false (0)
    [220] Loading from /wvz/server/bc/FkWzEigentumAendWzFlstLink.xml file
    [221] Loading from /wvz/server/bc/WzEigentumAendView.xml file
    [222] Loading from /wvz/server/bc/WzEigentumAend.xml file
    [223] Loading from /wvz/server/bc/FkWzEigentumAendWzFlstAssoc.xml file
    [224] Loading from /wvz/server/bc/FkWzLageFaWzFlstLink.xml file
    [225] Loading from /wvz/server/bc/WzLageFaView.xml file
    [226] Loading from /wvz/server/bc/WzLageFa.xml file
    [227] Loading from /wvz/server/bc/FkWzLageFaWzFlstAssoc.xml file
    [228] Loading from /wvz/server/bc/FkWzNubeWzFlstLink.xml file
    [229] Loading from /wvz/server/bc/WzNubeView.xml file
    [230] Loading from /wvz/server/bc/WzNube.xml file
    [231] Loading from /wvz/server/bc/FkWzNubeWzFlstAssoc.xml file
    [232] Loading from /wvz/server/bc/FkWzRueckWzFlstLink.xml file
    [233] Loading from /wvz/server/bc/WzRueckView.xml file
    [234] Loading from /wvz/server/bc/WzRueck.xml file
    [235] Loading from /wvz/server/bc/FkWzRueckWzFlstAssoc.xml file
    [236] Loading from /wvz/server/bc/FkWzTextWzFlstLink.xml file
    [237] Loading from /wvz/server/bc/WzTextView.xml file
    [238] Loading from /wvz/server/bc/WzText.xml file
    [239] Loading from /wvz/server/bc/FkWzTextWzFlstAssoc.xml file
    [240] Loading from /wvz/server/bc/FkWzVorWzFlstAktLink.xml file
    [241] Loading from /wvz/server/bc/FkWzVorWzFlstAktAssoc.xml file
    [242] Column count: 45
    [243] ViewObject : Created new QUERY statement
    [244] SELECT WzFlst.FLST, WzFlst.GEMARK, WzFlst.FINANZ, WzFlst.WEA, WzFlst.STATUS, WzFlst.BETR_VERTRAG, WzFlst.FW_ZUS, WzFlst.FLUR, WzFlst.FLURSTUCK, WzFlst.FLST_FLAE_ALB, WzFlst.ALB_DAT, WzFlst.PRZ, WzFlst.ENTST_JHR, WzFlst.FORTF_NR, WzFlst.FORTF_ART, WzFlst.L_FORT, WzFlst.LFORTF_NR, WzFlst.LFORTF_ART, WzFlst.AF, WzFlst.GELOESCHT, WzFlst.GELESEN, WzFlst.HISTORISCH, WvzLogin.FA, WvzLogin.FA_VON, WvzLogin.FA_NAME, StGemark.GEMARK AS GEMARK1, StGemark.GEMARK_NAME, StGemark.GEM, StGem.GEM AS GEM1, StGem.LKR, StGem.GEM_NAME FROM WVZ.WZ_FLST WzFlst, WVZ_LOGIN WvzLogin, WVZ.ST_GEMARK StGemark, WVZ.ST_GEM StGem WHERE WzFlst.GEMARK = StGemark.GEMARK and StGemark.GEM = StGem.GEM and StGemark.LKR = StGem.LKR and (StGemark.FA = WvzLogin.FA and StGemark.FA_VON = WvzLogin.FA_VON) ORDER BY WzFlst.FLST
    [245] [RangeRefreshEvent: WzFlstView start=0 count=1]
    [246] [NavigationEvent: WzFlstView From -1 to 0]
    [247] Loading from /wvz/server/bc/FkWzFlstStWeaAssoc.xml file
    [248] Loading from /wvz/server/bc/FkWzFlstStStatusAssoc.xml file
    [249] Loading from /wvz/server/bc/FkWzFlstStFinanzAssoc.xml file
    [250] Loading from /wvz/server/bc/FkWzFlstStGemarkAssoc.xml file
    [251] Loading from /wvz/server/bc/FkStGemarkStGemAssoc.xml file
    [252] Insert [InsertEvent: WzFlstView rowIndex=0 countB4=1 count=1]
    [253] [NavigationEvent: WzFlstView From -1 to 0]
    [254] [UpdateEvent: WzFlstView rowIndex=0 attrIndices=0]
    [255] EJBTxnHandler: Rolledback txn
    [256] Transaction timeout set to 1830 secs
    [257] WzFlstView notify ROLLBACK ...
    [258] Clearing VO cache for WzFlstView
    [259] Clear QueryCollection in cache...
    [260] WzBestand_FkWzBestandWzFlstAssoc_WzBestandView notify ROLLBACK ...
    [261] Clearing VO cache for WzBestand_FkWzBestandWzFlstAssoc_WzBestandView
    [262] Clear QueryCollection in cache...
    [263] WzEigentumAend_FkWzEigentumAendWzFlstAssoc_WzEigentumAendView notify ROLLBACK ...
    [264] Clearing VO cache for WzEigentumAend_FkWzEigentumAendWzFlstAssoc_WzEigentumAendView
    [265] Clear QueryCollection in cache...
    [266] WzLage_FkWzLageWzFlstAssoc_WzLageView notify ROLLBACK ...
    [267] Clearing VO cache for WzLage_FkWzLageWzFlstAssoc_WzLageView
    [268] Clear QueryCollection in cache...
    [269] WzLageFa_FkWzLageFaWzFlstAssoc_WzLageFaView notify ROLLBACK ...
    [270] Clearing VO cache for WzLageFa_FkWzLageFaWzFlstAssoc_WzLageFaView
    [271] Clear QueryCollection in cache...
    [272] WzNube_FkWzNubeWzFlstAssoc_WzNubeView notify ROLLBACK ...
    [273] Clearing VO cache for WzNube_FkWzNubeWzFlstAssoc_WzNubeView
    [274] Clear QueryCollection in cache...
    [275] WzOrfbAlb_FkWzOrfbAlbWzFlstAssoc_WzOrfbAlbView notify ROLLBACK ...
    [276] Clearing VO cache for WzOrfbAlb_FkWzOrfbAlbWzFlstAssoc_WzOrfbAlbView
    [277] Clear QueryCollection in cache...
    [278] WzOrfFa_FkWzOrfFaWzFlstAssoc_WzOrfFaView notify ROLLBACK ...
    [279] Clearing VO cache for WzOrfFa_FkWzOrfFaWzFlstAssoc_WzOrfFaView
    [280] Clear QueryCollection in cache...
    [281] WzOrflAlb_FkWzOrflAlbWzFlstAssoc_WzOrflAlbView notify ROLLBACK ...
    [282] Clearing VO cache for WzOrflAlb_FkWzOrflAlbWzFlstAssoc_WzOrflAlbView
    [283] Clear QueryCollection in cache...
    [284] WzRueck_FkWzRueckWzFlstAssoc_WzRueckView notify ROLLBACK ...
    [285] Clearing VO cache for WzRueck_FkWzRueckWzFlstAssoc_WzRueckView
    [286] Clear QueryCollection in cache...
    [287] WzText_FkWzTextWzFlstAssoc_WzTextView notify ROLLBACK ...
    [288] Clearing VO cache for WzText_FkWzTextWzFlstAssoc_WzTextView
    [289] Clear QueryCollection in cache...
    [290] WzTnu_FkWzTnuWzFlstAssoc_WzTnuView notify ROLLBACK ...
    [291] Clearing VO cache for WzTnu_FkWzTnuWzFlstAssoc_WzTnuView
    [292] Clear QueryCollection in cache...
    [293] WzTnuFa_FkWzTnuFaWzFlstAssoc_WzTnuFaView notify ROLLBACK ...
    [294] Clearing VO cache for WzTnuFa_FkWzTnuFaWzFlstAssoc_WzTnuFaView
    [295] Clear QueryCollection in cache...
    [296] WzVor_FkWzVorWzFlstAktAssoc_WzVorView notify ROLLBACK ...
    [297] Clearing VO cache for WzVor_FkWzVorWzFlstAktAssoc_WzVorView
    [298] Clear QueryCollection in cache...
    [299] WzVor1_FkWzVorWzFlstVorAssoc_WzVorView notify ROLLBACK ...
    [300] Clearing VO cache for WzVor1_FkWzVorWzFlstVorAssoc_WzVorView
    [301] Clear QueryCollection in cache...
    [302] Clearing EO cache for wvz.server.bc.StGemark
    [303] Clearing VO cache for StGemarkView
    [304] Clear QueryCollection in cache...
    [305] Clearing VO cache for WzFlstView
    [306] Clear QueryCollection in cache...
    [307] Clearing VO cache for WzFlstSearchView
    [308] Clear QueryCollection in cache...
    [309] Clearing EO cache for wvz.server.bc.WzBestand
    [310] Clearing VO cache for WzBestandView3
    [311] Clear QueryCollection in cache...
    [312] Clearing VO cache for SearchBuchungskView
    [313] Clear QueryCollection in cache...
    [314] Clearing VO cache for WzBestand_FkWzBestandWzFlstAssoc_WzBestandView
    [315] Clear QueryCollection in cache...
    [316] Clearing EO cache for wvz.server.bc.WzVor
    [317] Clearing VO cache for WzVorView
    [318] Clear QueryCollection in cache...
    [319] Clearing VO cache for WzVor_FkWzVorWzFlstAktAssoc_WzVorView
    [320] Clear QueryCollection in cache...
    [321] Clearing VO cache for WzVor1_FkWzVorWzFlstVorAssoc_WzVorView
    [322] Clear QueryCollection in cache...
    [323] Clearing EO cache for wvz.server.bc.WzOrfbAlb
    [324] Clearing VO cache for WzOrfbAlbView
    [325] Clear QueryCollection in cache...
    [326] Clearing VO cache for WzOrfbAlb_FkWzOrfbAlbWzFlstAssoc_WzOrfbAlbView
    [327] Clear QueryCollection in cache...
    [328] Clearing EO cache for wvz.server.bc.WzOrfFa
    [329] Clearing VO cache for WzOrfFaView
    [330] Clear QueryCollection in cache...
    [331] Clearing VO cache for WzOrfFa_FkWzOrfFaWzFlstAssoc_WzOrfFaView
    [332] Clear QueryCollection in cache...
    [333] Clearing EO cache for wvz.server.bc.WzLageFa
    [334] Clearing VO cache for WzLageFa_FkWzLageFaWzFlstAssoc_WzLageFaView
    [335] Clear QueryCollection in cache...
    [336] Clearing EO cache for wvz.server.bc.WzTnu
    [337] Clearing VO cache for WzTnuView
    [338] Clear QueryCollection in cache...
    [339] Clearing VO cache for SearchTnuView
    [340] Clear QueryCollection in cache...
    [341] Clearing VO cache for WzTnu_FkWzTnuWzFlstAssoc_WzTnuView
    [342] Clear QueryCollection in cache...
    [343] Clearing EO cache for wvz.server.bc.WzText
    [344] Clearing VO cache for WzText_FkWzTextWzFlstAssoc_WzTextView
    [345] Clear QueryCollection in cache...
    [346] Clearing EO cache for wvz.server.bc.WzTnuFa
    [347] Clearing VO cache for SearchTnuView
    [348] Clear QueryCollection in cache...
    [349] Clearing VO cache for WzTnuFaView
    [350] Clear QueryCollection in cache...
    [351] Clearing VO cache for WzTnuFa_FkWzTnuFaWzFlstAssoc_WzTnuFaView
    [352] Clear QueryCollection in cache...
    [353] Clearing EO cache for wvz.server.bc.WzLage
    [354] Clearing VO cache for WzLageView
    [355] Clear QueryCollection in cache...
    [356] Clearing VO cache for WzLage_FkWzLageWzFlstAssoc_WzLageView
    [357] Clear QueryCollection in cache...
    [358] Clearing EO cache for wvz.server.bc.WzEigentumAend
    [359] Clearing VO cache for WzEigentumAend_FkWzEigentumAendWzFlstAssoc_WzEigentumAendView
    [360] Clear QueryCollection in cache...
    [361] Clearing EO cache for wvz.server.bc.WzRueck
    [362] Clearing VO cache for WzRueck_FkWzRueckWzFlstAssoc_WzRueckView
    [363] Clear QueryCollection in cache...
    [364] Clearing EO cache for wvz.server.bc.WzOrflAlb
    [365] Clearing VO cache for WzOrflAlbView
    [366] Clear QueryCollection in cache...
    [367] Clearing VO cache for WzOrflAlb_FkWzOrflAlbWzFlstAssoc_WzOrflAlbView
    [368] Clear QueryCollection in cache...
    [369] Clearing EO cache for wvz.server.bc.StGem
    [370] Clearing VO cache for StGemView
    [371] Clear QueryCollection in cache...
    [372] Clearing VO cache for WzFlstView
    [373] Clear QueryCollection in cache...
    [374] Clearing VO cache for WzFlstSearchView
    [375] Clear QueryCollection in cache...
    [376] Clearing EO cache for wvz.server.bc.WzFlst
    [377] Clearing VO cache for WzFlstView
    [378] Clear QueryCollection in cache...
    [379] Clearing VO cache for WzFlstSearchView
    [380] Clear QueryCollection in cache...
    [381] Clearing VO cache for WzFlstAllView
    [382] Clear QueryCollection in cache...
    [383] Clearing VO cache for SeachFlaecheView
    [384] Clear QueryCollection in cache...
    [385] Clearing EO cache for wvz.server.bc.WzNube
    [386] Clearing VO cache for WzNube_FkWzNubeWzFlstAssoc_WzNubeView
    [387] Clear QueryCollection in cache...
    [388] Clearing EO cache for wvz.server.bc.WvzLogin
    [389] Clearing VO cache for WzFlstView
    [390] Clear QueryCollection in cache...

  • Why are BC objects created in user's schema

    Server = Sun Sparc SunOS 5.8, Oracle 8.1.7.4 SID
    Client = Windows 2000, Oracle 9iDS (v9.0.2 w/Jdeveloper v9.0.3)
    Network = 100MB TCP/IP
    I have a schema with relatively large (in my mind) tables master = 225,000 records; detail = 1,200,000 records.
    I've used Jdeveloper 9i to create a business components (Java based) view of these tables.
    When I execute the view (query) and request the last record of the master table, this action takes approximately 1 hr and 40 minutes to accomplish.
    The database is in archive mode.
    The redo logs (3) on the database were 500 KB files (the default created by the DBCA). I was seeing archive files created on the order of one every 10 seconds. I increased the logfiles to be 200 MB and now appear to be getting archives once every 10 minutes.
    I've tracked it down to something taking place in the connected user's tablespace during the query.
    I created a separate tablespace (with it's own temporary tablespace) for my test user. If I did not grant unlimited tablespace to this user, the query failed because the user did not have privilege on the tablespace.
    When I granted unlimited tablespace (is there no middle ground??), the tablespace grew to 290 MB from 128 KB. After disconnecting from the query (quitting the application) the tablespace remained at 290 MB. Upon restarting the query, the used tablespace initially shrunk back to 650KB and then grew again to 290 MB. The temporary tablespace never changed or seemed to be accessed. Both times the query took about1 hr and 40 minutes
    9 objects were created in the users schema, 3 tables, 4 indexes and 2 LOBs.
    My question is why these thing s need to be created for tables that are already indexed and why they would not stay populated for quick reuse. If every one of my users create and populate these tables and indexes for each query session, Ill soon run out of disk space, to say nothing about the ridiculously poor performance.
    Have I made some basic error in the creation of my business components that cause this condition?

    It will spew out a whole lot of diagnostic output. Copy and post that diag and let me have a look at it.Here goes ...... and guess what .... this actually worked, there was no tables created in the user schema and the query only took about 3 or 4 minutes. Something quirky in the JDeveloper / tester way of doing business ???
    [00] Diagnostic Properties: Timing:false Functions:false Linecount:true Threshold:6
    [01] CommonMessageBundle (language base) being initialized
    [02] Stringmanager using default locale: 'null'
    [03] BC4J Property jbo.maxpoolcookieage='-1' -->(MetaObjectManager) from System Default
    [04] Loading 5.0 IDE classes
    [05] BC4J Property jbo.maxpoolcookieage='-1' -->(MetaObjectManager) from System Default
    [06] BC4J Property jbo.maxpoolcookieage='-1' -->(MetaObjectManager) from System Default
    [07] Creating a new pool resource
    [08] BC4JDeployPlatform: LOCAL
    [09] Propertymanager: searching for file and system based properties
    [10] {{ begin Loading BC4J properties
    [11] -----------------------------------------------------------
    [12] BC4J Property jbo.default.language='en' -->(MetaObjectManager) from System Default
    [13] BC4J Property jbo.default.country='US' -->(MetaObjectManager) from System Default
    [14] BC4J Property DeployPlatform='LOCAL' -->(SessionImpl) from Client Environment
    [15] Skipping empty Property ConnectionMode from System Default
    [16] Skipping empty Property HostName from System Default
    [17] Skipping empty Property ConnectionPort from System Default
    [18] BC4J Property jbo.locking.mode='pessimistic' -->(MetaObjectManager) from System Default
    [19] Skipping empty Property ApplicationPath from System Default
    [20] BC4J Property AppModuleJndiName='ctf.database.gpl.bc.BcModule' -->(SessionImpl) from Client Environment
    [21] Skipping empty Property java.naming.security.principal from System Default
    [22] Skipping empty Property java.naming.security.credentials from System Default
    [23] Skipping empty Property jbo.user.principal from System Default
    [24] Skipping empty Property jbo.object.marshaller from System Default
    [25] BC4J Property jbo.use.pers.coll='false' -->(SessionImpl) from System Property
    [26] BC4J Property jbo.pers.max.rows.per.node='70' -->(SessionImpl) from System Default
    [27] BC4J Property jbo.pers.max.active.nodes='30' -->(SessionImpl) from System Default
    [28] Skipping empty Property jbo.pcoll.mgr from System Default
    [29] BC4J Property jbo.txn_table_name='PS_TXN' -->(SessionImpl) from System Default
    [30] BC4J Property jbo.txn_seq_name='PS_TXN_seq' -->(SessionImpl) from System Default
    [31] BC4J Property jbo.control_table_name='PCOLL_CONTROL' -->(MetaObjectManager) from System Default
    [32] BC4J Property jbo.stringmanager.factory.class='use_default' -->(SessionImpl) from System Default
    [33] BC4J Property jbo.fetch.mode='AS.NEEDED' -->(MetaObjectManager) from System Default
    [34] BC4J Property jbo.323.compatible='false' -->(MetaObjectManager) from System Default
    [35] Skipping empty Property JBODynamicObjectsPackage from System Default
    [36] BC4J Property MetaObjectContextFactory='oracle.jbo.mom.xml.DefaultMomContextFactory' -->(MetaObjectManager) from System Default
    [37] BC4J Property MetaObjectContext='oracle.jbo.mom.xml.XMLContextImpl' -->(MetaObjectManager) from System Default
    [38] BC4J Property java.naming.factory.initial='oracle.jbo.common.JboInitialContextFactory' -->(SessionImpl) from Client Environment
    [39] BC4J Property IsLazyLoadingTrue='true' -->(MetaObjectManager) from /oracle/jbo/server/jboserver.properties resource
    [40] BC4J Property ActivateSharedDataHandle='false' -->(MetaObjectManager) from System Default
    [41] Skipping empty Property HandleName from System Default
    [42] Skipping empty Property Factory-Substitution-List from System Default
    [43] BC4J Property jbo.project='PM_BC' -->(MetaObjectManager) from Client Environment
    [44] BC4J Property jbo.max.cursors='50' -->(MetaObjectManager) from System Default
    [45] BC4J Property jbo.dofailover='true' -->(MetaObjectManager) from System Default
    [46] BC4J Property jbo.doconnectionpooling='false' -->(MetaObjectManager) from System Default
    [47] BC4J Property jbo.recyclethreshold='10' -->(MetaObjectManager) from System Default
    [48] BC4J Property jbo.ampool.dynamicjdbccredentials='true' -->(MetaObjectManager) from System Default
    [49] BC4J Property jbo.ampool.resetnontransactionalstate='true' -->(SessionImpl) from System Default
    [50] BC4J Property jbo.ampool.sessioncookiefactoryclass='oracle.jbo.common.ampool.DefaultSessionCookieFactory' -->(MetaObjectManager) from System Default
    [51] BC4J Property jbo.ampool.connectionstrategyclass='oracle.jbo.common.ampool.DefaultConnectionStrategy' -->(MetaObjectManager) from System Default
    [52] BC4J Property jbo.ampool.maxpoolsize='2147483647' -->(MetaObjectManager) from System Default
    [53] BC4J Property jbo.ampool.initpoolsize='0' -->(MetaObjectManager) from System Default
    [54] BC4J Property jbo.ampool.monitorsleepinterval='600000' -->(MetaObjectManager) from System Default
    [55] BC4J Property jbo.ampool.minavailablesize='5' -->(MetaObjectManager) from System Default
    [56] BC4J Property jbo.ampool.maxavailablesize='25' -->(MetaObjectManager) from System Default
    [57] BC4J Property jbo.ampool.maxinactiveage='600000' -->(MetaObjectManager) from System Default
    [58] BC4J Property jbo.passivationstore='null' -->(MetaObjectManager) from System Default
    [59] BC4J Property RELEASE_MODE='Stateful' -->(MetaObjectManager) from System Default
    [60] BC4J Property jbo.maxpoolcookieage='-1' -->(MetaObjectManager) from System Default
    [61] BC4J Property PoolClassName='oracle.jbo.common.ampool.ApplicationPoolImpl'-->(MetaObjectManager) from System Default
    [62] BC4J Property jbo.maxpoolsize='2147483647' -->(MetaObjectManager) from System Default
    [63] BC4J Property jbo.initpoolsize='0' -->(MetaObjectManager) from System Default
    [64] BC4J Property jbo.poolrequesttimeout='30000' -->(MetaObjectManager) from System Default
    [65] BC4J Property jbo.poolmonitorsleepinterval='600000' -->(MetaObjectManager) from System Default
    [66] BC4J Property jbo.poolminavailablesize='5' -->(MetaObjectManager) from System Default
    [67] BC4J Property jbo.poolmaxavailablesize='25' -->(MetaObjectManager) from System Default
    [68] BC4J Property jbo.poolmaxinactiveage='600000' -->(MetaObjectManager) from System Default
    [69] BC4J Property jbo.assoc.consistent='true' -->(MetaObjectManager) from System Default
    [70] BC4J Property jbo.viewlink.consistent='false' -->(MetaObjectManager) from System Default
    [71] BC4J Property jbo.passivation.TrackInsert='true' -->(MetaObjectManager) from System Default
    [72] Skipping empty Property jbo.ViewCriteriaAdapter from System Default
    [73] BC4J Property jbo.SQLBuilder='Oracle' -->(MetaObjectManager) from /oracle/jbo/server/jboserver.properties resource
    [74] BC4J Property jbo.ConnectionPoolManager='oracle.jbo.server.ConnectionPoolManagerImpl' -->(MetaObjectManager) from System Default
    [75] BC4J Property jbo.TypeMapEntries='Oracle' -->(MetaObjectManager) from Client Environment
    [76] Skipping empty Property jbo.sql92.JdbcDriverClass from System Default
    [77] BC4J Property jbo.jdbc.trace='false' -->(MetaObjectManager) from System Default
    [78] BC4J Property jbo.sql92.DbTimeQuery='select sysdate from dual' -->(MetaObjectManager) from System Default
    [79] BC4J Property oracle.jbo.defineColumnLength='as_chars' -->(MetaObjectManager) from System Default
    [80] Skipping empty Property jbo.tmpdir from System Default
    [81] Skipping empty Property jbo.server.internal_connection from System Default
    [82] Skipping empty Property SessionClass from System Default
    [83] Skipping empty Property TransactionFactory from System Default
    [84] BC4J Property jbo.debugoutput='console' -->(Diagnostic) from System Property
    [85] BC4J Property jbo.debug.prefix='DBG: ' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    [86] BC4J Property jbo.logging.show.timing='false' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    [87] BC4J Property jbo.logging.show.function='false' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    [88] BC4J Property jbo.logging.show.level='false' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    [89] BC4J Property jbo.logging.show.linecount='true' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    [90] BC4J Property jbo.logging.trace.threshold='6' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    [91] BC4J Property jbo.jdbc.driver.verbose='false' -->(Diagnostic) from System Default
    [92] BC4J Property jbo.ejb.txntimeout='1830' -->(SessionImpl) from System Default
    [93] BC4J Property jbo.ejb.txntype='global' -->(MetaObjectManager) from System Default
    [94] BC4J Property jbo.ejb.txn.disconnect_on_completion='false' -->(SessionImpl) from System Default
    [95] Skipping empty Property oracle.jbo.schema from System Default
    [96] BC4J Property jbo.xml.validation='false' -->(MetaObjectManager) from System Default
    [97] BC4J Property ord.RetrievePath='ordDeliverMedia' -->(MetaObjectManager) from System Default
    [98] BC4J Property ord.HttpMaxMemory='102400' -->(MetaObjectManager) from System Default
    [99] Skipping empty Property ord.HttpTempDir from System Default
    [100] BC4J Property ord.wmp.classid='clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95' -->(MetaObjectManager) from System Default
    [101] BC4J Property ord.qp.classid='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B'-->(MetaObjectManager) from System Default
    [102] BC4J Property ord.rp.classid='clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA'-->(MetaObjectManager) from System Default
    [103] BC4J Property ord.wmp.codebase='http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701' -->(MetaObjectManager) from System Default
    [104] BC4J Property ord.qp.codebase='http://www.apple.com/qtactivex/qtplugin.cab' -->(MetaObjectManager) from System Default
    [105] Skipping empty Property ord.rp.codebase from System Default
    [106] 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
    [107] BC4J Property ord.qp.plugins.page='http://www.apple.com/quicktime/download/' -->(MetaObjectManager) from System Default
    [108] BC4J Property ord.rp.plugins.page='http://www.real.com/player/' -->(MetaObjectManager) from System Default
    [109] BC4J Property jbo.security.enforce='None' -->(SessionImpl) from System Default
    [110] BC4J Property jbo.security.loginmodule='oracle.security.jazn.tools.Admintool' -->(SessionImpl) from System Default
    [111] BC4J Property jbo.server.useNullDbTransaction='false' -->(SessionImpl) from System Default
    [112] Copying unknown Client property (DBconnection='jdbc:oracle:oci8:@(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=hostname)(PORT=1526)))(CONNECT_DATA=(SID=sidname)))') to session
    [113] Copying unknown Client property (password='apassword') to session
    [114] Copying unknown Client property (JDBCName='dev_oci') to session
    [115] Copying unknown Client property (user='ausername') to session
    [116] Copying unknown Client property (jbo.applicationmoduleclassname='ctf.database.gpl.bc.BcModule') to session
    [117] Copying unknown Client property (ApplicationName='ctf.database.gpl.bc.BcModule') to session
    [118] WARNING: Unused property: LC='Calling Function' found in /oracle/jbo/common/Diagnostic.properties resource
    [119] }} finished loading BC4J properties
    [120] -----------------------------------------------------------Diagnostics: (Properties (re)loaded) Routing diagnostics to standard output (use -Djbo.debugoutput=silent to remove)
    [121] Diagnostic Properties: Timing:false Functions:false Linecount:true Threshold:6
    [122] JavaVMVersion: 9.0.3.738 cdov
    [123] JavaVMVendor: Oracle Corp.
    [124] JavaVMName: OJVM Client VM
    [125] OperatingSystemName: Windows 2000
    [126] OperatingSystemVersion: 5.0
    [127] OperatingSystemUsername: MacEwan James
    [128] Jbo323Compatible Flag: false, str: false
    [129] Loading from PM_BC.jpx file
    [130] Loading from indvidual XML files
    [131] Loading the Containees for the Package 'PM_BC.PM_BC'.
    [132] Registered Oracle JDBC driver with BC4J Server
    [133] Connected to Oracle JBO Server - Version: 9.0.3.10.7
    [134] BC4J: Instrumentation disabled
    [135] Loading from /ctf/database/gpl/bc/bc.xml file
    [136] Loading from indvidual XML files
    [137] Loading the Containees for the Package 'ctf.database.gpl.bc.bc'.
    [138] Loading from /ctf/database/gpl/bc/BcModule.xml file
    [139] Loading from /ctf/database/gpl/bc/GplElementView.xml file
    [140] ViewObjectImpl's default fetch mode = 0
    [141] Loading from /ctf/database/gpl/bc/GplElement.xml file
    [142] Loading Typemap entries from oracle.jbo.common.OracleTypeMapEntries
    [143] CSMessageBundle (language base) being initialized
    [144] OracleSQLBuilder reached getInterface
    [145] Oracle SQL Builder Version 3.2.0.0.0
    [146] Loading from /ctf/database/gpl/bc/GplGroupView.xml file
    [147] Loading from /ctf/database/gpl/bc/GplGroup.xml file
    [148] Loading from /ctf/database/gpl/bc/GplPageView.xml file
    [149] Loading from /ctf/database/gpl/bc/GplPage.xml file
    [150] Loading from /ctf/database/gpl/bc/GplParamView.xml file
    [151] Loading from /ctf/database/gpl/bc/GplParam.xml file
    [152] Loading from /ctf/database/gpl/bc/GroupPageIdFkLink.xml file
    [153] Loading from /ctf/database/gpl/bc/GroupPageIdFkAssoc.xml file
    [154] Loading from /ctf/database/gpl/bc/ElementPageFkLink.xml file
    [155] Loading from /ctf/database/gpl/bc/ElementPageFkAssoc.xml file
    [156] Loading from /ctf/database/gpl/bc/ParamElmFkLink.xml file
    [157] Loading from /ctf/database/gpl/bc/ParamElmFkAssoc.xml file
    [158] Using DatabaseTransactionFactory implementation oracle.jbo.server.Database TransactionFactory
    [159] mUsePersColl is false
    [160] ViewObjectImpl.mDefaultMaxRowsPerNode is 70
    [161] ViewObjectImpl.mDefaultMaxActiveNodes is 30
    [162] DBTransactionImpl Max Cursors is 50
    [163] Created root application module: 'ctf.database.gpl.bc.BcModule'
    [164] Locale is: 'en_US'
    [165] DefaultConnectionStrategy is establishing an application module connection
    [166] Oracle SQLBuilder: Registered driver: oracle.jdbc.driver.OracleDriver
    [167] Creating a new pool resource
    [168] Trying connection/2: url='jdbc:oracle:oci8:@(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=ahost)(PORT=1526)))(CONNECT_DATA=(SID=asid)))' info='{user=ausername, password=apassword, java.naming.security.principal=ausername, java.naming.security.credentials=ausername}' ...
    [169] Successfully logged in
    [170] JDBCDriverVersion: 9.0.1.4.0
    [171] DatabaseProductName: Oracle
    [172] DatabaseProductVersion: Oracle8i Enterprise Edition Release 8.1.7.4.0 - Production JServer Release 8.1.7.4.0 - Production
    [173] ViewRowSetImpl's jbo.viewlink.consistent = false (0)
    [174] Column count: 21
    [175] ViewObject : Created new QUERY statement
    [176] SELECT GplPage.PAGE_ID, GplPage.PAGENAME, GplPage.HEIGHT, GplPage.WIDTH, GplPage.UNITS, GplPage.GRID_SCALE, GplPage.GRID_FLAGS, GplPage.LEFT_GRID_MARGIN, GplPage.RIGHT_GRID_MARGIN, GplPage.BOTTOM_GRID_MARGIN, GplPage.TOP_GRID_MARGIN, GplPage.NUM_MINOR_GRID, GplPage.TYPE, GplPage.ACL, GplPage.CLASS, GplPage.DATE_MOD, GplPage.NUM_ELEMENT, GplPage.LOCKED, GplPage.FLAGS FROM GPL.GPL_PAGE GplPage
    [177] Column count: 11
    [178] ViewObject close prepared statements...
    [179] ViewObject : Created new QUERY statement
    [180] SELECT GplGroup.GROUP_ID, GplGroup.LINK_ID, GplGroup.USERNAME, GplGroup.GROUPNAME, GplGroup.ACL, GplGroup.CLASS, GplGroup.PAGE_ID, GplGroup.TAIL, GplGroup.TEST, GplGroup.SEQ, GplGroup.VERSION FROM GPL.GPL_GROUP GplGroup WHERE GplGroup.PAGE_ID = :1
    [181] Binding null for 1
    [182] Column count: 11
    [183] ViewObject : Re-defining and reusing prepared Statement
    [184] Binding param 1: 2
    [185] JBOTableModel: Recvd Event=[RangeRefreshEvent: GplGroupView2 start=0 count=1]
    [186] $$added root$$ id=-2
    [187] $$added root$$ id=-73
    [188] $$added root$$ id=-2559
    [189] Column count: 11
    [190] ViewObject : Reusing defined prepared Statement
    [191] Binding param 1: 363793
    [192] JBOTableModel: Recvd Event=[RangeRefreshEvent: GplGroupView2 start=0 count=1]
    [193] Removing an unreferenced, available pool instance
    [194] ViewObject close prepared statements...
    [195] ViewObject close prepared statements...
    [196] ViewObject close prepared statements...
    [197] ViewObject close prepared statements...
    [198] ViewObject close prepared statements...
    [199] ViewObject close prepared statements...
    [200] ViewObject close prepared statements...
    [201] Clearing EO cache for ctf.database.gpl.bc.GplPage
    [202] Clearing EO cache for ctf.database.gpl.bc.GplParam
    [203] Clearing EO cache for ctf.database.gpl.bc.GplGroup
    [204] Clearing EO cache for ctf.database.gpl.bc.GplElement
    [205] Clearing EO cache for ctf.database.gpl.bc.GplPage
    [206] Clearing EO cache for ctf.database.gpl.bc.GplParam
    [207] Clearing EO cache for ctf.database.gpl.bc.GplGroup
    [208] Clearing EO cache for ctf.database.gpl.bc.GplElement
    [209] Resetting AM=BcModule
    [210] *** closing jdbc connection now **** (oracle.jdbc.driver.OracleConnection@120)
    [211] mUsePersColl is false
    [212] ViewObjectImpl.mDefaultMaxRowsPerNode is 70
    [213] ViewObjectImpl.mDefaultMaxActiveNodes is 30
    BC4J Tester exit code(0)

  • Another controversy: Where to store common application parameters?

    For higher flexibility, application parameters are usually set. For intranet applications, I used to store these parameters with my Oracle database. Now I'm developing a web-based internet applications, would you please advise for the following questions:
    1) The place to store common application parameters (How to set and how to retrieve?)
    (Currently, I have put such application parameters into a class file. Although it should be faster than retrieval from database, it means that I need to re-compile in case of any changes are made for those parameters. Can I set up some global constant for my application with my JDeveloper? How to set and how to retrieve?).
    2) The place to store the application configuration and application package string
    (As you see, if you have many Jsp page, it's not convenient to change the <jbo:ApplicationModule ... Configuration="MyConfig"... /> all the time. It may be better if it could be generalized by a variable. I have found the configuration in the "web.xml" file, but i don't know how to retrieve the value from it. Currently, I have made use of my old approach mentioned in Question 1 - place the configuration string in a common class ... the drawback has already been mentioned as above ... any better solutions?)
    Thanks for replying!

    Curt,
    To create an AM using the definition in the cpx file:
       JUApplication app = JUMetaObjectManager.createApplicationObject("Project2.am");
       ApplicationModule am = app.getApplicationModule();.
    This is the same call used by JClient application.
    Here is the story with BC4J runtime params:
    jbo.default.language
    This parameter is used in localization.
    jbo.default.country
    This parameter is used in localization.
    DeployPlatform
    The platform on which the business components are deployed:
    LOCAL - The web module of Oracle 9iAS
    EJB_IAS - The EJB module or Oracle 9iAS
    VB - A VisiBroker CORBA server
    WLS - a WebLogic application server
    Connection Mode
    For business components deployed to VisiBroker, the connection
    mode used:
    1 - colocate mode
    2 - remote mode
    3 - IOR mode
    4 - bind mode
    For more information, see the VisiBroker documentation.
    HostName
    For all deployment platforms except LOCAL, the name of the
    application server hosting the business components.
    ConnectionPort
    For all deployment platforms except LOCAL, the port of the
    application server hosting the business components.
    ApplicationPath
    For all deployment platforms except LOCAL, the JNDI path to the
    business components.
    java.naming.security.principal
    For all deployment platforms except LOCAL, the username for the
    IIOP connection to the business components.
    jbo.use.pers.coll
    Setting this to true enables view row spillover. If you are working
    with large rowsets and memory is a problem, this property should be
    true. For more information, see the Oracle JDeveloper documentation.
    jbo.pers.max.rows.per.node
    The maximum size of a node for view row spillover.
    jbo.pers.max.active.nodes
    The maximum number of nodes that will be cached in memory for view
    row spillover.
    jbo.fetch.mode
    AS.NEEDED causes view objects to only fetch rows when they are
    requested. ALL causes them to fetch the entire results of their
    queries.
    MetaObjectContextFactory
    The default value uses the business components framework's
    MetaObjectContext Factory, which stores business components metadata
    in XML. If you want to use a different format for business components
    metadata, you can implement your own MetaObjectContext Factory.
    IsLazyLoadingTrue
    For all deployment platofrms except LOCAL, setting this property to
    true will cause business componetns metadata to be loaded into memory
    only as needed, whereas setting it to false will cause all metadata
    to be loaded into memory immediately. Lazy loading is mandatory in
    LOCAL mode.
    Factory-Substitution-List
    The list of business components to substitute out. See the Oracle
    JDeveloper documentation for more information on substituting
    business components.
    jbo.project
    The project containing business components to be substituted for old
    ones, if Factory-Substitution-List is not empty.
    jbo.max.cursors
    The maximum number of cursors the business components may have open.
    The framework will clean up free JDBC statements as the number of
    cursors approaches this number.
    do.failover
    This property is true if application module failover is enabled.
    Setting this property to false provides better performance at the
    expense of reliability.
    jbo.doconnectionpooling
    This property is true if application modules are allowed to share
    connections. For more information about connection pooling, see the
    Oracle JDeveloper documentation.
    jbo.recyclethreshold
    The recycle threshold for application module pooling. When the number
    of application modules in the pool reaches this level, the pool
    begins to recycle application modules in stateful mode. Monitoring
    the application module pool statistics may help you decide on a good
    value for this field.
    jbo.ampool.highwatermark
    The maximum number of application modules allowed in the pool. If
    this high-water mark is reached, clients must wait for the next
    available application module.
    jbo.ampool.resetnontransactionalstate
    If this property is false, application modules will preserve their
    non-transactional state (properties and dynamically added view
    object, view link, and nested application module members) even when
    they are checked in in stateless mode. If the property is true,
    non-transactional state will be reset.
    jbo.ampool.sessioncookiefactoryclass
    This class creates the session cookies that allow clients to retrieve
    application modules in stateful mode. Change this value only if you
    need to implement your own custom session cookie factory. See the
    Oracle JDeveloper documentation for more information.
    jbo.ampool.connectionstrategyclass
    This class manages the connection strategy for the application module
    pool. Change this value only if you need to implement your own custom
    connection strategy. See the Oracle JDeveloper documentation for
    more information.
    jbo.passivationstore
    When an application module is released in stateful mode, its state is
    saved when the application module is recycled (or immediately if
    failover is enabled). If this property is 'null' or 'database', the
    state is saved to the database. If the property is 'file', the state
    is saved to a local file.
    RELEASE_MODE
    The release mode--Stateless, Stateful, or Reserved--used by data web
    beans. Other clients specify their own release mode.
    jbo.maxpoolcookieage
    The maximum age of the browser cookies used to help clients retrieve
    stateful application modules. If these cookies do not time out, the
    value is -1.
    PoolClassName
    The class that implements the application module pool. Do not change
    this value unless you are using a custom application module pool
    implementation. For more information, see the Oracle JDeveloper
    documentation.
    jbo.maxpoolsize
    The maximum size of the JDBC connection pool. If this number is
    exceeded, an application module will have to wait for a connection if
    none is available.
    jbo.initpoolsize
    The number of JDBC connections automatically created in the
    connection pool, before any requests.
    jbo.poolrequesttimeout
    The amount of time, in milliseconds, an application module will wait
    for an available connection before failing.
    jbo.assoc.consistent
    If this property is true, the entity rowsets retrieved through
    association accessors will include rows that have been added, even if
    these changes have not been posted to the database. This property can
    reduce performance and so should be turned off if not needed.
    jbo.viewlink.consistent
    If this property is true, the view object rowsets retrieved through
    view link accessors will include rows that have been added, even if
    these changes have not been posted to the database. This property can
    reduce performance and so should be turned off if not needed.
    jbo.SQLBuilder
    The SQL flavor generated by view objects:
    Oracle - for the Oracle8i or Oracle9i database
    OLite - for the Oracle Lite database
    SQL92 - for any SQL92-compliant database
    DB2 - IBM DB2 Universal Database
    jbo.ConnectionPoolManager
    The class that manges the connection pool. Do not change this value
    unless you are using a custom application module pool manager
    implementation. For more information, see the Oracle JDeveloper
    documentation.
    jbo.TypeMapEntries
    The type mappings used by business components:
    Oracle - for the Oracle8i or Oracle9i database
    OLite - for the Oracle Lite database
    SQL92 - for any SQL92-compliant database
    oracle.jbo.defineColumnLength
    If this is false, business components will not by default define
    column length for CHAR and VARCHAR2 columns. In general, this should
    only be set to false for NLS applications.
    jbo.tmpdir
    You can use this parameter to specify a directory for temporary files.
    jbo.server.internal-connection
    Specifies a connection to use when application module state is saved
    to the database. By default, the application module pool will use the
    application module's JDBC connection.
    SessionClass
    The class which implements the oracle.jbo.Session interface, used to
    load and store session context throughout a client's lifetime. By
    default, the framework uses oracle.jbo.server.SessionImpl. Do not
    change this value unless you have implemented a custom session
    implementation class.
    TransactionFactory
    The class responsible for creating database transactions. By default,
    the framework uses oracle.jbo.server.DatabaseTransactionFactory. Do
    not change this value unless you have implemented a custom
    transaction factory class.
    jbo.debugoutput
    If this property is set to 'console', debug information is displayed
    on the console. If the property is set to 'silent', debug information
    is not displayed.
    jbo.logging.show.timing
    Whether to show the time elapsed between debug calls.
    jbo.logging.show.function
    Whether to show the name of the method that triggered a debugger
    call. Setting this property to true will degrade performance.
    jbo.logging.show.level
    Show the trace level of debugger messages. The lower the trace level,
    the more important the message.
    jbo.logging.show.linecount
    Number the lines of debugger output.
    jbo.logging.trace.threshold
    Lower this number to display only the most important debugger
    messages; raise it to display a larger portion of debugger messages.
    jbo.jdbc.driver.verbose
    If this property is true, the JDBC driver will run in verbose mode.
    For more information, see the JDBC documentation.
    jbo.ejb.txn.timeout
    For EJB deployment configurations, the number of seconds after the
    last database access before the EJB transaction expires.
    jbo.ejb.txntype
    For EJB deployment configurations, the transaction type:
    global - use the JTA UserTransaction interface
    local - use straight JDBC
    jbo.xml.validation
    If true, the XML parser uses strict XML validation.
    Charles.

  • JClient - Closing Sessions

    Hello. Our application is using JClient/BC4J (9.035) in local mode and is set up to utilize one ApplicationModule per form. We have noticed that every form that is opened creates a Session in the DB. These sessions stay alive after releasing the appmodule on close of the form. So, after awhile the Session count is rather high. The only way that we have found to get rid of the Session is to use Configuration.releaseRootApplicationModule(panelAppModule, true) to force it (with the true parameter) to remove and discard the appmodule. This works, but then upon trying to re-open the form, the appmodule (after recreated) can no longer find the view objects.
    Questions:
    1) Is there another way to kill the session when done (temporarily) with the appmodule?
    I have tried setting these to no effect:
    env.put("jbo.doconnectionpooling", "true");
    env.put("jbo.maxpoolsize", "-1");
    2) Or a way to re-read the appmodule in from the XML as when first created?
    Thanks,
    Chip McMakin

    Hello - I have disabled both the AM pooling and the
    connection pooling as you have suggested. The Session
    still remains open. For the follwing debug trace, I open
    the application, open 1 form which is using the
    ApplicationModule: UnitOfMeasureModule, then I close the
    form - which clears the caches and releases the appModule
    by doing:
    Configuration.releaseRootApplicationModule(panelAppModule, false).
    Thanks for your help,
    Chip McMakin.
    C:\j2sdk1.4.2_05\bin\java -Djbo.debugoutput=console -Didea.launcher.port=7534 -Didea.launcher.library=C:\IntelliJ-IDEA-4.5\bin\breakgen.dll -Dfile.encoding=windows-1252 -classpath C:\j2sdk1.4.2_05\jre\lib\charsets.jar;C:\j2sdk1.4.2_05\jre\lib\jce.jar;C:\j2sdk1.4.2_05\jre\lib\jsse.jar;C:\j2sdk1.4.2_05\jre\lib\plugin.jar;C:\j2sdk1.4.2_05\jre\lib\rt.jar;C:\j2sdk1.4.2_05\jre\lib\sunrsasign.jar;C:\j2sdk1.4.2_05\jre\lib\ext\dnsns.jar;C:\j2sdk1.4.2_05\jre\lib\ext\ldapsec.jar;C:\j2sdk1.4.2_05\jre\lib\ext\localedata.jar;C:\j2sdk1.4.2_05\jre\lib\ext\sunjce_provider.jar;C:\ips\out;C:\ips\ips\lib\inpowerforms\lib\bc4jui.jar;C:\ips\ips\lib\inpowerforms\lib\junit.jar;C:\ips\ips\lib\inpowerforms\lib\activation.jar;C:\ips\ips\lib\inpowerforms\lib\ojdbc14.jar;C:\ips\ips\lib\inpowerforms\lib\jbossall-client.jar;C:\ips\ips\lib\inpowerforms\lib\bc4jmt.jar;C:\ips\ips\lib\inpowerforms\lib\bc4jct.jar;C:\ips\ips\lib\inpowerforms\lib\mail.jar;C:\ips\ips\lib\inpowerforms\lib\jdev-rt.jar;C:\ips\ips\lib\inpowerforms\lib\collections.jar;C:\ips\ips\lib\inpowerforms\lib\xmlparserv2.jar;C:\ips\ips\lib\inpowerforms\lib\winlaf.jar;C:\ips\ips\lib\inpowerforms\lib\jdev-cm.jar;C:\ips\ips\lib\inpowerforms\lib\jboss-j2ee.jar;C:\ips\ips\lib\inpowerforms\lib\diff.jar;C:\ips\ips\lib\inpowerforms\lib\bc4jdomorcl.jar;C:\ips\ips\lib\inpowerforms\lib\orio.jar;C:\ips\ips\lib\inpowerforms\lib\jfreechart-0.9.2.jar;C:\ips\ips\lib\inpowerforms\lib\jcommon-0.6.4.jar;C:\ips\ips\lib\inpowerforms\lib\soap.jar;C:\ips\ips\lib\inpowerforms\lib\TableLayout.jar;C:\ips\ips\lib\inpowerforms\lib\bcprov-jdk14-124.jar;C:\ips\ips\lib\reports\activation.jar;C:\ips\ips\lib\reports\aspectjrt.jar;C:\ips\ips\lib\reports\aspectjtools.jar;C:\ips\ips\lib\reports\diff.jar;C:\ips\ips\lib\reports\ecs-1.4.2.jar;C:\ips\ips\lib\reports\iText.jar;C:\ips\ips\lib\reports\jcommon-0.6.4.jar;C:\ips\ips\lib\reports\jfreechart-0.9.2.jar;C:\ips\ips\lib\reports\junit.jar;C:\ips\ips\lib\reports\mail.jar;C:\ips\ips\lib\reports\orajdbc9i.jar;C:\ips\ips\lib\reports\orajdbc9icursor.jar;C:\ips\ips\lib\reports\orajdbc9inls.jar;C:\ips\ips\lib\reports\orio.jar;C:\ips\ips\lib\reports\servlet.jar;C:\IntelliJ-IDEA-4.5\lib\idea_rt.jar com.intellij.rt.execution.application.AppMain com.ips.client.tbs.core.TbsApp
    Diagnostics: (BC4J Bootstrap) Routing diagnostics to standard output (use -Djbo.debugoutput=silent to remove)
    [00] Diagnostic Properties: Timing:false Functions:false Linecount:true Threshold:6
    [01] CommonMessageBundle (language base) being initialized
    [02] Stringmanager using default locale: 'null'
    [03] JavaVMVersion: 1.4.2_05-b04
    [04] JavaVMVendor: Sun Microsystems Inc.
    [05] JavaVMName: Java HotSpot(TM) Client VM
    [06] OperatingSystemName: Windows XP
    [07] OperatingSystemVersion: 5.1
    [08] OperatingSystemUsername: chip
    [09] Jbo323Compatible Flag: false, str: null
    [10] Loading from Client.cpx file
    [11] Loading Child Containers for the container 'Client.Client'.
    [12] BC4J Property jbo.maxpoolcookieage='-1' -->(MetaObjectManager) from System Default
    [13] Loading 5.0 IDE classes
    [14] BC4J Property jbo.maxpoolcookieage='-1' -->(MetaObjectManager) from System Default
    [15] Creating a new pool resource
    [16] BC4JDeployPlatform: LOCAL
    [17] Propertymanager: searching for file and system based properties
    [18] {{ begin Loading BC4J properties
    [19] -----------------------------------------------------------
    [20] BC4J Property jbo.default.language='en' -->(MetaObjectManager) from System Default
    [21] BC4J Property jbo.default.country='US' -->(MetaObjectManager) from System Default
    [22] BC4J Property DeployPlatform='LOCAL' -->(SessionImpl) from Client Environment
    [23] Skipping empty Property ConnectionMode from System Default
    [24] Skipping empty Property HostName from System Default
    [25] Skipping empty Property ConnectionPort from System Default
    [26] BC4J Property jbo.locking.mode='pessimistic' -->(MetaObjectManager) from System Default
    [27] Skipping empty Property ApplicationPath from System Default
    [28] BC4J Property AppModuleJndiName='com.ips.business.module.IPSModule' -->(SessionImpl) from Client Environment
    [29] Skipping empty Property java.naming.security.principal from System Default
    [30] Skipping empty Property java.naming.security.credentials from System Default
    [31] Skipping empty Property jbo.user.principal from System Default
    [32] Skipping empty Property jbo.object.marshaller from System Default
    [33] BC4J Property jbo.use.pers.coll='true' -->(SessionImpl) from System Default
    [34] BC4J Property jbo.pers.max.rows.per.node='70' -->(SessionImpl) from System Default
    [35] BC4J Property jbo.pers.max.active.nodes='30' -->(SessionImpl) from System Default
    [36] Skipping empty Property jbo.pcoll.mgr from System Default
    [37] BC4J Property jbo.txn_table_name='PS_TXN' -->(SessionImpl) from System Default
    [38] BC4J Property jbo.txn_seq_name='PS_TXN_seq' -->(SessionImpl) from System Default
    [39] BC4J Property jbo.control_table_name='PCOLL_CONTROL' -->(MetaObjectManager) from System Default
    [40] BC4J Property jbo.stringmanager.factory.class='use_default' -->(SessionImpl) from System Default
    [41] BC4J Property jbo.fetch.mode='AS.NEEDED' -->(MetaObjectManager) from System Default
    [42] BC4J Property jbo.323.compatible='false' -->(MetaObjectManager) from System Default
    [43] Skipping empty Property JBODynamicObjectsPackage from System Default
    [44] BC4J Property MetaObjectContextFactory='oracle.jbo.mom.xml.DefaultMomContextFactory' -->(MetaObjectManager) from System Default
    [45] BC4J Property MetaObjectContext='oracle.jbo.mom.xml.XMLContextImpl' -->(MetaObjectManager) from System Default
    [46] BC4J Property java.naming.factory.initial='oracle.jbo.common.JboInitialContextFactory' -->(SessionImpl) from Client Environment
    [47] BC4J Property IsLazyLoadingTrue='true' -->(MetaObjectManager) from /oracle/jbo/server/jboserver.properties resource
    [48] BC4J Property ActivateSharedDataHandle='false' -->(MetaObjectManager) from System Default
    [49] Skipping empty Property HandleName from System Default
    [50] Skipping empty Property Factory-Substitution-List from System Default
    [51] BC4J Property jbo.project='Business' -->(MetaObjectManager) from Client Environment
    [52] BC4J Property jbo.max.cursors='50' -->(MetaObjectManager) from System Default
    [53] BC4J Property jbo.dofailover='true' -->(MetaObjectManager) from System Default
    [54] BC4J Property jbo.doconnectionpooling='false' -->(MetaObjectManager) from Client Environment
    [55] BC4J Property jbo.recyclethreshold='10' -->(MetaObjectManager) from System Default
    [56] BC4J Property jbo.ampool.dynamicjdbccredentials='true' -->(MetaObjectManager) from System Default
    [57] BC4J Property jbo.ampool.resetnontransactionalstate='true' -->(SessionImpl) from System Default
    [58] BC4J Property jbo.ampool.sessioncookiefactoryclass='oracle.jbo.common.ampool.DefaultSessionCookieFactory' -->(MetaObjectManager) from System Default
    [59] BC4J Property jbo.ampool.connectionstrategyclass='com.ips.client.core.IpsConnectionStrategy' -->(MetaObjectManager) from Client Environment
    [60] BC4J Property jbo.ampool.maxpoolsize='2147483647' -->(MetaObjectManager) from System Default
    [61] BC4J Property jbo.ampool.initpoolsize='0' -->(MetaObjectManager) from Client Environment
    [62] BC4J Property jbo.ampool.monitorsleepinterval='45000' -->(MetaObjectManager) from Client Environment
    [63] BC4J Property jbo.ampool.minavailablesize='0' -->(MetaObjectManager) from Client Environment
    [64] BC4J Property jbo.ampool.maxavailablesize='0' -->(MetaObjectManager) from Client Environment
    [65] BC4J Property jbo.ampool.maxinactiveage='30000' -->(MetaObjectManager) from Client Environment
    [66] BC4J Property jbo.passivationstore='null' -->(MetaObjectManager) from System Default
    [67] BC4J Property RELEASE_MODE='Stateful' -->(MetaObjectManager) from System Default
    [68] BC4J Property jbo.maxpoolcookieage='-1' -->(MetaObjectManager) from System Default
    [69] BC4J Property PoolClassName='oracle.jbo.common.ampool.ApplicationPoolImpl' -->(MetaObjectManager) from System Default
    [70] BC4J Property jbo.maxpoolsize='-1' -->(MetaObjectManager) from Client Environment
    [71] BC4J Property jbo.initpoolsize='0' -->(MetaObjectManager) from Client Environment
    [72] BC4J Property jbo.poolrequesttimeout='30000' -->(MetaObjectManager) from System Default
    [73] BC4J Property jbo.poolmonitorsleepinterval='45000' -->(MetaObjectManager) from Client Environment
    [74] BC4J Property jbo.poolminavailablesize='0' -->(MetaObjectManager) from Client Environment
    [75] BC4J Property jbo.poolmaxavailablesize='0' -->(MetaObjectManager) from Client Environment
    [76] BC4J Property jbo.poolmaxinactiveage='30000' -->(MetaObjectManager) from Client Environment
    [77] BC4J Property jbo.assoc.consistent='true' -->(MetaObjectManager) from System Default
    [78] BC4J Property jbo.viewlink.consistent='false' -->(MetaObjectManager) from System Default
    [79] BC4J Property jbo.passivation.TrackInsert='true' -->(MetaObjectManager) from System Default
    [80] Skipping empty Property jbo.ViewCriteriaAdapter from System Default
    [81] BC4J Property jbo.SQLBuilder='Oracle' -->(MetaObjectManager) from /oracle/jbo/server/jboserver.properties resource
    [82] BC4J Property jbo.ConnectionPoolManager='oracle.jbo.server.ConnectionPoolManagerImpl' -->(MetaObjectManager) from System Default
    [83] BC4J Property jbo.TypeMapEntries='Oracle' -->(MetaObjectManager) from /oracle/jbo/server/jboserver.properties resource
    [84] Skipping empty Property jbo.sql92.JdbcDriverClass from System Default
    [85] BC4J Property jbo.jdbc.trace='false' -->(MetaObjectManager) from System Default
    [86] BC4J Property jbo.sql92.DbTimeQuery='select sysdate from dual' -->(MetaObjectManager) from System Default
    [87] BC4J Property oracle.jbo.defineColumnLength='as_chars' -->(MetaObjectManager) from System Default
    [88] Skipping empty Property jbo.tmpdir from System Default
    [89] Skipping empty Property jbo.server.internal_connection from System Default
    [90] Skipping empty Property SessionClass from System Default
    [91] Skipping empty Property TransactionFactory from System Default
    [92] BC4J Property jbo.debugoutput='console' -->(Diagnostic) from System Property
    [93] BC4J Property jbo.debug.prefix='DBG: ' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    [94] BC4J Property jbo.logging.show.timing='false' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    [95] BC4J Property jbo.logging.show.function='false' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    [96] BC4J Property jbo.logging.show.level='false' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    [97] BC4J Property jbo.logging.show.linecount='true' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    [98] BC4J Property jbo.logging.trace.threshold='6' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    [99] BC4J Property jbo.jdbc.driver.verbose='false' -->(Diagnostic) from System Default
    [100] BC4J Property jbo.ejb.txntimeout='1830' -->(SessionImpl) from System Default
    [101] BC4J Property jbo.ejb.txntype='global' -->(MetaObjectManager) from System Default
    [102] BC4J Property jbo.ejb.txn.disconnect_on_completion='false' -->(SessionImpl) from System Default
    [103] Skipping empty Property oracle.jbo.schema from System Default
    [104] BC4J Property jbo.xml.validation='false' -->(MetaObjectManager) from System Default
    [105] BC4J Property ord.RetrievePath='ordDeliverMedia' -->(MetaObjectManager) from System Default
    [106] BC4J Property ord.HttpMaxMemory='102400' -->(MetaObjectManager) from System Default
    [107] Skipping empty Property ord.HttpTempDir from System Default
    [108] BC4J Property ord.wmp.classid='clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95' -->(MetaObjectManager) from System Default
    [109] BC4J Property ord.qp.classid='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' -->(MetaObjectManager) from System Default
    [110] BC4J Property ord.rp.classid='clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA' -->(MetaObjectManager) from System Default
    [111] BC4J Property ord.wmp.codebase='http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701' -->(MetaObjectManager) from System Default
    [112] BC4J Property ord.qp.codebase='http://www.apple.com/qtactivex/qtplugin.cab' -->(MetaObjectManager) from System Default
    [113] Skipping empty Property ord.rp.codebase from System Default
    [114] 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
    [115] BC4J Property ord.qp.plugins.page='http://www.apple.com/quicktime/download/' -->(MetaObjectManager) from System Default
    [116] BC4J Property ord.rp.plugins.page='http://www.real.com/player/' -->(MetaObjectManager) from System Default
    [117] BC4J Property jbo.security.enforce='None' -->(SessionImpl) from System Default
    [118] BC4J Property jbo.security.loginmodule='oracle.security.jazn.tools.Admintool' -->(SessionImpl) from System Default
    [119] BC4J Property jbo.server.useNullDbTransaction='false' -->(SessionImpl) from System Default
    [120] Copying unknown Client property (user='ips_dev') to session
    [121] Copying unknown Client property (java.naming.factory.url.pkgs='org.jboss.naming:org.jnp.interfaces') to session
    [122] Copying unknown Client property (jbo.applicationmoduleclassname='com.ips.business.module.IPSModule') to session
    [123] Copying unknown Client property (JDBCName='ips_dev') to session
    [124] Copying unknown Client property (ApplicationName='com.ips.business.module.IPSModule') to session
    [125] Copying unknown Client property (jbo.ampool.doampooling='false') to session
    [126] Copying unknown Client property (password='ips_dev') to session
    [127] Copying unknown Client property (java.naming.provider.url='jnp://10.0.0.5:1099') to session
    [128] Copying unknown Client property (DBconnection='jdbc:oracle:thin:@10.0.0.25:1521:ips') to session
    [129] WARNING: Unused property: LC='Calling Function' found in /oracle/jbo/common/Diagnostic.properties resource
    [130] }} finished loading BC4J properties
    [131] -----------------------------------------------------------
    Diagnostics: (Properties (re)loaded) Routing diagnostics to standard output (use -Djbo.debugoutput=silent to remove)
    [132] Diagnostic Properties: Timing:false Functions:false Linecount:true Threshold:6
    [133] JavaVMVersion: 1.4.2_05-b04
    [134] JavaVMVendor: Sun Microsystems Inc.
    [135] JavaVMName: Java HotSpot(TM) Client VM
    [136] OperatingSystemName: Windows XP
    [137] OperatingSystemVersion: 5.1
    [138] OperatingSystemUsername: chip
    [139] Jbo323Compatible Flag: false, str: false
    [140] Loading from Business.jpx file
    [141] Loading from indvidual XML files
    [142] Loading the Containees for the Package 'Business.Business'.
    [143] Registered Oracle JDBC driver with BC4J Server
    [144] Connected to Oracle JBO Server - Version: 9.0.3.10.7
    [145] BC4J: Instrumentation disabled
    [146] Loading from /com/ips/business/module/module.xml file
    [147] Loading from indvidual XML files
    [148] Loading the Containees for the Package 'com.ips.business.module.module'.
    [149] Loading from /com/ips/business/module/IPSModule.xml file
    [150] Loading from /com/ips/business/view/view.xml file
    [151] Loading from indvidual XML files
    [152] Loading the Containees for the Package 'com.ips.business.view.view'.
    [153] Loading from /com/ips/business/view/SessionParameterView.xml file
    [154] ViewObjectImpl's default fetch mode = 0
    [155] Loading from /com/ips/business/entity/entity.xml file
    [156] Loading from indvidual XML files
    [157] Loading the Containees for the Package 'com.ips.business.entity.entity'.
    [158] Loading from /com/ips/business/entity/IpsSessionParameters.xml file
    [159] Loading Typemap entries from oracle.jbo.common.OracleTypeMapEntries
    [160] CSMessageBundle (language base) being initialized
    [161] OracleSQLBuilder reached getInterface
    [162] Oracle SQL Builder Version 3.2.0.0.0
    [163] Using DatabaseTransactionFactory implementation oracle.jbo.server.DatabaseTransactionFactory
    [164] mUsePersColl is true
    [165] ViewObjectImpl.mDefaultMaxRowsPerNode is 70
    [166] ViewObjectImpl.mDefaultMaxActiveNodes is 30
    [167] DBTransactionImpl Max Cursors is 50
    [168] Created root application module: 'com.ips.business.module.IPSModule'
    [169] Locale is: 'en_US'
    [170] DefaultConnectionStrategy is establishing an application module connection
    [171] Oracle SQLBuilder: Registered driver: oracle.jdbc.driver.OracleDriver
    [172] Trying connection/2: url='jdbc:oracle:thin:@10.0.0.25:1521:ips' ...
    [173] Successfully logged in
    [174] JDBCDriverVersion: 9.2.0.3.0
    [175] DatabaseProductName: Oracle
    [176] DatabaseProductVersion: Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production With the Partitioning, OLAP and Oracle Data Mining options JServer Release 9.2.0.1.0 - Production
    [177] ViewRowSetImpl's jbo.viewlink.consistent = false (0)
    [178] Column count: 4
    [179] BaseSQLBuilder: releaseSavepoint 'BO_SP' ignored
    [180] SessionParameterView1 notify COMMIT ...
    [181] BC4J Property jbo.maxpoolcookieage='-1' -->(MetaObjectManager) from System Default
    [182] BC4J Property jbo.maxpoolcookieage='-1' -->(MetaObjectManager) from System Default
    [183] Creating a new pool resource
    [184] BC4JDeployPlatform: LOCAL
    [185] Propertymanager: skipping reload of file and system based properties
    [186] {{ begin Loading BC4J properties
    [187] -----------------------------------------------------------
    [188] BC4J Property jbo.default.language='en' -->(MetaObjectManager) from System Default
    [189] BC4J Property jbo.default.country='US' -->(MetaObjectManager) from System Default
    [190] BC4J Property DeployPlatform='LOCAL' -->(SessionImpl) from Client Environment
    [191] Skipping empty Property ConnectionMode from System Default
    [192] Skipping empty Property HostName from System Default
    [193] Skipping empty Property ConnectionPort from System Default
    [194] BC4J Property jbo.locking.mode='pessimistic' -->(MetaObjectManager) from System Default
    [195] Skipping empty Property ApplicationPath from System Default
    [196] BC4J Property AppModuleJndiName='com.ips.business.module.NavTreeModule' -->(SessionImpl) from Client Environment
    [197] Skipping empty Property java.naming.security.principal from System Default
    [198] Skipping empty Property java.naming.security.credentials from System Default
    [199] Skipping empty Property jbo.user.principal from System Default
    [200] Skipping empty Property jbo.object.marshaller from System Default
    [201] BC4J Property jbo.use.pers.coll='true' -->(SessionImpl) from System Default
    [202] BC4J Property jbo.pers.max.rows.per.node='70' -->(SessionImpl) from System Default
    [203] BC4J Property jbo.pers.max.active.nodes='30' -->(SessionImpl) from System Default
    [204] Skipping empty Property jbo.pcoll.mgr from System Default
    [205] BC4J Property jbo.txn_table_name='PS_TXN' -->(SessionImpl) from System Default
    [206] BC4J Property jbo.txn_seq_name='PS_TXN_seq' -->(SessionImpl) from System Default
    [207] BC4J Property jbo.control_table_name='PCOLL_CONTROL' -->(MetaObjectManager) from System Default
    [208] BC4J Property jbo.stringmanager.factory.class='use_default' -->(SessionImpl) from System Default
    [209] BC4J Property jbo.fetch.mode='AS.NEEDED' -->(MetaObjectManager) from System Default
    [210] BC4J Property jbo.323.compatible='false' -->(MetaObjectManager) from System Default
    [211] Skipping empty Property JBODynamicObjectsPackage from System Default
    [212] BC4J Property MetaObjectContextFactory='oracle.jbo.mom.xml.DefaultMomContextFactory' -->(MetaObjectManager) from System Default
    [213] BC4J Property MetaObjectContext='oracle.jbo.mom.xml.XMLContextImpl' -->(MetaObjectManager) from System Default
    [214] BC4J Property java.naming.factory.initial='oracle.jbo.common.JboInitialContextFactory' -->(SessionImpl) from Client Environment
    [215] BC4J Property IsLazyLoadingTrue='true' -->(MetaObjectManager) from /oracle/jbo/server/jboserver.properties resource
    [216] BC4J Property ActivateSharedDataHandle='false' -->(MetaObjectManager) from System Default
    [217] Skipping empty Property HandleName from System Default
    [218] Skipping empty Property Factory-Substitution-List from System Default
    [219] BC4J Property jbo.project='Business' -->(MetaObjectManager) from Client Environment
    [220] BC4J Property jbo.max.cursors='50' -->(MetaObjectManager) from System Default
    [221] BC4J Property jbo.dofailover='true' -->(MetaObjectManager) from System Default
    [222] BC4J Property jbo.doconnectionpooling='false' -->(MetaObjectManager) from System Default
    [223] BC4J Property jbo.recyclethreshold='10' -->(MetaObjectManager) from System Default
    [224] BC4J Property jbo.ampool.dynamicjdbccredentials='true' -->(MetaObjectManager) from System Default
    [225] BC4J Property jbo.ampool.resetnontransactionalstate='true' -->(SessionImpl) from System Default
    [226] BC4J Property jbo.ampool.sessioncookiefactoryclass='oracle.jbo.common.ampool.DefaultSessionCookieFactory' -->(MetaObjectManager) from System Default
    [227] BC4J Property jbo.ampool.connectionstrategyclass='com.ips.client.core.IpsConnectionStrategy' -->(MetaObjectManager) from System Property
    [228] BC4J Property jbo.ampool.maxpoolsize='2147483647' -->(MetaObjectManager) from System Default
    [229] BC4J Property jbo.ampool.initpoolsize='0' -->(MetaObjectManager) from System Default
    [230] BC4J Property jbo.ampool.monitorsleepinterval='600000' -->(MetaObjectManager) from System Default
    [231] BC4J Property jbo.ampool.minavailablesize='5' -->(MetaObjectManager) from System Default
    [232] BC4J Property jbo.ampool.maxavailablesize='25' -->(MetaObjectManager) from System Default
    [233] BC4J Property jbo.ampool.maxinactiveage='600000' -->(MetaObjectManager) from System Default
    [234] BC4J Property jbo.passivationstore='null' -->(MetaObjectManager) from System Default
    [235] BC4J Property RELEASE_MODE='Stateful' -->(MetaObjectManager) from System Default
    [236] BC4J Property jbo.maxpoolcookieage='-1' -->(MetaObjectManager) from System Default
    [237] BC4J Property PoolClassName='oracle.jbo.common.ampool.ApplicationPoolImpl' -->(MetaObjectManager) from System Default
    [238] BC4J Property jbo.maxpoolsize='2147483647' -->(MetaObjectManager) from System Default
    [239] BC4J Property jbo.initpoolsize='0' -->(MetaObjectManager) from System Default
    [240] BC4J Property jbo.poolrequesttimeout='30000' -->(MetaObjectManager) from System Default
    [241] BC4J Property jbo.poolmonitorsleepinterval='600000' -->(MetaObjectManager) from System Default
    [242] BC4J Property jbo.poolminavailablesize='5' -->(MetaObjectManager) from System Default
    [243] BC4J Property jbo.poolmaxavailablesize='25' -->(MetaObjectManager) from System Default
    [244] BC4J Property jbo.poolmaxinactiveage='600000' -->(MetaObjectManager) from System Default
    [245] BC4J Property jbo.assoc.consistent='true' -->(MetaObjectManager) from System Default
    [246] BC4J Property jbo.viewlink.consistent='false' -->(MetaObjectManager) from System Default
    [247] BC4J Property jbo.passivation.TrackInsert='true' -->(MetaObjectManager) from System Default
    [248] Skipping empty Property jbo.ViewCriteriaAdapter from System Default
    [249] BC4J Property jbo.SQLBuilder='Oracle' -->(MetaObjectManager) from /oracle/jbo/server/jboserver.properties resource
    [250] BC4J Property jbo.ConnectionPoolManager='oracle.jbo.server.ConnectionPoolManagerImpl' -->(MetaObjectManager) from System Default
    [251] BC4J Property jbo.TypeMapEntries='Oracle' -->(MetaObjectManager) from /oracle/jbo/server/jboserver.properties resource
    [252] Skipping empty Property jbo.sql92.JdbcDriverClass from System Default
    [253] BC4J Property jbo.jdbc.trace='false' -->(MetaObjectManager) from System Default
    [254] BC4J Property jbo.sql92.DbTimeQuery='select sysdate from dual' -->(MetaObjectManager) from System Default
    [255] BC4J Property oracle.jbo.defineColumnLength='as_chars' -->(MetaObjectManager) from System Default
    [256] Skipping empty Property jbo.tmpdir from System Default
    [257] Skipping empty Property jbo.server.internal_connection from System Default
    [258] Skipping empty Property SessionClass from System Default
    [259] Skipping empty Property TransactionFactory from System Default
    [260] BC4J Property jbo.debugoutput='console' -->(Diagnostic) from System Property
    [261] BC4J Property jbo.debug.prefix='DBG: ' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    [262] BC4J Property jbo.logging.show.timing='false' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    [263] BC4J Property jbo.logging.show.function='false' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    [264] BC4J Property jbo.logging.show.level='false' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    [265] BC4J Property jbo.logging.show.linecount='true' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    [266] BC4J Property jbo.logging.trace.threshold='6' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    [267] BC4J Property jbo.jdbc.driver.verbose='false' -->(Diagnostic) from System Default
    [268] BC4J Property jbo.ejb.txntimeout='1830' -->(SessionImpl) from System Default
    [269] BC4J Property jbo.ejb.txntype='global' -->(MetaObjectManager) from System Default
    [270] BC4J Property jbo.ejb.txn.disconnect_on_completion='false' -->(SessionImpl) from System Default
    [271] Skipping empty Property oracle.jbo.schema from System Default
    [272] BC4J Property jbo.xml.validation='false' -->(MetaObjectManager) from System Default
    [273] BC4J Property ord.RetrievePath='ordDeliverMedia' -->(MetaObjectManager) from System Default
    [274] BC4J Property ord.HttpMaxMemory='102400' -->(MetaObjectManager) from System Default
    [275] Skipping empty Property ord.HttpTempDir from System Default
    [276] BC4J Property ord.wmp.classid='clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95' -->(MetaObjectManager) from System Default
    [277] BC4J Property ord.qp.classid='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' -->(MetaObjectManager) from System Default
    [278] BC4J Property ord.rp.classid='clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA' -->(MetaObjectManager) from System Default
    [279] BC4J Property ord.wmp.codebase='http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701' -->(MetaObjectManager) from System Default
    [280] BC4J Property ord.qp.codebase='http://www.apple.com/qtactivex/qtplugin.cab' -->(MetaObjectManager) from System Default
    [281] Skipping empty Property ord.rp.codebase from System Default
    [282] 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
    [283] BC4J Property ord.qp.plugins.page='http://www.apple.com/quicktime/download/' -->(MetaObjectManager) from System Default
    [284] BC4J Property ord.rp.plugins.page='http://www.real.com/player/' -->(MetaObjectManager) from System Default
    [285] BC4J Property jbo.security.enforce='None' -->(SessionImpl) from System Default
    [286] BC4J Property jbo.security.loginmodule='oracle.security.jazn.tools.Admintool' -->(SessionImpl) from System Default
    [287] BC4J Property jbo.server.useNullDbTransaction='false' -->(SessionImpl) from System Default
    [288] Copying unknown Client property (DBconnection='jdbc:oracle:thin:@10.0.0.25:1521:ips') to session
    [289] Copying unknown Client property (password='ips_dev') to session
    [290] Copying unknown Client property (JDBCName='ips_dev') to session
    [291] Copying unknown Client property (java.naming.provider.url='jnp://10.0.0.5:1099') to session
    [292] Copying unknown Client property (user='ips_dev') to session
    [293] Copying unknown Client property (jbo.applicationmoduleclassname='com.ips.business.module.NavTreeModule') to session
    [294] Copying unknown Client property (java.naming.factory.url.pkgs='org.jboss.naming:org.jnp.interfaces') to session
    [295] Copying unknown Client property (ApplicationName='com.ips.business.module.NavTreeModule') to session
    [296] WARNING: Unused property: LC='Calling Function' found in /oracle/jbo/common/Diagnostic.properties resource
    [297] }} finished loading BC4J properties
    [298] -----------------------------------------------------------
    Diagnostics: (Properties (re)loaded) Routing diagnostics to standard output (use -Djbo.debugoutput=silent to remove)
    [299] Diagnostic Properties: Timing:false Functions:false Linecount:true Threshold:6
    [300] Connected to Oracle JBO Server - Version: 9.0.3.10.7
    [301] Loading from /com/ips/business/module/NavTreeModule.xml file
    [302] Loading from /com/ips/business/view/NavTreeView.xml file
    [303] Loading from /com/ips/business/entity/IpsCapabilities.xml file
    [304] Loading from /com/ips/business/entity/IpsRoleTrees.xml file
    [305] Loading from /com/ips/business/entity/IpsObjects.xml file
    [306] Loading from /com/ips/business/entity/IpsShortLists.xml file
    [307] Loading from /com/ips/business/entity/IpsUsers.xml file
    [308] Loading from /com/ips/business/entity/IpsUserRoles.xml file
    [309] Loading from /com/ips/business/entity/IpsObjCaps.xml file
    [310] Loading from /com/ips/business/entity/IpsRoleCaps.xml file
    [311] Loading from /com/ips/business/entity/IpsRoles.xml file
    [312] mUsePersColl is true
    [313] ViewObjectImpl.mDefaultMaxRowsPerNode is 70
    [314] ViewObjectImpl.mDefaultMaxActiveNodes is 30
    [315] Created root application module: 'com.ips.business.module.NavTreeModule'
    [316] Locale is: 'en_US'
    [317] DefaultConnectionStrategy is establishing an application module connection
    [318] Oracle SQLBuilder: Registered driver: oracle.jdbc.driver.OracleDriver
    [319] Trying connection/2: url='jdbc:oracle:thin:@10.0.0.25:1521:ips' ...
    [320] Successfully logged in
    [321] JDBCDriverVersion: 9.2.0.3.0
    [322] DatabaseProductName: Oracle
    [323] DatabaseProductVersion: Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production With the Partitioning, OLAP and Oracle Data Mining options JServer Release 9.2.0.1.0 - Production
    [324] Column count: 12
    [325] ViewObject : Created new QUERY statement
    [326] SELECT IpsRoleTrees.RO_SEQ_ID, IpsRoleTrees.TREE_LEVEL, IpsRoleTrees.RT_SEQ_ID, IpsRoleTrees.RTP_SEQ_ID, IpsObjects.OBJECT_NAME, IpsObjects.LABEL, IpsObjects.ICON_FILE_NAME, IpsObjects.OBJ_SEQ_ID, IpsShortLists1.SHORT_NAME, IpsUsers.USR_SEQ_ID, IpsRoleTrees.ORDER_SEQ_INDEX, IpsShortLists1.SL_SEQ_ID AS SL_SEQ_ID1 FROM IPS_CAPABILITIES IpsCapabilities, IPS_ROLE_TREES IpsRoleTrees, IPS_OBJECTS IpsObjects, IPS_SHORT_LISTS IpsShortLists1, IPS_USERS IpsUsers, IPS_USER_ROLES IpsUserRoles, IPS_OBJ_CAPS IpsObjCaps, IPS_ROLE_CAPS IpsRoleCaps, IPS_ROLES IpsRoles WHERE IpsCapabilities.ca_seq_id = IpsObjCaps.ca_seq_id and IpsCapabilities.CAPABILITY = 'ACCESS' and IpsObjCaps.oc_seq_id = IpsRoleCaps.oc_seq_id AND IpsRoleCaps.ro_seq_id = IpsRoleTrees.ro_seq_id AND IpsRoleTrees.obj_seq_id = IpsObjCaps.obj_seq_id and IpsRoleTrees.obj_seq_id = IpsObjects.obj_seq_id AND IpsObjects.subtype_list = IpsShortLists1.sl_seq_id AND IpsShortLists1.LIST_TYPE = 'SOB' and IpsUsers.user_id = :P0_USER_ID and IpsUsers.usr_seq_id = IpsUserRoles.usr_seq_id and IpsUserRoles.ro_seq_id = IpsRoles.ro_seq_id and IpsRoles.code = :P1_ROLE_CODE and IpsUserRoles.ro_seq_id = IpsRoleCaps.ro_seq_id and IpsRoleCaps.ALLOWED_FLAG = 1 and not exists (select 1 from IPS_DENIED_USER_CAPS IpsDeniedUserCapabilities where IpsDeniedUserCapabilities.usr_seq_id = IpsUsers.usr_seq_id and IpsDeniedUserCapabilities.rc_seq_id = IpsRoleCaps.rc_seq_id) ORDER BY tree_level, short_name, order_seq_index
    [327] Binding param 1: mcmakinc
    [328] Binding param 2: ipsdev
    [329] EntityCache:add WARNING - ignoring row with no primary key
    [330] EntityCache:add WARNING - ignoring row with no primary key
    [331] EntityCache:add WARNING - ignoring row with no primary key
    [332] EntityCache:add WARNING - ignoring row with no primary key
    [333] EntityCache:add WARNING - ignoring row with no primary key
    [334] EntityCache:add WARNING - ignoring row with no primary key
    [335] EntityCache:add WARNING - ignoring row with no primary key
    [336] EntityCache:add WARNING - ignoring row with no primary key
    [337] EntityCache:add WARNING - ignoring row with no primary key
    [338] EntityCache:add WARNING - ignoring row with no primary key
    [339] EntityCache:add WARNING - ignoring row with no primary key
    [340] EntityCache:add WARNING - ignoring row with no primary key
    [341] EntityCache:add WARNING - ignoring row with no primary key
    [342] EntityCache:add WARNING - ignoring row with no primary key
    [343] EntityCache:add WARNING - ignoring row with no primary key
    [344] EntityCache:add WARNING - ignoring row with no primary key
    [345] EntityCache:add WARNING - ignoring row with no primary key
    [346] EntityCache:add WARNING - ignoring row with no primary key
    [347] EntityCache:add WARNING - ignoring row with no primary key
    [348] EntityCache:add WARNING - ignoring row with no primary key
    [349] EntityCache:add WARNING - ignoring row with no primary key
    [350] EntityCache:add WARNING - ignoring row with no primary key
    [351] EntityCache:add WARNING - ignoring row with no primary key
    [352] EntityCache:add WARNING - ignoring row with no primary key
    [353] EntityCache:add WARNING - ignoring row with no primary key
    [354] EntityCache:add WARNING - ignoring row with no primary key
    [355] EntityCache:add WARNING - ignoring row with no primary key
    [356] EntityCache:add WARNING - ignoring row with no primary key
    [357] EntityCache:add WARNING - ignoring row with no primary key
    [358] EntityCache:add WARNING - ignoring row with no primary key
    [359] EntityCache:add WARNING - ignoring row with no primary key
    [360] EntityCache:add WARNING - ignoring row with no primary key
    [361] EntityCache:add WARNING - ignoring row with no primary key
    [362] EntityCache:add WARNING - ignoring row with no primary key
    [363] EntityCache:add WARNING - ignoring row with no primary key
    [364] EntityCache:add WARNING - ignoring row with no primary key
    [365] EntityCache:add WARNING - ignoring row with no primary key
    [366] EntityCache:add WARNING - ignoring row with no primary key
    [367] EntityCache:add WARNING - ignoring row with no primary key
    [368] EntityCache:add WARNING - ignoring row with no primary key
    [369] EntityCache:add WARNING - ignoring row with no primary key
    [370] EntityCache:add WARNING - ignoring row with no primary key
    [371] EntityCache:add WARNING - ignoring row with no primary key
    [372] EntityCache:add WARNING - ignoring row with no primary key
    [373] EntityCache:add WARNING - ignoring row with no primary key
    [374] EntityCache:add WARNING - ignoring row with no primary key
    [375] EntityCache:add WARNING - ignoring row with no primary key
    [376] EntityCache:add WARNING - ignoring row with no primary key
    [377] EntityCache:add WARNING - ignoring row with no primary key
    [378] EntityCache:add WARNING - ignoring row with no primary key
    [379] EntityCache:add WARNING - ignoring row with no primary key
    [380] EntityCache:add WARNING - ignoring row with no primary key
    [381] EntityCache:add WARNING - ignoring row with no primary key
    [382] EntityCache:add WARNING - ignoring row with no primary key
    [383] EntityCache:add WARNING - ignoring row with no primary key
    [384] EntityCache:add WARNING - ignoring row with no primary key
    [385] EntityCache:add WARNING - ignoring row with no primary key
    [386] EntityCache:add WARNING - ignoring row with no primary key
    [387] EntityCache:add WARNING - ignoring row with no primary key
    [388] EntityCache:add WARNING - ignoring row with no primary key
    [389] EntityCache:add WARNING - ignoring row with no primary key
    [390] EntityCache:add WARNING - ignoring row with no primary key
    [391] EntityCache:add WARNING - ignoring row with no primary key
    [392] EntityCache:add WARNING - ignoring row with no primary key
    [393] EntityCache:add WARNING - ignoring row with no primary key
    [394] EntityCache:add WARNING - ignoring row with no primary key
    [395] EntityCache:add WARNING - ignoring row with no primary key
    [396] EntityCache:add WARNING - ignoring row with no primary key
    [397] EntityCache:add WARNING - ignoring row with no primary key
    [398] EntityCache:add WARNING - ignoring row with no primary key
    [399] EntityCache:add WARNING - ignoring row with no primary key
    [400] EntityCache:add WARNING - ignoring row with no primary key
    [401] EntityCache:add WARNING - ignoring row with no primary key
    [402] EntityCache:add WARNING - ignoring row with no primary key
    [403] EntityCache:add WARNING - ignoring row with no primary key
    [404] EntityCache:add WARNING - ignoring row with no primary key
    [405] EntityCache:add WARNING - ignoring row with no primary key
    [406] EntityCache:add WARNING - ignoring row with no primary key
    [407] EntityCache:add WARNING - ignoring row with no primary key
    [408] EntityCache:add WARNING - ignoring row with no primary key
    [409] EntityCache:add WARNING - ignoring row with no primary key
    [410] EntityCache:add WARNING - ignoring row with no primary key
    [411] EntityCache:add WARNING - ignoring row with no primary key
    [412] EntityCache:add WARNING - ignoring row with no primary key
    [413] EntityCache:add WARNING - ignoring row with no primary key
    [414] EntityCache:add WARNING - ignoring row with no primary key
    [415] EntityCache:add WARNING - ignoring row with no primary key
    [416] EntityCache:add WARNING - ignoring row with no primary key
    [417] EntityCache:add WARNING - ignoring row with no primary key
    [418] EntityCache:add WARNING - ignoring row with no primary key
    [419] EntityCache:add WARNING - ignoring row with no primary key
    [420] EntityCache:add WARNING - ignoring row with no primary key
    [421] EntityCache:add WARNING - ignoring row with no primary key
    [422] EntityCache:add WARNING - ignoring row with no primary key
    [423] EntityCache:add WARNING - ignoring row with no primary key
    [424] EntityCache:add WARNING - ignoring row with no primary key
    [425] EntityCache:add WARNING - ignoring row with no primary key
    [426] EntityCache:add WARNING - ignoring row with no primary key
    [427] EntityCache:add WARNING - ignoring row with no primary key
    [428] EntityCache:add WARNING - ignoring row with no primary key
    [429] EntityCache:add WARNING - ignoring row with no primary key
    [430] EntityCache:add WARNING - ignoring row with no primary key
    [431] EntityCache:add WARNING - ignoring row with no primary key
    [432] EntityCache:add WARNING - ignoring row with no primary key
    [433] EntityCache:add WARNING - ignoring row with no primary key
    [434] EntityCache:add WARNING - ignoring row with no primary key
    [435] EntityCache:add WARNING - ignoring row with no primary key
    [436] EntityCache:add WARNING - ignoring row with no primary key
    [437] EntityCache:add WARNING - ignoring row with no primary key
    [438] EntityCache:add WARNING - ignoring row with no primary key
    [439] EntityCache:add WARNING - ignoring row with no primary key
    [440] EntityCache:add WARNING - ignoring row with no primary key
    [441] EntityCache:add WARNING - ignoring row with no primary key
    [442] EntityCache:add WARNING - ignoring row with no primary key
    [443] EntityCache:add WARNING - ignoring row with no primary key
    [444] EntityCache:add WARNING - ignoring row with no primary key
    [445] EntityCache:add WARNING - ignoring row with no primary key
    [446] EntityCache:add WARNING - ignoring row with no primary key
    [447] EntityCache:add WARNING - ignoring row with no primary key
    [448] EntityCache:add WARNING - ignoring row with no primary key
    [449] EntityCache:add WARNING - ignoring row with no primary key
    [450] EntityCache:add WARNING - ignoring row with no primary key
    [451] EntityCache:add WARNING - ignoring row with no primary key
    [452] EntityCache:add WARNING - ignoring row with no primary key
    [453] EntityCache:add WARNING - ignoring row with no primary key
    [454] EntityCache:add WARNING - ignoring row with no primary key
    [455] EntityCache:add WARNING - ignoring row with no primary key
    [456] EntityCache:add WARNING - ignoring row with no primary key
    [457] EntityCache:add WARNING - ignoring row with no primary key
    [458] EntityCache:add WARNING - ignoring row with no primary key
    [459] EntityCache:add WARNING - ignoring row with no primary key
    [460] EntityCache:add WARNING - ignoring row with no primary key
    [461] EntityCache:add WARNING - ignoring row with no primary key
    [462] EntityCache:add WARNING - ignoring row with no primary key
    [463] EntityCache:add WARNING - ignoring row with no primary key
    [464] EntityCache:add WARNING - ignoring row with no primary key
    [465] EntityCache:add WARNING - ignoring row with no primary key
    [466] EntityCache:add WARNING - ignoring row with no primary key
    [467] EntityCache:add WARNING - ignoring row with no primary key
    [468] EntityCache:add WARNING - ignoring row with no primary key
    [469] EntityCache:add WARNING - ignoring row with no primary key
    [470] EntityCache:add WARNING - ignoring row with no primary key
    [471] EntityCache:add WARNING - ignoring row with no primary key
    [472] EntityCache:add WARNING - ignoring row with no primary key
    [473] EntityCache:add WARNING - ignoring row with no primary key
    [474] EntityCache:add WARNING - ignoring row with no primary key
    [475] EntityCache:add WARNING - ignoring row with no primary key
    [476] EntityCache:add WARNING - ignoring row with no primary key
    [477] EntityCache:add WARNING - ignoring row with no primary key
    [478] EntityCache:add WARNING - ignoring row with no primary key
    [479] EntityCache:add WARNING - ignoring row with no primary key
    [480] EntityCache:add WARNING - ignoring row with no primary key
    [481] EntityCache:add WARNING - ignoring row with no primary key
    [482] EntityCache:add WARNING - ignoring row with no primary key
    [483] EntityCache:add WARNING - ignoring row with no primary key
    [484] EntityCache:add WARNING - ignoring row with no primary key
    [485] EntityCache:add WARNING - ignoring row with no primary key
    [486] EntityCache:add WARNING - ignoring row with no primary key
    [487] EntityCache:add WARNING - ignoring row with no primary key
    [488] EntityCache:add WARNING - ignoring row with no primary key
    [489] EntityCache:add WARNING - ignoring row with no primary key
    [490] EntityCache:add WARNING - ignoring row with no primary key
    [491] EntityCache:add WARNING - ignoring row with no primary key
    [492] EntityCache:add WARNING - ignoring row with no primary key
    [493] EntityCache:add WARNING - ignoring row with no primary key
    [494] EntityCache:add WARNING - ignoring row with no primary key
    [495] EntityCache:add WARNING - ignoring row with no primary key
    [496] EntityCache:add WARNING - ignoring row with no primary key
    [497] EntityCache:add WARNING - ignoring row with no primary key
    [498] EntityCache:add WARNING - ignoring row with no primary key
    [499] EntityCache:add WARNING - ignoring row with no primary key
    [500] EntityCache:add WARNING - ignoring row with no primary key
    [501] EntityCache:add WARNING - ignoring row with no primary key
    [502] EntityCache:add WARNING - ignoring row with no primary key
    [503] EntityCache:add WARNING - ignoring row with no primary key
    [504] EntityCache:add WARNING - ignoring row with no primary key
    [505] EntityCache:add WARNING - ignoring row with no primary key
    [506] EntityCache:add WARNING - ignoring row with no primary key
    [507] EntityCache:add WARNING - ignoring row with no primary key
    [508] EntityCache:add WARNING - ignoring row with no primary key
    [509] EntityCache:add WARNING - ignoring row with no primary key
    [510] EntityCache:add WARNING - ignoring row with no primary key
    [511] EntityCache:add WARNING - ignoring row with no primary key
    [512] EntityCache:add WARNING - ignoring row with no primary key
    [513] EntityCache:add WARNING - ignoring row with no primary key
    [514] EntityCache:add WARNING - ignoring row with no primary key
    [515] EntityCache:add WARNING - ignoring row with no primary key
    [516] EntityCache:add WARNING - ignoring row with no primary key
    [517] EntityCache:add WARNING - ignoring row with no primary key
    [518] EntityCache:add WARNING - ignoring row with no primary key
    [519] EntityCache:add WARNING - ignoring row with no primary key
    [520] EntityCache:add WARNING - ignoring row with no primary key
    [521] EntityCache:add WARNING - ignoring row with no primary key
    [522] EntityCache:add WARNING - ignoring row with no primary key
    [523] EntityCache:add WARNING - ignoring row with no primary key
    [524] EntityCache:add WARNING - ignoring row with no primary key
    [525] EntityCache:add WARNING - ignoring row with no primary key
    [526] EntityCache:add WARNING - ignoring row with no primary key
    [527] EntityCache:add WARNING - ignoring row with no primary key
    [528] EntityCache:add WARNING - ignoring row with no primary key
    [529] EntityCache:add WARNING - ignoring row with no primary key
    [530] EntityCache:add WARNING - ignoring row with no primary key
    [531] EntityCache:add WARNING - ignoring row with no primary key
    [532] EntityCache:add WARNING - ignoring row with no primary key
    [533] EntityCache:add WARNING - ignoring row with no primary key
    [534] EntityCache:add WARNING - ignoring row with no primary key
    [535] EntityCache:add WARNING - ignoring row with no primary key
    [536] EntityCache:add WARNING - ignoring row with no primary key
    [537] EntityCache:add WARNING - ignoring row with no primary key
    [538] EntityCache:add WARNING - ignoring row with no primary key
    [539] EntityCache:add WARNING - ignoring row with no primary key
    [540] EntityCache:add WARNING - ignoring row with no primary key
    [541] EntityCache:add WARNING - ignoring row with no primary key
    [542] EntityCache:add WARNING - ignoring row with no primary key
    [543] EntityCache:add WARNING - ignoring row with no primary key
    [544] EntityCache:add WARNING - ignoring row with no primary key
    [545] EntityCache:add WARNING - ignoring row with no primary key
    [546] EntityCache:add WARNING - ignoring row with no primary key
    [547] EntityCache:add WARNING - ignoring row with no primary key
    [548] EntityCache:add WARNING - ignoring row with no primary key
    [549] EntityCache:add WARNING - ignoring row with no primary key
    [550] EntityCache:add WARNING - ignoring row with no primary key
    [551] EntityCache:add WARNING - ignoring row with no primary key
    [552] EntityCache:add WARNING - ignoring row with no primary key
    [553] EntityCache:add WARNING - ignoring row with no primary key
    [554] EntityCache:add WARNING - ignoring row with no primary key
    [555] EntityCache:add WARNING - ignoring row with no primary key
    [556] EntityCache:add WARNING - ignoring row with no primary key
    [557] EntityCache:add WARNING - ignoring row with no primary key
    [558] EntityCache:add WARNING - ignoring row with no primary key
    [559] EntityCache:add WARNING - ignoring row with no primary key
    [560] EntityCache:add WARNING - ignoring row with no primary key
    [561] EntityCache:add WARNING - ignoring row with no primary key
    [562] EntityCache:add WARNING - ignoring row with no primary key
    [563] EntityCache:add WARNING - ignoring row with no primary key
    [564] EntityCache:add WARNING - ignoring row with no primary key
    [565] EntityCache:add WARNING - ignoring row with no primary key
    [566] EntityCache:add WARNING - ignoring row with no primary key
    [567] EntityCache:add WARNING - ignoring row with no primary key
    [568] EntityCache:add WARNING - ignoring row with no primary key
    [569] EntityCache:add WARNING - ignoring row with no primary key
    [570] EntityCache:add WARNING - ignoring row with no primary key
    [571] EntityCache:add WARNING - ignoring row with no primary key
    [572] EntityCache:add WARNING - ignoring row with no primary key
    [573] EntityCache:add WARNING - ignoring row with no primary key
    [574] EntityCache:add WARNING - ignoring row with no primary key
    [575] EntityCache:add WARNING - ignoring row with no primary key
    [576] EntityCache:add WARNING - ignoring row with no primary key
    [577] EntityCache:add WARNING - ignoring row with no primary key
    [578] EntityCache:add WARNING - ignoring row with no primary key
    [579] EntityCache:add WARNING - ignoring row with no primary key
    [580] EntityCache:add WARNING - ignoring row with no primary key
    [581] EntityCache:add WARNING - ignoring row with no primary key
    [582] EntityCache:add WARNING - ignoring row with no primary key
    [583] EntityCache:add WARNING - ignoring row with no primary key
    [584] EntityCache:add WARNING - ignoring row with no primary key
    [585] EntityCache:add WARNING - ignoring row with no primary key
    [586] EntityCache:add WARNING - ignoring row with no primary key
    [587] EntityCache:add WARNING - ignoring row with no primary key
    [588] EntityCache:add WARNING - ignoring row with no primary key
    [589] EntityCache:add WARNING - ignoring row with no primary key
    [590] EntityCache:add WARNING - ignoring row with no primary key
    [591] EntityCache:add WARNING - ignoring row with no primary key
    [592] EntityCache:add WARNING - ignoring row with no primary key
    [593] EntityCache:add WARNING - ignoring row with no primary key
    [594] EntityCache:add WARNING - ignoring row with no primary key
    [595] EntityCache:add WARNING - ignoring row with no primary key
    [596] EntityCache:add WARNING - ignoring row with no primary key
    [597] EntityCache:add WARNING - ignoring row with no primary key
    [598] EntityCache:add WARNING - ignoring row with no primary key
    [599] EntityCache:add WARNING - ignoring row with no primary key
    [600] EntityCache:add WARNING - ignoring row with no primary key
    [601] EntityCache:add WARNING - ignoring row with no primary key
    [602] EntityCache:add WARNING - ignoring row with no primary key
    [603] EntityCache:add WARNING - ignoring row with no primary key
    [604] EntityCache:add WARNING - ignoring row with no primary key
    [605] EntityCache:add WARNING - ignoring row with no primary key
    [606] EntityCache:add WARNING - ignoring row with no primary key
    [607] EntityCache:add WARNING - ignoring row with no primary key
    [608] EntityCache:add WARNING - ignoring row with no primary key
    [609] EntityCache:add WARNING - ignoring row with no primary key
    [610] EntityCache:add WARNING - ignoring row with no primary key
    [611] EntityCache:add WARNING - ignoring row with no primary key
    [612] EntityCache:add WARNING - ignoring row with no primary key
    [613] EntityCache:add WARNING - ignoring row with no primary key
    [614] EntityCache:add WARNING - ignoring row with no primary key
    [615] EntityCache:add WARNING - ignoring row with no primary key
    [616] EntityCache:add WARNING - ignoring row with no primary key
    [617] EntityCache:add WARNING - ignoring row with no primary key
    [618] EntityCache:add WARNING - ignoring row with no primary key
    [619] EntityCache:add WARNING - ignoring row with no primary key
    [620] EntityCache:add WARNING - ignoring row with no primary key
    [621] EntityCache:add WARNING - ignoring row with no primary key
    [622] EntityCache:add WARNING - ignoring row with no primary key
    [623] EntityCache:add WARNING - ignoring row with no primary key
    [624] EntityCache:add WARNING - ignoring row with no primary key
    [625] EntityCache:add WARNING - ignoring row with no primary key
    [626] EntityCache:add WARNING - ignoring row with no primary key
    [627] EntityCache:add WARNING - ignoring row with no primary key
    [628] EntityCache:add WARNING - ignoring row with no primary key
    [629] EntityCache:add WARNING - ignoring row with no primary key
    [630] EntityCache:add WARNING - ignoring row with no primary key
    [631] EntityCache:add WARNING - ignoring row with no primary key
    [632] EntityCache:add WARNING - ignoring row with no primary key
    [633] EntityCache:add WARNING - ignoring row with no primary key
    [634] EntityCache:add WARNING - ignoring row with no primary key
    [635] EntityCache:add WARNING - ignoring row with no primary key
    [636] EntityCache:add WARNING - ignoring row with no primary key
    [637] EntityCache:add WARNING - ignoring row with no primary key
    [638] EntityCache:add WARNING - ignoring row with no primary key
    [639] EntityCache:add WARNING - ignoring row with no primary key
    [640] EntityCache:add WARNING - ignoring row with no primary key
    [641] EntityCache:add WARNING - ignoring row with no primary key
    [642] EntityCache:add WARNING - ignoring row with no primary key
    [643] EntityCache:add WARNING - ignoring row with no primary key
    [644] EntityCache:add WARNING - ignoring row with no primary key
    [645] EntityCache:add WARNING - ignoring row with no primary key
    [646] EntityCache:add WARNING - ignoring row with no primary key
    [647] EntityCache:add WARNING - ignoring row with no primary key
    [648] EntityCache:add WARNING - ignoring row with no primary key
    [649] EntityCache:add WARNING - ignoring row with no primary key
    [650] EntityCache:add WARNING - ignoring row with no primary key
    [651] EntityCache:add WARNING - ignoring row with no primary key
    [652] EntityCache:add WARNING - ignoring row with no primary key
    [653] EntityCache:add WARNING - ignoring row with no primary key
    [654] EntityCache:add WARNING - ignoring row with no primary key
    [655] EntityCache:add WARNING - ignoring row with no primary key
    [656] EntityCache:add WARNING - ignoring row with no primary key
    [657] EntityCache:add WARNING - ignoring row with no primary key
    [658] EntityCache:add WARNING - ignoring row with no primary key
    [659] EntityCache:add WARNING - ignoring row with no primary key
    [660] EntityCache:add WARNING - ignoring row with no primary key
    [661] EntityCache:add WARNING - ignoring row with no primary key
    [662] EntityCache:add WARNING - ignoring row with no primary key
    [663] EntityCache:add WARNING - ignoring row with no primary key
    [664] EntityCache:add WARNING - ignoring row with no primary key
    [665] EntityCache:add WARNING - ignoring row with no primary key
    [666] EntityCache:add WARNING - ignoring row with no primary key
    [667] EntityCache:add WARNING - ignoring row with no primary key
    [668] EntityCache:add WARNING - ignoring row with no primary key
    [669] EntityCache:add WARNING - ignoring row with no primary key
    [670] EntityCache:add WARNING - ignoring row with no primary key
    [671] EntityCache:add WARNING - ignoring row with no primary key
    [672] EntityCache:add WARNING - ignoring row with no primary key
    [673] EntityCache:add WARNING - ignoring row with no primary key
    [674] EntityCache:add WARNING - ignoring row with no primary key
    [675] EntityCache:add WARNING - ignoring row with no primary key
    [676] EntityCache:add WARNING - ignoring row with no primary key
    [677] EntityCache:add WARNING - ignoring row with no primary key
    [678] EntityCache:add WARNING - ignoring row with no primary key
    [679] EntityCache:add WARNING - ignoring row with no primary key
    [680] EntityCache:add WARNING - ignoring row with no primary key
    [681] EntityCache:add WARNING - ignoring row with no primary key
    [682] EntityCache:add WARNING - ignoring row with no primary key
    [683] EntityCache:add WARNING - ignoring row with no primary key
    [684] $$added root$$ id=-2
    [685] EntityCache:add WARNING - ignoring row with no primary key
    [686] EntityCache:add WARNING - ignoring row with no primary key
    [687] EntityCache:add WARNING - ignoring row with no primary key
    [688] EntityCache:add WARNING - ignoring row with no primary key
    [689] EntityCache:add WARNING - ignoring row with no primary key
    [690] EntityCache:add WARNING - ignoring row with no primary key
    [691] EntityCache:add WARNING - ignoring row with no primary key
    [692] EntityCache:add WARNING - ignoring row with no primary key
    [693] EntityCache:add WARNING - ignoring row with no primary key
    [694] EntityCache:add WARNING - ignoring row with no primary key
    [695] NavTreeView1 notify ROLLBACK ...
    [696] Clearing VO cache for NavTreeView1
    [697] Clear QueryCollection in cache...
    [698] Clearing EO cache for com.ips.business.entity.IpsCapabilities
    [699] Clearing VO cache for NavTreeView1
    [700] Clear QueryCollection in cache...
    [701] Clearing EO cache for com.ips.business.entity.IpsUserRoles
    [702] Clearing VO cache for NavTreeView1
    [703] Clear QueryCollection in cache...
    [704] Clearing EO cache for com.ips.business.entity.IpsRoles
    [705] Clearing VO cache for NavTreeView1
    [706] Clear QueryCollection in cache...
    [707] Clearing EO cache for com.ips.business.entity.IpsRoleTrees
    [708] Clearing VO cache for NavTreeView1
    [709] Clear QueryCollection in cache...
    [710] Clearing EO cache for com.ips.business.entity.IpsShortLists
    [711] Clearing VO cache for NavTreeView1
    [712] Clear QueryCollection in cache...
    [713] Clearing EO cache for com.ips.business.entity.IpsUsers
    [714] Clearing VO cache for NavTreeView1
    [715] Clear QueryCollection in cache...
    [716] Clearing EO cache for com.ips.business.entity.IpsRoleCaps
    [717] Clearing VO cache for NavTreeView1
    [718] Clear QueryCollection in cache...
    [719] Clearing EO cache for com.ips.business.entity.IpsObjCaps
    [720] Clearing VO cache for NavTreeView1
    [721] Clear QueryCollection in cache...
    [722] Clearing EO cache for com.ips.business.entity.IpsObjects
    [723] Clearing VO cache for NavTreeView1
    [724] Clear QueryCollection in cache...
    [725] Clearing VO cache for NavTreeView1
    [726] Clear QueryCollection in cache...
    [727] Resetting AM=NavTreeModule
    [728] ViewObject close prepared statements...
    [729] BC4J Property jbo.maxpoolcookieage='-1' -->(MetaObjectManager) from System Default
    [730] BC4J Property jbo.maxpoolcookieage='-1' -->(MetaObjectManager) from System Default
    [731] Creating a new pool resource
    [732] BC4JDeployPlatform: LOCAL
    [733] Propertymanager: skipping reload of file and system based properties
    [734] {{ begin Loading BC4J properties
    [735] -----------------------------------------------------------
    [736] BC4J Property jbo.default.language='en' -->(MetaObjectManager) from System Default
    [737] BC4J Property jbo.default.country='US' -->(MetaObjectManager) from System Default
    [738] BC4J Property DeployPlatform='LOCAL' -->(SessionImpl) from Client Environment
    [739] Skipping empty Property ConnectionMode from System Default
    [740] Skipping empty Property HostName from System Default
    [741] Skipping empty Property ConnectionPort from System Default
    [742] BC4J Property jbo.locking.mode='pessimistic' -->(MetaObjectManager) from System Default
    [743] Skipping empty Property ApplicationPath from System Default
    [744] BC4J Property AppModuleJndiName='com.ips.business.module.UnitOfMeasureModule' -->(SessionImpl) from Client Environment
    [745] Skipping empty Property java.naming.security.principal from System Default
    [746] Skipping empty Property java.naming.security.credentials from System Default
    [747] Skipping empty Property jbo.user.principal from System Default
    [748] Skipping empty Property jbo.object.marshaller from System Default
    [749] BC4J Property jbo.use.pers.coll='true' -->(SessionImpl) from System Default
    [750] BC4J Property jbo.pers.max.rows.per.node='70' -->(SessionImpl) from System Default
    [751] BC4J Property jbo.pers.max.active.nodes='30' -->(SessionImpl) from System Default
    [752] Skipping empty Property jbo.pcoll.mgr from System Default
    [753] BC4J Property jbo.txn_table_name='PS_TXN' -->(SessionImpl) from System Default
    [754] BC4J Property jbo.txn_seq_name='PS_TXN_seq' -->(SessionImpl) from System Default
    [755] BC4J Property jbo.control_table_name='PCOLL_CONTROL' -->(MetaObjectManager) from System Default
    [756] BC4J Property jbo.stringmanager.factory.class='use_default' -->(SessionImpl) from System Default
    [757] BC4J Property jbo.fetch.mode='AS.NEEDED' -->(MetaObjectManager) from System Default
    [758] BC4J Property jbo.323.compatible='false' -->(MetaObjectManager) from System Default
    [759] Skipping empty Property JBODynamicObjectsPackage from System Default
    [760] BC4J Property MetaObjectContextFactory='oracle.jbo.mom.xml.DefaultMomContextFactory' -->(MetaObjectManager) from System Default
    [761] BC4J Property MetaObjectContext='oracle.jbo.mom.xml.XMLContextImpl' -->(MetaObjectManager) from System Default
    [762] BC4J Property java.naming.factory.initial='oracle.jbo.common.JboInitialContextFactory' -->(SessionImpl) from Client Environment
    [763] BC4J Property IsLazyLoadingTrue='true' -->(MetaObjectManager) from /oracle/jbo/server/jboserver.properties resource
    [764] BC4J Property ActivateSharedDataHandle='false' -->(MetaObjectManager) from System Default
    [765] Skipping empty Property HandleName from System Default
    [766] Skipping empty Property Factory-Substitution-List from System Default
    [767] BC4J Property jbo.project='Business' -->(MetaObjectManager) from Client Environment
    [768] BC4J Property jbo.max.cursors='50' -->(MetaObjectManager) from System Default
    [769] BC4J Property jbo.dofailover='true' -->(MetaObjectManager) from System Default
    [770] BC4J Property jbo.doconnectionpooling='false' -->(MetaObjectManager) from System Default
    [771] BC4J Property jbo.recyclethreshold='10' -->(MetaObjectManager) from System Default
    [772] BC4J Property jbo.ampool.dynamicjdbccredentials='true' -->(MetaObjectManager) from System Default
    [773] BC4J Property jbo.ampool.resetnontransactionalstate='true' -->(SessionImpl) from System Default
    [774] BC4J Property jbo.ampool.sessioncookiefactoryclass='oracle.jbo.common.ampool.DefaultSessionCookieFactory' -->(MetaObjectManager) from System Default
    [775] BC4J Property jbo.ampool.connectionstrategyclass='com.ips.client.core.IpsConnectionStrategy' -->(MetaObjectManager) from System Property
    [776] BC4J Property jbo.ampool.maxpoolsize='2147483647' -->(MetaObjectManager) from System Default
    [777] BC4J Property jbo.ampool.initpoolsize='0' -->(MetaObjectManager) from System Default
    [778] BC4J Property jbo.ampool.monitorsleepinterval='600000' -->(MetaObjectManager) from System Default
    [779] BC4J Property jbo.ampool.minavailablesize='5' -->(MetaObjectManager) from System Default

  • 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

  • Developer Suite

    iii
    Preface.............................. xvii
    Intended Audience... xvii
    Documentation Accessibility .................................................................................................................. xvii
    Organization ............ xviii
    Related Documents . xviii
    Product Accessibility xix
    Related Documents ... xix
    Conventions ............... xx
    Part I Product Release Notes
    1 What¡¯s New in the Oracle Developer Suite 10g Release Notes?
    1.1 Chapter 4 "Known Issues" ......................................................................................................... 1-1
    1.1.1 New Topics ........................................................................................................................... 1-1
    1.2 Chapter 7 "Oracle Discoverer Administrator" ........................................................................ 1-1
    1.2.1 New Topics ........................................................................................................................... 1-1
    1.3 Chapter 9 "Oracle Forms Developer" ....................................................................................... 1-2
    1.3.1 New Topics ........................................................................................................................... 1-2
    1.3.2 Updated Topics .................................................................................................................... 1-2
    1.4 Chapter 10 "Oracle Reports"...................................................................................................... 1-2
    1.4.1 New Topics ........................................................................................................................... 1-2
    1.4.2 Updated Topics .................................................................................................................... 1-2
    2 Product Naming
    2.1 Windows Components............................................................................................................... 2-1
    2.2 Linux, Solaris, and HP-UX Components................................................................................. 2-1
    3 Certification Information
    3.1 Certification Information ........................................................................................................... 3-1
    iv
    4 Known Issues
    4.1 Preinstallation Issues .................................................................................................................. 4-1
    4.1.1 Assistive Technologies (Windows only) .......................................................................... 4-1
    4.1.2 Oracle Business Intelligence Beans ................................................................................... 4-2
    4.1.3 Oracle9i Warehouse Builder .............................................................................................. 4-2
    4.2 Installation Issues........................................................................................................................ 4-2
    4.3 Postinstallation Issues ................................................................................................................ 4-3
    4.3.1 Java Versions ........................................................................................................................ 4-3
    4.4 Deinstallation Issues................................................................................................................... 4-3
    4.5 Platform-specific Issues.............................................................................................................. 4-3
    4.5.1 Linux Issues .......................................................................................................................... 4-3
    4.5.1.1 Revised Linux Operating Environment Software Requirements.......................... 4-3
    4.5.1.2 Setting the PATH environment variable in Linux................................................... 4-3
    4.6 Configuration Issues................................................................................................................... 4-3
    4.7 Administration Issues ................................................................................................................ 4-3
    4.8 Documentation Errata ................................................................................................................ 4-4
    4.8.1 Oracle Developer Suite 10g Installation Guide ............................................................... 4-4
    4.8.2 Oracle Developer Suite 10g Quick Installation Guide.................................................... 4-4
    4.8.3 Linux Operating Environment Software Requirements ................................................ 4-4
    4.8.3.1 Red Hat Linux 2.1 Requirements ............................................................................... 4-5
    4.8.3.2 Red Hat Linux 3.0 Requirements ............................................................................... 4-6
    4.8.3.3 UnitedLinux 1.0 Requirements................................................................................... 4-8
    Part II Component Release Notes
    5 Oracle9i JDeveloper
    5.1 General Issues and Workarounds ............................................................................................ 5-1
    5.1.1 Introd 5-1
    5.1.1.1 Support for Oracle9i Release 2 (9.2) ........................................................................... 5-2
    5.1.2 Deploying to OC4J............................................................................................................... 5-2
    5.1.2.1 OC4J Version Shipped with Oracle JDeveloper 9.0.4.............................................. 5-2
    5.1.2.2 OC4J Memory Requirements...................................................................................... 5-2
    5.1.3 Deploying to Other Application Servers.......................................................................... 5-3
    5.1.3.1 Problems Running UIX Web Applications (including the BC4J JSP Admin Page)
    Deployed to Non-Oracle Application Servers (2577293) ........................................ 5-3
    5.1.3.2 Deploying Web Applications to Apache Tomcat 4.1 .............................................. 5-4
    5.1.3.3 Problems in JSP Applications Deployed to Tomcat (2615358)............................... 5-4
    5.1.3.4 XSQL Page Processor Cannot Read Pages from Unexpanded Servlet 2.2 WAR File
    (1552039) ........................................................................................................................ 5-4
    5.1.3.5 Type Incompatibilities when Deploying to WebLogic ........................................... 5-4
    5.1.3.6 WebLogic6.1 Fails to Understand Windows-1252 Encoding in XML Files ......... 5-4
    5.1.3.7 CORBA Requires JDK 1.3 at Runtime (2685103)...................................................... 5-5
    v
    5.1.4 Miscellaneous Deployment Issues .................................................................................... 5-5
    5.1.4.1 ejb-ref in web.xml not Updated if the Bean Type is Changed from Remote to Local
    (2589997) ........................................................................................................................ 5-5
    5.1.5 BC4J Is 5-5
    5.1.5.1 Available Tables not Visible Under Java Type Map and SQL92 SQL Flavor
    (2693168) 5-5
    5.1.5.2 902 Projects with VO or Attribute Names Containing $ do not Migrate (2701773)....
    5-5
    5.1.5.3 JDeveloper 9.0.4 *.jpr File Format Not Backward Compatible with 9.0.3 (2682921) ..
    5-6
    5.1.5.4 Migrated Project: Export Interface is Removed but Still Implemented in IMPL
    Class (2676186) .............................................................................................................. 5-6
    5.1.5.5 Bean Name in <EJB-LOCAL-REF> not Updated when Underlying Entity is
    Renamed (2587916) ....................................................................................................... 5-6
    5.1.5.6 Setting Current Database Time Using Entity Facades (2525437) .......................... 5-6
    5.1.5.7 Replace qView with getRowSet in Migration Documentation (2723075) ............ 5-6
    5.1.5.8 Documentation Refers to BC4J "Wizards" ................................................................ 5-6
    5.1.5.9 Unable to Run a BC4J JSP in OC4J in VB Bind Mode (2594776) ............................ 5-6
    5.1.5.10 Problem Running Struts Actions in 9.0.3 Project After Upgrade (2756440) ........ 5-7
    5.1.5.11 Help Sometimes Not Available for Business Component Browser...................... 5-7
    5.1.5.12 jbo.debugoutput Property can Take Value of "file"................................................. 5-7
    5.1.6 EJB Issues .............................................................................................................................. 5-7
    5.1.6.1 Cannot Run EJB in Embedded OC4J Server if Workspace Has Two Projects
    (2096700, 2591173) ........................................................................................................ 5-7
    5.1.7 JClient Issues ........................................................................................................................ 5-7
    5.1.7.1 JTree Binding is not Editable (2061405)..................................................................... 5-8
    5.1.7.2 Cannot Run JClient Applications in EJB Mode Running in Webstart 1.2 (2699458) ..
    5-8
    5.1.7.3 Webstart not Launched in IE 5.5 Due to Mimetype Problems (2573655)............. 5-8
    5.1.7.4 SpinnerNumberModel for JSpinner Control does not Work for
    oracle.jbo.domain.Number (2738858) ........................................................................ 5-8
    5.1.8 Source Control Support Issues........................................................................................... 5-8
    5.1.8.1 Oracle SCM: JDeveloper Does Not Share Folder Mappings with the Oracle SCM
    RON 5-8
    5.1.8.2 Oracle SCM: Using JDeveloper and the Oracle SCM VHV.................................... 5-9
    5.1.8.3 Oracle SCM: Connecting to Oracle Software Configuration Manager 6i Release
    4.1.1 or Above ................................................................................................................ 5-9
    5.1.9 Modeling Issues: General ................................................................................................... 5-9
    5.1.9.1 Performing Source Control Operations On Model Element and Diagram Files
    (2211605) ........................................................................................................................ 5-9
    5.1.9.2 Exceptions on Startup if Install Directory Has a Space in Name (2709528)......... 5-9
    5.1.10 Modeling Issues: Modeling Java Classes, BC4J or EJB Components ........................... 5-9
    5.1.10.1 Deleting Modeled Java Classes (2706800)................................................................. 5-9
    5.1.11 Modeling Issues: Modeling Activities for E-Business Integration ............................... 5-9
    5.1.11.1 E-Business Integration Generator Generates Propagations Using Public Database
    Links (2063917) .............................................................................................................. 5-9
    5.1.11.2 Using HTTP Propagation on a 9.0.1 Database ...................................................... 5-10
    vi
    5.1.12 Web Services Issues .......................................................................................................... 5-10
    5.1.12.1 Renaming a Method on a Modeled Web Service Fails to Expose It (2702659) . 5-10
    5.1.12.2 SOAP Web Service Does Not Start New Session (2218102) ................................ 5-10
    5.1.12.3 Using JMS Web Services with OC4J ....................................................................... 5-10
    5.1.12.4 Creating JMS Web Services that Use Both Send and Receive Operations ........ 5-10
    5.1.12.5 Running the PL/SQL Web Service Generator with JDK 1.4............................... 5-11
    5.1.12.6 Runtime Error Calling a Web Service from a Generated Stub (2389203).......... 5-11
    5.1.12.7 Cannot Model Web Services Based on PL/SQL Packages (2466833) ................ 5-11
    5.1.12.8 Creating a Stub with Overloaded Methods to a .NET Web Service (2689939). 5-11
    5.1.12.9 Web Service Stub if Generated from JDeveloper Install Path has Space (3068701) ....
    5-11
    5.1.12.10 Generating Stubs for WSDL Files That Refer to Other WSDL Files (2627242). 5-12
    5.1.13 Using WebDAV Connections in JDeveloper ................................................................ 5-12
    5.1.14 Miscellaneous Issues ........................................................................................................ 5-12
    5.1.14.1 PL/SQL Compilation Errors Not Displayed (2688533) ....................................... 5-12
    5.1.14.2 Allowable Values for Columns Must be Given a Display Sequence (2717508) 5-12
    5.1.14.3 Toystore Demo Contains Obsolete bc4jstruts.jar File........................................... 5-12
    5.1.14.4 Right Mouse Menu "Go to Source" no Longer Working (3146584).................... 5-13
    5.1.14.5 Passivation/Activation of interMedia Domain Objects with Media Content to
    Upload does not Work in 3 Tier Environment (2887647) .................................... 5-13
    5.2 Platform-specific Issues and Workarounds ......................................................................... 5-13
    5.2.1 Windows Platform Issues and Workarounds .............................................................. 5-13
    5.2.1.1 Updated JDK Required for Windows Preview Oracle9i JDeveloper ................ 5-13
    5.2.2 Linux, Solaris, and HP-UX Platform Issues and Workarounds................................. 5-13
    5.2.2.1 General Linux, Solaris, and HP-UX Platform Issues and Workarounds........... 5-13
    5.2.2.2 Solaris-specific Issues and Workarounds .............................................................. 5-14
    5.2.2.3 Linux-specific Issues and Workarounds................................................................ 5-14
    5.2.2.4 HP-UX Issues and Workarounds ............................................................................ 5-14
    5.3 Configuration Issues and Workarounds .............................................................................. 5-15
    5.4 Administration Issues and Workarounds ............................................................................ 5-15
    5.5 Documentation Errata ............................................................................................................. 5-15
    5.5.1 Replace qView with getRowSet in Migration Documentation (2723075) ................ 5-15
    5.5.2 Documentation Refers to BC4J "Wizards"..................................................................... 5-15
    6 Oracle Business Intelligence Beans
    6.1 Introduction . 6-1
    6.2 General Issues and Workarounds ............................................................................................ 6-2
    6.2.1 Tutorials and samples ......................................................................................................... 6-2
    6.2.2 QueryBuilder and queries .................................................................................................. 6-2
    6.2.3 Presentations ........................................................................................................................ 6-3
    6.2.4 BI Beans Catalog .................................................................................................................. 6-3
    6.2.5 General deployment issues ................................................................................................ 6-5
    6.2.6 Configuration steps for deploying HTML-client applications ..................................... 6-5
    6.2.6.1 Deploying to OC4J........................................................................................................ 6-5
    6.2.6.2 Migrating Applications Deployed to OC4J .............................................................. 6-6
    6.2.6.3 Deploying to Tomcat.................................................................................................... 6-6
    6.2.6.4 Deploying to JBoss........................................................................................................ 6-7
    vii
    6.2.7 Deploying to Java Web Start .............................................................................................. 6-7
    6.2.8 Internationalization issues.................................................................................................. 6-8
    6.2.9 Accessibility limitations...................................................................................................... 6-8
    6.3 Platform-specific Issues and Workarounds ............................................................................ 6-9
    6.4 Configuration Issues and Workarounds ................................................................................. 6-9
    6.4.1 JDBC Drivers ........................................................................................................................ 6-9
    6.4.1.1 Upgrading the drivers automatically ........................................................................ 6-9
    6.4.1.2 Upgrading the drivers manually................................................................................ 6-9
    6.4.1.3 Restoring the original drivers .................................................................................. 6-10
    6.4.2 Changing from the thin to the thick drivers ................................................................. 6-10
    6.4.3 BI Beans configuration diagnostic utility ...................................................................... 6-10
    6.4.4 Connections ....................................................................................................................... 6-11
    6.5 Administration Issues and Workarounds ............................................................................ 6-11
    6.6 Documentation Errata ............................................................................................................. 6-11
    7 Oracle Discoverer Administrator
    7.1 General Issues and Workarounds ............................................................................................ 7-1
    7.1.1 "Cannot find a required file: dcmresus.msb." When Trying to Launch Oracle
    Discoverer 9.0.2 after Installing 9.0.4 ................................................................................ 7-1
    7.1.2 ORA-3113 Errors when Using Heterogeneous Data Services with Oracle Discoverer
    Administrator ....................................................................................................................... 7-2
    7.1.3 JOB_QUEUE_INTERVAL Settings and Oracle Applications Users ............................ 7-2
    7.1.4 Recommended Update for Batch Repository Created with Oracle Discoverer 9.0.2 7-2
    7.2 Platform-specific Issues and Workarounds ............................................................................ 7-3
    7.3 Configuration Issues and Workarounds ................................................................................. 7-3
    7.4 Administration Issues and Workarounds ............................................................................... 7-3
    7.5 Useful I 7-3
    7.5.1 Upgrading from Oracle Discoverer 3.1 ............................................................................ 7-3
    7.5.2 Manually Editing the End User Layer Tables ................................................................. 7-3
    7.5.3 Availability of HWOnline files .......................................................................................... 7-3
    7.5.4 Setting Oracle Discoverer Registry Variables for Use by Oracle Discoverer EUL
    Command Line for Java Commands ................................................................................ 7-4
    7.5.5 Additional Oracle Discoverer Registry Variables........................................................... 7-4
    7.5.6 Required Privileges For the Scheduled Workbook Results Schema ............................ 7-5
    7.5.6.1 How to grant the SELECT privilege on the synonym v$parameter to enable you to
    run scheduled workbooks ........................................................................................... 7-5
    7.5.7 Running the Oracle Discoverer EUL Command Line for Java (Linux, Solaris, and
    HP-UX only) ......................................................................................................................... 7-7
    7.5.8 Oracle Discoverer and Real Application Clusters (RAC)/Transparent Application
    Failover (TAF) ...................................................................................................................... 7-7
    7.5.9 Installing the Lineage workbook for use with Oracle Warehouse Builder................. 7-8
    7.5.10 Using the Discoverer workbook dump utility ................................................................ 7-9
    viii
    7.6 Documentation Errata ............................................................................................................. 7-12
    7.6.1 Item Class Wizard: Choose Attributes dialog description ......................................... 7-12
    7.6.2 Correction to /export (EUL Objects) Example............................................................. 7-13
    7.6.3 Missing ¡®-jar¡¯ in Example Syntax given for Running Oracle Discoverer EUL Command
    Line for Java commands .................................................................................................. 7-13
    7.6.4 About Scheduled Workbooks and Compatibility Between the Current Version of
    Oracle Discoverer and Previous Releases 7-13
    7.6.5 <ORACLE_HOME>\discoverer\util should read <ORACLE_HOME>\discoverer\sql
    7-13
    8 Oracle Discoverer Desktop
    8.1 General Issues and Workarounds ............................................................................................ 8-1
    8.1.1 "Cannot find a required file : dcmresus.msb." When Trying to Run Oracle Discoverer
    9.0.2 after Installing 9.0.4 .................................................................................................... 8-1
    8.2 Platform-specific Issues and Workarounds ............................................................................ 8-2
    8.3 Configuration Issues and Workarounds ................................................................................. 8-2
    8.4 Administration Issues and Workarounds ............................................................................... 8-2
    8.5 Useful I 8-2
    8.5.1 Manually Editing the End User Layer Tables ................................................................. 8-2
    8.5.2 Refresh Query For Users Only Able to Run Scheduled Workbooks ........................... 8-2
    8.5.3 Availability of HWOnline files .......................................................................................... 8-2
    8.5.4 Additional Oracle Discoverer Registry variables ........................................................... 8-3
    8.5.5 Oracle Discoverer and Real Application Clusters (RAC)/Transparent Application
    Failover (TAF) ...................................................................................................................... 8-3
    8.6 Documentation Errata ................................................................................................................ 8-4
    9 Oracle Forms Developer
    9.1 General Issues and Workarounds ............................................................................................ 9-1
    9.1.1 No Need To Recompile Forms When Upgrading To Oracle Forms 10g (9.0.4) ......... 9-1
    9.1.2 Obtaining Environment Handles and Service Contexts in V8 Mode .......................... 9-1
    9.1.3 Forms Cannot Handle Multibyte CLOB Data Correctly................................................ 9-2
    9.1.4 Embedded Fonts in Forms Developer .............................................................................. 9-2
    9.1.5 Iconic Push Buttons ............................................................................................................. 9-2
    9.1.5.1 Restriction For Data Block Wizard............................................................................. 9-2
    9.2 Platform-specific Issues and Workarounds ............................................................................ 9-3
    9.2.1 Windows Platform Issues and Workarounds ................................................................. 9-3
    9.2.1.1 Oracle Forms Accessibility Information.................................................................... 9-3
    9.2.1.1.1 Using a Screen Reader and Java Access Bridge with Oracle Forms .............. 9-3
    9.2.1.2 Java Related Dialogs And Windows Are Not Read By Jaws ................................. 9-4
    9.2.1.3 Workaround for Reading Accessibility PL/SQL Error Messages......................... 9-5
    9.2.1.4 Location of JAWS Scripts............................................................................................. 9-5
    9.2.1.5 Graphics Fails Against Database 9.0.1.4.0 (64bit) .................................................... 9-5
    9.2.1.6 List of Colors in the Default Color Palette ................................................................ 9-5
    9.2.1.7 Changing the Look-and-Feel for the Property Inspector and Navigator............. 9-5
    9.2.1.8 8.2.1.1 FRM-18113 Error When Clicking On Design Capture................................ 9-5
    ix
    9.2.2 UNIX Platform Issues and Workarounds ........................................................................ 9-5
    9.2.2.1 General UNIX Platform Issues and Workarounds .................................................. 9-6
    9.2.2.1.1 USER_EXIT in UNIX............................................................................................. 9-6
    9.2.2.2 Using TK90_UNKNOWN........................................................................................... 9-7
    9.2.3 HP-UX Issues and Workarounds ..................................................................................... 9-7
    9.3 Configuration Issues and Workarounds ................................................................................. 9-7
    9.3.1 Forms and Reports Integration.......................................................................................... 9-7
    9.3.1.1 (2228305) Cannot Invoke Reports Builder from Form Builder .............................. 9-7
    9.3.1.2 Restarting OPMN In-process Reports Server Raises Error .................................... 9-8
    9.3.1.3 Forms Migration Assistant: RUN_PRODUCT(Reports) rp2rro Reports Object Is
    Not Created in Object Library .................................................................................... 9-8
    9.4 Documentation Errata ................................................................................................................ 9-8
    9.4.1 Oracle Forms Developer (Builder) Online Help ............................................................. 9-8
    9.4.1.1 About Run Form........................................................................................................... 9-8
    10 Oracle Reports
    10.1 General Issues and Workarounds ......................................................................................... 10-1
    10.1.1 Creating an Express Server Query ................................................................................. 10-1
    10.1.2 Inserting a Graph in the Paper Design View for a Matrix-with-Group Report ...... 10-2
    10.1.3 Running a Report containing non-encoded URL streams in Internet Explorer ...... 10-2
    10.1.4 Running a Simple Matrix Report to the Web ............................................................... 10-2
    10.1.5 Opening / Running an encoded JSP report.................................................................. 10-2
    10.1.6 Dynamically Embedding a Character Set in a JSP file ................................................ 10-3
    10.1.7 Running a Multibyte report containing an embedded Oracle Object....................... 10-4
    10.1.8 Viewing Oracle Enterprise Manager screens in non European languages .............. 10-4
    10.1.9 Specifying the encoding of an XML PDS Report ......................................................... 10-4
    10.1.10 FTP and WebDaV Destinations Not Supported from Reports Builder .................... 10-4
    10.1.11 Oracle9i JDeveloper Integration ..................................................................................... 10-4
    10.1.11.1 Deadlock When Debugging JSP Reports in Oracle9i JDeveloper ...................... 10-5
    10.1.11.2 Graph Not Appearing in Oracle9i JDeveloper...................................................... 10-5
    10.1.11.3 Reports in-process server ......................................................................................... 10-5
    10.2 Platform-specific Issues and Workarounds ......................................................................... 10-5
    10.2.1 Windows Platform Issues and Workarounds .............................................................. 10-5
    10.2.1.1 Running a Report with an Embedded 6i Graphic on an OPMN-Managed Reports
    Server ........................................................................................................................... 10-5
    10.2.1.2 Starting a Reports Server Registered with Oracle Enterprise Manager as a
    Windows Service ....................................................................................................... 10-6
    10.2.1.3 Using osfind with JDK 1.4........................................................................................ 10-6
    10.2.1.4 Invoking the Getting Started Page From Reports Builder................................... 10-6
    10.2.1.5 Printing Reports Without Hardware-based Left Margins................................... 10-7
    10.2.2 Linux, Solaris, and HP-UX Platform Issues and Workarounds................................. 10-7
    10.2.2.1 General Linux, Solaris, and HP-UX Platform Issues and Workarounds .......... 10-8
    10.2.2.1.1 Running a Report to DelimitedData on OracleAS Portal............................. 10-8
    10.2.2.1.2 Providing the location to a character set-specific Tk2Motif.rgb file ........... 10-8
    10.2.2.1.3 Implementing removal of DISPLAY and printer dependencies ................. 10-8
    x
    10.2.2.2 Solaris Issues and Workarounds ............................................................................. 10-9
    10.2.2.2.1 Reports Builder stops responding on Solaris 2.9 ........................................... 10-9
    10.2.2.2.2 Invoking the Graph Wizard in a multibyte environment ............................ 10-9
    10.2.2.3 Linux Issues and Workarounds ............................................................................ 10-10
    10.2.2.3.1 Radio box selection using mouse in New Program Unit dialog box does not
    take effect (3209858) ......................................................................................... 10-10
    10.2.2.4 HP-UX Issues and Workarounds .......................................................................... 10-10
    10.2.2.4.1 Running Oracle Reports in a Japanese Environment on HP-UX .............. 10-10
    10.3 Configuration Issues and Workarounds ............................................................................ 10-10
    10.3.1 Changing the Administrator Login by Using Reports Queue Manager ................ 10-11
    10.3.2 Repairing Fonts Not Appearing Correctly in Web Source View............................. 10-11
    10.3.3 Optimizing the Deployment of Reports ...................................................................... 10-12
    10.3.4 Improving Image Resolution of Graphs Displayed in a PDF File or on a Printer 10-12
    10.3.5 Specifying the Values for Oracle Reports' Java Virtual Machine ............................ 10-13
    10.3.6 Resolving Reports-Portal Integration Error When Attempting OID Create Resource .....
    10-13
    10.3.7 Running to Web Layout on Reports Builder .............................................................. 10-14
    10.4 Administration Issues and Workarounds .......................................................................... 10-14
    10.4.1 Authenticating Enterprise Manager Access to Reports Server Information.......... 10-15
    10.4.2 Running Reports on OracleAS Portal as an Item Link.............................................. 10-15
    10.5 Documentation Errata ........................................................................................................... 10-16
    10.5.1 REPORTS_CLASSPATH variable in Linux, Solaris, and HP-UX............................ 10-16
    10.5.2 Oracle Reports Documentation Page on Oracle Technology Network .................. 10-16
    10.5.3 Dynamic Environment Switching in Oracle Reports ............................................... 10-17
    10.5.4 Revised Section 13.3.3.2 of Oracle Application Server Reports Services Publishing
    Reports to the Web ......................................................................................................... 10-17
    10.5.4.1 Deploying an Oracle Reports JSP to an OC4J_BI_FORMS Instance ................ 10-17
    10.5.4.1.1 To deploy to an existing OC4j_BI_FORMS instance: .................................. 10-17
    10.5.4.1.2 To deploy to a new OC4j_BI_FORMS instance:........................................... 10-18
    10.5.4.1.3 To configure the new OC4J instance: ............................................................ 10-18
    10.5.5 Possible Outdated Screenshots in Oracle Reports Server Reports Services Publishing
    Reports to the Web ......................................................................................................... 10-20
    11 Oracle Designer
    11.1 General Issues and Workarounds ......................................................................................... 11-1
    11.1.1 Installation ......................................................................................................................... 11-1
    11.1.1.1 Oracle Designer patchsets to 9.0.4........................................................................... 11-1
    11.1.1.2 Oracle Designer/SCM Patchset 9.0.4.3: immediate installation may be required......
    11-1
    11.1.1.3 Japanese in the multi-language environment ....................................................... 11-2
    11.1.1.4 Setting up the repository for NLS operation ......................................................... 11-2
    11.1.1.5 Enabling repository support for Oracle Designer Objects when the repository only
    supports core objects ................................................................................................. 11-3
    xi
    11.1.1.6 Migration from Oracle Designer Web Assistant (ODWA) to Repository Object
    Browser (ROB) ........................................................................................................... 11-3
    11.1.1.6.1 Installing ROB..................................................................................................... 11-3
    11.1.1.6.2 ODWA Data ........................................................................................................ 11-3
    11.1.1.6.3 Migration to ROB ............................................................................................... 11-4
    11.1.1.6.4 ODWA Preferences ............................................................................................ 11-4
    11.1.2 System Modeling and Design Tools .............................................................................. 11-5
    11.1.3 Database Design Transformer ........................................................................................ 11-8
    11.1.4 Form Generator................................................................................................................. 11-9
    11.1.5 Web PL/SQL Generator ................................................................................................ 11-11
    11.1.6 Report Generator, Design Capture and Application Logic Capture ...................... 11-12
    11.1.7 Server Generator ............................................................................................................. 11-13
    11.1.8 Repository Reports ......................................................................................................... 11-14
    11.1.9 Matrix Diagrammer........................................................................................................ 11-15
    11.1.10 Accessibility ..................................................................................................................... 11-15
    11.1.11 Other problems and restrictions................................................................................... 11-15
    11.2 Platform-specific Issues and Workarounds ....................................................................... 11-16
    11.3 Configuration Issues and Workarounds ............................................................................ 11-17
    11.4 Administration Issues and Workarounds .......................................................................... 11-17
    11.5 Documentation Errata ........................................................................................................... 11-17
    12 Oracle Software Configuration Manager
    12.1 General Issues and Workarounds ......................................................................................... 12-1
    12.1.1 Patchs 12-1
    12.1.2 Oracle Forms Developer and Oracle Reports Developer Users ................................ 12-2
    12.1.3 Certification against Oracle RDBMS.............................................................................. 12-2
    12.1.4 Upgrading from Oracle Designer Release 1.3.2 ........................................................... 12-2
    12.1.5 Multi-Language Environment ........................................................................................ 12-2
    12.1.6 Compatibility of Oracle SCM and Oracle Repository 6i Repositories ...................... 12-2
    12.1.7 Changes from the Previous Release (iDS 9.0.2 maintenance release 9.0.2.5) ........... 12-3
    12.1.8 Fixed Bugs.......................................................................................................................... 12-3
    12.1.9 API and Model Reference Guide.................................................................................... 12-4
    12.2 Known Problems and Restrictions ........................................................................................ 12-4
    12.2.1 Migra 12-4
    12.2.2 SCM Java Tools ................................................................................................................. 12-6
    12.2.3 Repository Administration Utility (RAU)..................................................................... 12-7
    12.2.4 Repository Object Navigator........................................................................................... 12-8
    12.2.5 Compare Utility .............................................................................................................. 12-10
    12.2.6 Merge 12-11
    12.2.7 Version History Viewer ................................................................................................. 12-11
    12.2.8 Version Event Viewer .................................................................................................... 12-12
    12.2.9 Importing and Exporting............................................................................................... 12-12
    12.2.10 Dependency Manager .................................................................................................... 12-14
    12.2.11 Command Line Tool....................................................................................................... 12-14
    12.2.12 Other Known Problems and Restrictions.................................................................... 12-15
    xii
    12.3 Known Restrictions to Keyboard Controls ........................................................................ 12-18
    12.3.1 General Keyboard Control Restrictions ...................................................................... 12-18
    12.3.2 Non-Standard Keyboard Controls ............................................................................... 12-18
    12.3.2.1 Dependency Manager............................................................................................. 12-18
    12.3.2.2 Repository Administration Utility ........................................................................ 12-19
    12.3.2.3 Repository Object Navigator ................................................................................. 12-19
    12.3.2.4 General Restrictions for Java Tools ....................................................................... 12-20
    12.3.3 Known Problems and Workarounds ........................................................................... 12-21
    12.3.3.1 Merge Window........................................................................................................ 12-21
    12.3.3.2 Repository Object Navigator ................................................................................. 12-21
    12.3.3.3 Other Known Problems and Restrictions ............................................................ 12-21
    12.3.4 Command Line Tool Accessibility ............................................................................... 12-22
    12.4 Platform-specific Issues and Workarounds ....................................................................... 12-22
    12.4.1 Windows Platform Issues and Workarounds ............................................................ 12-22
    12.4.2 Linux, Solaris, and HP-UX Platform Issues and Workarounds............................... 12-22
    12.4.2.1 General Linux, Solaris, and HP-UX Platform Issues and Workarounds......... 12-22
    12.4.2.2 Solaris Issues and Workarounds ........................................................................... 12-22
    12.4.2.3 Linux Issues and Workarounds ............................................................................ 12-22
    12.4.2.4 HP-UX Issues and Workarounds .......................................................................... 12-22
    12.5 Configuration Issues and Workarounds ............................................................................ 12-22
    12.6 Administration Issues and Workarounds .......................................................................... 12-22
    12.7 Documentation Errata ........................................................................................................... 12-22
    Part III Other Release Notes
    13 Oracle Application Server Containers for J2EE (OC4J)
    13.1 Configuration Issues and Workarounds .............................................................................. 13-1
    13.1.1 OPMN Does Not Properly Assign CORBA SSL Client Ports for Default ................ 13-2
    13.1.2 Sharing and Using Libraries ........................................................................................... 13-2
    13.1.3 Invalid or Unneeded Library Elements Degrade Performance ................................. 13-2
    13.1.4 Custom User Managers Deployed Within EJB JAR Files ........................................... 13-2
    13.1.5 Considerations for Startup and Shutdown................................................................... 13-3
    13.1.6 Supported JDK Versions.................................................................................................. 13-3
    13.1.7 Migrating Source Code from JDK 1.4 to JDK 1.3 ......................................................... 13-3
    13.1.8 Migrating Source Code from JDK 1.3 to JDK 1.4 ......................................................... 13-3
    13.1.9 OC4J Demo Downloads................................................................................................... 13-4
    13.2 Release Notes for JSP, Tag Libraries, and Related Demos................................................. 13-4
    13.2.1 Cannot Invoke Classes That Are Not in Packages....................................................... 13-4
    13.2.2 Set the SAX Driver When Starting OC4J ....................................................................... 13-5
    13.2.3 JSP ojspc Issues.................................................................................................................. 13-5
    13.2.3.1 Debug Option Has No Effect on ojspc Output...................................................... 13-5
    13.2.3.2 The /WEB-INF/lib or /WEB-INF/classes Directories Should Not Contain .java
    Files ............................................................................................................................. 13-6
    xiii
    13.2.4 JESI Tag Release Notes..................................................................................................... 13-6
    13.2.4.1 JESI Tags No Longer Require Conditional Treatment ......................................... 13-6
    13.2.4.2 JESI personalize Tag Now Adds Single Quotes.................................................... 13-6
    13.2.4.3 A fragment Tag Can Be Inside an Included Page................................................. 13-6
    13.2.4.4 Multiple control or template Tags Can Be Used................................................... 13-6
    13.2.4.5 No Response Output Outside the Tags of a template Tag .................................. 13-7
    13.2.4.6 Do Not Use Explicit ESI Markup With JESI Tags ................................................. 13-7
    13.2.5 Tag Library Descriptors Must Be Under WEB-INF..................................................... 13-7
    13.2.6 Adding Tag Library JAR Files to /WEB-INF/lib While OC4J Is Running.............. 13-7
    13.2.7 Search Local Classes First ................................................................................................ 13-7
    13.2.8 java.lang.ClassFormatError: (Truncated Class File) .................................................... 13-8
    13.3 Release Notes for Servlets....................................................................................................... 13-8
    13.3.1 Cannot Invoke Classes Not in Packages ....................................................................... 13-8
    13.3.2 Servlet Invocation by Class Name Is Available During Development..................... 13-8
    13.3.3 Do Not Use Certain <orion-web-app> Attributes ....................................................... 13-9
    13.4 Release Notes for EJB .............................................................................................................. 13-9
    13.4.1 Client Requests Must Include a Port Number.............................................................. 13-9
    13.4.2 MDB Transaction Timeout .............................................................................................. 13-9
    13.4.3 Create and Release JMS Connections for JMS in the MDB onMessage() Method 13-10
    13.4.4 Considerations When Modifying Your orion-ejb-jar.xml File ................................. 13-10
    13.4.5 Static Block in an EJB...................................................................................................... 13-10
    13.4.6 OC4J Instances Terminating Due To ping Timeout .................................................. 13-10
    13.4.7 Miscellaneous EJB Release Notes ................................................................................. 13-11
    13.5 Release Notes for OC4J Services .......................................................................................... 13-12
    13.5.1 Release Notes for Java Object Cache (JOC)................................................................. 13-12
    13.5.1.1 Use javacache.xml for JOC Configuration ........................................................... 13-12
    13.6 Release Notes for DataDirect Connect for JDBC............................................................... 13-12
    13.6.1 Considerations When Using DataDirect Connect for JDBC..................................... 13-12
    13.6.2 Installing DataDirect Connect for JDBC...................................................................... 13-13
    13.7 Documentation Errata ........................................................................................................... 13-15
    13.7.1 Servlet Developer's Guide Errata ................................................................................. 13-15
    13.7.1.1 The OC4J 9.0.4 JSP Container Supports the persistence-path Flag .................. 13-15
    13.7.2 Support for JavaServer Pages Developer¡¯s Guide Errata ......................................... 13-15
    13.7.2.1 mod_oc4j Does Not Restart OC4J Processes........................................................ 13-16
    13.7.3 OC4J User¡¯s Guide Errata .............................................................................................. 13-16
    13.7.3.1 End to End Test Results for Metrics Load Balancing ......................................... 13-16
    Index

    I am not quite sure what either of you are after, but if you hit the "Documentation" link on OTN you will find the documentation, such as the above list, for almost all of Oracle products. Most are available online in HTML format or PDF and some have a part number so that they can be ordered.
    The 10g Developer Suite Documentation is here: http://otn.oracle.com/documentation/dev10g.html
    Regards
    Sue

  • Applet Error:java.security.AccessControlException: access denied

    Hi,
    I just successful deploy an business component project to oralce 8.1.6 as an EJB Session bean, and
    the test of application module is successful. In the same workspace, I create an new project with
    an applet(which contains only an grid control)as a client of the business component. Everything works
    fine within the Applet viewer, however, when I trying to load the applet in IE5.5 I got the following
    error message in java console:
    Java(TM) Plug-in
    Using JRE version 1.2.1
    User home directory = D:\Documents and Settings\ERic
    Proxy Configuration: no proxy
    JAR cache enabled.
    Failed to query environment: 'access denied (java.util.PropertyPermission jbo.debugoutput read)'
    Diagnostics: Silencing all diagnostic output (use -Djbo.debugoutput=console to see it)
    Failed to query environment: 'access denied (java.util.PropertyPermission jbo.logging.show.timing read)'
    Failed to query environment: 'access denied (java.util.PropertyPermission jbo.logging.show.function read)'
    Failed to query environment: 'access denied (java.util.PropertyPermission jbo.logging.show.level read)'
    Failed to query environment: 'access denied (java.util.PropertyPermission jbo.logging.show.linecount read)'
    Failed to query environment: 'access denied (java.util.PropertyPermission jbo.logging.trace.threshold read)'
    Failed to query environment: 'access denied (java.util.PropertyPermission jbo.jdbc.driver.verbose read)'
    java.lang.ExceptionInInitializerError: java.security.AccessControlException: access denied (java.util.PropertyPermission org.omg.CORBA.ORBClass read)
    at java.security.AccessControlContext.checkPermission(Compiled Code)
    at oracle.aurora.jndi.orb_dep.Orb.<clinit>(Orb.java:24)
    at oracle.aurora.jndi.sess_iiop.sess_iiopURLContext.<clinit>(sess_iiopURLContext.java:9)
    at javax.naming.spi.NamingManager.getURLObject(NamingManager.java:588)
    at javax.naming.spi.NamingManager.getURLContext(NamingManager.java:537)
    at javax.naming.InitialContext.getURLOrDefaultInitCtx(InitialContext.java:274)
    at javax.naming.InitialContext.lookup(InitialContext.java:349)
    at oracle.jbo.client.remote.ejb.aurora.AuroraEJBAmHomeImpl.connectToService(AuroraEJBAmHomeImpl.java:179)
    at oracle.jbo.client.remote.ejb.aurora.AuroraEJBAmHomeImpl.createSession(AuroraEJBAmHomeImpl.java:152)
    at oracle.jbo.client.remote.ejb.aurora.AuroraEJBAmHomeImpl.initRemoteHome(AuroraEJBAmHomeImpl.java:123)
    at oracle.jbo.client.remote.ejb.aurora.AuroraEJBAmHomeImpl.<init>(AuroraEJBAmHomeImpl.java:59)
    at oracle.jbo.client.remote.ejb.aurora.AuroraEJBInitialContext.createJboHome(AuroraEJBInitialContext.java:47)
    at oracle.jbo.common.JboInitialContext.lookup(JboInitialContext.java:72)
    at javax.naming.InitialContext.lookup(InitialContext.java:349)
    at oracle.dacf.dataset.SessionInfo._createAppModule(SessionInfo.java:2330)
    at oracle.dacf.dataset.SessionInfo.connect(SessionInfo.java:1799)
    at oracle.dacf.dataset.SessionInfo.openProducerObject(SessionInfo.java:1848)
    at oracle.dacf.dataset.ProducerObject.open(ProducerObject.java:94)
    at oracle.dacf.dataset.SessionInfo.publishSession(SessionInfo.java:1305)
    at oracle.dacf.dataset.SessionInfo.publishSession(SessionInfo.java:1287)
    at broadcastapplet.myBroadCastApplet.init(myBroadCastApplet.java:70)
    at sun.applet.AppletPanel.run(Compiled Code)
    at java.lang.Thread.run(Thread.java:479)
    The Oracle 8.1.6 runs on Win2000, I put the JAR & related zip files in the same machine's IIS webserver.
    Is anyone can help?
    ERic

    Hi Shaji,
    Are you calling a webservice from within an Xacute Query for your applet?  On first glance, it looks like a web service call is being rejected due to security permissions.  If you have a webservice call (or HTTP post/get), can you test it separately with the same credentials as the webpage is using?
    Regards,
    Mike

  • ADF BC: range paging on dynamic view object

    hi!
    i have a dynamically generated sql query and i want to get the results one page at a time. for this to work i create at runtime a view object and try to use range paging:
    String sql = "SELECT ...";
    ViewObject vo = appModule.createViewObjectFromQueryStmt("tmpVO"+System.currentTimeMillis(), sql);
    vo.setRangeSize(pageSize);
    vo.setAccessMode(RowSet.RANGE_PAGING);
    vo.scrollToRangePage(pageNo);
    vo.getEstimatedRowCount();
    Row[] rows = vo.getAllRowsInRange();
    vo.remove();
    but when i run this it was pretty slow. so i traced the database session and saw that the executed query was the sql string, not the range paging select (SELECT * FROM (SELECT /*+ FIRST_ROWS */ IQ.*, ROWNUM AS Z_R_N FROM (...).
    i use range paging on other view objects that are not dynamically generated and it works fine. please tell me what can i do to get only the specified page from the data base.
    thank you
    Edited:
    here is the select i run:
    SELECT UnitEO.UNIT_TYPE, UnitEO.UNIT_NR,
    UnitTypeEO.USER_UNIT_TYPE,
    UnitEO.UNIT_NR UNIT_NUMBER,
    UnitEO.NUMBER_PLATE_ID,
    AreaEO.AREA_NAME,
    UnitEO.SERIAL_NR
    FROM NW_UNIT UnitEO,
    NW_UNIT_DETAILS NwUnitDetailsEO,
    NW_UNIT_TYPE UnitTypeEO,
    NW_AREA AreaEO,
    NW_COMMUNICATION_COMPUTER ComputerEO
    WHERE
    UnitEO.deleted IS NULL
    AND UnitEO.UNIT_NR = NwUnitDetailsEO.UNIT_NR (+)
    AND UnitEO.UNIT_TYPE = NwUnitDetailsEO.UNIT_TYPE (+)
    AND UnitEO.UNIT_TYPE = UnitTypeEO.UNIT_TYPE
    AND UnitEO.AREA_ID = AreaEO.AREA_ID (+)
    AND UnitEO.COMPUTER_ID = ComputerEO.COMPUTER_ID (+)
    here is the jbo.debugoutput that was generated; it includes the creation of the app module, the execution of SearchEntityPkVO (a predefined vo, not paged), then the execution of the code above:
    08/07/22 13:56:52 [436] Connected to Oracle JBO Server - Version: 10.1.3.36.73
    08/07/22 13:56:52 [437] mPCollUsePMgr is false
    08/07/22 13:56:52 [438] ViewObjectImpl.mDefaultMaxRowsPerNode is 70
    08/07/22 13:56:52 [439] ViewObjectImpl.mDefaultMaxActiveNodes is 30
    08/07/22 13:56:52 [440] Created root application module: 'enermet.aim.search.model.SearchAppModule'
    08/07/22 13:56:52 [441] Locale is: 'en_US'
    08/07/22 13:56:52 [442] ApplicationPoolImpl.resourceStateChanged wasn't release related. No notify invoked.
    08/07/22 13:56:52 [443] Oracle SQLBuilder: Registered driver: oracle.jdbc.driver.OracleDriver
    08/07/22 13:56:52 [444] Creating a new pool resource
    08/07/22 13:56:52 [445] Trying connection/2: url='jdbc:oracle:thin:@AIMTEST:1521:AIM' ...
    08/07/22 13:56:53 [446] Successfully logged in
    08/07/22 13:56:53 [447] JDBCDriverVersion: 10.1.0.5.0
    08/07/22 13:56:53 [448] DatabaseProductName: Oracle
    08/07/22 13:56:53 [449] DatabaseProductVersion: Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - Production With the Partitioning, OLAP and Data Mining options
    08/07/22 13:56:53 [450] <AM MomVer="0">
    <cd/>
    <CONN/>
    </AM>
    08/07/22 14:00:21 [985] SearchEntityPkVO>#q old SQLStmtBufLen: 234, actual=163, storing=223
    08/07/22 14:00:21 [986] select sep.pk_name, sep.position
    from MD_SEARCH_ENTITY_PK sep
    inner join MD_SEARCH_ENTITIES se
    on se.entity_id = sep.entity_id
    where se.name = :VarEntityName
    08/07/22 14:00:21 [987] ViewObject: SearchEntityPkVO Estimated Row Count Query Statement:
    08/07/22 14:00:21 [988] "SELECT count(1) FROM (select sep.pk_name, sep.position
    from MD_SEARCH_ENTITY_PK sep
    inner join MD_SEARCH_ENTITIES se
    on se.entity_id = sep.entity_id
    where se.name = :VarEntityName) "
    08/07/22 14:00:21 [989] Bind params for ViewObject.getQueryHitCount: SearchEntityPkVO
    08/07/22 14:00:21 [990] Binding param "VarEntityName": Unit
    08/07/22 14:00:21 [991] ViewObject: SearchEntityPkVO Estimated Row Count: 2
    08/07/22 14:00:21 [992] Clear QueryCollection in cache for VO tmpVO1216724421562
    08/07/22 14:00:21 [993] ViewObject: tmpVO1216724421562 close prepared statements...
    08/07/22 14:00:21 [994] tmpVO1216724421562>#q computed SQLStmtBufLen: 641, actual=601, storing=631
    08/07/22 14:00:21 [995] SELECT UnitEO.UNIT_TYPE, UnitEO.UNIT_NR,
    UnitTypeEO.USER_UNIT_TYPE,
    UnitEO.UNIT_NR UNIT_NUMBER,
    UnitEO.NUMBER_PLATE_ID,
    AreaEO.AREA_NAME,
    UnitEO.SERIAL_NR
    FROM NW_UNIT UnitEO,
    NW_UNIT_DETAILS NwUnitDetailsEO,
    NW_UNIT_TYPE UnitTypeEO,
    NW_AREA AreaEO,
    NW_COMMUNICATION_COMPUTER ComputerEO
    WHERE
    UnitEO.deleted IS NULL
    AND UnitEO.UNIT_NR = NwUnitDetailsEO.UNIT_NR (+)
    AND UnitEO.UNIT_TYPE = NwUnitDetailsEO.UNIT_TYPE (+)
    AND UnitEO.UNIT_TYPE = UnitTypeEO.UNIT_TYPE
    AND UnitEO.AREA_ID = AreaEO.AREA_ID (+)
    AND UnitEO.COMPUTER_ID = ComputerEO.COMPUTER_ID (+)
    08/07/22 14:00:21 [996] *** createViewAttributeDefImpls: oracle.jdbc.driver.T4CPreparedStatement@4e6
    08/07/22 14:00:21 [997] Bind params for ViewObject: tmpVO1216724421562
    08/07/22 14:00:21 [998] Clear QueryCollection in cache for VO tmpVO1216724421562
    08/07/22 14:00:21 [999] ViewObject: tmpVO1216724421562 close prepared statements...
    08/07/22 14:00:21 [1000] Column count: 7
    08/07/22 14:00:21 [1001] tmpVO1216724421562>#q computed SQLStmtBufLen: 641, actual=601, storing=661
    08/07/22 14:00:21 [1002] SELECT UnitEO.UNIT_TYPE, UnitEO.UNIT_NR,
    UnitTypeEO.USER_UNIT_TYPE,
    UnitEO.UNIT_NR UNIT_NUMBER,
    UnitEO.NUMBER_PLATE_ID,
    AreaEO.AREA_NAME,
    UnitEO.SERIAL_NR
    FROM NW_UNIT UnitEO,
    NW_UNIT_DETAILS NwUnitDetailsEO,
    NW_UNIT_TYPE UnitTypeEO,
    NW_AREA AreaEO,
    NW_COMMUNICATION_COMPUTER ComputerEO
    WHERE
    UnitEO.deleted IS NULL
    AND UnitEO.UNIT_NR = NwUnitDetailsEO.UNIT_NR (+)
    AND UnitEO.UNIT_TYPE = NwUnitDetailsEO.UNIT_TYPE (+)
    AND UnitEO.UNIT_TYPE = UnitTypeEO.UNIT_TYPE
    AND UnitEO.AREA_ID = AreaEO.AREA_ID (+)
    AND UnitEO.COMPUTER_ID = ComputerEO.COMPUTER_ID (+)
    08/07/22 14:00:21 [1003] ViewObject: tmpVO1216724421562 Estimated Row Count Query Statement:
    08/07/22 14:00:21 [1004] "SELECT count(1) FROM (SELECT UnitEO.UNIT_TYPE, UnitEO.UNIT_NR,
    UnitTypeEO.USER_UNIT_TYPE,
    UnitEO.UNIT_NR UNIT_NUMBER,
    UnitEO.NUMBER_PLATE_ID,
    AreaEO.AREA_NAME,
    UnitEO.SERIAL_NR
    FROM NW_UNIT UnitEO,
    NW_UNIT_DETAILS NwUnitDetailsEO,
    NW_UNIT_TYPE UnitTypeEO,
    NW_AREA AreaEO,
    NW_COMMUNICATION_COMPUTER ComputerEO
    WHERE
    UnitEO.deleted IS NULL
    AND UnitEO.UNIT_NR = NwUnitDetailsEO.UNIT_NR (+)
    AND UnitEO.UNIT_TYPE = NwUnitDetailsEO.UNIT_TYPE (+)
    AND UnitEO.UNIT_TYPE = UnitTypeEO.UNIT_TYPE
    AND UnitEO.AREA_ID = AreaEO.AREA_ID (+)
    AND UnitEO.COMPUTER_ID = ComputerEO.COMPUTER_ID (+)
    08/07/22 14:00:21 [1005] Bind params for ViewObject.getQueryHitCount: tmpVO1216724421562
    08/07/22 14:00:26 [1006] ViewObject: tmpVO1216724421562 Estimated Row Count: 32732
    08/07/22 14:00:26 [1007] Column count: 7
    08/07/22 14:00:26 [1008] ViewObject: tmpVO1216724421562 Created new QUERY statement
    08/07/22 14:00:26 [1009] tmpVO1216724421562>#q old SQLStmtBufLen: 661, actual=601, storing=631
    08/07/22 14:00:26 [1010] SELECT * FROM (SELECT /*+ FIRST_ROWS */ IQ.*, ROWNUM AS Z_R_N FROM (SELECT UnitEO.UNIT_TYPE, UnitEO.UNIT_NR,
    UnitTypeEO.USER_UNIT_TYPE,
    UnitEO.UNIT_NR UNIT_NUMBER,
    UnitEO.NUMBER_PLATE_ID,
    AreaEO.AREA_NAME,
    UnitEO.SERIAL_NR
    FROM NW_UNIT UnitEO,
    NW_UNIT_DETAILS NwUnitDetailsEO,
    NW_UNIT_TYPE UnitTypeEO,
    NW_AREA AreaEO,
    NW_COMMUNICATION_COMPUTER ComputerEO
    WHERE
    UnitEO.deleted IS NULL
    AND UnitEO.UNIT_NR = NwUnitDetailsEO.UNIT_NR (+)
    AND UnitEO.UNIT_TYPE = NwUnitDetailsEO.UNIT_TYPE (+)
    AND UnitEO.UNIT_TYPE = UnitTypeEO.UNIT_TYPE
    AND UnitEO.AREA_ID = AreaEO.AREA_ID (+)
    AND UnitEO.COMPUTER_ID = ComputerEO.COMPUTER_ID (+)
    ) IQ WHERE ROWNUM < :0) WHERE Z_R_N > :1
    08/07/22 14:00:26 [1011] Bind params for ViewObject: tmpVO1216724421562
    08/07/22 14:00:26 [1012] setting rownum query between (0, 23)
    08/07/22 14:00:26 [1013] ViewObject: tmpVO1216724421562 close prepared statements...
    PS: I am using JDev 10.1.3.36.73

    You have a couple of choices. You could create one view object with a bind variable parameter(s) and in the application module you have 10 instances of that VO with appropriate values set for the bind variable in each instance.
    Or if you are using the LOV feature of a VO then you can set an attribute to point to one VO and then using a view cirteria applied to that specific LOV you can then "filter" the data that would appear in that LOV.
    Does that help?
    Grant Ronald

Maybe you are looking for