View Object is invalid due to SYSTEM.MODE is not recognized inside SQL

Hi All,
I tried recreating a Oracle form 9i to ADF BC using Jheadstart 10.1.3.3.81, JHS converted the form(converted .xml) generating the Entity and View Objects.
But among the generated View Objects few are invalid due to which the generated .jspx page is partial in result compared to Original form.
I have pasted the SQL generated from one of the View Object which is invalid. I tried fixing this SQL from SQL Navigator but I get Invalid function error for SYSTEM.MODE and Not an Object or REF for :INSHST.FACILITY_ID. Can anyone help me out in fixing this Issue?
SELECT VSLHST.LAST_UPDATE_LOGIN,
VSLHST.LAST_UPDATE_DATE,
VSLHST.LAST_UPDATED_BY,
VSLHST.CREATION_DATE,
VSLHST.CREATED_BY,
VSLHST.POST_VOLUME,
VSLHST.POST_LEVEL_PERCENT,
VSLHST.POST_TEMPERATURE,
VSLHST.POST_GAS_PRESSURE,
VSLHST.POST_LEVEL,
VSLHST.EQUIPMENT_ID,
VSLHST.EQUIPMENT_INSTALLATION_ID,
VSLHST.EQUIPMENT_FACILITY_ID,
VSLHST.INSTALLATION_HISTORY_ID,
VSLHST.INSTALLATION_ID,
VSLHST.FACILITY_ID,
VSLHST.VESSEL_HISTORY_ID,
(select DSP_DI_WATER_VOLUME
from (SELECT EQU.EQUIPMENT_CODE L_EQUIPMENT_CODE,
EQU.DESCRIPTION DSP_DESCRIPTION,
EQ.FACILITY_ID L_FACILITY_ID,
EQ.INSTALLATION_ID L_INSTALLATION_ID,
EQ.EQUIPMENT_ID L_EQUIPMENT_ID,
EQ.DI_VESSEL_NUMBER DSP_DI_VESSEL_NUMBER,
EQ.EQUIPMENT_CODE DSP_EQUIPMENT_CODE,
EQ.DI_FULL_LEVEL DSP_DI_FULL_LEVEL,
EQ.CAPACITY_QUANTITY DSP_CAPACITY_QUANTITY,
EQ.UNIT_OF_MEASURE DSP_UNIT_OF_MEASURE,
EQ.DI_WATER_VOLUME DSP_DI_WATER_VOLUME
FROM CP_EQUIPMENTS EQ, CP_X_EQUIPMENT_TYPES EQU
WHERE (((:SYSTEM.MODE = 'ENTER-QUERY') AND
( /* CG$MDTU_QWC_START VSLHST.EQ */
(EQ.facility_id = :INSHST.FACILITY_ID and
EQ.installation_id = :INSHST.INSTALLATION_ID and
(EQ.installed_date <= sysdate and
(EQ.removal_date is null or
EQ.removal_date >= sysdate) and
(EQ.stop_fill_date is null or
EQ.stop_fill_date >= sysdate))) /* CG$MDTU_QWC_END VSLHST.EQ */
)) OR ((NOT :SYSTEM.MODE = 'ENTER-QUERY') AND
( /* CG$MDTU_VWC_START VSLHST.EQ */
(EQ.facility_id = :INSHST.FACILITY_ID and
EQ.installation_id = :INSHST.INSTALLATION_ID and
(EQ.installed_date <= sysdate and
(EQ.removal_date is null or
EQ.removal_date >= sysdate) and
(EQ.stop_fill_date is null or
EQ.stop_fill_date >= sysdate))) /* CG$MDTU_VWC_END VSLHST.EQ */
AND EQ.EQUIPMENT_CODE = EQU.EQUIPMENT_CODE
ORDER BY L_EQUIPMENT_CODE) LOVQUERY
where 1 = 1
and LOVQUERY.L_FACILITY_ID = VSLHST.EQUIPMENT_FACILITY_ID
and LOVQUERY.L_INSTALLATION_ID = VSLHST.EQUIPMENT_INSTALLATION_ID
and LOVQUERY.L_EQUIPMENT_ID = VSLHST.EQUIPMENT_ID) AS DSP_DI_WATER_VOLUME,
(select DSP_UNIT_OF_MEASURE
from (SELECT EQU.EQUIPMENT_CODE L_EQUIPMENT_CODE,
EQU.DESCRIPTION DSP_DESCRIPTION,
EQ.FACILITY_ID L_FACILITY_ID,
EQ.INSTALLATION_ID L_INSTALLATION_ID,
EQ.EQUIPMENT_ID L_EQUIPMENT_ID,
EQ.DI_VESSEL_NUMBER DSP_DI_VESSEL_NUMBER,
EQ.EQUIPMENT_CODE DSP_EQUIPMENT_CODE,
EQ.DI_FULL_LEVEL DSP_DI_FULL_LEVEL,
EQ.CAPACITY_QUANTITY DSP_CAPACITY_QUANTITY,
EQ.UNIT_OF_MEASURE DSP_UNIT_OF_MEASURE,
EQ.DI_WATER_VOLUME DSP_DI_WATER_VOLUME
FROM CP_EQUIPMENTS EQ, CP_X_EQUIPMENT_TYPES EQU
WHERE (((:SYSTEM.MODE = 'ENTER-QUERY') AND
( /* CG$MDTU_QWC_START VSLHST.EQ */
(EQ.facility_id = :INSHST.FACILITY_ID and
EQ.installation_id = :INSHST.INSTALLATION_ID and
(EQ.installed_date <= sysdate and
(EQ.removal_date is null or
EQ.removal_date >= sysdate) and
(EQ.stop_fill_date is null or
EQ.stop_fill_date >= sysdate))) /* CG$MDTU_QWC_END VSLHST.EQ */
)) OR ((NOT :SYSTEM.MODE = 'ENTER-QUERY') AND
( /* CG$MDTU_VWC_START VSLHST.EQ */
(EQ.facility_id = :INSHST.FACILITY_ID and
EQ.installation_id = :INSHST.INSTALLATION_ID and
(EQ.installed_date <= sysdate and
(EQ.removal_date is null or
EQ.removal_date >= sysdate) and
(EQ.stop_fill_date is null or
EQ.stop_fill_date >= sysdate))) /* CG$MDTU_VWC_END VSLHST.EQ */
AND EQ.EQUIPMENT_CODE = EQU.EQUIPMENT_CODE
ORDER BY L_EQUIPMENT_CODE) LOVQUERY
where 1 = 1
and LOVQUERY.L_FACILITY_ID = VSLHST.EQUIPMENT_FACILITY_ID
and LOVQUERY.L_INSTALLATION_ID = VSLHST.EQUIPMENT_INSTALLATION_ID
and LOVQUERY.L_EQUIPMENT_ID = VSLHST.EQUIPMENT_ID) AS DSP_UNIT_OF_MEASURE,
(select DSP_CAPACITY_QUANTITY
from (SELECT EQU.EQUIPMENT_CODE L_EQUIPMENT_CODE,
EQU.DESCRIPTION DSP_DESCRIPTION,
EQ.FACILITY_ID L_FACILITY_ID,
EQ.INSTALLATION_ID L_INSTALLATION_ID,
EQ.EQUIPMENT_ID L_EQUIPMENT_ID,
EQ.DI_VESSEL_NUMBER DSP_DI_VESSEL_NUMBER,
EQ.EQUIPMENT_CODE DSP_EQUIPMENT_CODE,
EQ.DI_FULL_LEVEL DSP_DI_FULL_LEVEL,
EQ.CAPACITY_QUANTITY DSP_CAPACITY_QUANTITY,
EQ.UNIT_OF_MEASURE DSP_UNIT_OF_MEASURE,
EQ.DI_WATER_VOLUME DSP_DI_WATER_VOLUME
FROM CP_EQUIPMENTS EQ, CP_X_EQUIPMENT_TYPES EQU
WHERE (((:SYSTEM.MODE = 'ENTER-QUERY') AND
( /* CG$MDTU_QWC_START VSLHST.EQ */
(EQ.facility_id = :INSHST.FACILITY_ID and
EQ.installation_id = :INSHST.INSTALLATION_ID and
(EQ.installed_date <= sysdate and
(EQ.removal_date is null or
EQ.removal_date >= sysdate) and
(EQ.stop_fill_date is null or
EQ.stop_fill_date >= sysdate))) /* CG$MDTU_QWC_END VSLHST.EQ */
)) OR ((NOT :SYSTEM.MODE = 'ENTER-QUERY') AND
( /* CG$MDTU_VWC_START VSLHST.EQ */
(EQ.facility_id = :INSHST.FACILITY_ID and
EQ.installation_id = :INSHST.INSTALLATION_ID and
(EQ.installed_date <= sysdate and
(EQ.removal_date is null or
EQ.removal_date >= sysdate) and
(EQ.stop_fill_date is null or
EQ.stop_fill_date >= sysdate))) /* CG$MDTU_VWC_END VSLHST.EQ */
AND EQ.EQUIPMENT_CODE = EQU.EQUIPMENT_CODE
ORDER BY L_EQUIPMENT_CODE) LOVQUERY
where 1 = 1
and LOVQUERY.L_FACILITY_ID = VSLHST.EQUIPMENT_FACILITY_ID
and LOVQUERY.L_INSTALLATION_ID = VSLHST.EQUIPMENT_INSTALLATION_ID
and LOVQUERY.L_EQUIPMENT_ID = VSLHST.EQUIPMENT_ID) AS DSP_CAPACITY_QUANTITY,
(select DSP_DI_FULL_LEVEL
from (SELECT EQU.EQUIPMENT_CODE L_EQUIPMENT_CODE,
EQU.DESCRIPTION DSP_DESCRIPTION,
EQ.FACILITY_ID L_FACILITY_ID,
EQ.INSTALLATION_ID L_INSTALLATION_ID,
EQ.EQUIPMENT_ID L_EQUIPMENT_ID,
EQ.DI_VESSEL_NUMBER DSP_DI_VESSEL_NUMBER,
EQ.EQUIPMENT_CODE DSP_EQUIPMENT_CODE,
EQ.DI_FULL_LEVEL DSP_DI_FULL_LEVEL,
EQ.CAPACITY_QUANTITY DSP_CAPACITY_QUANTITY,
EQ.UNIT_OF_MEASURE DSP_UNIT_OF_MEASURE,
EQ.DI_WATER_VOLUME DSP_DI_WATER_VOLUME
FROM CP_EQUIPMENTS EQ, CP_X_EQUIPMENT_TYPES EQU
WHERE (((:SYSTEM.MODE = 'ENTER-QUERY') AND
( /* CG$MDTU_QWC_START VSLHST.EQ */
(EQ.facility_id = :INSHST.FACILITY_ID and
EQ.installation_id = :INSHST.INSTALLATION_ID and
(EQ.installed_date <= sysdate and
(EQ.removal_date is null or
EQ.removal_date >= sysdate) and
(EQ.stop_fill_date is null or
EQ.stop_fill_date >= sysdate))) /* CG$MDTU_QWC_END VSLHST.EQ */
)) OR ((NOT :SYSTEM.MODE = 'ENTER-QUERY') AND
( /* CG$MDTU_VWC_START VSLHST.EQ */
(EQ.facility_id = :INSHST.FACILITY_ID and
EQ.installation_id = :INSHST.INSTALLATION_ID and
(EQ.installed_date <= sysdate and
(EQ.removal_date is null or
EQ.removal_date >= sysdate) and
(EQ.stop_fill_date is null or
EQ.stop_fill_date >= sysdate))) /* CG$MDTU_VWC_END VSLHST.EQ */
AND EQ.EQUIPMENT_CODE = EQU.EQUIPMENT_CODE
ORDER BY L_EQUIPMENT_CODE) LOVQUERY
where 1 = 1
and LOVQUERY.L_FACILITY_ID = VSLHST.EQUIPMENT_FACILITY_ID
and LOVQUERY.L_INSTALLATION_ID = VSLHST.EQUIPMENT_INSTALLATION_ID
and LOVQUERY.L_EQUIPMENT_ID = VSLHST.EQUIPMENT_ID) AS DSP_DI_FULL_LEVEL,
(select DSP_DESCRIPTION
from (SELECT EQU.EQUIPMENT_CODE L_EQUIPMENT_CODE,
EQU.DESCRIPTION DSP_DESCRIPTION,
EQ.FACILITY_ID L_FACILITY_ID,
EQ.INSTALLATION_ID L_INSTALLATION_ID,
EQ.EQUIPMENT_ID L_EQUIPMENT_ID,
EQ.DI_VESSEL_NUMBER DSP_DI_VESSEL_NUMBER,
EQ.EQUIPMENT_CODE DSP_EQUIPMENT_CODE,
EQ.DI_FULL_LEVEL DSP_DI_FULL_LEVEL,
EQ.CAPACITY_QUANTITY DSP_CAPACITY_QUANTITY,
EQ.UNIT_OF_MEASURE DSP_UNIT_OF_MEASURE,
EQ.DI_WATER_VOLUME DSP_DI_WATER_VOLUME
FROM CP_EQUIPMENTS EQ, CP_X_EQUIPMENT_TYPES EQU
WHERE (((:SYSTEM.MODE = 'ENTER-QUERY') AND
( /* CG$MDTU_QWC_START VSLHST.EQ */
(EQ.facility_id = :INSHST.FACILITY_ID and
EQ.installation_id = :INSHST.INSTALLATION_ID and
(EQ.installed_date <= sysdate and
(EQ.removal_date is null or
EQ.removal_date >= sysdate) and
(EQ.stop_fill_date is null or
EQ.stop_fill_date >= sysdate))) /* CG$MDTU_QWC_END VSLHST.EQ */
)) OR ((NOT :SYSTEM.MODE = 'ENTER-QUERY') AND
( /* CG$MDTU_VWC_START VSLHST.EQ */
(EQ.facility_id = :INSHST.FACILITY_ID and
EQ.installation_id = :INSHST.INSTALLATION_ID and
(EQ.installed_date <= sysdate and
(EQ.removal_date is null or
EQ.removal_date >= sysdate) and
(EQ.stop_fill_date is null or
EQ.stop_fill_date >= sysdate))) /* CG$MDTU_VWC_END VSLHST.EQ */
AND EQ.EQUIPMENT_CODE = EQU.EQUIPMENT_CODE
ORDER BY L_EQUIPMENT_CODE) LOVQUERY
where 1 = 1
and LOVQUERY.L_FACILITY_ID = VSLHST.EQUIPMENT_FACILITY_ID
and LOVQUERY.L_INSTALLATION_ID = VSLHST.EQUIPMENT_INSTALLATION_ID
and LOVQUERY.L_EQUIPMENT_ID = VSLHST.EQUIPMENT_ID) AS DSP_DESCRIPTION,
(select DSP_DI_VESSEL_NUMBER
from (SELECT EQU.EQUIPMENT_CODE L_EQUIPMENT_CODE,
EQU.DESCRIPTION DSP_DESCRIPTION,
EQ.FACILITY_ID L_FACILITY_ID,
EQ.INSTALLATION_ID L_INSTALLATION_ID,
EQ.EQUIPMENT_ID L_EQUIPMENT_ID,
EQ.DI_VESSEL_NUMBER DSP_DI_VESSEL_NUMBER,
EQ.EQUIPMENT_CODE DSP_EQUIPMENT_CODE,
EQ.DI_FULL_LEVEL DSP_DI_FULL_LEVEL,
EQ.CAPACITY_QUANTITY DSP_CAPACITY_QUANTITY,
EQ.UNIT_OF_MEASURE DSP_UNIT_OF_MEASURE,
EQ.DI_WATER_VOLUME DSP_DI_WATER_VOLUME
FROM CP_EQUIPMENTS EQ, CP_X_EQUIPMENT_TYPES EQU
WHERE (((:SYSTEM.MODE = 'ENTER-QUERY') AND
( /* CG$MDTU_QWC_START VSLHST.EQ */
(EQ.facility_id = :INSHST.FACILITY_ID and
EQ.installation_id = :INSHST.INSTALLATION_ID and
(EQ.installed_date <= sysdate and
(EQ.removal_date is null or
EQ.removal_date >= sysdate) and
(EQ.stop_fill_date is null or
EQ.stop_fill_date >= sysdate))) /* CG$MDTU_QWC_END VSLHST.EQ */
)) OR ((NOT :SYSTEM.MODE = 'ENTER-QUERY') AND
( /* CG$MDTU_VWC_START VSLHST.EQ */
(EQ.facility_id = :INSHST.FACILITY_ID and
EQ.installation_id = :INSHST.INSTALLATION_ID and
(EQ.installed_date <= sysdate and
(EQ.removal_date is null or
EQ.removal_date >= sysdate) and
(EQ.stop_fill_date is null or
EQ.stop_fill_date >= sysdate))) /* CG$MDTU_VWC_END VSLHST.EQ */
AND EQ.EQUIPMENT_CODE = EQU.EQUIPMENT_CODE
ORDER BY L_EQUIPMENT_CODE) LOVQUERY
where 1 = 1
and LOVQUERY.L_FACILITY_ID = VSLHST.EQUIPMENT_FACILITY_ID
and LOVQUERY.L_INSTALLATION_ID = VSLHST.EQUIPMENT_INSTALLATION_ID
and LOVQUERY.L_EQUIPMENT_ID = VSLHST.EQUIPMENT_ID) AS DSP_DI_VESSEL_NUMBER
FROM DI_VESSEL_HISTORIES VSLHST
WHERE exists
(select 1
from CP_EQUIPMENTS EQ
where (VSLHST.EQUIPMENT_FACILITY_ID = EQ.FACILITY_ID)
and (VSLHST.EQUIPMENT_ID = EQ.EQUIPMENT_ID)
and (VSLHST.EQUIPMENT_INSTALLATION_ID = EQ.INSTALLATION_ID)
and EQ.FACILITY_ID = :b_INSHST_FACILITY_ID
and EQ.INSTALLATION_ID = :b_INSHST_INSTALLATION_ID
and (EQ.INSTALLED_DATE <= sysdate and
(EQ.REMOVAL_DATE is null or EQ.REMOVAL_DATE >= sysdate) and
(EQ.STOP_FILL_DATE is null or EQ.STOP_FILL_DATE >= sysdate)))
Thanks In Advance,
--Muniraj                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          

Muniraj,
System.mode is forms specific, the Forms2ADFGenerator should convert this part of the SQL statement and put it between brackets.
For references to block.item, it creates bind variables. Apparently, that did not happen. Can you send the <form_name>_
extracted.xml file that is located in the root Java source direvtory of the model project to [email protected]?
Thanks,
Steven Davelaar,
JHeadstart Team.

Similar Messages

  • ERROR - JBO-25005: Object name  for type View Object is invalid

    Hi All,
    I am getting this error "JBO-25005: Object name for type View Object is invalid" while executing my VO query in Controller code. Can any one please tell me the reason behind this error?
    I am creating a VO dynamically and .xml file of a VO is placed in a proper directly. Please let me know some inputs to resolve this.
    Thanks & Regards,
    -Abm

    I found the below explanation for the error mentioned. Check if your package name, Object names confirm to the standard specified
    JBO-25005: InvalidObjNameException
    Cause: An attempt has been made to associate a business component name with an object for which it is not valid.
    Action: The name should be a valid Java identifier with no spaces or punctuation. Names are of the format myProjectPackage.BusinessPackage.BusinessComponent

  • JBO-25005: Object name 1230_CONTEXT_VO for type View Object is invalid

    Hi
    I am getting JBO 25005 error when I do self appraisal and click cancel or continue button.
    We have extended VO and CO on this page, any thoughts what can be the reason behind this error?
    oracle.apps.fnd.framework.OAException: oracle.jbo.InvalidObjNameException: JBO-25005: Object name 1230_CONTEXT_VO for type View Object is invalid
         at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(OAPageErrorHandler.java:1247)
         at oracle.apps.fnd.framework.webui.OAPageErrorHandler.processErrors(OAPageErrorHandler.java:1435)
         at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2662)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1940)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:543)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:431)
         at OA.jspService(_OA.java:212)
         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 ##
    oracle.apps.fnd.framework.OAException: oracle.jbo.InvalidObjNameException: JBO-25005: Object name 1230_CONTEXT_VO for type View Object is invalid
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:912)
         at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(OAPageErrorHandler.java:1169)
         at oracle.apps.fnd.framework.webui.OAPageErrorHandler.processErrors(OAPageErrorHandler.java:1435)
         at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2662)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1940)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:543)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:431)
         at OA.jspService(_OA.java:212)
         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)
    oracle.apps.fnd.framework.OAException: oracle.jbo.InvalidObjNameException: JBO-25005: Object name 1230_CONTEXT_VO for type View Object is invalid
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:912)
         at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(OAPageErrorHandler.java:1169)
         at oracle.apps.fnd.framework.webui.OAPageErrorHandler.processErrors(OAPageErrorHandler.java:1435)
         at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2662)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1940)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:543)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:431)
         at OA.jspService(_OA.java:212)
         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)
    Edited by: 879492 on Apr 26, 2012 1:19 AM

    Hi NSP,
    Check if any personalization been done at responsibility level , that might be causing the issue .
    Also check the AOL functions as well .
    --Keerthi                                                                                                                                                                                                                                                                                                                                                           

  • JBO-25005: Object name  for type View Object is invalid

    Hi All,
    my workflow page is not opening when i try to open it by using some different responsibility.
    Its throwing an error message:
    JBO-25005: Object name for type View Object is invalid
    any suggestions?
    Thanks,
    NSP

    Hi NSP,
    Check if any personalization been done at responsibility level , that might be causing the issue .
    Also check the AOL functions as well .
    --Keerthi                                                                                                                                                                                                                                                                                                                                                           

  • 'mode' is not recognized as an internal or external command

    Hi All,
    We have installed Redwood Platform agent (windows-x86.exe -Windows (x86 32-bit)) on windows 2003 server.
    Windows Server version: u201CWindows 2003 x64 Ent R2u201D
    Installation drive is D:
    We have executed jobs (DOS Commands) on Windows server and it is completed successfully but it generating stderr.log apart from stdout.log file.
    stderr.log file content
    'mode' is not recognized as an internal or external command, operable program or batch file.
    We logged into Windows Server and checked for mode.com file in C:\WINDOWS\system32 folder. File mode.com is there in system32 folder.
    We have executed below commands on windows server and in stdout.log file we are not able to find mode.com file in system32 folder .Donu2019t know why it is not showing in stdout.log file. Please help me on this.
    ver
    C:
    cd WINDOWS\system32
    dir mo*
    whoami
    stdout.log file content:-
    Microsoft Windows [Version 5.2.3790]
    Volume in drive C has no label.
    Volume Serial Number is B00A-098F
    Directory of C:\WINDOWS\system32
    02/18/2007  11:05 AM           185,344 mobsync.dll
    02/18/2007  11:05 AM           134,144 mobsync.exe
    03/22/2006  07:00 AM           146,432 modemui.dll
    03/22/2006  07:00 AM            16,384 more.com
    03/22/2006  07:00 AM           555,008 moricons.dll
    03/22/2006  07:00 AM            12,288 mountvol.exe
                   6 File(s)      1,049,600 bytes
                   0 Dir(s)  122,509,565,952 bytes free
    nt authority\system
    On Windows XP we are not getting any error. We donu2019t have separate platform agent exe for x64 version.
    Version: SAP CPS 7.00 Patch 17.2
    Build:     M26.10-29140
    Thanks,
    Preethish

    Hi Anton,
    I tested on Windows XP and job not generated any stderr.log file .
    and below commnds display the mode.com file in stdout.log file.
    ver
    C:
    cd WINDOWS\system32
    dir mo*
    I tested same on another windows server (u201CWindows 2003 x64 Ent R2u201D ) and we get same error.
    That means we are getting this error only on Windows 2003 x64 server.
    and I cheked the security of mode.com file ( Properties -> Security) and it is same in both XP and 2003 server.I logged into 2003 server and executed mode cmd and it is executing. But it is not executing from Redwood.
    Thanks,
    Preethish

  • TS1538 Ipod is stuck in recovery mode, and not recognized by iTunes. Tried all of the recommended resets and combinations mentioned, but the ipod is still not recognized.  Genius said it may be a hardware error, but all of the buttons and cords work. Now

    iPod is stuck in recovery mode, and not recognized by iTunes.
    Tried all of the recommended resets and combinations mentioned, but the ipod is still not recognized.  Genius at apple said it may be a hardware error, "The button is broke" but all of the buttons and cords work and i proved it to him. He then said he doesnt know, ma Now what?

    If it does not work on other computers then I agree with the Genius

  • ADF BC View object with invalid character in column names

    Hello
    I Have a table with columns containing # character , for example ORDER# , When i create the read only view object j developer automatically renames this to order, but when i try to sort on that column or try search (filter) i get error that column order is not found
    what i can change to resolve this
    Thanks for your time
    Srinivas

    Thanks frank i will do that , as a work around , the error is resolved by changing the query from select order# , other fields to select order# as ordernumber etc
    Thanks
    Srinivas

  • View Object Editor in JHS 10.1.2 does not save any changes....

    Hi,
    When I did exactly as the JHeadstart Tutorial says, I noticed that
    in JHeadstart 10.1.2 with JDeveloper 10.1.2
    JHeadstart does not save any changes I make in the View Object Editor
    of the Application Structure File Editor !!!
    For instance when I change the Width property of an Attribute from 60 to 5
    it changes to 5, but when close the View Object Editor
    and reopen it again, the Width is back to 60...
    Even when I click the button "Validate the Application Structure File" before
    closing the VO Editor....
    What do I do ??? Is the only solution to edit the XML file
    or something like that without using the VO Editor ?
    Or is there a better solution ?
    Does it maybe work in an older version of JHeadstart ?
    If so, where is the older version available for download ?
    Thanks,
    Eric Joosse

    Eric,
    How did you leave the JHeadstart VO editor?
    The changes should be saved when you click the OK button in the VO editor itself, but they are not saved if you click Cancel, or the little cross in the upper right corner, or leave it open while going back to the Application Structure File editor. That's because it's a standalone editor (you can also find it when right-mouse-clicking the VO in the Model project). The icon in the Application Structure File editor is just a quick way to get to it.
    Hope this helps,
    Sandra Muller
    JHeadstart Team
    Oracle Consulting

  • Fail to upgrade my laptop to Windows 10 due to :"system thread exception not handled ndis.sys"

    Hi,I am trying to upgrade my Toshiba satellite Z30 laptop from windows 8.1 to windows 10.every time i try( and i tired more than 8 times already), it goes all the way to finishing installing the drivers and then after the auto reboot it comes up with a :"system thread exception not handled ndis.sys" error. at the second boot phase.I have an Intel I218V network adapter and an Intel(R) Dual Band Wireless-AC 3160.I tries upgrading them manually to a windows 10 compatible driver before the install but still no success.I also tried a clean booot and disabling both adapters before upgrading.does anyone have an additional idea of how to solve this problem? thanks Amose

    My many Win 10 install attempts have failed similarly. In the final phase of install during "Configuring Settings" I get the error message: "System Thread Exception Not handled...."  I'm not sure if it reads, "ndis.sys" at the end. The message doesn't remain long.I have a Satellite L355-S7905 with Windows 7 Home Premium. 

  • Ipod in recovery mode is not recognized by itunes

    My Ipod has entered recovery mode, but it is not recognized by itunes.
    It has the recovery mode screen with the Itunes logo and all, but even when I disconnect it, shut it down, hold the home button and connect it again, Itunes won't recognize it (I have already tried with two different computers, PC and MAC).
    Any ideas?
    Thanks.

    - Have you tried another cable?
    - I would try placing the iod in DFU mode.
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings

  • IPhone 5 stuck in recovery mode. Not recognized in iTunes for Windows

    Hi,
    My iphone 5 stuck during update to 8.2. It is now frozen in recovery mode, showing a 'connect to itunes' screen. The problem I have is that (the recently upgraded to 12.0.1) itunes is not recognizing my device. I have tried all of the suggestions here: iPhone, iPad, or iPod touch not recognized in iTunes for Windows, to no avail. I have not removed iTunes and reinstalled to test that, as I am concerned this will destroy the backups of my phone - which I will now desperately need once the phone is recovered.
    Has anyone got any suggestions?
    Cheers

    Hi AmberX92,
    If you receive an error 3194 when attempting to restore your iPhone, I would suggest that you troubleshoot using the steps in this article - 
    Error 3194, Error 17, or "This device isn't eligible for the requested build"
    Thanks for using Apple Support Communities.
    Best,
    Brett L 

  • System::Management::Automation not recognized in cpp code

    I need to call powershell cmdlets from cpp code. The cmdlets which will operate the vm's from the hyper-v.
    I found that to run the powershell cmdlets, will have to create powershell object and then could invoke the scripts I need to.
    But code fails at the line..
    using namespace System::Management::Automation;
    I am using a makefile to build my project.
    What libs, and dll's I need to add so the project will be able to recognize this namespace.

    Hi PuneDev,
    Sorry for the delay.
    If you want to load .dll file in powershell, please refer to the script below:
    [Reflection.Assembly]::LoadFile(“c:\temp\MyMathLib.dll”)
    Reference from:
    Run my third party dll with powershell
    Best Regards,
    Anna

  • Operating system (windows 7) not recognized by Dreamweaver

    Dear all,
    I wanted to download Dreamweaver from the Adobe website. My computer runs on Windows 7, which is listed as an acceptable operating system on the same webpage. However, when I click 'download', I get an error saying that my operating system is not compatible with dreamweaver. I had this problem using both Iron and Firefox as a browser. Does anyone recognize this problem and/or know the solution?
    Thanks in advance!

    Hi Saveedrow,
    Could you please download CC desktop from the link: https://creative.adobe.com/products/creative-cloud, sign in with your Adobe Id and try to download/Install Dreamweaver. If still the same error then try to downloading from the direct link: http://prodesigntools.com/adobe-cc-direct-download-links.html.
    Please follow the very important instruction before download.
    Regards,
    Romit Sinha

  • Connecting to home theatre system but is not recognized

    trying to connect to sony home theater system but says its not supported.  It states that ipod classic is supported.  Is there a way to update my older ipod?

    Connect the audio output from your Mac to a line in jack on the home stereo.
    OR...
    Get an AirPort Extpress.
    OR...
    Get an Apple TV.

  • Attempting to upgrade operating system. Disc not recognized.

    I went into the system preferences and changed the network startup disc from 10.3 folder to select at startup. Then I restarted. Now I have a grey screen with a blinking image of what looks like a blue globe. Keep in mind that I did make several other attempts such as restarting with the disc in it and holding down the c button which did not work. I also went into the disc utility and noticed that it was not mounting the external hard drive either. What is weird is that we purchased two of these from the same owner, and I had no issues with the other power pc. I need help!

    You will need to repost your question in an appropriate forum. This forum is devoted to MacBook Pro notebook computers with Intel processors made in 2008 and later. No such Mac can use OS X 10.3 in any manner. Please go to the "My Settings" link in the right sidebar. Enter your exact Computer Model and Operating System version. Save the changes, then go to this page:
    http://discussions.apple.com/index.jspa?categoryID=1
    Drill down through the categories until you find the appropriate forum for your specific computer model and repost your question there.

Maybe you are looking for

  • How to get DP name via script

    Hello, We are migrating from Symantec Altiris to SCCM 2012. In our current environment we have both HP models and now moving towards Lenovo models. We are using both respective Enterprise solutions for managing driver that is HP SSM and Lenovo Thinin

  • Move Assets from one device to another.

    I need to move all of the assets in "Library" to "Media". Is there a simple way to do this and have all of the meta data point to "Media" instead of "Library"?

  • Error while generating  BI Reports with Formules From Oracle 10g reports

    Hi Team, I had a problem of viewing reports in Bi Publisher. I will explain what i am doing I an taking an example table emplyee to generate the reports create or replace package body tstPkg as I am creating Package Header as Below function check_rol

  • How to store several available connections in UCP

    I'm creating connection manager class that would return connections to the customers of the class. My goal is to always have 2 available connections in pool so I wouldn't loose time for creating connections. When I return the available connection, I

  • Current iMac thermal question

    Do the latest n grestest (17 inch) iMacs have overheating issues like the G5 PPCs did ? I'm in Houston,Tx so there is no lack of heat & humidity here and it isn't getting any cooler ... G3 i   Mac OS X (10.3.9)   iMac in the future