Lov issue

Hi everybody,
i am getting error as below
ADF_FACES-60096:Server Exception during PPR, #2
javax.el.PropertyNotFoundException: Target Unreachable, identifier 'row' resolved to null
     at com.sun.el.parser.AstValue.getTarget(Unknown Source)
     at com.sun.el.parser.AstValue.isReadOnly(Unknown Source)
     at com.sun.el.ValueExpressionImpl.isReadOnly(Unknown Source)
when try select value from select one choice soc1.... when i selected a value from list iam not getting this error.from second time onwards i am getting this error.Please find below the vo i used industryratingVO in my app
<ViewObject
  xmlns="http://xmlns.oracle.com/bc4j"
  Name="IndustryRatingVO"
  Version="11.1.1.59.23"
  SelectList="IndustryRatingEO.ID_CODE,
       IndustryRatingEO.PLACE,
       IndustryRatingEO.RATING_DESC,
       IndustryRatingEO.RATING_ID,
       IndustryRatingEO.RATING_SUB_ID"
  FromList="INDUSTRY_RATING IndustryRatingEO"
  BindingStyle="OracleName"
  CustomQuery="false"
  PageIterMode="Full"
  UseGlueCode="false">
  <Properties>
    <SchemaBasedProperties>
      <LABEL
        ResId="model.IndustryRatingVO_LABEL"/>
    </SchemaBasedProperties>
  </Properties>
  <ViewAccessor
    Name="LOV1VO1"
    ViewObjectName="model.LOV1VO"
    RowLevelBinds="true"/>
  <ViewAccessor
    Name="LOV2VO1"
    ViewObjectName="model.LOV2VO">
    <ViewCriteriaUsage
      Name="LOV2VOCriteria"
      FullName="model.LOV2VO.LOV2VOCriteria"/>
    <ParameterMap>
      <PIMap Variable="p_id_code">
        <TransientExpression><![CDATA[RatingId]]></TransientExpression>
      </PIMap>
    </ParameterMap>
  </ViewAccessor>
  <ListBinding
    Name="LOV_RatingId"
    ListVOName="LOV1VO1"
    ListRangeSize="-1"
    NullValueFlag="none"
    NullValueId="LOV_RatingId_LOVUIHints_NullValueId"
    MRUCount="0">
    <AttrArray Name="AttrNames">
      <Item Value="RatingId"/>
    </AttrArray>
    <AttrArray Name="ListAttrNames">
      <Item Value="CodeId"/>
    </AttrArray>
    <AttrArray Name="ListDisplayAttrNames">
      <Item Value="CodeId"/>
    </AttrArray>
    <DisplayCriteria/>
  </ListBinding>
  <ListBinding
    Name="LOV_RatingSubId"
    ListVOName="LOV2VO1"
    ListRangeSize="-1"
    NullValueFlag="none"
    NullValueId="LOV_RatingSubId_LOVUIHints_NullValueId"
    MRUCount="0">
    <AttrArray Name="AttrNames">
      <Item Value="RatingSubId"/>
    </AttrArray>
    <AttrArray Name="ListAttrNames">
      <Item Value="CodeSubId"/>
    </AttrArray>
    <AttrArray Name="ListDisplayAttrNames">
      <Item Value="CodeSubId"/>
      <Item Value="Rating"/>
    </AttrArray>
    <DisplayCriteria/>
  </ListBinding>
  <EntityUsage
    Name="IndustryRatingEO"
    Entity="model.IndustryRatingEO"/>
  <ViewAttribute
    Name="IdCode"
    PrecisionRule="true"
    EntityAttrName="IdCode"
    EntityUsage="IndustryRatingEO"
    AliasName="ID_CODE"/>
  <ViewAttribute
    Name="Place"
    PrecisionRule="true"
    EntityAttrName="Place"
    EntityUsage="IndustryRatingEO"
    AliasName="PLACE"/>
  <ViewAttribute
    Name="RatingDesc"
    PrecisionRule="true"
    EntityAttrName="RatingDesc"
    EntityUsage="IndustryRatingEO"
    AliasName="RATING_DESC"/>
  <ViewAttribute
    Name="RatingId"
    PrecisionRule="true"
    EntityAttrName="RatingId"
    EntityUsage="IndustryRatingEO"
    AliasName="RATING_ID"
    LOVName="LOV_RatingId">
    <Properties>
      <SchemaBasedProperties>
        <CONTROLTYPE
          Value="combo"/>
      </SchemaBasedProperties>
    </Properties>
  </ViewAttribute>
  <ViewAttribute
    Name="RatingSubId"
    PrecisionRule="true"
    EntityAttrName="RatingSubId"
    EntityUsage="IndustryRatingEO"
    AliasName="RATING_SUB_ID"
    LOVName="LOV_RatingSubId">
    <Properties>
      <SchemaBasedProperties>
        <CONTROLTYPE
          Value="combo"/>
      </SchemaBasedProperties>
    </Properties>
  </ViewAttribute>
  <ResourceBundle>
    <PropertiesBundle
      PropertiesFile="model.ModelBundle"/>
  </ResourceBundle>
