Unknown property resolving to null in PropertyNotFoundException

While debugging a DTE issue, we could see that there were no meaningful exceptions other than a PropertyNotFoundException but the arguments that it contained seemed to make little sense.
The stacktrace is as follows
javax.el.PropertyNotFoundException: Target Unreachable, '6' resolved to null
at com.sun.el.parser.AstValue.getTarget(AstValue.java:108)
at com.sun.el.parser.AstValue.isReadOnly(AstValue.java:149)
at com.sun.el.ValueExpressionImpl.isReadOnly(ValueExpressionImpl.java:248)
at oracle.adfinternal.view.faces.renderkit.rich.EditableValueRenderer.getUncached
ReadOnly(EditableValueRenderer.java:489) at
oracle.adfinternal.view.faces.renderkit.rich.EditableValueRenderer.wasSubmitted(EditableValueRenderer.java:343) at
oracle.adfinternal.view.faces.renderkit.rich.EditableValueRenderer.decodeInternal(EditableValueRenderer.java:116) at
oracle.adfinternal.view.faces.renderkit.rich.LabeledInputRenderer.decodeInternal(LabeledInputRenderer.java:56) at
oracle.adf.view.rich.render.RichRenderer.decode(RichRenderer.java:328)
What does '6' here refer to in the exception? Generally isnt the name of the property that resolved to null supposed to be there?

Hi,
have you checks if the page has a reference to "6" somewhere. The error seems to indicate that you used a property reference that actually is no property. This could also in case e.g. you call object.label. If "object" is a string then there is no label in which case "string name" resolves to null
Frank
Edited by: Frank Nimphius on Sep 10, 2012 4:19 PM

