Oracle.jbo.server.EntityDefImpl error after EO extension

Hi friends,
I have extened EO for an Oracle seeded page.
Step 1. Extened the EO
Step 2. Added -Djbo.project=xxxx to the run property
Step 3. Added the substitution (oracle EO: extended EO)
After these steps, if I run the page it is throwing error message oracle.jbo.server.EntityDefImpl. If I take out the substitution the page is running properly.
I did not add any piece of code after extending.
This is urgent. Can some one hlep me what is the mistake I am doing here?
Thanks,
Vas

Vas,
Please more details listing all the steps you have taken. It will be easier to diagnose the issue.
Also are you running the page from jdev or instance? What is the full error stack?
--Shiv                                                                                                                                                                                                                                                                                                                                                                                                                   

Similar Messages

  • Error: cannot access class oracle.jbo.server.ViewObjectImpl;

    hi
    while compiling my project
    i m getting this error..
    Error: cannot access class oracle.jbo.server.ViewObjectImpl; file oracle\jbo\server\ViewObjectImpl.class not found
    please help.
    regards
    naveen

    Are the fwk class libraries included in jdev project ?
    Thanks
    Tapash

  • ERROR: CORBA Client Test Sample: import oracle.jbo.server.ApplicationModuleImpl;

    Hi, guys,
    I am deployed the CORBA in my system and it succeed. But when I created a new client to called my CORBA, and I used the code provided in the JDEV3.2 help: Topics: Testing a Business Components CORBA Server Object Deployed to Oracle8i with a Code Client
    and it did not work for the deptVo.first(). Since it need the oracle.jbo.server.ApplicationModuleImpl; then I add the import:
    import oracle.jbo.server.ApplicationModuleImpl;
    When I compiled it, I got the error:
    Error: (66) identifier oracle.jbo.server.ApplicationModuleImpl not found. Anybody please help for the import. The package is clearly there, Why NOT FOUND?
    Thanks in advance.
    Mike
    null

    Test you app with application module pooling turned off to find out if this is a general problem with passivation of your application. You may need to overwrite the activation/passivation methods of your programmatic VOs.
    Timo

  • Got errors after CompetenceElementsVO extension

    Hi to All,
    My vo extension is over and desired rows are populate,
    But when i'm trying to add some events like update datails, add compentencies then it will shows error line on right top of
    the page. On different events different errors displayed as
    Row 1 Error - This competence already exists within the assessment.
    Attribute ObjectVersionNumber in AssessmentEO is required
    This competence already exists within the assessment.
    oracle.jbo.RemoveWithDetailsException: JBO-26019: Attempting to remove a parent entity without removing all children entities
    Attribute ObjectVersionNumber in AppraisalsAM.AppraisalVO is required
    Thanks and Regards
    Amit Kumar

    Hi Kumar,
    Here is my extended vo.xml
    <?xml version='1.0' encoding='windows-1252' ?>
    <!DOCTYPE ViewObject SYSTEM "jbo_03_01.dtd">
    <ViewObject
    Name="pfcCompetenceElementsVO"
    Extends="oracle.apps.per.selfservice.appraisals.server.CompetenceElementsVO"
    Where="PCE.COMPETENCE_ID = PC.COMPETENCE_ID AND PCE.PROFICIENCY_LEVEL_ID = PRL1.RATING_LEVEL_ID(+) AND PCE.RATING_LEVEL_ID = PRL2.RATING_LEVEL_ID(+) AND PCE.WEIGHTING_LEVEL_ID = PRL3.RATING_LEVEL_ID(+) AND PCE.COMPETENCE_ID = PCE1.COMPETENCE_ID (+) AND PCE1.OBJECT_ID(+) = :1 AND PCE.ASSESSMENT_ID = PCE1.ASSESSMENT_ID(+) AND PCE1.OBJECT_NAME(+) = :2 AND PCE.COMPETENCE_ID = PCE2.COMPETENCE_ID (+) AND PCE2.OBJECT_ID(+) = :3 AND PCE.ASSESSMENT_ID = PCE2.ASSESSMENT_ID(+) AND PCE2.OBJECT_NAME(+) = :4 AND PCE.PARENT_COMPETENCE_ELEMENT_ID = PCE3.COMPETENCE_ELEMENT_ID(+) AND ((( pce.position_id = (SELECT pa.position_id FROM per_all_people_f ap, per_all_assignments_f pas, fnd_user fu, per_positions pa WHERE ap.person_id = fu.employee_id AND ap.person_id = pas.person_id AND pas.position_id = pa.position_id AND TRUNC (SYSDATE) BETWEEN ap.effective_start_date AND ap.effective_end_date AND TRUNC (SYSDATE) BETWEEN pas.effective_start_date AND pas.effective_end_date AND fu.user_id = (SELECT fnd_profile.VALUE (&#39;USER_ID&#39;) FROM DUAL)) OR (pce.organization_id = (SELECT pa.organization_id FROM per_all_people_f ap, per_all_assignments_f pas, fnd_user fu, per_positions pa WHERE ap.person_id = fu.employee_id AND ap.person_id = pas.person_id AND pas.position_id = pa.position_id AND TRUNC (SYSDATE) BETWEEN ap.effective_start_date AND ap.effective_end_date AND TRUNC (SYSDATE) BETWEEN pas.effective_start_date AND pas.effective_end_date AND fu.user_id = (SELECT fnd_profile.VALUE (&#39;USER_ID&#39;) FROM DUAL)) ) OR (pce.job_id = (SELECT pa.job_id FROM per_all_people_f ap, per_all_assignments_f pas, fnd_user fu, per_positions pa WHERE ap.person_id = fu.employee_id AND ap.person_id = pas.person_id AND pas.position_id = pa.position_id AND TRUNC (SYSDATE) BETWEEN ap.effective_start_date AND ap.effective_end_date AND TRUNC (SYSDATE) BETWEEN pas.effective_start_date AND pas.effective_end_date AND fu.user_id = (SELECT fnd_profile.VALUE (&#39;USER_ID&#39;) FROM DUAL)) ) OR (pce.enterprise_id = (SELECT fnd_profile.VALUE (&#39;PER_BUSINESS_GROUP_ID&#39;) FROM DUAL) ) ) ) )"
    OrderBy="PC.NAME"
    BindingStyle="Oracle"
    CustomQuery="false"
    RowClass="petrofac.oracle.apps.per.selfservice.appraisals.server.pfcCompetenceElementsVORowImpl"
    ComponentClass="petrofac.oracle.apps.per.selfservice.appraisals.server.pfcCompetenceElementsVOImpl"
    UseGlueCode="false" >
    <DesignTime>
    <Attr Name="_isCodegen" Value="true" />
    <Attr Name="_version" Value="10.1.3.41.57" />
    <Attr Name="_codeGenFlag2" Value="Access|Coll" />
    </DesignTime>
    </ViewObject>
    And Also VORowimpl
    package petrofac.oracle.apps.per.selfservice.appraisals.server;
    import oracle.apps.per.schema.server.*;
    import oracle.apps.per.selfservice.appraisals.server.CompetenceElementsVORowImpl;
    import oracle.jbo.server.AttributeDefImpl;
    import oracle.jbo.server.ViewDefImpl;
    public class pfcCompetenceElementsVORowImpl extends CompetenceElementsVORowImpl
    public static final int MAXATTRCONST = ViewDefImpl.getMaxAttrConst("oracle.apps.per.selfservice.appraisals.server.CompetenceElementsVO");
    public pfcCompetenceElementsVORowImpl()
    public PerCompetenceElementsEOImpl getPCE()
    return (AssMntTypeCompetenceElementsEOImpl)getEntity(0);
    public PerCompetencesEOImpl getPC()
    return (PerCompetencesEOImpl)getEntity(1);
    public PerRatingLevelsEOImpl getPRL1()
    return (PerRatingLevelsEOImpl)getEntity(2);
    public PerRatingLevelsEOImpl getPRL2()
    return (PerRatingLevelsEOImpl)getEntity(3);
    public PerRatingLevelsEOImpl getPRL3()
    return (PerRatingLevelsEOImpl)getEntity(4);
    public PerCompetenceElementsEOImpl getPCE1()
    return (PerCompetenceElementsEOImpl)getEntity(5);
    public PerCompetenceElementsEOImpl getPCE2()
    return (PerCompetenceElementsEOImpl)getEntity(6);
    public PerCompetenceElementsEOImpl getPCE3()
    return (PerCompetenceElementsEOImpl)getEntity(7);
    protected Object getAttrInvokeAccessor(int index, AttributeDefImpl attrDef)
    throws Exception
    return super.getAttrInvokeAccessor(index, attrDef);
    protected void setAttrInvokeAccessor(int index, Object value, AttributeDefImpl attrDef)
    throws Exception
    super.setAttrInvokeAccessor(index, value, attrDef);
    Thanks And Regards
    Amit Kumar

  • Java.lang.NullPointerException at oracle.jbo.server.QueryCollection.findByKey(QueryCollection.java:5110)

    We have deployed our ADF application in production. We developed using JDeveloper Version 11.1.2.1.0. In a page fragment, there is a inputComboboxListOfValues which is binded to a list of values binding. This list of values binding is mapped to an attribute of a view object which has a lov from a view accessor (through view link).
    In this inputComboboxListOfValues component, we get this error sometimes in production and we are neither able to re-produce the error nor able to find the reason for the error.
    java.lang.NullPointerException
    at oracle.jbo.server.QueryCollection.findByKey(QueryCollection.java:5110)
    at oracle.jbo.server.ViewRowSetImpl.findByKey(ViewRowSetImpl.java:5488)
    at oracle.jbo.server.ViewRowSetImpl.findByAltKey(ViewRowSetImpl.java:5311)
    at oracle.jbo.server.ViewObjectImpl.findByAltKey(ViewObjectImpl.java:11566)
    at oracle.adf.model.binding.DCIteratorBinding.findRowsByKeyValues(DCIteratorBinding.java:5065)
    at oracle.adfinternal.view.faces.model.binding.FacesCtrlLOVBinding$ListOfValuesModelImpl.getValueFromSelection(FacesCtrlLOVBinding.java:1715)
    at oracle.adfinternal.view.faces.renderkit.rich.SimpleInputListOfValuesRendererBase.decodeInternal(SimpleInputListOfValuesRendererBase.java:133)
    at oracle.adfinternal.view.faces.renderkit.rich.SimpleInputComboboxListOfValuesRenderer.decodeInternal(SimpleInputComboboxListOfValuesRenderer.java:86)
    at oracle.adfinternal.view.faces.renderkit.rich.LabeledInputRenderer.decodeInternal(LabeledInputRenderer.java:56)
    at oracle.adf.view.rich.render.RichRenderer.decode(RichRenderer.java:342)
    at org.apache.myfaces.trinidad.render.CoreRenderer.decode(CoreRenderer.java:292)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.__rendererDecode(UIXComponentBase.java:1334)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.decode(UIXComponentBase.java:865)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.processDecodes(UIXComponentBase.java:965)
    at org.apache.myfaces.trinidad.component.UIXEditableValue.processDecodes(UIXEditableValue.java:287)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl$ApplyRequestValuesCallback.invokeContextCallback(LifecycleImpl.java:1548)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1735)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1627)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1750)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1627)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1750)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1627)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1750)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1627)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1750)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1627)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.invokeOnComponent(ContextSwitchingComponent.java:222)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1627)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1750)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1627)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1750)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1627)
    Please help us to solve this issue.

    Timo,
    I noticed that in the application module, these are the settings for passsivation:
    jbo.dofailover=false
    jbo.passivationstore=null
    Do you recommend to change to above settings to
    jbo.dofailover=true
    jbo.passivationstore=file
    We are not using cluster for production environment...
    Please suggest..

  • NullPointerException in oracle.jbo.server.ViewRowStorage.getAttributeInternal()

    Hi,
    I am deploying A web module that uses BC4J on OC4J. This has gone ok for some time, but since a few days I am receiving
    500 Internal Server Error
    java.lang.NullPointerException     at oracle.jbo.server.ViewRowStorage.getAttributeInternal(ViewRowStorage.java(Compiled Code))     at oracle.jbo.server.ViewRowImpl.getAttributeInternal(ViewRowImpl.java(Compiled Code))     at com.centraalboekhuis.cbonline.model.VCboLookupArtFeViewRowImpl.getLevKd(VCboLookupArtFeViewRowImpl.java:77)     at com.centraalboekhuis.cbonline.bestellen.ModelInsertBestelling.perform(ModelInsertBestelling.java:93)     at com.cumquatit.j2ee.controller.web.HttpController.doAction(HttpController.java:139)     at com.centraalboekhuis.cbonline.CBOnline.doAction(CBOnline.java:125)     at com.cumquatit.j2ee.controller.web.HttpController.doPost(HttpController.java:163)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:211)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:309)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:336)     at com.evermind[Oracle9iAS (2.0.0.0) Containers for J2EE].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java(Compiled Code))     at com.evermind[Oracle9iAS (2.0.0.0) Containers for J2EE].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java(Compiled Code))     at com.evermind[Oracle9iAS (2.0.0.0) Containers for J2EE].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java(Compiled Code))     at com.evermind[Oracle9iAS (2.0.0.0) Containers for J2EE].server.http.HttpRequestHandler.run(HttpRequestHandler.java(Compiled Code))     at com.evermind[Oracle9iAS (2.0.0.0) Containers for J2EE].util.ThreadPoolThread.run(ThreadPoolThread.java:62)
    ... whenever I try to Insert or Update a row. Querying goes ok. Could it be that the bc4j configuration on my application server is somehow faulty?
    Has anybody gotten this nullpointer before?
    Thanks,
    Martijn
    We use:
    - oc4j 902
    - Ibm AIX 433
    - Jdev9i

    Sorry, already solved it. If you are interested at all, just email me and I will explain my mistake :-)

  • URGENT :class oracle.jbo.server.OAJboViewRowImpl has been depricated ...

    hey ,
    I'm currently wrkin on Oracle IDE 10.1.3.39.81 .. I get an error msg "class oracle.jbo.server.OAJboViewRowImpl has been depricated " ...
    upon using getAttributeInternal() .. i could not find any solution using jdoc .. please suggest me a solution to remove the warning ..
    Thanks ...

    Shiva,
    With Release of r12 and Jdeveloper10g, we are using BC4J layer of ADF, which has signifucant enhancement on the bc4j part.So continue using old methods of bc4j, until oracle comes with new javadoc for bc4j in oaf.
    Ideally what u said is correct correct u should have
    zero errors and zero warnings, but somehow some warnings u cannot avoid :).
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Glassfish and oracle.jbo.server.uniqueid.UniqueIdHelper

    Hello,
    I am using:
    JDev 11.1.2.3.0
    Glassfish 3.1.2.2 w/ ADF Essentials
    Oracle DB 11gR2
    Just started a simple ADF application to connect to a single database table. The app work fine, I can navigate through the entries, make changes, and CreateInsert works (when I manually insert a primary key). I am trying to generate the primary key automatically with oracle.jbo.server.uniqueid.UniqueIdHelper.nextId() as a default expression in the model for that primary key(with Refresh on Insert checked). When I click on CreateInsert I receive error: javax.naming.NameNotFoundException: javax.transaction.TransactionManager not found. The stack trace is below.
    I have tried the following datasource configurations:
    restype javax.sql.DataSource datasourceclassname oracle.jdbc.pool.OracleDataSource
    restype javax.sql.XADataSource datasourceclassname oracle.jdbc.xa.client.OracleXADataSource
    Should this work in Glassfish? (Fairly certain I had similar project working in Weblogic 10.3)
    TIA,
    Ernie
    [#|2013-03-06T01:43:19.148-0500|WARNING|glassfish3.1.2|oracle.adf.controller.faces.lifecycle.Utils|_ThreadID=29;_ThreadName=Thread-4;|ADF: Adding the following JSF error message: javax.transaction.TransactionManager not found
    javax.naming.NamingException: Lookup failed for 'javax.transaction.TransactionManager' in SerialContext[myEnv={java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl, java.naming.factory.url.pkgs=com.sun.enterprise.naming} [Root exception is javax.naming.NameNotFoundException: javax.transaction.TransactionManager not found]
         at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:518)
         at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:455)
         at javax.naming.InitialContext.lookup(InitialContext.java:392)
         at javax.naming.InitialContext.lookup(InitialContext.java:392)
         at oracle.jbo.server.JTATxnHandlerImpl.lookupTransactionManager(JTATxnHandlerImpl.java:425)
         at oracle.jbo.server.JTATxnHandlerImpl.getTransactionManager(JTATxnHandlerImpl.java:477)
         at oracle.jbo.server.uniqueid.UniqueIdHelper.isInJTATransaction(UniqueIdHelper.java:175)
         at oracle.jbo.server.uniqueid.UniqueIdHelper.getNextId(UniqueIdHelper.java:92)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at org.codehaus.groovy.reflection.CachedMethod.invoke(CachedMethod.java:86)
         at groovy.lang.MetaMethod.doMethodInvoke(MetaMethod.java:234)
         at groovy.lang.MetaClassImpl.getProperty(MetaClassImpl.java:1594)
         at groovy.lang.MetaClassImpl.getProperty(MetaClassImpl.java:3281)
         at org.codehaus.groovy.runtime.callsite.ClassMetaClassGetPropertySite.getProperty(ClassMetaClassGetPropertySite.java:48)
         at org.codehaus.groovy.runtime.callsite.AbstractCallSite.callGetProperty(AbstractCallSite.java:237)
         at bc4j_com_dipko_propertytracker_model_Properties_Propertyid_null_gs.run(bc4j_com_dipko_propertytracker_model_Properties_Propertyid_null_gs.groovy:1)
         at oracle.jbo.ExprEval.internalEvaluateGroovyScript(ExprEval.java:1200)
         at oracle.jbo.ExprEval.doEvaluate(ExprEval.java:1253)
         at oracle.jbo.ExprEval.evaluateForRow(ExprEval.java:1075)
         at oracle.jbo.server.AttributeDefImpl.evaluateTransientExpression(AttributeDefImpl.java:2132)
         at oracle.jbo.server.EntityImpl.initDefaultExpressionAttributes(EntityImpl.java:1004)
         at oracle.jbo.server.EntityImpl.create(EntityImpl.java:957)
         at oracle.jbo.server.EntityImpl.callCreate(EntityImpl.java:1131)
         at oracle.jbo.server.ViewRowStorage.create(ViewRowStorage.java:1140)
         at oracle.jbo.server.ViewRowImpl.create(ViewRowImpl.java:461)
         at oracle.jbo.server.ViewRowImpl.callCreate(ViewRowImpl.java:478)
         at oracle.jbo.server.ViewObjectImpl.createInstance(ViewObjectImpl.java:5800)
         at oracle.jbo.server.QueryCollection.createRowWithEntities(QueryCollection.java:1941)
         at oracle.jbo.server.ViewRowSetImpl.createRowWithEntities(ViewRowSetImpl.java:2504)
         at oracle.jbo.server.ViewRowSetImpl.doCreateAndInitRow(ViewRowSetImpl.java:2545)
         at oracle.jbo.server.ViewRowSetImpl.createRow(ViewRowSetImpl.java:2526)
         at oracle.jbo.server.ViewObjectImpl.createRow(ViewObjectImpl.java:11170)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:1355)
         at oracle.adf.model.binding.DCDataControl.invokeOperation(DCDataControl.java:2169)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.invoke(JUCtrlActionBinding.java:731)
         at oracle.adf.controller.v2.lifecycle.PageLifecycleImpl.executeEvent(PageLifecycleImpl.java:402)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlActionBinding._execute(FacesCtrlActionBinding.java:252)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlActionBinding.execute(FacesCtrlActionBinding.java:185)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.sun.el.parser.AstValue.invoke(AstValue.java:254)
         at com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:302)
         at com.sun.faces.facelets.el.TagMethodExpression.invoke(TagMethodExpression.java:105)
         at javax.faces.event.MethodExpressionActionListener.processAction(MethodExpressionActionListener.java:148)
         at javax.faces.event.ActionEvent.processListener(ActionEvent.java:88)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcast(UIXComponentBase.java:824)
         at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:179)
         at oracle.adf.view.rich.component.UIXMenuBar.broadcast(UIXMenuBar.java:131)
         at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:787)
         at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:1252)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._invokeApplication(LifecycleImpl.java:973)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:354)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:202)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:508)
         at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1550)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:343)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:217)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:173)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:256)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:217)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:125)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:293)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:199)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:256)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:217)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:279)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
         at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:655)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:595)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:161)
         at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:331)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:231)
         at com.sun.enterprise.v3.services.impl.ContainerMapper$AdapterCallable.call(ContainerMapper.java:317)
         at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:195)
         at com.sun.grizzly.http.ProcessorTask.invokeAdapter(ProcessorTask.java:860)
         at com.sun.grizzly.http.ProcessorTask.doProcess(ProcessorTask.java:757)
         at com.sun.grizzly.http.ProcessorTask.process(ProcessorTask.java:1056)
         at com.sun.grizzly.http.DefaultProtocolFilter.execute(DefaultProtocolFilter.java:229)
         at com.sun.grizzly.DefaultProtocolChain.executeProtocolFilter(DefaultProtocolChain.java:137)
         at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:104)
         at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:90)
         at com.sun.grizzly.http.HttpProtocolChain.execute(HttpProtocolChain.java:79)
         at com.sun.grizzly.ProtocolChainContextTask.doCall(ProtocolChainContextTask.java:54)
         at com.sun.grizzly.SelectionKeyContextTask.call(SelectionKeyContextTask.java:59)
         at com.sun.grizzly.ContextTask.run(ContextTask.java:71)
         at com.sun.grizzly.util.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:532)
         at com.sun.grizzly.util.AbstractThreadPool$Worker.run(AbstractThreadPool.java:513)
         at java.lang.Thread.run(Thread.java:680)
    Caused by: javax.naming.NameNotFoundException: javax.transaction.TransactionManager not found
         at com.sun.enterprise.naming.impl.TransientContext.doLookup(TransientContext.java:248)
         at com.sun.enterprise.naming.impl.TransientContext.lookup(TransientContext.java:215)
         at com.sun.enterprise.naming.impl.SerialContextProviderImpl.lookup(SerialContextProviderImpl.java:77)
         at com.sun.enterprise.naming.impl.LocalSerialContextProviderImpl.lookup(LocalSerialContextProviderImpl.java:119)
         at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:505)
         ... 96 more

    Hi,
    this has nothing to do with Glassfish as it seems. Any reason you don't generate the sequence in the database (on-insert trigger) and set the PK attribute type to DBSequence? This is the most straight forward and declarative approach.
    Frank

  • Oracle.jbo.server.ViewRowImpl@1b

    JComboBox in JTable....
    I get an error in method setEdiz(String value) because the value is "oracle.jbo.server.ViewRowImpl@1b" instead of "m3" (first call of this method get "m3", second - "oracle.jbo...."). Why does it happen?
    Thanks in advance

    [JClient] HOWTO: Using databound comboboxes (for foreign keys) in a JTable
    This example doesn't solve this problem in 10.1.3 EA. Did you try to run this example in 10.1.3 EA?

  • Where is this class:  oracle.jbo.server.EntityImpl

    Does anyone know what jar file contains the following classes:
    oracle.jbo.server.EntityImpl
    oracle.jbo.server.AttributeDefImpl
    Thanks!
    -Teri Kemple
    [email protected]

    It's bc4jmt.jar in BC4J\lib. "mt" probably stands for "middle tier".

  • Oracle VM Server - install error - Graphical mode

    Hi all!
    I hope, you can help me the following problem.
    I try to install an Oracle VM server to a FS server.
    First, I tried the newest version - OVM S 2.2.1
    In the begining Everything is allright.
    But after I have to choose the keyboard, the next screen did not come up. Just a blue screen.
    I went to the alt+F3 terminal, and I found a warning there:
    WARNING Graphical mode is not avaible...Start text mode.
    So the screen where I can partition the disk, did not come up..
    I tried earlier version too - OVM server 2.1.5, but It is the same problem too.
    Can somebody help me in this, what couse this problem, and how can I fix this, and install the O VM server?
    Thx in advance!
    Peter Kokai

    I purchased an Asus Sabertooth motherboard with an I7 4770 cpu and the Oracle VM server fails to detect the motherboard.  I am seeing the same error that is posted in the Known Issues list with the Dell 380 Broadcom ethernet adapter.
    Do I have a compatibility issue?  The disk ISO was being given out at EMC World.  I do not know how to tell what version it is.
    I tried downloading the 3.2.2 version iso and it seems to have trouble with my USB devices, because my keyboard stops working and I can't select between media cd test or skip.
    Are there any workarounds?  Should I just wait for a future release?

  • ADFBC:oracle.jbo.ConfigException--------Classpath error

    hai all,
    I have a project using JDEV 10.1.3 and ADFBC
    In my applcation I need to access a servcie method inside the AppModule.
    I did this using the help of Oracle ADF guideand it was working fine for me.
    But now it showing some error on the line
    Configuration.createRootApplicationModule(amDef,config);
    the error is
    Apr 29, 2008 12:17:00 AM oracle.adf.share.config.ADFConfigFactoryfindOrCreateADFConfig
    INFO: oracle.adf.share.config.ADFConfigFactory No META-INF/adf-config.xml found
    oracle.jbo.ConfigException: JBO-33001: Cannot find the configuration
    file /com/mycomp/res/common/bc4j.xcfg in the classpath
    at oracle.jbo.client.Configuration.loadFromClassPath(Configuration.java:367)
    at oracle.jbo.common.ampool.PoolMgr.createPool(PoolMgr.java:284)
    at oracle.jbo.common.ampool.PoolMgr.findPool(PoolMgr.java:539)
    at oracle.jbo.common.ampool.ContextPoolManager.findPool(ContextPoolManager.java:165)
    at oracle.jbo.client.Configuration.createRootApplicationModule(Configuration.java:1498)
    at oracle.jbo.client.Configuration.createRootApplicationModule(Configuration.java:1476)
    at ..............
    at org.quartz.core.JobRunShell.run(JobRunShell.java:202)
    at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:529)
    I didn't change anything specific to the AppModule.....
    My App module containing in the pacakage /com/mycomp/res
    and bc4j.xcfg is available in the /com/mycomp/res/common
    I have added dependency on the Model project from the view project
    and even tried to add /com/mycomp/res/common to the view projects classpth using add jar/folder
    But nothing work for me.Actually it was working fine before but now it has turned to show errors.
    I have checked all forums related to this issue,but nothing helped me.
    I'm completely stuck with this problem.... Anybody please help me ......
    thanks
    Ans

    Hai dvohra
    thanks for your reply
    I already tried this but no use.
    The model project is already checked in the dependency pane of the
    view project.
    But In my project I have found another bc4j.xcfg file in another Directory.
    (My project containing only one AppModule)
    I tried after deleting it but nothing hapend.the same error occure again
    Is any other thing to do to make it work
    Please help...........
    Thanks
    Ans

  • Oracle Express Server wont start after install

    Hi all,
    For my sins I have to support an Oracle Express Server and am trying to get the software installed on my Dell latitude d630 laptop, am running XP SP2. When I start the service it fails and writes this to the logs :-
    [AD4     ] 3 05/14/2008 09:11:47 Security Mgr - Logon(Default)User(OESguest) fails - error: 1326.
    [AD4     ] 3 05/14/2008 09:11:47 Security Mgr - GlobalConstructor)() failed.
    So looks like it can't login as OESguest. I checked the users and I cant find this user.
    Anyone had this problem ????
    Thanks in advance,
    Brandon

    When you install express it creates three users i.e. oesdba,oesinit and oesguest. if it doesnt exists then try to create manually and see if you are able to up the express.
    change the password for oesguest at operating system level and check.
    Thanks
    Brijesh

  • Error after VO extension--urgent

    I have followed all the steps for VO extension, after deployment from about this page I am able to see the extended VO in place of the Original one.
    But the problem is that, whenever the VO is called from the page, it is throwing an error like , “…View object '.. ' not found in the Application module '.....' ….”
    Is it required to attach the extended VO with the AM?
    As per my understanding it is not required, but from the error it seems that the AM is not able to recognize the VO.
    I have tried with more than one VO, for each case the problem is the same.
    Please help.

    Hi
    2 options we can tried
    1.) add this Extended VO with AM ( i think it would work)
    2.)OR create a new VO instead of extending the VO ,and ADD with AM (if possible in your requirement)
    in both the above cases u can add the VO with AM without AM extension using the following code inside the processRequest method of relevant extended CO
    public void processRequest(OAPageContext oapagecontext, OAWebBean oawebbean)
    OAApplicationModule oam = oapagecontext.getApplicationModule(oawebbean) ;
    OAViewObject oav= (OAViewObject)oam.findViewObject("xxVO") ;
    if ( oav != null )
    System.out.println("custom VO is found in AM" );
    else
    oav = (OAViewObject) oam.createViewObject( "xxVO", "xx.oracle.apps.ap..........server.xxVO") ;
    thanx
    Pratap

  • 10.1.3 Internal compilation error after unistalling extension cwd4all

    I installed the cwd4all extension from the "check for updates" wizard.
    Then i decided that I didn't need it so I uncheck it from the Tools>Preferences>Extensions but when I tried to compile apreviously working class I got an "Internal compilation error, terminated with a fatal exception" error.
    Rechecking (i.e. reinstalling) the extension solved the problem, so then I removed both the jar and the relative folder from the extensions directory and I got the same error.
    I don't want to reinstall the extension.
    Any suggestions?

    Hi,
    Extensions that are provided on the "Open Source and Partner Extensions" extension center are written by third parties and come with absolutely no warranty or guarantees whatsoever.
    If you want to make sure you're running JDeveloper in a completely supported mode, you should uncheck the "Open Source and Partner Extensions" update center on the "Source" page of Check for Updates before checking for updates (or if you're installing updates via the automatic check balloon, only select extensions which are marked as being from the "Official Oracle Extensions" update center).
    Brian