</ViewObject>Below is the code i have written
<af:form id="f1">
        <af:table value="#{bindings.IndustryListVO1.collectionModel}" var="row"
                  rows="#{bindings.IndustryListVO1.rangeSize}"
                  emptyText="#{bindings.IndustryListVO1.viewable ? 'No data to display.' : 'Access Denied.'}"
                  fetchSize="#{bindings.IndustryListVO1.rangeSize}"
                  rowBandingInterval="0"
                  filterModel="#{bindings.IndustryListVO1Query.queryDescriptor}"
                  queryListener="#{bindings.IndustryListVO1Query.processQuery}"
                  filterVisible="true" varStatus="vs"
                  selectedRowKeys="#{bindings.IndustryListVO1.collectionModel.selectedRow}"
                  selectionListener="#{bindings.IndustryListVO1.collectionModel.makeCurrent}"
                  rowSelection="single" id="t1" width="389"
                  inlineStyle="height:151px;">
          <af:column sortProperty="IdDesc" filterable="true" sortable="true"
                     headerText="#{bindings.IndustryListVO1.hints.IdDesc.label}"
                     id="c2">
            <af:inputText value="#{row.bindings.IdDesc.inputValue}"
                          label="#{bindings.IndustryListVO1.hints.IdDesc.label}"
                          required="#{bindings.IndustryListVO1.hints.IdDesc.mandatory}"
                          columns="#{bindings.IndustryListVO1.hints.IdDesc.displayWidth}"
                          maximumLength="#{bindings.IndustryListVO1.hints.IdDesc.precision}"
                          shortDesc="#{bindings.IndustryListVO1.hints.IdDesc.tooltip}"
                          id="it2">
              <f:validator binding="#{row.bindings.IdDesc.validator}"/>
            </af:inputText>
          </af:column>
          <af:column sortProperty="IdName" filterable="true" sortable="true"
                     headerText="#{bindings.IndustryListVO1.hints.IdName.label}"
                     id="c3">
            <af:inputText value="#{row.bindings.IdName.inputValue}"
                          label="#{bindings.IndustryListVO1.hints.IdName.label}"
                          required="#{bindings.IndustryListVO1.hints.IdName.mandatory}"
                          columns="#{bindings.IndustryListVO1.hints.IdName.displayWidth}"
                          maximumLength="#{bindings.IndustryListVO1.hints.IdName.precision}"
                          shortDesc="#{bindings.IndustryListVO1.hints.IdName.tooltip}"
                          id="it1">
              <f:validator binding="#{row.bindings.IdName.validator}"/>
            </af:inputText>
          </af:column>
          <af:column sortProperty="IdPlace" filterable="true" sortable="true"
                     headerText="#{bindings.IndustryListVO1.hints.IdPlace.label}"
                     id="c1">
            <af:inputText value="#{row.bindings.IdPlace.inputValue}"
                          label="#{bindings.IndustryListVO1.hints.IdPlace.label}"
                          required="#{bindings.IndustryListVO1.hints.IdPlace.mandatory}"
                          columns="#{bindings.IndustryListVO1.hints.IdPlace.displayWidth}"
                          maximumLength="#{bindings.IndustryListVO1.hints.IdPlace.precision}"
                          shortDesc="#{bindings.IndustryListVO1.hints.IdPlace.tooltip}"
                          id="it3">
              <f:validator binding="#{row.bindings.IdPlace.validator}"/>
            </af:inputText>
          </af:column>
        </af:table>
        <af:table value="#{bindings.IndustryRatingVO1.collectionModel}"
                  var="row" rows="#{bindings.IndustryRatingVO1.rangeSize}"
                  emptyText="#{bindings.IndustryRatingVO1.viewable ? 'No data to display.' : 'Access Denied.'}"
                  fetchSize="#{bindings.IndustryRatingVO1.rangeSize}"
                  rowBandingInterval="0"
                  filterModel="#{bindings.IndustryRatingVO1Query.queryDescriptor}"
                  queryListener="#{bindings.IndustryRatingVO1Query.processQuery}"
                  filterVisible="true" varStatus="vs"
                  selectedRowKeys="#{bindings.IndustryRatingVO1.collectionModel.selectedRow}"
                  selectionListener="#{bindings.IndustryRatingVO1.collectionModel.makeCurrent}"
                  rowSelection="single" id="t2" partialTriggers="::t1">
          <af:column sortProperty="Place" filterable="true" sortable="true"
                     headerText="#{bindings.IndustryRatingVO1.hints.Place.label}"
                     id="c5">
            <af:inputText value="#{row.bindings.Place.inputValue}"
                          label="#{bindings.IndustryRatingVO1.hints.Place.label}"
                          required="#{bindings.IndustryRatingVO1.hints.Place.mandatory}"
                          columns="#{bindings.IndustryRatingVO1.hints.Place.displayWidth}"
                          maximumLength="#{bindings.IndustryRatingVO1.hints.Place.precision}"
                          shortDesc="#{bindings.IndustryRatingVO1.hints.Place.tooltip}"
                          id="it4">
              <f:validator binding="#{row.bindings.Place.validator}"/>
            </af:inputText>
          </af:column>
          <af:column sortProperty="RatingId" filterable="true" sortable="true"
                     headerText="#{bindings.IndustryRatingVO1.hints.RatingId.label}"
                     id="c6">
            <af:selectOneChoice value="#{row.bindings.RatingId.inputValue}"
                                label="#{row.bindings.RatingId.label}"
                                required="#{bindings.IndustryRatingVO1.hints.RatingId.mandatory}"
                                shortDesc="#{bindings.IndustryRatingVO1.hints.RatingId.tooltip}"
                                id="soc1" autoSubmit="true">
              <f:selectItems value="#{row.bindings.RatingId.items}" id="si1"/>
            </af:selectOneChoice>
          </af:column>
          <af:column sortProperty="RatingSubId" filterable="true"
                     sortable="true"
                     headerText="#{bindings.IndustryRatingVO1.hints.RatingSubId.label}"
                     id="c4">
            <af:selectOneChoice value="#{row.bindings.RatingSubId.inputValue}"
                                label="#{row.bindings.RatingSubId.label}"
                                required="#{bindings.IndustryRatingVO1.hints.RatingSubId.mandatory}"
                                shortDesc="#{bindings.IndustryRatingVO1.hints.RatingSubId.tooltip}"
                                id="soc2" partialTriggers="soc1">
              <f:selectItems value="#{row.bindings.RatingSubId.items}"
                             id="si2"/>
            </af:selectOneChoice>
          </af:column>
        </af:table>
      </af:form>Can you please help me in resolving this error?.i am using jdeveloper version 11.1.1.4.0
Thanks
KM
Edited by: Mr. Murali on Oct 4, 2011 11:04 AM
Edited by: Mr. Murali on Oct 4, 2011 11:05 AM