Similar Messages

  • FPGA 2010 Compilation error - TclTasklC:project_028: Unknown property value

    Hi, I'm using a cRIO 9075 and a NI 9211 to measure temperature for a project busy with. Everytime I try t compile code I have a compilation error that read as follows:
    Compilation failed due to a Xilinx error.
    Details:
    ERROR: TclTasksC: project_028:Unknown property value "spartan6" specified for "PROP_DevFamily"
    Can someone help me on how to resolve this error, I'm using LabVIEW FPGA 2010 and Xilinx 11.5
    Regards 
    Solved!
    Go to Solution.

    What version of the NI-RIO driver do you have?
    Attached is a chart with the different compatibilities of the RIO driver.
    NI-RIO and LabVIEW Version Compatibility
    http://digital.ni.com/public.nsf/allkb/577CC9A7DCFC73DF8625738400116CC3?OpenDocument
    Is this a 64-bit machine? Also, the minimum version of LabVIEW that will work with the 9075 is LabVIEW 2010SP1. You can verify if you have this version by going into Measurement & Austomation Explorer and expanding software. If you do not have LabVIEW 2010SP1, you will need either the platform DVDs for 2010 SP1 or you can download the content from www.NI.com/src. 
    You will also want to verify that you have the 2010SP1 FPGA module and 2010SP1 RT module.
    Also, does this issue occur with all FPGA VIs that you try to compile or only the one that you are currently working on?
    You can check by doing two things:
    1. Try to compile a blank FPGA VI (i.e. nothing on the block diagram or front panel)
    2. Try to compile an FPGA VI from one of the example LabVIEW projects 
    Please post back if one of these troubleshooting steps resolved your issue or if you're still having problems.
    Jordan

  • Resolved to null

    Hi,
    I'm able to show a list through an ADF table, but once I've clicked 'Edit' button, I've got
    javax.el.PropertyNotFoundException: Target Unreachable, identifier 'Controller' resolved to null
    How can I know where the problem is within the Java class?
    Best Regards

    I guess you have added the backing bean for the component... the bean that will get displayed in the option will be in backingbean scope.. in your adfc-config.xml or in your task flow.. the scope can be changed when you go to overview tab -> managed bean - > of your taskflow or adfc-config.xml..
    here you will find the list of beans associated.. and the option to change the scope for the bean..

  • Error: Target Unreachable, identifier 'userMenu' resolved to null

    Hi,
    I wonder if any one could help me please. I am trying de resolve my error from the morning but no result.
    I got an error when I click to my panelMenuItem, the panemenu data works well but the panelMenuitem Action is not.
    the error is as follow:
    javax.el.PropertyNotFoundException: /pages/users/Customer.xhtml @76,72 binding="#{userMenu.addControls()}": Target Unreachable, identifier 'userMenu' resolved to null
            at com.sun.facelets.el.TagValueExpression.setValue(TagValueExpression.java:95)
            at com.sun.faces.lifecycle.RestoreViewPhase.doPerComponentActions(RestoreViewPhase.java:244)
            at com.sun.faces.lifecycle.RestoreViewPhase.doPerComponentActions(RestoreViewPhase.java:249)
            at com.sun.faces.lifecycle.RestoreViewPhase.doPerComponentActions(RestoreViewPhase.java:249)
            at com.sun.faces.lifecycle.RestoreViewPhase.doPerComponentActions(RestoreViewPhase.java:249)
            at com.sun.faces.lifecycle.RestoreViewPhase.execute(RestoreViewPhase.java:193)
    What i would like to do is to display on the outputPanel the characteristic of the panelMenuItem's option.
    here is my java code:
    public HtmlPanelMenu addControls() {
             FacesContext context = FacesContext.getCurrentInstance();  
             Application application = context.getApplication();
             panelMenu.setId("panelMenu");
             panelMenu.setStyle("width:200px");
             panelMenu.setMode("ajax");
             panelMenu.setIconExpandedGroup("disc");
             panelMenu.setIconCollapsedGroup("disc");
             panelMenu.setIconExpandedTopGroup("chevronUp");
             panelMenu.setIconGroupTopPosition("right");
             panelMenu.setIconCollapsedTopGroup("chevronDown");
             panelMenu.setIconGroupTopPosition("right");
             List childrenMenu = getPanelMenu().getChildren();
            if(authenticatedUser.getProfile().getAccessRight().equals("customer") ) {
                customerProducts();        
                 HtmlPanelMenuGroup panelMenuGroup = new HtmlPanelMenuGroup();
                 panelMenuGroup.setId("Products");
                 panelMenuGroup.setLabel("products");
                 List childrenGroup = panelMenuGroup.getChildren();
                 Iterator it = userProducts.iterator();
                 while(it.hasNext() ) {
                     Product prod = (Product) it.next();
                     HtmlPanelMenuItem panelMenuItem = new HtmlPanelMenuItem();
                     panelMenuItem.setId("panelMenuItem"+prod.getProductId() );
                     panelMenuItem.setLabel(prod.getName() );
                     panelMenuItem.setRendered(true);
        application.createMethodBinding("#{characteristicServiceProduct}", new class [] { ActionEvent } );
                     ELContext eLContext = context.getCurrentInstance().getELContext();
                     MethodExpression me = application.getExpressionFactory().createMethodExpression(eLContext,
                                                                        "#{this.searchServiceProduct(prod)}", null, new Class[]{ActionEvent.class} );
                     panelMenuItem.setActionExpression(me);
                     childrenGroup.add(panelMenuItem);
                     childrenMenu.add(panelMenuGroup);
                     updateOutputPanel();
    return panelMenu;
    public HtmlAjaxOutputPanel addOutputPanel() {
            outputPanel.setId("outputPanel");
            outputPanel.setAjaxRendered(true);
            outputPanel.setTitle("Products caracteristic");
            HtmlOutputText outputText = new HtmlOutputText();
            outputText.setValue("");
            outputPanel.getChildren().add(outputText);
            return outputPanel;
        public void updateOutputPanel(){
            HtmlDataTable dataTable = new HtmlDataTable();
            UIColumn columnName, columnAmount;
            dataTable.setValue("#{characteristicServiceProduct}");
            dataTable.setVar("chSePr");
            columnName = new UIColumn();
            HtmlOutputText outputTextName = new HtmlOutputText();
            outputTextName.setValue("#{chSePr.characteristic.name}");
            columnName.getChildren().add(outputTextName);
            columnAmount = new UIColumn();
            HtmlOutputText outputTextAmount = new HtmlOutputText();
            outputTextAmount.setValue("#{chSePr.amount}");
            columnAmount.getChildren().add(outputTextAmount);
            dataTable.getChildren().add(columnName);
            dataTable.getChildren().add(columnAmount);
            outputPanel.getChildren().add(dataTable);
        }my .xhtml page is as follow
    <rich:panelMenu binding = "#{userMenu.addControls()}"/>
                   <rich:panel>
                        <a4j:outputPanel ajaxRendered="true" binding="#{userMenu.addOutputPanel()}">
                            <!--<h:outputText value="service #{userMenu.service}"/>-->
                        </a4j:outputPanel>
                    </rich:panel>thank you so much
    regards
    bibou

    Well i didn't define the scope. Now it's look better. T've got the followuing error:
    javax.el.PropertyNotWritableException: /pages/users/Customer.xhtml @76,72 binding="#{userMenu.addControls()}": Illegal Syntax for Set Operation
            at com.sun.facelets.el.TagValueExpression.setValue(TagValueExpression.java:98)
            at com.sun.faces.lifecycle.RestoreViewPhase.doPerComponentActions(RestoreViewPhase.java:244)
            at com.sun.faces.lifecycle.RestoreViewPhase.doPerComponentActions(RestoreViewPhase.java:249)
            at com.sun.faces.lifecycle.RestoreViewPhase.doPerComponentActions(RestoreViewPhase.java:249)
    contact1 >> 09:46:37,663 ERROR [ExceptionFilter] handling uncaught exception
    javax.servlet.ServletException: /pages/users/Customer.xhtml @76,72 binding="#{userMenu.addControls()}": Illegal Syntax for Set Operation
            at javax.faces.webapp.FacesServlet.service(FacesServlet.java:256)
            at org.apache.catalina.core.ApplicationFilterChain.servletService(ApplicationFilterChain.java:411)
            at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:317)
    Caused by: javax.el.PropertyNotWritableException: /pages/users/Customer.xhtml @76,72 binding="#{userMenu.addControls()}": Illegal Syntax for Set Operation
            at com.sun.facelets.el.TagValueExpression.setValue(TagValueExpression.java:98)
            at com.sun.faces.lifecycle.RestoreViewPhase.doPerComponentActions(RestoreViewPhase.java:244)
            at com.sun.faces.lifecycle.RestoreViewPhase.doPerComponentActions(RestoreViewPhase.java:249)

  • Target Unreachable, identifier 'viewBundle' resolved to null

    I'm using Jdev 11g to develop JSF application. it works well when I'm run the application within default server within Jdev. but it fails when i deploy it to weblogic server which i've installed ADF libraries.
    it says: javax.el.PropertyNotFoundException: Target Unreachable, identifier 'viewBundle' resolved to null
    which my code in page is like: <c:set var="viewBundle"
    value="#{adfBundle['com.dstintl.hiport.unitpricing.view.ViewBundle']}"/>
    but it works when I use " <f:loadBundle basename="" var=""/>"
    Is it some libraries missing within my war?
    thank you.

    Hi,
    don't think you are missing something.
    Frank
    Edited by: Frank Nimphius on Dec 29, 2008 1:24 PM

  • Identifier 'row' Resolved to Null !!

    Dear All
    i have a Business Component Exist in my JSF Interface as a Table and i made one att Auto Submit = true
    and this true property makes error message for me *"Identifier 'row' Resolved to Null"*
    Please Advise

    Hi,
    row is the default variable that is used to build the table when it initially is rendered. Adter this the row is null as it is no longer needed. In your case the erro points to a wrong referene of his variable in your page source
    Frank

  • Exception -not-null property references a null or transient value

    HI,
    I am trying to save a relational table and it is throwing the following exception in Hibernate .Pls help me
    Caused by: org.hibernate.PropertyValueException: not-null property references a null or transient value: com.aexp.acqsys.sim.dm.DmPackageContents._contentsByServiceBackref
         at org.hibernate.engine.Nullability.checkNullability(Nullability.java:72)
         at org.hibernate.event.def.AbstractSaveEventListener.performSaveOrReplicate(AbstractSaveEventListener.java:265)
         at org.hibernate.event.def.AbstractSaveEventListener.performSave(AbstractSaveEventListener.java:167)
         at org.hibernate.event.def.AbstractSaveEventListener.saveWithGeneratedId(AbstractSaveEventListener.java:101)
         at org.hibernate.event.def.DefaultSaveOrUpdateEventListener.saveWithGeneratedOrRequestedId(DefaultSaveOrUpdateEventListener.java:186)
         at org.hibernate.event.def.DefaultSaveEventListener.saveWithGeneratedOrRequestedId(DefaultSaveEventListener.java:33)
         at org.hibernate.event.def.DefaultSaveOrUpdateEventListener.entityIsTransient(DefaultSaveOrUpdateEventListener.java:175)
         at org.hibernate.event.def.DefaultSaveEventListener.performSaveOrUpdate(DefaultSaveEventListener.java:27)
         at org.hibernate.event.def.DefaultSaveOrUpdateEventListener.onSaveOrUpdate(DefaultSaveOrUpdateEventListener.java:70)
         at org.hibernate.impl.SessionImpl.fireSave(SessionImpl.java:557)
         at org.hibernate.impl.SessionImpl.save(SessionImpl.java:545)
         at org.hibernate.impl.SessionImpl.save(SessionImpl.java:541)
         at com.amex.testsim.flow.datapackages.ManageDatapackagesController$3.doInHibernate(ManageDatapackagesController.java:519)
         at com.amex.testsim.hibernate.support.HibernateController.doInHibernate(HibernateController.java:49)
         at com.amex.testsim.flow.datapackages.ManageDatapackagesController.copyDataPackage(ManageDatapackagesController.java:471)
         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:585)
         at org.apache.myfaces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:129)

    Hi Andrew,
    With an EAV mapping most (I would even say all) jpa annotations are ignored. In this case (afaics) the xsd element has
    minOccurs=1 (the default). This means that for ecore (and Teneo) it is a mandatory feature which must have a value. The
    EAVSingleEAttributeValueHolder.mandatoryValue field is used to enforce required/mandatory constraints.
    So in this case it can be solved by adding minOccurs="0" to the xsd element.
    gr. Martin
    Andrew wrote:
    > When using Teneo with EAV schema, I seem to be unable to store an
    > EObject if the value for one of its EStructuralFeature's is null. I get
    > the following exception:
    >
    > org.hibernate.PropertyValueException: not-null property references a
    > null or transient value: EAVSingleEAttributeValueHolder.mandatoryValue
    >
    > I tried to make the property nullable by adding an annotation to the XSD
    > from which the ecore model is created, eg.
    >
    > <xsd:element name="Number" type="xsd:integer">
    > <xsd:annotation>
    > <xsd:appinfo source="teneo.jpa">@Column(name="Number",nullable="true
    > ")</xsd:appinfo>
    > </xsd:annotation>
    > </xsd:element>
    >
    > However, this does not fix the problem. Does anyone know how to make
    > this work?
    With Regards, Martin Taal
    Springsite/Elver.org
    Office: Hardwareweg 4, 3821 BV Amersfoort
    Postal: Nassaulaan 7, 3941 EC Doorn
    The Netherlands
    Cell: +31 (0)6 288 48 943
    Tel: +31 (0)84 420 2397
    Fax: +31 (0)84 225 9307
    Mail: [email protected] - [email protected]
    Web: www.springsite.com - www.elver.org

  • ADF Tree table :  Target Unreachable, identifier 'node' resolved to null

    Hi, we are using a tree table:
    <af:treeTable value="#{bindings.FacilitySummaryVO1.treeModel}"
    var="node"
    emptyText="#{bindings.FacilitySummaryVO1.viewable ? 'No data to display.' : 'Access Denied.'}"
    selectionListener="#{bindings.FacilitySummaryVO1.treeModel.makeCurrent}"
    rowSelection="#{pageFlowScope.facilitySummaryHelper.tableSelectionMode}"
    id="tt1" width="100%" contentDelivery="immediate"
    binding="#{backingBeanScope.facilitySummary.facilityTree}"
    autoHeightRows="#{pageFlowScope.facilitySummaryHelper.tableHeight}"
    columnStretching="column:c6">
    <f:facet name="nodeStamp">
    <af:column id="c8" width="5px" headerText=""></af:column>
    </f:facet>
    <af:column id="c5"
    headerText="#{facilitySummary_rb.COLUMN_LABEL_SELECT}"
    width="40" align="center"
    rendered="#{pageFlowScope.facilitySummaryHelper.showColumnSelect}">
    <af:group id="g1">
    <af:panelLabelAndMessage label="" id="plam1">
    <af:selectBooleanCheckbox text="" autoSubmit="true"
    rendered="#{node.ShowSelectCheckBox}"
    valueChangeListener="#{backingBeanScope.facilitySummary.facilitySelectCheckboxEventListener}"
    label="" id="sbc1"
    value="#{node.bindings.SelectedFacilityLandingPage.inputValue}"/>
    </af:panelLabelAndMessage>
    </af:group>
    </af:column>
    <af:column id="c6"
    headerText="#{facilitySummary_rb.COLUMN_LABEL_FACILITY}">
    <af:group id="g2">
    <af:panelGroupLayout layout="horizontal" id="pgl2">
    <af:spacer width="#{node.IndentationWidth}" height="10"
    id="s2"/>
    <af:commandLink text="" textAndAccessKey="#{node.FacilityName}"
    disabled="#{pageFlowScope.facilitySummaryHelper.itemReadonly}"
    visible="#{(node.NodeType == facilitySummary_rb.ACCOUNT_VALUE)? false : true}"
    actionListener="#{backingBeanScope.facilitySummary.treeExpandDiscloseActionListener}"
    id="cl2">
    <af:image source="#{node.NodeImgPath}" id="i2" shortDesc=""></af:image>
    </af:commandLink>
    <af:spacer width="10" height="10" id="s1"/>
    <af:commandLink text="#{node.FacilityName}"
    textAndAccessKey="#{node.FacilityName}" id="cl1"
    actionListener="#{backingBeanScope.facilitySummary.showDetailsActionListener}"></af:commandLink>
    </af:panelGroupLayout>
    </af:group>
    </af:column>
    <af:column id="c12"
    headerText="#{facilitySummary_rb.COLUMN_LABEL_ACTION}"
    width="110"
    rendered="#{pageFlowScope.facilitySummaryHelper.showColumnAction}">
    <af:selectOneChoice valueChangeListener="#{backingBeanScope.facilitySummary.nodeActionValueChangeListener}"
    value="#{node.bindings.SelectActionValue.inputValue}"
    label=""
    unselectedLabel="#{origination_rb.LBL_IB_UNSELECTED_VALUE}"
    readOnly="#{pageFlowScope.facilitySummaryHelper.itemReadonly}"
    id="soc1" autoSubmit="true">
    <f:selectItems value="#{node.NodeAction ==null? pageFlowScope.facilitySummaryHelper.defaultSelectItems : node.NodeAction}"
    id="si2"/>
    </af:selectOneChoice>
    </af:column>
    </af:treeTable>
    af:selectOneChoice has an option to remove the row in the tree table by clearing the VO and populate new data into it. (with the exception of the removed row)
    The row get removed from the vo and the screen but i got this error Target Unreachable, identifier 'node' resolved to null
    No stack trace got printed in the stack trace.
    It works with jdev/adf 11.1.1.1.4. only with jdev/adf 11.1.1.1.5 (JDEVADF_11.1.1.5.0_GENERIC_110409.0025.6013) we're having this error. FacilitySummaryVO doesnt have primary key attribute.
    Data got populated to VO programmatically
    All VO attribute value updatable value is always

    Hi,
    hard to say. Actually the "node" variable reference is only available during tree rendering. So if you have any reference to the "node" variable that is invoked after tree rendering then this would explain the exception
    Frank

  • Date Filter uses unknown property by default, doesnt work

    Created a filterable and sortable table by dragging and dropping in VO from a AM. While it automatically sets the appropriate properties for filtering, and for non-date fields it works fine, for dates always "no row are found," even if I specifically choose a valid date where rows should return.
    I noticed in the property inspector, the inputdate value in the column's facet filter is set to an invalid value (by default when dragged and dropped!). In the property inspector, the value is outlined in orange (value=#{vs.filterCriteria.trSentOnDate}, populated by default), and the tooltip states "filterCriteria is an unknown property."
    Here's a snippet of the table def
            <af:table value="#{bindings.RequisitionsAllVO11.collectionModel}"
                            var="row"
                            rows="#{bindings.RequisitionsAllVO11.rangeSize}"
                            emptyText="#{bindings.RequisitionsAllVO11.viewable ? 'No data to display.' : 'Access Denied.'}"
                            fetchSize="#{bindings.RequisitionsAllVO11.rangeSize}"
                            rowBandingInterval="0"
                            filterModel="#{bindings.PoRequisitionHeadersAllVO1Query.queryDescriptor}"
                            queryListener="#{bindings.PoRequisitionHeadersAllVO1Query.processQuery}"
                            filterVisible="true" varStatus="vs"
                            selectedRowKeys="#{bindings.RequisitionsAllVO11.collectionModel.selectedRow}"
                            selectionListener="#{bindings.RequisitionsAllVO11.collectionModel.makeCurrent}"
                            rowSelection="single"
                            binding="#{backingBeanScope.backing_browseReqsPOs.t3}"
                            id="t3">
                    <af:column sortProperty="SentOnDate" filterable="true"
                               sortable="true"
                               headerText="#{bindings.RequisitionsAllVO11.hints.SentOnDate.label}"
                               id="c26">
                      <f:facet name="filter">
                        <af:inputDate value="#{vs.filterCriteria.SentOnDate}"
                                      id="id2"/>
                      </f:facet>
                      <af:outputText value="#{row.SentOnDate}" id="ot20">
                        <af:convertDateTime pattern="#{bindings.RequisitionsAllVO11.hints.SentOnDate.format}"/>
                      </af:outputText>
                    </af:column>BTW, I looked at the ADF RC Demos, and I noticed that for the filterable table demos, the date filter isn't enabled.

    We're getting there.
    New error now. I neglected to set the attribute Format and Format Type. I set those in the VO (Simple Date and MM/dd/yyyy, respectively), and now I get a nullPointerException.
    I hit enter after entering a date, and a popup shows the following:
    java.lang.NullPointerException
    For more information, please see the server's error log for an entry beginning with: Server Exception during PPR, #2with the following in the DefaultServer log
    Aug 13, 2009 11:14:35 AM oracle.adfinternal.view.faces.config.rich.RegistrationConfigurator handleError
    SEVERE: Server Exception during PPR, #2
    javax.servlet.ServletException
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:277)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    ...

  • Jasperreport java.lang.NoSuchMethodException: Unknown property

    Software
    JDK 1.5
    jasperreport 1.2.1
    I have used JRBeanCollectionDataSource but the following exception arrives.
    java.lang.NoSuchMethodException: Unknown property 'PurchasePackingId'
            at org.apache.commons.beanutils.PropertyUtils.getSimpleProperty(PropertyUtils.java:1157)
            at org.apache.commons.beanutils.PropertyUtils.getNestedProperty(PropertyUtils.java:754)
            at org.apache.commons.beanutils.PropertyUtils.getProperty(PropertyUtils.java:783)
            at net.sf.jasperreports.engine.data.JRAbstractBeanDataSource.getBeanProperty(JRAbstractBeanDataSource.java:104)
            at net.sf.jasperreports.engine.data.JRAbstractBeanDataSource.getFieldValue(JRAbstractBeanDataSource.java:93)
            at net.sf.jasperreports.engine.data.JRBeanCollectionDataSource.getFieldValue(JRBeanCollectionDataSource.java:104)
            at net.sf.jasperreports.engine.fill.JRFillDataset.next(JRFillDataset.java:727)
            at net.sf.jasperreports.engine.fill.JRBaseFiller.next(JRBaseFiller.java:980)
            at net.sf.jasperreports.engine.fill.JRVerticalFiller.fillReport(JRVerticalFiller.java:126)
            at net.sf.jasperreports.engine.fill.JRBaseFiller.fill(JRBaseFiller.java:747)
            at net.sf.jasperreports.engine.fill.JRBaseFiller.fill(JRBaseFiller.java:663)
            at net.sf.jasperreports.engine.fill.JRFiller.fillReport(JRFiller.java:89)
            at net.sf.jasperreports.engine.JasperFillManager.fillReport(JasperFillManager.java:601)
            at net.sf.jasperreports.engine.JasperManager.fillReport(JasperManager.java:836)
            at com.inventory.ReportPurchase.showReportVer6(ReportPurchase.java:142)
            at com.inventory.ReportPurchase.print(ReportPurchase.java:124)
            at com.utility.view.ui.mdiMenu.jbutPrintActionPerformed(mdiMenu.java:882)
            at com.utility.view.ui.mdiMenu.access$1400(mdiMenu.java:19)
            at com.utility.view.ui.mdiMenu$15.actionPerformed(mdiMenu.java:682)
            at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1849)
            at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2169)
            at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
            at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
            at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:234)
            at java.awt.Component.processMouseEvent(Component.java:5488)
            at javax.swing.JComponent.processMouseEvent(JComponent.java:3126)
            at java.awt.Component.processEvent(Component.java:5253)
            at java.awt.Container.processEvent(Container.java:1966)
            at java.awt.Component.dispatchEventImpl(Component.java:3955)
            at java.awt.Container.dispatchEventImpl(Container.java:2024)
            at java.awt.Component.dispatchEvent(Component.java:3803)
            at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
            at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3892)
            at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
            at java.awt.Container.dispatchEventImpl(Container.java:2010)
            at java.awt.Window.dispatchEventImpl(Window.java:1774)
            at java.awt.Component.dispatchEvent(Component.java:3803)
            at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
            at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
            at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
            at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
            at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
            at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    NESTED BY :
    java.lang.NoSuchMethodException: Unknown property 'PurchasePackingId'
            at org.apache.commons.beanutils.PropertyUtils.getSimpleProperty(PropertyUtils.java:1157)
            at org.apache.commons.beanutils.PropertyUtils.getNestedProperty(PropertyUtils.java:754)
            at org.apache.commons.beanutils.PropertyUtils.getProperty(PropertyUtils.java:783)
            at net.sf.jasperreports.engine.data.JRAbstractBeanDataSource.getBeanProperty(JRAbstractBeanDataSource.java:104)
            at net.sf.jasperreports.engine.data.JRAbstractBeanDataSource.getFieldValue(JRAbstractBeanDataSource.java:93)
            at net.sf.jasperreports.engine.data.JRBeanCollectionDataSource.getFieldValue(JRBeanCollectionDataSource.java:104)
            at net.sf.jasperreports.engine.fill.JRFillDataset.next(JRFillDataset.java:727)
            at net.sf.jasperreports.engine.fill.JRBaseFiller.next(JRBaseFiller.java:980)
            at net.sf.jasperreports.engine.fill.JRVerticalFiller.fillReport(JRVerticalFiller.java:126)
            at net.sf.jasperreports.engine.fill.JRBaseFiller.fill(JRBaseFiller.java:747)
            at net.sf.jasperreports.engine.fill.JRBaseFiller.fill(JRBaseFiller.java:663)
            at net.sf.jasperreports.engine.fill.JRFiller.fillReport(JRFiller.java:89)
            at net.sf.jasperreports.engine.JasperFillManager.fillReport(JasperFillManager.java:601)
            at net.sf.jasperreports.engine.JasperManager.fillReport(JasperManager.java:836)
            at com.inventory.ReportPurchase.showReportVer6(ReportPurchase.java:142)
            at com.inventory.ReportPurchase.print(ReportPurchase.java:124)
            at com.utility.view.ui.mdiMenu.jbutPrintActionPerformed(mdiMenu.java:882)
            at com.utility.view.ui.mdiMenu.access$1400(mdiMenu.java:19)
            at com.utility.view.ui.mdiMenu$15.actionPerformed(mdiMenu.java:682)
            at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1849)
            at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2169)
            at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
            at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
            at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:234)
            at java.awt.Component.processMouseEvent(Component.java:5488)
            at javax.swing.JComponent.processMouseEvent(JComponent.java:3126)
            at java.awt.Component.processEvent(Component.java:5253)
            at java.awt.Container.processEvent(Container.java:1966)
            at java.awt.Component.dispatchEventImpl(Component.java:3955)
            at java.awt.Container.dispatchEventImpl(Container.java:2024)
            at java.awt.Component.dispatchEvent(Component.java:3803)
            at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
            at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3892)
            at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
            at java.awt.Container.dispatchEventImpl(Container.java:2010)
            at java.awt.Window.dispatchEventImpl(Window.java:1774)
            at java.awt.Component.dispatchEvent(Component.java:3803)
            at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
            at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
            at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
            at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
            at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
            at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    NESTED BY :
    net.sf.jasperreports.engine.JRException: Error retrieving field value from bean : PurchasePackingId
            at net.sf.jasperreports.engine.data.JRAbstractBeanDataSource.getBeanProperty(JRAbstractBeanDataSource.java:116)
            at net.sf.jasperreports.engine.data.JRAbstractBeanDataSource.getFieldValue(JRAbstractBeanDataSource.java:93)
            at net.sf.jasperreports.engine.data.JRBeanCollectionDataSource.getFieldValue(JRBeanCollectionDataSource.java:104)
            at net.sf.jasperreports.engine.fill.JRFillDataset.next(JRFillDataset.java:727)
            at net.sf.jasperreports.engine.fill.JRBaseFiller.next(JRBaseFiller.java:980)
            at net.sf.jasperreports.engine.fill.JRVerticalFiller.fillReport(JRVerticalFiller.java:126)
            at net.sf.jasperreports.engine.fill.JRBaseFiller.fill(JRBaseFiller.java:747)
            at net.sf.jasperreports.engine.fill.JRBaseFiller.fill(JRBaseFiller.java:663)
            at net.sf.jasperreports.engine.fill.JRFiller.fillReport(JRFiller.java:89)
            at net.sf.jasperreports.engine.JasperFillManager.fillReport(JasperFillManager.java:601)
            at net.sf.jasperreports.engine.JasperManager.fillReport(JasperManager.java:836)
            at com.inventory.ReportPurchase.showReportVer6(ReportPurchase.java:142)
            at com.inventory.ReportPurchase.print(ReportPurchase.java:124)
            at com.utility.view.ui.mdiMenu.jbutPrintActionPerformed(mdiMenu.java:882)
            at com.utility.view.ui.mdiMenu.access$1400(mdiMenu.java:19)
            at com.utility.view.ui.mdiMenu$15.actionPerformed(mdiMenu.java:682)
            at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1849)
            at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2169)
            at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
            at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
            at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:234)
            at java.awt.Component.processMouseEvent(Component.java:5488)
            at javax.swing.JComponent.processMouseEvent(JComponent.java:3126)
            at java.awt.Component.processEvent(Component.java:5253)
            at java.awt.Container.processEvent(Container.java:1966)
            at java.awt.Component.dispatchEventImpl(Component.java:3955)
            at java.awt.Container.dispatchEventImpl(Container.java:2024)
            at java.awt.Component.dispatchEvent(Component.java:3803)
            at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
            at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3892)
            at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
            at java.awt.Container.dispatchEventImpl(Container.java:2010)
            at java.awt.Window.dispatchEventImpl(Window.java:1774)
            at java.awt.Component.dispatchEvent(Component.java:3803)
            at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
            at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
            at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
            at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
            at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
            at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    Caused by: java.lang.NoSuchMethodException: Unknown property 'PurchasePackingId'
            at org.apache.commons.beanutils.PropertyUtils.getSimpleProperty(PropertyUtils.java:1157)
            at org.apache.commons.beanutils.PropertyUtils.getNestedProperty(PropertyUtils.java:754)
            at org.apache.commons.beanutils.PropertyUtils.getProperty(PropertyUtils.java:783)
            at net.sf.jasperreports.engine.data.JRAbstractBeanDataSource.getBeanProperty(JRAbstractBeanDataSource.java:104)
            ... 39 more
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
            at java.awt.Container.addImpl(Container.java:1015)
            at java.awt.Container.add(Container.java:351)
            at com.inventory.ReportPurchase.showReportVer6(ReportPurchase.java:154)
            at com.inventory.ReportPurchase.print(ReportPurchase.java:124)
            at com.utility.view.ui.mdiMenu.jbutPrintActionPerformed(mdiMenu.java:882)
            at com.utility.view.ui.mdiMenu.access$1400(mdiMenu.java:19)
            at com.utility.view.ui.mdiMenu$15.actionPerformed(mdiMenu.java:682)
            at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1849)
            at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2169)
            at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
            at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
            at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:234)
            at java.awt.Component.processMouseEvent(Component.java:5488)
            at javax.swing.JComponent.processMouseEvent(JComponent.java:3126)
            at java.awt.Component.processEvent(Component.java:5253)
            at java.awt.Container.processEvent(Container.java:1966)
            at java.awt.Component.dispatchEventImpl(Component.java:3955)
            at java.awt.Container.dispatchEventImpl(Container.java:2024)
            at java.awt.Component.dispatchEvent(Component.java:3803)
            at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
            at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3892)
            at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
            at java.awt.Container.dispatchEventImpl(Container.java:2010)
            at java.awt.Window.dispatchEventImpl(Window.java:1774)
            at java.awt.Component.dispatchEvent(Component.java:3803)
            at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
            at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
            at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
            at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
            at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
            at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)The bean used is
    public class ReportPurchaseObject
            private int purchasePackingId;
            private java.sql.Date transDate;
            private int supplierId;
            private int productId;
            private String supplier;
            private String product;
            private Double sumOfQuantity;
            ReportPurchaseObject(int purchasePackingId,java.sql.Date transDate,int supplierId,int productId,String supplier,String product,Double sumOfQuantity)
                this.setPurchasePackingId(purchasePackingId);
                this.setTransDate(transDate);
                this.setSupplierId(supplierId);
                this.setProductId(productId);
                this.setSupplier(supplier);
                this.setProduct(product);
                this.setSumOfQuantity(sumOfQuantity);
            public int getPurchasePackingId() {
                return purchasePackingId;
            public java.sql.Date getTransDate() {
                return transDate;
            public int getSupplierId() {
                return supplierId;
            public int getProductId() {
                return productId;
            public String getSupplier() {
                return supplier;
            public String getProduct() {
                return product;
            public Double getSumOfQuantity() {
                return sumOfQuantity;
            public void setPurchasePackingId(int purchasePackingId) {
                this.purchasePackingId = purchasePackingId;
            public void setTransDate(java.sql.Date transDate) {
                this.transDate = transDate;
            public void setSupplierId(int supplierId) {
                this.supplierId = supplierId;
            public void setProductId(int productId) {
                this.productId = productId;
            public void setSupplier(String supplier) {
                this.supplier = supplier;
            public void setProduct(String product) {
                this.product = product;
            public void setSumOfQuantity(Double sumOfQuantity) {
                this.sumOfQuantity = sumOfQuantity;
        }Thanks in advance
    CSJakharia

    Please go to this link for your answer
    http://www.discussjava.com/wforum/viewforum.php?f=20

  • Java.lang.NoSuchMethodException: Unknown property

    I am receiving this error and i cant figure out why
    This is the error log from log file on the server
    Servlet.service() for servlet jsp threw exception
    java.lang.NoSuchMethodException: Unknown property 'persondbao'
         at com.sun.org.apache.commons.beanutils.PropertyUtils.setSimpleProperty(PropertyUtils.java:1777)
         at com.sun.faces.config.ManagedBeanFactoryImpl.setPropertiesIntoBean(ManagedBeanFactoryImpl.java:632)
         at com.sun.faces.config.ManagedBeanFactoryImpl.newInstance(ManagedBeanFactoryImpl.java:299)
         at com.sun.faces.application.ApplicationAssociate.createAndMaybeStoreManagedBeans(ApplicationAssociate.java:490)
         at com.sun.faces.el.ManagedBeanELResolver.getValue(ManagedBeanELResolver.java:82)
         at javax.el.CompositeELResolver.getValue(CompositeELResolver.java:143)
         at com.sun.faces.el.FacesCompositeELResolver.getValue(FacesCompositeELResolver.java:62)
         at com.sun.el.parser.AstIdentifier.getValue(AstIdentifier.java:65)
         at com.sun.el.parser.AstValue.getValue(AstValue.java:106)
         at com.sun.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:192)
         at javax.faces.component.UIOutput.getValue(UIOutput.java:173)
         at com.sun.faces.renderkit.html_basic.HtmlBasicInputRenderer.getValue(HtmlBasicInputRenderer.java:100)
         at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.getCurrentValue(HtmlBasicRenderer.java:288)
         at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeEnd(HtmlBasicRenderer.java:216)
         at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:848)
         at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:249)
         at com.sun.faces.renderkit.html_basic.GridRenderer.encodeChildren(GridRenderer.java:277)
         at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:828)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:883)
         at javax.faces.render.Renderer.encodeChildren(Renderer.java:137)
         at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:828)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:883)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:889)
         at com.sun.faces.application.ViewHandlerImpl.doRenderView(ViewHandlerImpl.java:241)
         at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:153)
         at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:133)
         at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:244)
         at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:140)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:245)
         at org.apache.catalina.core.ApplicationFilterChain.servletService(ApplicationFilterChain.java:397)
         at org.apache.catalina.core.ApplicationDispatcher.doInvoke(ApplicationDispatcher.java:850)
         at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:697)
         at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:532)
         at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:465)
         at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:353)
         at org.apache.jasper.runtime.PageContextImpl.doForward(PageContextImpl.java:775)
         at org.apache.jasper.runtime.PageContextImpl.forward(PageContextImpl.java:742)
         at org.apache.jsp.index_jsp._jspService(index_jsp.java:95)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:111)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:353)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:412)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:318)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at org.apache.catalina.core.ApplicationFilterChain.servletService(ApplicationFilterChain.java:397)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:278)
         at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:536)
         at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:240)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:179)
         at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566)
         at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:73)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:182)
         at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566)
         at com.sun.enterprise.web.VirtualServerPipeline.invoke(VirtualServerPipeline.java:120)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:939)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:137)
         at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:536)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:939)
         at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:231)
         at com.sun.enterprise.web.connector.grizzly.ProcessorTask.invokeAdapter(ProcessorTask.java:667)
         at com.sun.enterprise.web.connector.grizzly.ProcessorTask.processNonBlocked(ProcessorTask.java:574)
         at com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:844)
         at com.sun.enterprise.web.connector.grizzly.ReadTask.executeProcessorTask(ReadTask.java:287)
         at com.sun.enterprise.web.connector.grizzly.ReadTask.doTask(ReadTask.java:212)
         at com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:252)
         at com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThread.java:75)

    Please go to this link for your answer
    http://www.discussjava.com/wforum/viewforum.php?f=20

  • Siebel CRM 8.2.2 installation  OUI-11104:Unknown property 'ARCHITECTURE' ..

    Hi,everybody
    I planed to install Siebel CRM 8.2.2.My Database is Oracle 11.2.0.1,OS is RHEL 5.7 x86_64.
    After installing and configuring the RDBMS(without creating database),I installed the Siebel Enterprise Server.
    When it processed Product-Specific Prerequisite Checks,errors appear:
    Checking operating system requirements...
    Check complete. The overall result of this check is: Not executed <<<<
    OUI-11104: Unknown property 'ARCHITECTURE' specified. Cannot set the value 'x86_64' to 'ARCHITECTURE'.
    Recommendation: Make sure you are installing the software on the correct platform.
    ========================================================
    Checking operating system package requirements...
    Check complete. The overall result of this check is: Not executed <<<<
    OUI-11104: Unknown property 'ARCHITECTURE' specified. Cannot set the value 'x86_64' to 'ARCHITECTURE'.
    Recommendation: Install the required packages before continuing with the installation.
    ========================================================
    Checking kernel parameters
    Check complete. The overall result of this check is: Not executed <<<<
    OUI-18001: The operating system 'Linux Version redhat-5.7' is not supported.
    Recommendation: Perform operating system specific instructions to update the kernel parameters.
    ========================================================
    Checking Recommended glibc version
    Check complete. The overall result of this check is: Not executed <<<<
    OUI-18001: The operating system 'Linux Version redhat-5.7' is not supported.
    Recommendation: You may actually have installed packages which have obsoleted these, in which case you can successfully continue with the install. If you have not, it is recommended that you do not continue. Refer to the product release notes to find out how to get the missing packages and update the system.
    ========================================================
    Checking physical memory requirements...
    Check complete. The overall result of this check is: Not executed <<<<
    OUI-11104: Unknown property 'ARCHITECTURE' specified. Cannot set the value 'x86_64' to 'ARCHITECTURE'.
    Recommendation: Increase the amount of physical memory available to your system before continuing with the installation.
    ========================================================
    Checking available swap space requirements...
    Expected result: 3872MB
    Actual Result: 16001MB
    Check complete. The overall result of this check is: Passed
    ========================================================
    Validating ORACLE_BASE location (if set)...
    Check complete. The overall result of this check is: Passed
    ========================================================
    Don't know how to solve it , and there seems no prerequisite for installing in the book Siebel Installation Guide for UNIX Version 8.2, Rev. A June 2012.
    Thanks a lot~

    According to Supportweb, this error is benign and can be ignored.
    You should have the option to continue.
    OUI-11104 Warning While Installing Siebel Enterprise Server 8.2.2 on OEL 5.5 (Oracle Enterprise Linux) [ID 1476556.1]

  • How to localize "Target Unreachable, identifier 'row' resolved to null"

    Hi everybody
    How can I localize "Target Unreachable, identifier 'row' resolved to null" message?
    Thanks!
    Version
    ADF Business Components 11.1.1.56.60
    Java(TM) Platform 1.6.0_18
    Oracle IDE 11.1.1.3.37.56.60

    Hi Barbara,
    I do not know how to customize the message, but I can tell you how you can make the primary key attributes updateable without receiving such errors.
    ADF Faces use the primary key attributes to produce a rowkey that is used as a row ID in a table model. If you modify the value of a primary key attribute of a row in an <af:table> then the ADF Faces could not be able to find that row after that. In our projects we workaround this problem as follows:
    1) Define in the EO a "service" primary key consisting of a single ROWID attribute of a datatype oracle.jbo.domain.RowID. Base this attribute on the ROWID pseudocolumn of the corresponding DB table and mark the attribute as "Refresh After Insert";
    2) Modify the real primary key to become an alternate key (not in the DB table but in the corresponding ADF Business Components);
    3) Mark the RowID attribute as a key attribute in the VO instead of the real primary key attributes.
    In this way you will never modify at runtime primary key attributes (from ADF's point of view), so you will never lose the corresponding rowkeys and you will never get such errors. Note, that this approach does not require creation of a surrogate (for example, sequence based) primary key in DB.
    Dimitar

  • Error: Unknown Property: 'constructor'.

    Hi,
    i have a problem with flex, hibernate, lcds. I have created a
    simple grid which is bound with the hibernateassembler to my
    backend. When i make a simple fill call at the dataservice, i got
    this error.
    Error: Unknown Property: 'constructor'.
    at mx.collections::ListCollectionView/
    http://www.adobe.com/2006/actionscript/flash/proxy::getProperty()
    at mx.data.utils::Managed$/normalize()
    at mx.data::ConcreteDataService/
    http://www.adobe.com/2006/flex/mx/internal::normalize()
    at mx.data::DataList/
    http://www.adobe.com/2006/flex/mx/internal::processSequence()
    at mx.data::DataList/
    http://www.adobe.com/2006/flex/mx/internal::processSequenceResult()
    at DataListRequestResponder/result()
    at mx.rpc::AsyncRequest/acknowledge()
    at NetConnectionMessageResponder/resultHandler()
    at mx.messaging::MessageResponder/result()
    The backend is not the problem, because hibernate logs the
    select and if i debug my flex application i see that the result
    will arrive at the client. But how can i solve this problem?
    regards
    Thorsten

    Hi all,
    i fixed the problem by my own. take a look at my blog
    http://innojasa.wordpress.com/category/adobe-flex/
    regards
    Thorsten

  • Property parentCategory is null in ProductCatalog

    I was configuring the SitemapGeneratorService for generate a xml sitemap and was setted a ProductIndirectTemplate as below:
    $class=atg.repository.seo.IndirectUrlTemplate
    urlTemplateFormat=/p/{item.parentCategory.displayName}/{item.parentCategory.id}/{item.displayName}/{item.id}
    indirectRegex=.*/p/([^/].*?)/([^/].*?)/([^/].*?)/([^/].*?)$
    regexElementList=\
         parentCategoryDisplayName | string,\
         parentCategory | id | /atg/commerce/catalog/ProductCatalog:category,\
         displayName | string,\
         item | id | /atg/commerce/catalog/ProductCatalog:product     
    forwardUrlTemplateFormat=\
         [item.template.url]?id\={item.id}&catId\={item.parentCategory.id}
    webAppRegistry=/atg/registry/webappregistry/StaticWebAppRegistryBut when is generated the xml for sitemap, the parentCategory is blank.
    Ex: /demo/p///Chronos+Watch/prod170004/
    When listing items from item descriptor "product" in repository ProductCatalog the property parentCategory is null. And in BCC contain the parent category for the product.
    This happened with someone?
    Thank you all!

    Check if you have DCS.DynamicCustomCatalogs on your MANIFEST
    parentCategory is generated by this module.

Maybe you are looking for

  • ABAP OLE Word - Delete last page

    Dear all, I have a SAP program which prints some documents in Microsoft Word by using ABAP OLE Objects. I use a template to take the main context, and after that I send some variables in order to populate the word document. The problem is when I crea

  • I installed the newest version of itunes on my PC and it does not startup.

    everytime i open the shortcut or the exe in the itunes main folder it crashes instantly, I do not even see itunes at all it crashes so fast. I am using windows 7 64 bit. I am getting very frustrated, i have tried many clean uninstalls and reinstalls

  • Won't Open--read prior solutions, still won't work (MAC)

    I switched to a MAC so I wouldn't have these problems. Up until yesterday, it would open in Safe Boot but not on regular restart. I've tried everything mentioned online and in forums...updates, permission repairs, resintall, new user w/ privileges, e

  • Bright light

    I have a photo with a bright light in the backround how do I soften it.

  • Start-up hang + missing optical detect

    ok i got the raid going after countless tries    big, big issue now is the mouse-pointer freezes if i don't grab it fast during the blue "welcom" screen when xp loads.  already cleaned up startup items a bit, and got regsupreme to clean registry. tri