Maybe you are looking for

  • Keyboard not found after system update

    I completed a system update on the iMac, which required a restart.  Now the iMac cannot find my keyboard.  It is a usb connection working fine before the update.  It is an Apple extended keyboard.  The system is optimizing and looking for a bluetooth

  • Dual monitor settings on macbook pro 13"

    I am using a 13" MacBook Pro (non retina display) that only has 1 thunderbolt port to connect a 2nd display.  I was able to get 2 displays to work by using a mini display port to HDMI adaptor and USB to HDMI adaptor.  However, I can not get the monit

  • SLD to SMSY synchronization - Which product version do we have to choose ?

    Hello, We do have a CPP system running on SAP ECC 6.0 version. 1. In SLD, we do have the list of all "Software Components" used in CDP.     We do not have the "PRODUCT VERSION" of the managed system. 2. With job SAP_SLD_DATA_COLLECT (RZ70), all data

  • HT4236 i cant find the photo tab under the ipad at the left side

    hello i got dell vostro. i got back from a trip, whike i was at the trip i download pictures ti my ipad from the sd. i edit the pic in ulbums. now i want to move my albums to the pc. i read the support answer about it but i cant find  the photo tab o

  • Enhancement: Append Fields to Types Structure Fails

    Hi all, need some help. It seems weird that this enhancement could not be checked correctly although i compared it with the copied version. Typen TYPES: BEGIN OF t_show_vzzbepp. INCLUDE  STRUCTURE vzzbepp. TYPES:   shwhr           TYPE waers,       "