Issue with Extending EO based VO

Hi Guys,
I am trying to extend a EO based VO by adding an extra column which comes from other table.I have written a function to retrieve that column which is nothing but a flag ( Y or N or Null)
The below is the modified Query with the added column in the bold.
SELECT StructureEO.ID,
StructureEO.NAME,
StructureEO.PARENT_ID,
StructureEO.PARENT_OBJ_TYPE,
StructureEO.ARTICLE_ID,
StructureEO.ARTICLE_VERSION_ID,
StructureEO.DISPLAY_SEQ,
StructureEO.LABEL,
StructureEO.OBJ_TYPE,
StructureEO.DOC_ID,
StructureEO.DOC_TYPE,
StructureEO.MANDATORY_YN,
StructureEO.ALTERNATE_YN,
StructureEO.STANDARD_YN,
StructureEO.ARTICLE_FROM_EXPERT,
StructureEO.OBJECT_VERSION_NUMBER,
' '||StructureEO.LABEL||' '||StructureEO.NAME DISPLAY,
DECODE(StructureEO.OBJ_TYPE,
'ARTICLE', 'OkcTermsStructDtlsMandatoryEnabled',
'OkcTermsStructDtlsMandatoryDisabled') MANDATORY_CHECKBOX,
DECODE(StructureEO.OBJ_TYPE,
'ARTICLE', DECODE(StructureEO.MANDATORY_YN,
'Y', 'OkcTermsStructDtlsMandatory',
'OkcTermsStructDtlsNotMandatory'),
'OkcTermsStructDtlsNotMandatory') MANDATORY_IMAGE,
DECODE(StructureEO.ALTERNATE_YN,
'Y', 'OkcTermsStructDtlsAlternatesEnabled',
'N', 'OkcTermsStructDtlsAlternatesNotApplied',
'OkcTermsStructDtlsAlternatesNotApplied') ALTERNATES_IMAGE,
okc_terms_util_grp.enable_update(
StructureEO.OBJ_TYPE,
StructureEO.DOC_TYPE,
StructureEO.STANDARD_YN) UPDATE_IMAGE,
okc_terms_util_grp.enable_delete(
StructureEO.OBJ_TYPE,
StructureEO.MANDATORY_YN,
StructureEO.STANDARD_YN,
               StructureEO.DOC_TYPE) REMOVE_IMAGE,