i hope so everything existed as you said..you can also see below code
<?xml version="1.0" encoding="UTF-8" ?>
<pageDefinition xmlns="http://xmlns.oracle.com/adfm/uimodel"
                version="11.1.1.59.23" id="IndustryPageDef"
                Package="mfpa.view.pageDefs">
  <parameters/>
  <executables>
    <variableIterator id="variables"/>
    <iterator Binds="IndustryListVO1" RangeSize="25"
              DataControl="AppModuleDataControl" id="IndustryListVO1Iterator"/>
    <searchRegion Binds="IndustryListVO1Iterator" Criteria=""
                  Customizer="oracle.jbo.uicli.binding.JUSearchBindingCustomizer"
                  id="IndustryListVO1Query"/>
    <iterator Binds="IndustryRatingVO1" RangeSize="25"
              DataControl="AppModuleDataControl"
              id="IndustryRatingVO1Iterator"/>
    <searchRegion Binds="IndustryRatingVO1Iterator" Criteria=""
                  Customizer="oracle.jbo.uicli.binding.JUSearchBindingCustomizer"
                  id="IndustryRatingVO1Query"/>
  </executables>
  <bindings>
    <tree IterBinding="IndustryListVO1Iterator" id="IndustryListVO1">
      <nodeDefinition DefName="mfpa.model.IndustryListVO"
                      Name="IndustryListVO10">
        <AttrNames>
          <Item Value="IdDesc"/>
          <Item Value="IdName"/>
          <Item Value="IdPlace"/>
        </AttrNames>
      </nodeDefinition>
    </tree>
    <tree IterBinding="IndustryRatingVO1Iterator" id="IndustryRatingVO1">
      <nodeDefinition DefName="mfpa.model.IndustryRatingVO"
                      Name="IndustryRatingVO10">
        <AttrNames>
          <Item Value="Place"/>
          <Item Value="RatingId"/>
          <Item Value="RatingSubId"/>
        </AttrNames>
      </nodeDefinition>
    </tree>
    <listOfValues StaticList="false" IterBinding="IndustryRatingVO1Iterator"
                  Uses="LOV_RatingId" id="RatingId"/>
    <listOfValues StaticList="false" IterBinding="IndustryRatingVO1Iterator"
                  Uses="LOV_RatingSubId" id="RatingSubId"/>
    <listOfValues StaticList="false" IterBinding="IndustryRatingVO1Iterator"
                  Uses="LOV_ViewAttr" id="ViewAttr"/>
  </bindings>
</pageDefinition>for this view IndustryRatingVO1 i want to two more attributes which are transiant and caculated values i will get from database package.
i want to show the calculated values from database for these attributes in my jsf page.
i tried using groovy...but i have to call the db again for second time to display second value.
is there any best way where i want to call the db package only for one row.?
Edited by: Mr. Murali on Oct 4, 2011 11:22 PM