DECODE(StructureEO.STANDARD_YN,
'N', 'OkcTermsStructDtlsNonStandard',
'OkcTermsStructDtlsNotApplied') NON_STD_IMAGE,
DECODE(StructureEO.ARTICLE_FROM_EXPERT,
'Y', 'OkcTermsStructDtlsFromExpert',
'OkcTermsStructDtlsNotFromExpert') EXPERT_IMAGE,
DECODE(StructureEO.OBJ_TYPE,
'ARTICLE', 'tree_document.gif',
'SECTION', NULL, --'folder.gif'
'tree_contract.gif') TREE_ICON,
NULL DETAILS_URL,
LOCK_TEXT(StructureEO.article_id,StructureEO.article_version_id) Unprotected
FROM OKC_TERMS_STRUCTURE_V StructureEO
WHERE StructureEO.DOC_ID = :1
AND StructureEO.DOC_TYPE = :2
AND ((StructureEO.OBJ_TYPE = 'ARTICLE' AND StructureEO.ARTICLE_VERSION_ID IS NOT NULL) OR
(StructureEO.OBJ_TYPE <> 'ARTICLE'))
Even though the query is working fine and Query is valid in the VO extension ,it is not able to add any column to the extended VO and even the column details are not present in VO.xml (Not even a Transient variable like people discussed in the forums).I have changed the VO.xml  and added the new column details and can be able to see it in attribute list.I import the VO and bounced the server but the page is throwing me the an SQL exception error but if I removed the new column added in the query and import it ,it is working fine but I need the extra column to be added in the VO.
The below is the error .
oracle.apps.fnd.framework.OAException: oracle.jbo.SQLStmtException: JBO-27122: SQL error during statement preparation. Statement: SELECT * FROM (SELECT StructureEO.ID,
StructureEO.NAME,
StructureEO.PARENT_ID,
StructureEO.PARENT_OBJ_TYPE,
StructureEO.ARTICLE_ID,
StructureEO.ARTICLE_VERSION_ID,
StructureEO.DISPLAY_SEQ,
StructureEO.LABEL,
StructureEO.OBJ_TYPE,
StructureEO.DOC_ID,
StructureEO.DOC_TYPE,
StructureEO.MANDATORY_YN,
StructureEO.ALTERNATE_YN,
StructureEO.STANDARD_YN,
StructureEO.ARTICLE_FROM_EXPERT,
StructureEO.OBJECT_VERSION_NUMBER,
' '||StructureEO.LABEL||' '||StructureEO.NAME DISPLAY,
DECODE(StructureEO.OBJ_TYPE,
'ARTICLE', 'OkcTermsStructDtlsMandatoryEnabled',
'OkcTermsStructDtlsMandatoryDisabled') MANDATORY_CHECKBOX,
DECODE(StructureEO.OBJ_TYPE,
'ARTICLE', DECODE(StructureEO.MANDATORY_YN,
'Y', 'OkcTermsStructDtlsMandatory',
'OkcTermsStructDtlsNotMandatory'),
'OkcTermsStructDtlsNotMandatory') MANDATORY_IMAGE,
DECODE(StructureEO.ALTERNATE_YN,
'Y', 'OkcTermsStructDtlsAlternatesEnabled',
'N', 'OkcTermsStructDtlsAlternatesNotApplied',
'OkcTermsStructDtlsAlternatesNotApplied') ALTERNATES_IMAGE,
okc_terms_util_grp.enable_update(
StructureEO.OBJ_TYPE,
StructureEO.DOC_TYPE,
StructureEO.STANDARD_YN) UPDATE_IMAGE,
okc_terms_util_grp.enable_delete(
StructureEO.OBJ_TYPE,
StructureEO.MANDATORY_YN,
StructureEO.STANDARD_YN,
               StructureEO.DOC_TYPE) REMOVE_IMAGE,
DECODE(StructureEO.STANDARD_YN,
'N', 'OkcTermsStructDtlsNonStandard',
'OkcTermsStructDtlsNotApplied') NON_STD_IMAGE,
DECODE(StructureEO.ARTICLE_FROM_EXPERT,
'Y', 'OkcTermsStructDtlsFromExpert',
'OkcTermsStructDtlsNotFromExpert') EXPERT_IMAGE,
DECODE(StructureEO.OBJ_TYPE,
'ARTICLE', 'tree_document.gif',
'SECTION', NULL, --'folder.gif'
'tree_contract.gif') TREE_ICON,
NULL DETAILS_URL,
XXLC_LOCK_TEXT(StructureEO.article_id,StructureEO.article_version_id) Unprotected
FROM OKC_TERMS_STRUCTURE_V StructureEO
WHERE StructureEO.DOC_ID = :1
AND StructureEO.DOC_TYPE = :2
AND ((StructureEO.OBJ_TYPE = 'ARTICLE' AND StructureEO.ARTICLE_VERSION_ID IS NOT NULL) OR
(StructureEO.OBJ_TYPE <> 'ARTICLE'))) QRSLT WHERE (:3 = PARENT_ID) AND (:4 = PARENT_OBJ_TYPE) ORDER BY DISPLAY_SEQ
     at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:896)
     at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(OAPageErrorHandler.java:1169)
     at oracle.apps.fnd.framework.webui.OAPageBean.renderDocument(OAPageBean.java:3136)
     at oracle.apps.fnd.framework.webui.OAPageBean.renderDocument(OAPageBean.java:2931)
     at OA.jspService(_OA.java:228)
     at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
     at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
     at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
     at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
     at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
     at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
     at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259)
     at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:51)
     at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193)
     at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:284)
     at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)
     at com.evermind.server.http.EvermindPageContext.forward(EvermindPageContext.java:395)
     at OA.jspService(_OA.java:221)
     at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
     at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
     at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
     at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
     at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
     at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
     at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
     at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
     at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
     at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
     at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
     at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
     at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
     at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
     at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
     at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
     at java.lang.Thread.run(Thread.java:619)