Similar Messages

  • [Is it Jdev 11.1.2.4 bug]......LOV issue

    Hi All,
    Facing a problem related to LOV in Jdev version Jdev 11.1.2.4.
    Was referring to the solution given by Andrejus here http://andrejusb.blogspot.in/2008/02/list-of-values-component-in-search-and.html.
    Problem: Migrate the workspace to Jdev 11.1.2.4. And try to run the application. On second attempt to select value from LOV, it throws an NPE. Following is the error stack. Though same workspace is working in Jdev 11.1.1.6.0. Did someone faced this issue? If yes then do any one has workaround?
    Request someone from Jdev product team to provide input here.
    <RichExceptionHandler> <_logUnhandledException> ADF_FACES-60098:Faces lifecycle receives unhandled exceptions in phase RENDER_RESPONSE 6
    java.lang.NullPointerException
      at oracle.adfinternal.view.faces.model.binding.FacesCtrlLOVBinding.getColumnDescriptors(FacesCtrlLOVBinding.java:1978)
      at oracle.adfinternal.view.faces.model.binding.FacesCtrlLOVBinding.access$2000(FacesCtrlLOVBinding.java:93)
      at oracle.adfinternal.view.faces.model.binding.FacesCtrlLOVBinding$TableModelImpl.getColumnDescriptors(FacesCtrlLOVBinding.java:1963)
      at oracle.adfinternal.view.faces.renderkit.rich.listOfValues.TableModelUtils.createTableFromEL(TableModelUtils.java:93)
      at oracle.adfinternal.view.faces.renderkit.rich.SimpleInputListOfValuesRendererBase._createSearchResultsTable(SimpleInputListOfValuesRendererBase.java:965)
      at oracle.adfinternal.view.faces.renderkit.rich.SimpleInputListOfValuesRendererBase._createSearchContentFacet(SimpleInputListOfValuesRendererBase.java:1218)
      at oracle.adfinternal.view.faces.renderkit.rich.SimpleInputListOfValuesRendererBase._renderPopup(SimpleInputListOfValuesRendererBase.java:852)
      at oracle.adfinternal.view.faces.renderkit.rich.SimpleInputListOfValuesRendererBase.renderElementContent(SimpleInputListOfValuesRendererBase.java:452)
      at oracle.adfinternal.view.faces.renderkit.rich.FormInputRenderer.encodeAllAsElement(FormInputRenderer.java:152)
      at oracle.adfinternal.view.faces.renderkit.rich.FormElementRenderer.encodeAll(FormElementRenderer.java:164)
      at oracle.adf.view.rich.render.RichRenderer.delegateRenderer(RichRenderer.java:1700)
      at oracle.adfinternal.view.faces.renderkit.rich.LabeledInputRenderer.renderFieldCellContents(LabeledInputRenderer.java:228)
      at oracle.adfinternal.view.faces.renderkit.rich.LabelLayoutRenderer.renderFieldCell(LabelLayoutRenderer.java:528)
      at oracle.adfinternal.view.faces.renderkit.rich.LabelLayoutRenderer.encodeAll(LabelLayoutRenderer.java:305)
      at oracle.adfinternal.view.faces.renderkit.rich.LabeledInputRenderer.encodeAll(LabeledInputRenderer.java:215)
      at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)
      at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:923)
      at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1681)
      at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:624)
      at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:3201)
      at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:641)
      at oracle.adfinternal.view.faces.renderkit.rich.PanelWindowRenderer.encodeContent(PanelWindowRenderer.java:689)
      at oracle.adfinternal.view.faces.renderkit.rich.PanelWindowRenderer.encodeAll(PanelWindowRenderer.java:534)
      at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)
      at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:923)
      at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1681)
      at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:624)
      at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:3201)
      at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:641)
      at oracle.adf.view.rich.render.RichRenderer.encodeAllChildrenInContext(RichRenderer.java:3062)
      at oracle.adfinternal.view.faces.renderkit.rich.FormRenderer.encodeAll(FormRenderer.java:274)
      at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)
      at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:923)
      at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1681)
      at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:624)
      at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:3201)
      at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:641)
      at oracle.adf.view.rich.render.RichRenderer.encodeAllChildrenInContext(RichRenderer.java:3062)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer.encodeAll(DocumentRenderer.java:1275)
      at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)
      at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:923)
      at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1681)
      at oracle.adfinternal.view.faces.context.PartialViewContextImpl._processRender(PartialViewContextImpl.java:321)
      at oracle.adfinternal.view.faces.context.PartialViewContextImpl.processPartial(PartialViewContextImpl.java:152)
      at javax.faces.component.UIViewRoot.encodeChildren(UIViewRoot.java:974)
      at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1674)
      at oracle.adfinternal.view.faces.component.AdfViewRoot.encodeAll(AdfViewRoot.java:91)
      at com.sun.faces.application.view.JspViewHandlingStrategy.doRenderView(JspViewHandlingStrategy.java:431)
      at com.sun.faces.application.view.JspViewHandlingStrategy.renderView(JspViewHandlingStrategy.java:233)
      at org.apache.myfaces.trinidadinternal.application.ViewDeclarationLanguageFactoryImpl$ChangeApplyingVDLWrapper.renderView(ViewDeclarationLanguageFactoryImpl.java:350)
      at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:131)
      at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:273)
      at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:165)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:1035)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:342)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:236)
      at javax.faces.webapp.FacesServlet.service(FacesServlet.java:509)
      at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
      at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
      at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
      at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:173)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      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 weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
      at java.security.AccessController.doPrivileged(Native Method)
      at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
      at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
      at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
      at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
      at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
      at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
      at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
      at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    <RegistrationConfigurator> <handleError> ADF_FACES-60096:Server Exception during PPR, #1
    java.lang.NullPointerException
      at oracle.adfinternal.view.faces.model.binding.FacesCtrlLOVBinding.getColumnDescriptors(FacesCtrlLOVBinding.java:1978)
      at oracle.adfinternal.view.faces.model.binding.FacesCtrlLOVBinding.access$2000(FacesCtrlLOVBinding.java:93)
      at oracle.adfinternal.view.faces.model.binding.FacesCtrlLOVBinding$TableModelImpl.getColumnDescriptors(FacesCtrlLOVBinding.java:1963)
      at oracle.adfinternal.view.faces.renderkit.rich.listOfValues.TableModelUtils.createTableFromEL(TableModelUtils.java:93)
      at oracle.adfinternal.view.faces.renderkit.rich.SimpleInputListOfValuesRendererBase._createSearchResultsTable(SimpleInputListOfValuesRendererBase.java:965)
      at oracle.adfinternal.view.faces.renderkit.rich.SimpleInputListOfValuesRendererBase._createSearchContentFacet(SimpleInputListOfValuesRendererBase.java:1218)
      at oracle.adfinternal.view.faces.renderkit.rich.SimpleInputListOfValuesRendererBase._renderPopup(SimpleInputListOfValuesRendererBase.java:852)
      at oracle.adfinternal.view.faces.renderkit.rich.SimpleInputListOfValuesRendererBase.renderElementContent(SimpleInputListOfValuesRendererBase.java:452)
      at oracle.adfinternal.view.faces.renderkit.rich.FormInputRenderer.encodeAllAsElement(FormInputRenderer.java:152)
      at oracle.adfinternal.view.faces.renderkit.rich.FormElementRenderer.encodeAll(FormElementRenderer.java:164)
      at oracle.adf.view.rich.render.RichRenderer.delegateRenderer(RichRenderer.java:1700)
      at oracle.adfinternal.view.faces.renderkit.rich.LabeledInputRenderer.renderFieldCellContents(LabeledInputRenderer.java:228)
      at oracle.adfinternal.view.faces.renderkit.rich.LabelLayoutRenderer.renderFieldCell(LabelLayoutRenderer.java:528)
      at oracle.adfinternal.view.faces.renderkit.rich.LabelLayoutRenderer.encodeAll(LabelLayoutRenderer.java:305)
      at oracle.adfinternal.view.faces.renderkit.rich.LabeledInputRenderer.encodeAll(LabeledInputRenderer.java:215)
      at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)
      at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:923)
      at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1681)
      at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:624)
      at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:3201)
      at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:641)
      at oracle.adfinternal.view.faces.renderkit.rich.PanelWindowRenderer.encodeContent(PanelWindowRenderer.java:689)
      at oracle.adfinternal.view.faces.renderkit.rich.PanelWindowRenderer.encodeAll(PanelWindowRenderer.java:534)
      at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)
      at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:923)
      at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1681)
      at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:624)
      at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:3201)
      at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:641)
      at oracle.adf.view.rich.render.RichRenderer.encodeAllChildrenInContext(RichRenderer.java:3062)
      at oracle.adfinternal.view.faces.renderkit.rich.FormRenderer.encodeAll(FormRenderer.java:274)
      at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)
      at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:923)
      at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1681)
      at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:624)
      at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:3201)
      at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:641)
      at oracle.adf.view.rich.render.RichRenderer.encodeAllChildrenInContext(RichRenderer.java:3062)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer.encodeAll(DocumentRenderer.java:1275)
      at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)
      at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:923)
      at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1681)
      at oracle.adfinternal.view.faces.context.PartialViewContextImpl._processRender(PartialViewContextImpl.java:321)
      at oracle.adfinternal.view.faces.context.PartialViewContextImpl.processPartial(PartialViewContextImpl.java:152)
      at javax.faces.component.UIViewRoot.encodeChildren(UIViewRoot.java:974)
      at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1674)
      at oracle.adfinternal.view.faces.component.AdfViewRoot.encodeAll(AdfViewRoot.java:91)
      at com.sun.faces.application.view.JspViewHandlingStrategy.doRenderView(JspViewHandlingStrategy.java:431)
      at com.sun.faces.application.view.JspViewHandlingStrategy.renderView(JspViewHandlingStrategy.java:233)
      at org.apache.myfaces.trinidadinternal.application.ViewDeclarationLanguageFactoryImpl$ChangeApplyingVDLWrapper.renderView(ViewDeclarationLanguageFactoryImpl.java:350)
      at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:131)
      at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:273)
      at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:165)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:1035)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:342)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:236)
      at javax.faces.webapp.FacesServlet.service(FacesServlet.java:509)
      at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
      at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
      at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
      at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:173)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      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 weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
      at java.security.AccessController.doPrivileged(Native Method)
      at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
      at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
      at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
      at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
      at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
      at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
      at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
      at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Thanks
    Vikram

    The sample you are referring to is quite old and for an already deprecated jdev version.
    Try the solution given inhttps://blogs.oracle.com/shay/entry/dependent_lovs_in_an_afquery_c
    Timo

  • LOV issue in af:query

    Hi,
    I have a "Type" attribute (LOV) in the VO which saves the code in the DB and displays the description.
    I have built a Defined a view Criteria for this "Type" attribute. When i use this in the af:query component this attribute is displayed as Input text.
    However if i use the Default generated "implicit view criteria" the "Type" attribute is displayed as LOV.
    Anyone facing this issue. Is this a bug in JDeveloper?
    I am currently using 11.1.1.4
    Thanks
    Ajay
    Edited by: Ajay G M on May 9, 2011 8:55 AM
    Edited by: Ajay G M on May 9, 2011 8:55 AM

    Again, that's what you set it up to do. A lov can only be used with equal (as it doesn't make sense to use anything else). If you set such an attribute to startWith it works, but uses the index of the lov instead of the value. This is the reason you get the number error.
    If you add the name attribute a second time to the query, this time don't set it up to show a lov, You should be able to use the second attribute for startWith queries.
    Timo

  • 11.5.9 iExpense DFF LOV issue

    Hi All,
    in 11.5.9 iExpense implementation i am facing a issue in the DFF LOV's.
    In 11.5.9 the DFF's are dynamically rendered in detailsCO. Some of the DFF's have a LOV attached. which is rendered along with a torchlite symbol
    1. if user types in say 'Yes' and there is one matching value ideally it should not open the search region, but it always opens the search window.
    * This issue is not there in any other object (non Dff objects) which has serach capability.
    * This issue is not there in 11.5.10 instance , as Oracle has removed the DetailsCO completely.
    is this something do with a property?
    2. Can i set the property to show an advance search window (with and or options) instead of standard one (with one search criteria at a time - current functionality)? if yes means which property i have to set ?
    thanks in advance

    Hi Saurabh,
    Thanks for your advice. The usage of context sensitive flexfield is working for most of the scenarios, but failed while trying to add an employee as contact to other emplyee.
    In the contact screen, the newly added contact is reffered with contact type as employee.
    The error message is given below.
    PP-FND-01242: Cannot read value from field PERSON.EMPLOYEE_NUMBER
    Cause:  The field PERSON.EMPLOYEE_NUMBER could not be located or read.
    Action:  This error is normally the result of an incorrectly-entered field name string in a trigger, or a field name string that does not uniquely specify a field in your form.  Correct your trigger logic to precisely specify a valid field.
    Thanks.

  • Forms Personalization for an LOV -- Issue

    Dear All,
    I want to restrict the Expenditure Types LOV in the Expenditure Entry screen in Projects Module. I am using forms personalization for this.
    The restriction is done as per Operating Unit.
    The LOV query used by the current system is:
    /* Formatted on 2010/02/04 13:01 (Formatter Plus v4.5.2) */
    SELECT et.expenditure_type, et.unit_of_measure uom, et.cost_rate_flag,
    et.description, et.system_linkage_function system_linkage_function,
    et.system_linkage_m
    FROM pa_expenditure_types_expend_v et, pa_expenditure_types_desc_v dt
    WHERE et.expenditure_type = dt.expenditure_type
    AND :exp_items.expenditure_item_date
    BETWEEN et.expnd_typ_start_date_active
    AND NVL (
    et.expnd_typ_end_date_active,
    :exp_items.expenditure_item_date
    AND :exp_items.expenditure_item_date
    BETWEEN et.sys_link_start_date_active
    AND NVL (
    et.sys_link_end_date_active,
    :exp_items.expenditure_item_date
    AND ( et.system_linkage_function = :GROUPS.system_linkage_function
    OR ( :GROUPS.system_linkage_function = 'ST'
    AND et.system_linkage_function = 'OT'
    AND ( NVL (
    :expenditures.denom_currency_code,
    :expenditures.acct_currency_code
    ) = :expenditures.acct_currency_code
    OR ( :expenditures.denom_currency_code !=
    :expenditures.acct_currency_code
    AND et.cost_rate_flag = 'N'
    ORDER BY et.expenditure_type
    I am adding a DECODE condition to the above query, to make the following modified query:
    /* Formatted on 2010/02/04 13:01 (Formatter Plus v4.5.2) */
    SELECT et.expenditure_type, et.unit_of_measure uom, et.cost_rate_flag,
    et.description, et.system_linkage_function system_linkage_function,
    et.system_linkage_m
    FROM pa_expenditure_types_expend_v et, pa_expenditure_types_desc_v dt
    WHERE et.expenditure_type = dt.expenditure_type
    AND :exp_items.expenditure_item_date
    BETWEEN et.expnd_typ_start_date_active
    AND NVL (
    et.expnd_typ_end_date_active,
    :exp_items.expenditure_item_date
    AND :exp_items.expenditure_item_date
    BETWEEN et.sys_link_start_date_active
    AND NVL (
    et.sys_link_end_date_active,
    :exp_items.expenditure_item_date
    AND ( et.system_linkage_function = :GROUPS.system_linkage_function
    OR ( :GROUPS.system_linkage_function = 'ST'
    AND et.system_linkage_function = 'OT'
    AND ( NVL (
    :expenditures.denom_currency_code,
    :expenditures.acct_currency_code
    ) = :expenditures.acct_currency_code
    OR ( :expenditures.denom_currency_code !=
    :expenditures.acct_currency_code
    AND et.cost_rate_flag = 'N'
    AND DECODE (
    (SELECT DISTINCT fdfcuv.application_column_name
    FROM hr_operating_units hou,
    pa_lookups pl,
    fnd_descr_flex_col_usage_vl fdfcuv
    WHERE pl.meaning = hou.NAME
    AND fdfcuv.end_user_column_name = pl.predefined_flag
    AND pl.lookup_type = 'PFC_OU_TO_DIVISION_LOOKUP'
    AND hou.NAME = :GROUPS.operating_unit
    AND fdfcuv.descriptive_flexfield_name =
    'PA_EXPENDITURE_TYPES_DESC_FLEX'),
    'ATTRIBUTE1', dt.attribute1,
    'ATTRIBUTE2', dt.attribute2,
    'ATTRIBUTE3', dt.attribute3,
    'ATTRIBUTE4', dt.attribute4
    ) = 'Y'
    ORDER BY et.expenditure_type
    The Apply now button in Forms Personalization screen throws up the following error:
    FRM-41076: Error populating Group.
    followed by...
    FRM-41072: Cannot create Group %s
    I first query above is also getting accepted with a condition like "AND ROWNUM = 1'
    but the 2nd query is throwing errors...
    Please Help.

    This worked..
    Just I don't have to press the Apply Now button.
    Just saved and executed it in form perfectly
    Thanks !!

  • Variable of Compound Characteristic - Crystal Parameter LOV issue

    Hi Experts,
    I have Characteristic with Compound Key in SAP BW 7.01 SP6. This Characteristic use to store the Purchase Order Item Line. The Compound Key is the Purchase Order Document.
    So I will have the following fields created for this Characteristic:
    Compound Key (Purchase Order Document) 5600001982, Purchase Order Item Line 10
    I created a Query for this Characteristic and I have the following display as result of this Characteristic:
    10 ...
    20 ...
    30 ...
    All works fine.
    Now I created the Crystal Report from this Query. When I display this Characteristic in Crystal Report, I have the following displayed as LOV  and in the prompt page where we use ?parameter
    5600001982/10
    5600001982/20
    5600001982/30
    This is happening for SAP provided default compounded objects such as "Depreciation Area".
    Is there any alternate to get the LOV for these parameters soted out.Please help
    Regards
    Mallik

    In the below thread Ingo agrees that this is expected bahvior, but this was replied long back and we want to check if it works fine with BW 7.01 Sp6 and BO XI 3.1 Sp3.
    SAP Integration Kits 3.0 with Crystal Report 2008

  • LOV ISSUES in Query cirteria filed

    I'm working with the latest version of jdeveloper 11g(For ADF application).
    I have supplier filed in query criteria of supplier page..
    Supplier is attached with an LOV having the list of suppliers which are coming from a query.
    I had change the supplier fieled properties "Auto submit=True"(supplier_vo.xml),in order to get the list of suppliers in pop up list,when i do tab out from supplier filed of query criteria.
    Ex:if i enter 'Big' in the supplier query field and do tab out,i should get the Pop list having the suppliers starts with "Big"(Bigmart)
    My problem is that ,for some suppliers i am not able to get the Pop list, when i enter some thing(Big) and do tab out in the supplier field.
    Especially the LOV is having only one supplier,i am not able to get the list of values,instead i am getting the first record of LOV in the supplier field.
    For other suppliers its giving all the suppliers in the poplist correctly.
    Any solution for that? Thanks you very much!

    I am using the below code in .jsff page
    <af:column sortProperty="Supplier" filterable="true"
    sortable="true"
    headerText="#{bindings.SupplierCapacityOverloadVO11.hints.Supplier.label}"
    id="c258">
    <af:inputListOfValues id="supplierId"
    popupTitle="Search and Select: #{bindings.SupplierCapacityOverloadVO11.hints.Supplier.label}"
    value="#{row.bindings.Supplier.inputValue}"
    model="#{row.bindings.Supplier.listOfValuesModel}"
    required="#{bindings.SupplierCapacityOverloadVO11.hints.Supplier.mandatory}"
    columns="#{bindings.SupplierCapacityOverloadVO11.hints.Supplier.displayWidth}"
    shortDesc="#{bindings.SupplierCapacityOverloadVO11.hints.Supplier.tooltip}">
    <f:validator binding="#{row.bindings.Supplier.validator}"/>
    </af:inputListOfValues>
    </af:column>
    Edited by: user11286619 on Mar 3, 2010 7:37 AM

  • Cascaded LOV issue

    Hi,
    I have a cascaded LOVs. Ideally it should work like this.
    Select a value from the first combo box LOV and based on the value selected, populate the second LOV and so on.
    When first LOV changes, in the second LOV, the first element should get selected by default. However this is not happening. Instead user is forced to choose an option from the LOV manually.
    Any help in how to select the first element in the LOV automatically?
    Regards,
    Raghu

    Hi,
    The solution shouldn't be that complicate. Just create a valueChangeListener in your first LOV's component.
    You need to update your model in the valueChangeEvent with your new value of yourFirstLOV:
        public void countryChanged(ValueChangeEvent valueChangeEvent) {
            ADFUtils.setValueToEL("#{bindings.yourFirstLOV.inputValue}",valueChangeEvent.getNewValue());
            ADFUtils.setValueToEL("#{bindings.yourSecondLOV.inputValue}",0);
       The value for LOV are actually the indexes on the list of the element.
    If you are no using ADFUtils here is the implementation of that method:
        public static void setValueToEL(String el, Object val) {
            FacesContext facesContext = FacesContext.getCurrentInstance();
            ELContext elContext = facesContext.getELContext();
            ExpressionFactory expressionFactory =   facesContext.getApplication().getExpressionFactory();
            ValueExpression exp = expressionFactory.createValueExpression(elContext, el, Object.class);
            exp.setValue(elContext, val);
        }   Try this and post your results. Then only bad thing I can see from this is that if your name's bindings ever change (for example, change from yourSecondLOV to yourSecondLOV2) then you will have to update the java code.
    Regards
    Sorry, I had to edit because I made a mistake, now you should be able to try and post your results
    Edited by: Alejandro T. Lanz on Mar 4, 2013 8:41 AM

  • LOV issue for Crystal Report 4.0 ( Enterprise ) using the BICS connection

    Hi Expert,
    I am working for one our client which is using Crystal Report Enterprise 4.0 SP 2 i am facing the following problem with the LOV .
    - I have created the crystal report on top of BEx query using the OLAP connection in CMC .
    I have the variable at BEx query level which have list of value around 100 K and user want to search through that LOV in order to make his selection but as soon as i include that variable in my Query and run my CR my report crashes  and i cannot run the report .
    I gave the user the option of manual input of value to that variable it does not work as it uses the BICS connection and i read somewhere we cannot use the manual input in case of BICS connection for crystal report  you have to select the value from the LOV .
    My Question is is there any workaround if we can restrict our LOV to some extent and let the user to select and search from that any setting if we have at query designer level to restrict the LOV to burst in the report .
    Any input will be appreciated .
    Thanks,
    Vibhav

    Hello,
    Please log a case in Service Market Place and a Rep will call you to discuss your question.
    Thank you
    Don

  • LOV Issues

    Hi All,
    I have a custom OAF page having two LOV fields.
    So my requirement is to add two hardcoded values in the list of values for the fields.
    Example: LOV Field1 : 1
    2
    3
    Now i want
    1
    2
    3
    'hhhh'
    'kkk'
    I tried to hard code these two values in the VO query but it is not working, please help me on this.
    Thanks

    Hi,
    You can use the below query:
    SELECT
    ABCEO.DATA_ID,
    ABCEOEO.ORDER,
    ABCEOEO.QUANTITY,
    ABCEOEO.PRICE,
    FROM XXX ABCEO
    union all
    Select
    null, null, null, null,'ABC' from dual
    union all
    null, null, null, null,'XYZ' from dual
    make sure you have datatype matched in the union query.
    Regards
    Apurba K Saha

  • Oracle Discoverer LOV issue

    Hi,
    I am new to discoverer scenario. I need to implement a conditional selection in the LOV.
    Scenario:
    Project_Status_LOV with values :- Active, Closed, Transferred etc..
    User should select 'Active' as one option, other statuses clubbed together as other option.
    I selected the checkbox('Let User Enter Multiple Values).
    Now user is able to select all the options together, which i want to avoid. How can i do that?

    Hi,
    You cannot do what you are asking. The user can either select one value from an LOV or if the checkbox is ticked multiple values. You cannot group values together in a LOV.
    So you could use 2 LOVs and use the cascading LOVs feature. So the first LOV has 2 values, Active and Non-Active, and the second LOV has 5 values. The second LOV would be linked to the first LOV so that only the Active value would be shown if Active had been selected in the first LOV. To do this you would set up a calculated item in the folder which returned either Active or Non-Active and build attach your first LOV to this item.
    Rod West

  • OTL Timecard -- Hours Type LOV issue

    I am facing some problem with the timecard. Scenerio is there is one employee who is eligible for all premium type elements.
    Now the employee data is updated.Now employee is eligible for restricted premium types.
    Lets say there is a timecard from 26th july,2010 to 2nd aug,2010. Employee data is updated on 28th jul,2010.
    Now in timecard for that employee i am able to see duplicate values in Hours type field.
    eg. Lets say employee till 27th jul,2010 is able to view premium entries like
    1. Overtime Weekend
    2. Overtime Weekday
    3. Day Shift allowance etc.
    and from 28th jul,2010 as the employee data is changed he will only see the Day Shift allowance in timecard.
    But employee while entering is able to see Day shift allowance twice along with Overtime Weekend and Overtime Weekday for time card 26th july,2010 to 2nd aug,2010.
    What would be the solution for that?

    I would say its the correct functionality. Even though, all the premium elements are getting displayed, they won't pass the validation on either on time entry or during transfer process. What's the otl patching level?
    If you are still concerned, raise an SR.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Lov logic in oracle forms 10g R2

    Hi Friends,
      I need your help in solving this Forms 10gR2 LOV Issue.  I have an lov record_group that is based on a complex view
       lov_view. The record_group is
                        select lv_seq_no, lv_wh_code,lv_bin_loc,lv_inv_qty
                          from lov_view
                         where 1 = 1 etc
       lv_int_qty in the view is a calculated field (rcpt_qty - issue_qty)
    When the LOV is first invoked let say
    lv_seq_no,  lv_wh_code,  lv_bin_loc,  lv_inv_qty
        1               001               DEFAULT    100   
    In the form field, I have a database column issue_qty, out of the 100 lv_inv_qty, I issued 20 in the first record,
    the next lov for lv_seq_no 1 lv_inv_qty should be 80, however since, the first record has not been posted, the Lov is showing the
    exact list for subsequent records
    lv_seq_no,  lv_wh_code,  lv_bin_loc,  lv_inv_qty
        1               001               DEFAULT    100  
    Since, I can not use post in when-validate-record or post_change or any of the validation trigger, I am at a lost on how to go about this.
    In a nutshell, the lv_inv_qty should decrease from subsequent lov based on the issue_qty from the form
    Thanks all 

    Hi,
    I have already given a correct answer for the similar thread:
    Re: How to update the LOV without commit
    I hope this will help.

  • Portal Problem:  Workaround for NOT alphabetizing paramters in portal form?

    Hello all,
    In Portal, I am defining 6i reports. Portal has forms that pass these parameters to 6i reports but they keep showing up in alphabetical order. So, the rep_end_date is appearing before the rep_start_date.
    These are the steps:
    1. Go to Navigator
    2. Click on Administer
    3. Click on Display Portlet Repository
    4. Under Seeded Providers, Click Oracle Reports Security
    5. Click on Reports Definition File Access
    6. Click Create Reports Definition File Access
    7. Go through the steps until you get to OPTIONAL PARAMETERS
    Enter REP_START_DATE
    Enter REP_END_DATE
    8. When you are finished select done
    9. Click on Customize
    10. In the form you will see that the REP_END_DATE appears before the
    REP_START_DATE
    It is not logical for the users to enter the end date parameter first and then the start date second.
    I tried to work around it by changing rep_start_date to arep_start_date. This
    fixes the appearance on the form. Unfortunately this change causes the report
    not to work. The parameters used in the report 6i must match the parameters in
    portal exactly.
    I have been in contact with ORACLE with a TAR. They replied that I should ask you for any code that you might have or ideas.
    I have been brainstorming some ideas:
    1. Going into the report and renaming rep_start_date to something like
    raep_start_date. The advantage would be that it would fix the problem. The
    disadvantage is that we would have to go into every report and check for
    wherever that bind variable is named and change it. It would be tedious.
    2. Another option would be to create a form using form builder for each
    report. This also would be tedious and would require the forms server to be
    configured. We aren't sure whether a report being called from a form would
    process faster than just a report being called from portal or not. We are not
    as experienced in using form builder, however we have successfully created one.
    The advantage would be that it would solve the problem. The disadvantages is
    that it might be more time consuming.
    3. I suppose yet another option would be to create a html page as a portlet
    and then pass the parameters to the report that way. This would be where
    coding would come into play. I have been researching this option but I think
    that we would have to hard code the specific paramters used for each of the
    100s of reports. There might be a LOV issue with this one.
    4. Final option is to hope that one of the portal developers would have code
    that would easily fix this problem on OTN.
    I look forward to any information that you could provide.
    Thanks and best regards,
    Lindsay

    An alternative, maybe simpler, is to join together the exported segments using Quicktime Player.  Importing into iMovie again might result in degradation of video quality.
    Geoff.

  • Problem with ADF table in  Create Insert Mode

    Hi All,
    i am using jdev version 11.1.1.5.0.
    i have create one adf table in create insert mode. table have composite primary key (divn applyno,applydt,sno,frloc,toloc,frdt,todt).
    now when i create a row in this table it is running fine. but when i change on todt column field.
    property not found exception occur.
    log is following-
    javax.el.PropertyNotFoundException: Target Unreachable, identifier 'row' resolved to null
         at com.sun.el.parser.AstValue.getTarget(Unknown Source)
         at com.sun.el.parser.AstValue.isReadOnly(Unknown Source)
         at com.sun.el.ValueExpressionImpl.isReadOnly(Unknown Source)
         at oracle.adfinternal.view.faces.renderkit.rich.EditableValueRenderer._getUncachedReadOnly(EditableValueRenderer.java:486)
         at oracle.adfinternal.view.faces.renderkit.rich.EditableValueRenderer.getReadOnly(EditableValueRenderer.java:400)
         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:293)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.__rendererDecode(UIXComponentBase.java:1118)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.decode(UIXComponentBase.java:717)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.processDecodes(UIXComponentBase.java:800)
         at org.apache.myfaces.trinidad.component.UIXEditableValue.processDecodes(UIXEditableValue.java:236)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl$ApplyRequestValuesCallback.invokeContextCallback(LifecycleImpl.java:1278)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1410)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1330)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1424)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1330)
         at org.apache.myfaces.trinidad.component.UIXCollection.invokeOnComponent(UIXCollection.java:1082)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1330)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1424)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1330)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1424)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1330)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1424)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1330)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnNamingContainerComponent(UIXComponentBase.java:1380)
         at oracle.adf.view.rich.component.fragment.UIXRegion.invokeOnComponent(UIXRegion.java:555)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1330)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1424)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1330)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1424)
         at oracle.adf.view.rich.component.rich.RichDocument.invokeOnComponent(RichDocument.java:168)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:720)
         at javax.faces.component.UIComponentBase.invokeOnComponent(UIComponentBase.java:678)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:334)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:186)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    <RegistrationConfigurator> <handleError> ADF_FACES-60096:Server Exception during PPR, #2
    javax.el.PropertyNotFoundException: Target Unreachable, identifier 'row' resolved to null
         at com.sun.el.parser.AstValue.getTarget(Unknown Source)
         at com.sun.el.parser.AstValue.isReadOnly(Unknown Source)
         at com.sun.el.ValueExpressionImpl.isReadOnly(Unknown Source)
         at oracle.adfinternal.view.faces.renderkit.rich.EditableValueRenderer._getUncachedReadOnly(EditableValueRenderer.java:486)
         at oracle.adfinternal.view.faces.renderkit.rich.EditableValueRenderer.getReadOnly(EditableValueRenderer.java:400)
         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:293)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.__rendererDecode(UIXComponentBase.java:1118)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.decode(UIXComponentBase.java:717)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.processDecodes(UIXComponentBase.java:800)
         at org.apache.myfaces.trinidad.component.UIXEditableValue.processDecodes(UIXEditableValue.java:236)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl$ApplyRequestValuesCallback.invokeContextCallback(LifecycleImpl.java:1278)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1410)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1330)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1424)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1330)
         at org.apache.myfaces.trinidad.component.UIXCollection.invokeOnComponent(UIXCollection.java:1082)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1330)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1424)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1330)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1424)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1330)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1424)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1330)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnNamingContainerComponent(UIXComponentBase.java:1380)
         at oracle.adf.view.rich.component.fragment.UIXRegion.invokeOnComponent(UIXRegion.java:555)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1330)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1424)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1330)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1424)
         at oracle.adf.view.rich.component.rich.RichDocument.invokeOnComponent(RichDocument.java:168)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:720)
         at javax.faces.component.UIComponentBase.invokeOnComponent(UIComponentBase.java:678)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:334)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:186)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)

    Is There any solution? it is very urgent.
    i have also read this post.
    lov issue
    but it is not fit in my use case. it there any better way to do this.

Maybe you are looking for

  • Macbook air 2012 battery issues after upgrading to Yosemite

    Ever since upgrading to Yosemite about 2 months ago the battery on my MBA mid-2012 has been acting strangely. The battery drains considerably while sleeping with the lid closed. I don't use the laptop every day so it can often sleep for a few days. I

  • How to delete multiple photos

    how to delete multiple photos at once

  • I got a big problem that iPlanet 6.0 SP2

    Hi, I got a big problem that iPlanet 6.0 SP2 is in cycle of restart. The web server's error logs is the following: [16/Jul/2002:00:30:05] info ( 8545): successful server startup [16/Jul/2002:00:30:05] info ( 8545): iPlanet-WebServer-Enterprise/6.0SP2

  • Live cache start and stop

    Hi Guys, I have some problem in live cache in APO , i was posting in APO forum could not able to find clear findings so i am diverting my questions here in this forum basically the APO and R/3 system are running smoothly with no problem in CIF but ac

  • How to: burn keynote slideshow to DVD

    After several attempts, here I am. I've been unable to burn a DVD of my Keynote slideshows (including text & music) to a DVD that will play on your everyday DVD player. Your time & input is appreciated. Zirkel