## Detail 0 ##
java.sql.SQLException: Attempt to set a parameter name that does not occur in the SQL: Bind_DocId
     at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:70)
     at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:133)
     at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:199)
     at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:263)
     at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:271)
     at oracle.jdbc.driver.OraclePreparedStatement.setObjectAtName(OraclePreparedStatement.java:11110)
     at oracle.jdbc.driver.OraclePreparedStatementWrapper.setObjectAtName(OraclePreparedStatementWrapper.java:815)
     at oracle.jbo.server.OracleSQLBuilderImpl.bindParamValue(OracleSQLBuilderImpl.java:3919)
     at oracle.jbo.server.BaseSQLBuilderImpl.bindParametersForStmt(BaseSQLBuilderImpl.java:3335)
     at oracle.jbo.server.ViewObjectImpl.bindParametersForCollection(ViewObjectImpl.java:13827)
     at oracle.jbo.server.QueryCollection.buildResultSet(QueryCollection.java:804)
     at oracle.jbo.server.QueryCollection.executeQuery(QueryCollection.java:669)
     at oracle.jbo.server.ViewObjectImpl.executeQueryForCollection(ViewObjectImpl.java:3723)
     at oracle.jbo.server.OAJboViewObjectImpl.executeQueryForCollection(Unknown Source)
     at oracle.apps.fnd.framework.server.OAViewObjectImpl.executeQueryForCollection(OAViewObjectImpl.java:4533)
     at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:743)
     at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:688)
     at oracle.jbo.server.ViewRowSetIteratorImpl.ensureRefreshed(ViewRowSetIteratorImpl.java:2657)
     at oracle.jbo.server.ViewRowSetIteratorImpl.ensureRefreshed(ViewRowSetIteratorImpl.java:2634)
     at oracle.jbo.server.ViewRowSetIteratorImpl.first(ViewRowSetIteratorImpl.java:1474)
     at oracle.jbo.server.ViewRowSetImpl.first(ViewRowSetImpl.java:2828)
     at oracle.apps.fnd.framework.webui.OAHierarchyData.getExpandableState(OAHierarchyData.java:672)
     at oracle.apps.fnd.framework.webui.OAHGridData.getExpandableState(OAHGridData.java:482)
     at oracle.apps.fnd.framework.webui.OAHGridData.selectGoodValue(OAHGridData.java:194)
     at oracle.apps.fnd.framework.webui.OAHierarchyData.selectValue(OAHierarchyData.java:789)
     at oracle.cabo.ui.laf.base.desktop.table.FocusColumn$1.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.ColumnGroupRenderer.renderAsStackLayout(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.ColumnRenderer._renderKids(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.ColumnRenderer._renderContent(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.ColumnRenderer._renderTD(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.ColumnRenderer._renderDataMode(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.ColumnRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.laf.base.desktop.HGridRenderer.renderSpecialColumns(Unknown Source)
     at oracle.cabo.ui.laf.base.desktop.TableRenderer.renderSingleRow(Unknown Source)
     at oracle.cabo.ui.laf.base.desktop.HGridRenderer._renderTableRows(Unknown Source)
     at oracle.cabo.ui.laf.base.desktop.HGridRenderer._renderTableRows(Unknown Source)
     at oracle.cabo.ui.laf.base.desktop.HGridRenderer.renderTableRows(Unknown Source)
     at oracle.cabo.ui.laf.base.desktop.TableRenderer.renderTableContent(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.TableRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.laf.base.desktop.TableRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.laf.base.desktop.HGridRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.BorderLayoutRenderer.renderIndexedChildren(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.BorderLayoutRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.BorderLayoutRenderer.renderIndexedChildren(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.BorderLayoutRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.laf.swan.desktop.SubTabLayoutRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.RowLayoutRenderer.renderChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.BorderLayoutRenderer.renderIndexedChildren(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.BorderLayoutRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
     at oracle.cabo.ui.laf.swan.desktop.HeaderRenderer.renderChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.laf.oracle.desktop.HeaderRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.laf.swan.desktop.HeaderRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.composite.ContextPoppingUINode$ContextPoppingRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
     at oracle.cabo.ui.laf.swan.desktop.HeaderRenderer.renderChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.laf.oracle.desktop.HeaderRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.laf.swan.desktop.HeaderRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.BorderLayoutRenderer.renderIndexedChildren(Unknown Source)
     at oracle.cabo.ui.laf.swan.desktop.ContentRenderer.renderTableContent(Unknown Source)
     at oracle.cabo.ui.laf.swan.desktop.ContentRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.composite.UINodeRenderer.renderWithNode(Unknown Source)
     at oracle.cabo.ui.composite.UINodeRenderer.render(Unknown Source)
     at oracle.cabo.ui.laf.oracle.desktop.PageLayoutRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.XhtmlLafRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.BodyRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.apps.fnd.framework.webui.beans.OABodyBean.render(OABodyBean.java:398)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderIndexedChild(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.DocumentRenderer.renderContent(Unknown Source)
     at oracle.cabo.ui.BaseRenderer.render(Unknown Source)
     at oracle.cabo.ui.laf.base.xhtml.DocumentRenderer.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.BaseUINode.render(Unknown Source)
     at oracle.cabo.ui.partial.PartialPageUtils.renderPartialPage(Unknown Source)
     at oracle.apps.fnd.framework.webui.OAPageBean.render(OAPageBean.java:3480)
     at oracle.apps.fnd.framework.webui.OAPageBean.renderDocument(OAPageBean.java:3126)
     at oracle.apps.fnd.framework.webui.OAPageBean.renderDocument(OAPageBean.java:2931)
     at OA.jspService(_OA.java:228)
     at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
     at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
     at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
     at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
     at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
     at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
     at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259)
     at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:51)
     at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193)
     at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:284)
     at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)
     at com.evermind.server.http.EvermindPageContext.forward(EvermindPageContext.java:395)
     at OA.jspService(_OA.java:221)
     at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
     at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
     at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
     at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
     at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
     at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
     at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
     at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
     at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
     at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
     at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
     at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
     at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
     at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
     at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
     at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
     at java.lang.Thread.run(Thread.java:619)
Please Help !!!
Thanks,
VJ

Hi,
Please check the binding style(Oracle Positional,) of the VO when you extended it.
Please make sure that standard vo and extended vo both have the same binding style.if is not same change in the extended vo and put the file again and bounce the server.
Thanks
Bharat

Similar Messages

  • Our software vendor tells to use FF 3.5.1. because of some printer issues with their web based program. How safe is it to work with FF 3.5.1 in 2012?

    Our software vendor tells to use FF 3.5.1. because of some printer issues with their web based program. How safe is it to work with FF 3.5.1 in 2012?

    Thanks for the reply. I'll have a look at your solution.

  • Issues with extended chars in names

    Are there any known issues with this API when either the eDir name or GW
    name contains extended chars? I'm encountering numerous problems creating
    users and modifying settings (e.g. visibility) with the 8.0.1 client with
    both the 7.0.3 and 8.0.1 backends, after a customer reported issues when
    using the 8.02hp1 client.
    TIA, John

    I have a system with 2 cRIO's each with Ethercat extension chassis.  Each cRIO hosts ~100 NSV's and is running the scan engine at 40 Hz.
    Each cRIO is coupled to a HMI that has front panel control bindings to NSV's hosted on the cRIO as well as a windows hosted mirror library (used for citadel db logging) that is also bound to the cRIO NSV library.  The cRIO's have monay months of contiguous run time without reboot and I closely monitor cpu and memory usage and also rt performance metrics and will log faults if there are any such events.  I also use NSV's for messaging from the HMI to the cRIO for such things as setting zero offset values and deploying configuration parameters.  My overall findings are that the SV engine and the PSP are stable and efficient (especially NSV<->NSV and NSV<->HMI binding)

  • Issue with Crystal Report based on 2 different data sources

    Hi there,
    I am having a frustrating problem with a report I've designed and I'm hoping someone might be able to assist please.
    The report has 3 different prompts, each of which is based on a dynamic list of values retrieved via views within a SQL server db.
    We are wanting to introduce the use of Universes as much as possible, so the data returned is based off a BO Universe data source query.
    I have uploaded the report into BO and have provided the necessary database logon information for the report (in the "Process" > "Database" settings in the CMC) for both the direct db datasource connection (for the views) and the BO Universe query connection.
    When the report is run however, the report still prompts for the database user name & password credentials. I have triple checked my db connection settings, and also have "Use same database logon as when report is run" set to true. I also tested a cut-down version of the report without the Universe connection with the same db logon credentials I provided and there was no credentials prompt when it was run, proving those values are accepted.
    Does anyone know why this is happening & if there is a way around it? Alternatively, is there some way that a report prompt may be based on a dynamic list of values retrieved via a Universe connection? This way I'd be able to remove the db connection for the views and have the report solely based on the Universe.
    Another issue that occurs is out of the 3 prompts, a user can select a User Name OR Number, and also must select a Period. However if the User Name or Number is left blank the message "The value is not valid" is shown. So I tried a cut-down version of the report with only the BO Universe as a data source (static prompts) and this didn't occur, i.e. I was allowed to leave either the User Name or Number empty.
    I hope this all of makes sense - let me know if not. If anyone is able to help out with any of this it would be very much appreciated.
    Cheers,
    Marco

    Please re-post if this is still an issue to the Business Objects Forum or purchase a case and have a dedicated support engineer work with you directly

  • Issue with Java Class based DataControls.

    Hi,
    I'm actually working with JDev 11.1.1.3.0.
    And we got a requirement to build a search page which should create a dynamic query. And we are not using ADF BC in this project.
    Instead, writing some ServiceDelegates(Java Classes) which internally calls EJB services to do CRUD operations.
    Finally, created DataControls using these Service Delegates to design UI.
    Now one thing is clear that .... we are using java class based service delegates.
    *Issues
    =======
    1. I have a table with 4 columns, in which 2 columns are of type selectOneChoice.
    2. Now, based on first selectOneChoice selection ... second selectOneChoice should display corresponding values. It is something like this. First select one choice contains all KEYS. Based on the KEY selection second select OneChoice should display VALUES corresponding to the KEY.
    3. I have around 20 KEYS in the first selectOneChoice.
    4. User can add rows to the table as many as they want.
    5. For each row, the first selectOneChoice is same(contains same keys).
    The issue is, For the first time(when user logs into the screen ....) the table will be displayed with one row which contains 2 selectOnechoices and 2 inputText boxes and a ADD button at the end of each row.
    1. User selected a KEY from first selectOneChoice. Hence, second selectOneChoice populates values corressponding to KEY. And user clicked on ADD button.
    2. Now the first row was like that only. And a new Row got added to the table.
    3. In the second row ... Now user selected a different KEY in first selectOneChoice. And the second selctOneChoice displayed values corresponding to KEY selected.
    4. This is also fine. But now, when user tried to click on ADD button to add THIRD ROW ... the table got added with a new row.
    5. Here is the problem.... From here onwards, whenever any new row get added to the table ... the first row's second selectOneChoice values are setting with values of second row's secondSelectOneChoice.
    6. Finally ... what i'm trying to do is, the second selectOneChoice should not get affected/refreshed because of adding a new row.
    If it is not clear ... please share your email address. I can share the sample code with you.
    This is an high priority task given to me.
    Please let me know your comments ASAP.
    Thanks & Regards,
    Kiran Konjeti

    You could try the following to see where the class was loaded from.
    System.out.println(ResourcesAndRatesForm.class.getProtectionDomain().getCodeSource());

  • Issue with extending HzPuiDQMSrchResultsVO

    Hey all,
    I have a requirement to alter the order by statement in HzPuiDQMSrchResultsVO from "ORDER BY SCORE DESC" to "ORDER BY SCORE DESC, PARTY_NUMBER". I was able to create a new VO by extending the seeded oracle.apps.ar.hz.components.search.server.HzPuiDQMSrchResutlsVO. I created the substitution, moved the java files to the server, imported the jpx file and bounced the middle tier as suggested in the user guide. However, I received the following error after I keyed in my search criteria and pressed the "Go" button:
    "Attribute set for SelectFlag in view object HzPuiDQMSrchResultsVO failed"
    FYI I followed these steps to create new VO and to produce the error:
    1) Created a new OA project.
    2) Created a empty package under custom path as xxxx/oracle/apps/ar/hz/components/search/server.
    3) Created a new VO(xxxxHzPuiDQMSrchResultsVO) by extending HzPuiDQMSrchResultsVO view object. Altered the ORDER BY clause from "ORDER BY SCORE DESC" to "ORDER BY SCORE DESC, PARTY_NUMBER"
    4) Created the substitution.
    5) Deployed substitution and imported the jpx file
    6) Bounced middle tier
    7) Access Customer On Line via Receivable Manager responsibility
    8) Search Person customer by last name
    9) Search result page came back with an error at the beginning of the page. Error message: "Attribute set for SelectFlag in view object HzPuiDQMSrchResultsVO failed"
    Did I miss a step somewhere? Please advise. Thx.

    Hey all,
    HzPuiDQMSrchResultsVO is now sorting the way I expected. The new problem is that I am not seeing data related to the columns based on transient attributes. All other columns seems to be fine. Note that these transient attributes came from the seeded VO. Do I need to so something special to the transient attributes when I extend a seeded VO?
    Please advise. Thx.

  • Email issues with "extended PDFs" for readers...

    I have a Form that will be sent to among 3 employees by email...
    2 of the 3 employees only have adobe reader on their desktops...this is why the form was saved in the "extended format"
    the issue I have is when employee 1 emails the Form to employees 2 to fill out and sign
    employee 2 can only save the changes by renaming the file because the original seems to be a read only now.
    is this because of employee 1 applying their digital signature? which this gives them control over the form saved in the original "file name" by employee 1?
    The same thing happens when employee 2 sends Form to employee 3
    employee 2 had to save the file under a different name generated by them and now employee 3 can't save the changes under that file name because 'read only"...
    they also have to change the file name in order to save the changes.
    My resolution would be to fined a way to keep the Form editable until a check box is "checked" meaning that the Form has been completed and no further editing is allowed ( this is not a problem)
    the digital signature are important they lock the section of the Form associated to the signature and doesn't allow anyone else to modify what they have entered.
    any suggestion...

    could I just create a JS that uses "this.FlattenPages()" on "mouse up" for the check box? will this work with a adobe reader?

  • TS3977 Issue with extended display using Displaylink USB to DVI since upgrading to Mavericks.

    I have an issue now since upgrading to Mavericks with my extended display monitor using a displaylink DVI to USB adapter. After awhile, the monitor goes blank. I can unplug the connection from the USB port and plug it back in and the display comes back, only to go out again a short time later.
    It worked fine for months prior to the upgrade.
    Apple say it's Dispalylink's problem and Displaylink says it's Apple's problem. Anyone else having this or a similar isssue?

    Someone opened a bug report with Apple in another thread - about a different product that used DisplayLink drivers, and Apple blamed the vendor.
    I have many issues too. Crashing Window Manager, and once it crashed my Mac.
    I also have many issues... one is corrupt display. The icons are missing in the menubar on my laptop, and squished together on my external monitor:
    They are there if I mouse over, but invisible.
    I can't click on the squished ones, they are to close.

  • Issue with Extended Analytics

    Hi,
    I have an entity(say A) which is a shared member across 2 hierarchies. The immediate parent for this entity is different across both the hierarchies (say X and Y). The default parent is X.
    I am using Extended Analytics to extract the adjustment values of A(both entity currency adjustments and parent currency adjustments). A and X are in USD and Y is in AUD.
    So, in Extended Analytics, I need to be able to select the exact parent-child combination to get the values. But in the parent ID column, I am always getting a value of -1 which means Default member not in Use.
    Has anyone faced this issue before? Am I going wrong somewhere?

    hi,
    Please check your saplogon.ini file as detailed in note 170352.
    Maybe it contains empty descriptions under the section
    [Description]
    like
    Item1=
    Item2=
    Item3=...
    Please review the mentioned note for further details. In case you find such entries, take a look at chapter Solution ->
    "3.  Repair saplogon.ini".
    Regards,
    Eddie

  • Having issues with customizing VMs based on vcenter templates

    I am wondering if there are any resources I am not aware of.
    I need to do the following:
    1. Create a VMWare VM using vcenter 5.1 controlling esxi 5.0.
    2. Clone that VM to a template using vcenter.
    3. Import VMWare template into SCVMM 2012 SP1.
    4. Create a customized VM where I change the client OS machine name, join the VM to a domain, and assign product key, in SCVMM using the imported VMWare template.
    The behavior I am interested in is a fully customized VM after the "Create VM in Cloud" job is done in SCVMM.
    The behavior I am witnessing is the end VM is a duplicate of the Template VM without any of the customizations applied.
    This works beautifully with Hyper-V, what am I doing wrong?
    Note, I did not run sysprep before converting the VMWare VM to a Template in VCenter.
    If this helps you then please mark the post as helpful.
    If this answers your question then mark it as the answer.
    If another contributor in the thread answers your question then please do the right thing.
    And as always most answers for SharePoint are based on "It depends"

    Hello
    You have to have a network connectivity from SCVMM server to your VM.
    The ESX is not able to proxy the request from VMM as it does for the VSphere client.
    MCITP: Enterprise Messaging Administrator 2010 MCTS: Lync Server 2010, Configuring MCSE

  • JInitiator issue with VIA Processor based motherboard

    I am having VIA EPIA-V Motherboard loaded with Windows. I have installed Jinitiator. But My Jinitiator is not working. I got error saying that
    HotSpot Virtual Machine Error : EXCEPTION_ILLEGAL_INSTRUCTION
    # Error ID : 4F530E43505002BD
    Finally I found that the Via CPU Support on JRE 1.3.x is having some Bug.(Bug ID 4395702). So they asked us to use some nonstandard paramemter(-J-XX:-CodeForP6) with the java.exe. So I have to change the forms pages to invoke Jinitiator with this option. But My Other PCs will not work with this solution.
    But It is getting fixed at JRE 1.4.x But the Jinitiator is based on 1.3.x only. So Jinitiator is not working in my PC. How to overcome this?
    Any Idea / suggestion on this will help me.

    Subbiah,
    Use the SUN Java 1.4.1 Plugin instead of JInitiator
    Frank

  • Issue with AD group based collection

    Hi,
    We are using AD security group based membership. Also, we are uing the same SCCM infra to cover other domains as well.
    From Activie Direcoty, it could able to discover the machines (computer objects) belongs to other domains but those computer objects not reflecting onto the collections.
    Any suggestions woud help us!
    Many Thanks.

    Check your collection refresh interval also is any machines added to the AD group getting populated ie. from the same domain xxx ? if so, i think you need to add the IP sub-net details on the boundary and
    also  discover the another domain machines using LDAP query for it(ex. sccm discovers and manages xxx domain where as its not discovering yyy domain machines becoz its not discovered ,you can also do it using the IP subnet details ie n/w discovery) the
    machines to the ALL systems then it may get added to the collection.
    Kamala kannan.c| Please remember to click “Mark as Answer” or Vote as Helpful if its helpful for you. |Disclaimer: This posting is provided with no warranties and confers no rights

  • Issue with fetching data based on the given criteria.....

    Dear All,
    I am a bit new to oracle, Please can some help me.
    I need to design a report out of the below data:
    1. bprf_no will be my primary field
    2. report parameters will be the bill_month & no_of_months
    Based on above 2 parameters I need to scan through the data for BILL_MONTH <= '30-Jun-2012' and NO_OF_MONTHS >= 3 the other criteria being the AVG_IND in (1,2).
    In brief the criteria will be to pick all BPRF_NO having AVG_ID in (1, 2) consecutively till a break (AVG_IND not in (1, 2) starting from the given BILL_MONTH and going below this period, that is BILL_MONTH <= '30-Jun-2012'.
    For the below data, if my parameters are: BILL_MONTH <= '30-Jun-2012' and NO_OF_MONTHS >= 3, only the underlined data should be picked (as they fulfill the criteria) and the report output will be like the one posted below the sample data:
    Here the NO_OF_TIMES is the count, that is no of times the BPRF_NO falls into the above mentioned criteria consecutively starting from the provided BILL_MONTH.
    BPRF_NO BILL_MONTH VOID_STATUS AVG_IND
    BP01 30-Jun-12 0 0
    BP02 30-Jun-12 0 0
    BP03 30-Jun-12 0 1
    BP04 30-Jun-12 0 1
    BP05 30-Jun-12 0 1
    BP06 30-Jun-12 0 2
    BP07 30-Jun-12 0 2
    BP08 30-Jun-12 0 2
    BP09 30-Jun-12 0 0
    BP10 30-Jun-12 0 0
    BP10 30-Jun-12 0 0
    BP01 31-May-12 0 0
    BP02 31-May-12 0 0
    BP03 31-May-12 0 1
    BP04 31-May-12 0 1
    BP05 31-May-12 0 1
    BP06 31-May-12 0 2
    BP07 31-May-12 0 2
    BP08 31-May-12 0 2
    BP09 31-May-12 0 0
    BP10 31-May-12 0 0
    BP01 30-Apr-12 0 0
    BP02 30-Apr-12 0 0
    BP03 30-Apr-12 0 0
    BP04 30-Apr-12 0 0
    BP05 30-Apr-12 0 1
    BP06 30-Apr-12 0 2
    BP07 30-Apr-12 0 2
    BP08 30-Apr-12 0 2
    BP09 30-Apr-12 0 0
    BP10 30-Apr-12 0 0
    BP01 31-Mar-12 0 0
    BP02 31-Mar-12 0 0
    BP03 31-Mar-12 0 1
    BP04 31-Mar-12 0 1
    BP05 31-Mar-12 0 1
    BP06 31-Mar-12 0 2
    BP07 31-Mar-12 0 2
    BP08 31-Mar-12 0 2
    BP09 31-Mar-12 0 0
    BP10 31-Mar-12 0 0
    BP01 29-Feb-12 0 0
    BP02 29-Feb-12 0 0
    BP03 29-Feb-12 0 1
    BP04 29-Feb-12 0 1
    BP05 29-Feb-12 0 1
    BP06 29-Feb-12 0 2
    BP07 29-Feb-12 0 2
    BP08 29-Feb-12 0 2
    BP09 29-Feb-12 0 0
    BP10 29-Feb-12 0 0
    BP01 31-Jan-12 0 0
    BP02 31-Jan-12 0 0
    BP03 31-Jan-12 0 0
    BP04 31-Jan-12 0 0
    BP05 31-Jan-12 0 1
    BP06 31-Jan-12 0 2
    BP07 31-Jan-12 0 2
    BP08 31-Jan-12 0 2
    BP09 31-Jan-12 0 0
    BP10 31-Jan-12 0 0
    Below is the correct output that I am supposed to get.
    BPRF_NO BILL_MONTH NO_OF_TIMES
    BP05 30-Jun-2012 6
    BP06 30-Jun-2012 6
    BP07 30-Jun-2012 6
    BP08 30-Jun-2012 6
    My below query is fetching me wrong data:
    Here BP03 & BP04 should not come into the listing itself.
    select bprf_no, last_avg_bill_month, no_of_month
    from
    ( select a.bprf_no, max(a.bill_month) last_avg_bill_month, count(*) no_of_month
    from
    ( select
    bill_month, avg_ind, bprf_no
    from ibsoifc.vw_ibs_bill
    where bill_month <= '30-Jun-2012'
    and void_status = 0
    and avg_ind in (1, 2)
    order by bprf_no desc, bill_month desc ) a, ibsoifc.vw_ibs_bill b
    where a.bprf_no = b.bpref_no
    and a.bill_month = b.bill_month
    group by a.bprf_no
    having count(a.bprf_no) >= '&no_of_month' )
    group by bprf_no,last_avg_bill_month, no_of_month
    BPRF_NO LAST_AVG_BILL_MONTH NO_OF_TIMES
    BP03 30-Jun-2012 4
    BP04 30-Jun-2012 4
    BP05 30-Jun-2012 6
    BP06 30-Jun-2012 6
    BP07 30-Jun-2012 6
    BP08 30-Jun-2012 6

    Based on my understanding..
    select *
    from t
    order by bill_month desc,bprf_no;
    BPRF_NO    BILL_MONTH VOID_STATUS AVG_IND
    BP01       30-JUN-12            0       0
    BP02       30-JUN-12            0       0
    BP03       30-JUN-12            0       1
    BP04       30-JUN-12            0       1
    BP05       30-JUN-12            0       1
    BP06       30-JUN-12            0       2
    BP07       30-JUN-12            0       2
    BP08       30-JUN-12            0       2
    BP09       30-JUN-12            0       0
    BP10       30-JUN-12            0       0
    BP10       30-JUN-12            0       0
    BP01       31-MAY-12            0       0
    BP02       31-MAY-12            0       0
    BP03       31-MAY-12            0       1
    BP04       31-MAY-12            0       1
    BP05       31-MAY-12            0       1
    BP06       31-MAY-12            0       2
    BP07       31-MAY-12            0       2
    BP08       31-MAY-12            0       2
    BP09       31-MAY-12            0       0
    BP10       31-MAY-12            0       0
    BP01       30-APR-12            0       0
    BP02       30-APR-12            0       0
    BP03       30-APR-12            0       0
    BP04       30-APR-12            0       0
    BP05       30-APR-12            0       1
    BP06       30-APR-12            0       2
    BP07       30-APR-12            0       2
    BP08       30-APR-12            0       2
    BP09       30-APR-12            0       0
    BP10       30-APR-12            0       0
    BP01       31-MAR-12            0       0
    BP02       31-MAR-12            0       0
    BP03       31-MAR-12            0       1
    BP04       31-MAR-12            0       1
    BP05       31-MAR-12            0       1
    BP06       31-MAR-12            0       2
    BP07       31-MAR-12            0       2
    BP08       31-MAR-12            0       2
    BP09       31-MAR-12            0       0
    BP10       31-MAR-12            0       0
    BP01       29-FEB-12            0       0
    BP02       29-FEB-12            0       0
    BP03       29-FEB-12            0       1
    BP04       29-FEB-12            0       1
    BP05       29-FEB-12            0       1
    BP06       29-FEB-12            0       2
    BP07       29-FEB-12            0       2
    BP08       29-FEB-12            0       2
    BP09       29-FEB-12            0       0
    BP10       29-FEB-12            0       0
    BP01       31-JAN-12            0       0
    BP02       31-JAN-12            0       0
    BP03       31-JAN-12            0       0
    BP04       31-JAN-12            0       0
    BP05       31-JAN-12            0       1
    BP06       31-JAN-12            0       2
    BP07       31-JAN-12            0       2
    BP08       31-JAN-12            0       2
    BP09       31-JAN-12            0       0
    BP10       31-JAN-12            0       0
    61 rows selected
    with t1 as
      (select BPRF_NO,BILL_MONTH,VOID_STATUS,AVG_IND,sm,
             case when sm >= 3 then
                        nvl(sm - lag(sm) over(partition by bill_month order by bprf_no),sm)
                  else 0 end d
      from(
        select BPRF_NO,BILL_MONTH,VOID_STATUS,AVG_IND,
               sum(decode(avg_ind,1,1,2,1,0)) over(partition by bill_month order by bprf_no) sm
        from t
        where bill_month = to_date('30-Jun-12','dd-Mon-yy')
        order by bill_month desc,bprf_no)
    select t1.bprf_no,count(t.bprf_no)+1 no_of_times -- "The '1' stands for the count in t"
    from t1, t
    where t1.bprf_no = t.bprf_no -- "This can be an outer join based on your requirement and data.."
    and t1.d = 1
    and t.bill_month < to_date('30-Jun-12','dd-Mon-yy')
    group by t1.bprf_no
    order by 1;
    BPRF_NO    NO_OF_TIMES
    BP05                 6
    BP06                 6
    BP07                 6
    BP08                 6

  • Send back to author issue in HCMFP with extended notification functionality

    Hi,
    We are using HCM Forms and Processes in our project .When the Form is sent back to author by the manager, author receives the email using extended notification functionality where the author clicks on the link provided in the notification email to open the form.Till here everything working fine, but when the author sends  the form again for approval with required changes , the approver  could not see the latest changes in the form. He still see the old data. Please note standard Task TS04000020: PD Form Is Edited Again by Author is used in the workflow.
    We tried the same scenario, where author access the form through UWL, make necessary changes and send the form for approval. In this case,latest changes can be seen by approver without any issue.But, as per business we can not provide UWL and should use extended notification functionality only..
    Please help in resolving the issue with extended notification functionality as early as possible.
    Thanks,
    Pavan.

    Hi Viji,
    Regarding your question.. here is the business requirement.
    1. Author fills the HCM form , hit check and send button, so that workitem goes to approver's UWL.Author do not have portal, but performs this process from SAP GUI itself using the webdynpro link as shown below.
    https://  pint01.xxx.net:8043 /sap/bc/webdynpro/sap/asr_pd_process_execute?sap-wd-configId=ZXX_PD_PROCESS_EXECUTE
    2. Approver has buttons on the form to approve, reject or send back to author.
    3. When author hits the "send back to author" button, the work item (task TS04000020) will be created for the author.
    4. The notification email will be sent to author using the program SWN_SELSEN.The email contains a link as shown below to open, edit,check and send it again for approval.
    https:// pint01.xxx.net:8043 /sap/bc/webdynpro/sap/asr_process_execute?WI_ID=000000052545
    The problem here is, when the author makes changes and send the form for approval, the approver still see the old content only in the form.
    Thanks,
    Pavan.

  • Adobe Edge 3 animations issues with webview on Android v4.1.1 and v4.2.1

    I am developing an Android App using webview (using phonegap/cordova v2.8.1 ) . I used Adobe Edge 3 and generated few animations using SVG images and couple of html pages
    Query #1:    Scaling of image is continously increasing with every orientation change
                 On Nexus 5,  Nexus 7 and Nexus 4 (all with Android version v4.4.2)  the Adobe Edge animations work as expected in my App, however there is one issue when ConfigChanges option in Android manifest file is set to  "orientation|screenSize" used in the main activity of my App to allow it to automatically resize this screen/images when screen orientations between portrait and landscape. This works but image size keeps increasing (never reset to original size) every time change the orientation of my Android device from portrait to landscape and vice versa.
    Is there any issue with Adobe Edge based animations w.r.t to automatically resizing based changes to screen orientation on Android ?
    Query #2:  Images(i.e. symbols) are incorrectly loaded/shown and sometime stage itself is not loaded
        On Samsung Tab 2 (v4.1.1) and Samsung S3 (v4.2.1), the same Android App runs fine, however some images are not loaded randomly, sometimes the image  is blank and sometimes incorrect symbols are overlayed onto the stage1 and stage 2 screens.
      Has body faced similar issues while using Adobe Edge generated animations with webview/phonegap based Android applications ? if yes how it was fixed ?
    This Android  App uses only the two html pages (as stage 1 and 2) and then it loads different symbols (i.e svg images) using hide and show , load composition methods to create animations.
    Let me know if there are any Adobe Edge 3 related issues specific to different version of Android  ...in particular  Android v4.0,  v4.1 and v4.2  ..because the same App works fine on Android v4.3 and v4.4
    I suspect it is due to differences and support available in webview implementations in different versions of Android.
    Any help on this is greatly appreciated !
    thanks
    Padua

    Sadly I don't have answers either. I'm not sure what happened but as of the last few days i've been having the same problems. There are also times when my mac mini wont even connect to the base station.
    What I find strange is that my sister has the same airport firmware installed and her machine is unaffected. I'm on hold with apple atm, so we shall see what they can figure out.

Maybe you are looking for

  • Dead drive, desperately trying to rescue files..

    Hi, The SATA drive on my black Macbook has packed in without me backing up via TimeMachine.. (yes, we all learn from our mistakes the hard way, sooner or later, I guess) I'm desperately trying to retrieve whatever I can from it. There doesn't seem an

  • JHS 10.1.3 Internal Server Error - Page when a view raises an exception

    I have a view with some logic (based on a table function) and created: entity object, view object and (jhs) an advanced search page. When the view raises an exception an "500 Internal Server Error"-page is showed, but I expected the error would be sh

  • Adding an addition feilds n the field status group

    Hi all I want to know, how to add a new field in the in the field status. e.g. in the standard  feild status group G001 we have fields namely general data, material managenment,addition account assignment,ect In additional account assignment i want t

  • How to write format text on this forum ?

    I'd like to write my threads using format text, particularly when I write a code fragments. I want to obtain something like in this thread: [Survey] Which coding feature do you want in JDeveloper 11? Should I write with HTML tags ?

  • Bulleted text with a right-aligned tab with a line leader...

    I am using Pages '09 and am trying to have a tabbed line after bulleted text. I can do this in Word '11...set a right-aligned tab with a line leader then tab at the end of the text and it adds a line. When I tab after text in Pages, it indents the bu