Error page for a custom OAF page in e-Biz

Hi, All
I developed a simple custom search page and deployed it to e-Business (version 12.1.3). I runs well in jDeveloper at the client. This is the steps I did:
1) zip <JDEV_USER_HOME>\myclasses\xx
file structure:
xx\oracle\apps\xx\mem\server
xx\oracle\apps\xx\mem\webui
xx\oracle\apps\xx\schema\server
2) load to application tier $JAVA_TOP
3) chmod -R 775 $JAVA_TOP/xx
4) copy History.xml to
5) $APPL_TOP/xx/mds/webui
6) import MDS: java oracle.jrad.tools.xml.importer.XMLImporter $XX_TOP/mds/webui/HistoryPG.xml -username apps -password apps -dbconnection "(DESCRIPTION= (ADDRESS=(PROTOCOL=tcp)(HOST=db_host)(PORT=1521))(CONNECT_DATA= (SERVICE_NAME=$TWO_TASK) (INSTANCE_NAME=$TWO_TASK)))" -rootdir $XX_TOP/mds -rootPackage /xx/oracle/apps/xx
7) after import completed, bounce the web server
8) reqister a function in e-Biz
Type: SSWA jsp function
HTML Call: OA.jsp?page=xx/oracle/apps/xx/mem/server/HistoryPG
9) put the function in a menu.
When I launch the page, I got error "Error Page You have encountered an unexpected error. Please contact the System Administrator for assistance.
I would be appreciated if anyone can point out which step missed or is incorrect.
Rudolph

Hi Rudolph,
Are you getting any message like Click Here for Details.
Just click there to get the Java Error Stack.
As updated already in this thread, this Java Error Stack should help you in resolving the error.
Are you able to run the page from JDeveloper without any error?

Similar Messages

  • Pop up error messages for failed custom validation

    I am using jdev-10.1.3.4
    My application is in ADF BC
    I am writing custom validation through managed bean, I want pop-up error message for this failed validation.
    My problem scenario is:
    I had some list box as "status"-when this status changes to failed then the other field namely "closed date" should become madantory and also date in closed date field can't be in future.I am able to have all this validation through managed bean and also able to use af:messages through which i am able to print error message on the top of the form, but i am not able to give pop up error message for this failed validation.
    I had gone thru jdev guide but there is nothing like what i am asking.
    it would be of great help if someone can give me some example also.
    thanks in advance.

    ADF has global setting where you can configure the way messages are shown to user:
    You can make this setting in adf-faces-config.xml
    The <client-validation> element controls how client-side converters and validators are run.
    Three values are supported:
    "INLINE": validation is shown inline in a page (the default)
    "ALERT": validation is shown in an Javascript alert
    "DISABLED": validation is only handled on the server
    IN your case, set it to 'ALERT'.

  • Error for a custom OAF page

    Hi All,
    I am getting the error below while trying to enter a value in a field (The field has a search symbol, when i click on it i get an error "You have encountered an unexpected error. Please contact the System Administrator for assistance"). I have enabled the diagnostics and i could see the error below. This is 11.5.10.2
    oracle.apps.fnd.framework.OAException: oracle.jbo.SQLStmtException: JBO-27122: SQL error during statement preparation.
    Statement: SELECT ppd.segment2 position_number,
    ppd.segment3 position_title,
    papf.full_name employee_name,
    haou1.NAME budget_centre,
    haou1.organization_id budget_centre_id,
    hapf.position_id position_id,
    haou.organization_id position_org_id,
    papf.person_id person_id,
    haou.NAME position_org_name,
    haou.TYPE pos_org_type
    FROM hr_all_organization_units haou,
    hr_all_organization_units haou1,
    hr_all_positions_f hapf,
    per_position_definitions ppd,
    per_all_people_f papf,
    per_all_assignments_f paaf,
    per_person_types ppt,
    per_person_type_usages_f pptuf
    WHERE haou.business_group_id = :0 AND hapf.business_group_id = :1
    AND SYSDATE BETWEEN haou.date_from
    AND NVL (haou.date_to,
    TO_DATE ('31-DEC-4712', 'DD-MON-RRRR'))
    AND SYSDATE BETWEEN haou1.date_from
    AND NVL (haou1.date_to,
    TO_DATE ('31-DEC-4712', 'DD-MON-RRRR'))
    AND hapf.organization_id = haou.organization_id
    AND papf.person_id = paaf.person_id
    AND hapf.position_id = paaf.position_id
    AND papf.person_id = pptuf.person_id
    AND ppt.system_person_type = ('EMP')
    AND paaf.assignment_status_type_id = 1
    AND ppt.person_type_id = pptuf.person_type_id
    AND SYSDATE BETWEEN hapf.effective_start_date
    AND hapf.effective_end_date
    AND SYSDATE BETWEEN papf.effective_start_date
    AND papf.effective_end_date
    AND SYSDATE BETWEEN paaf.effective_start_date
    AND paaf.effective_end_date
    AND SYSDATE BETWEEN pptuf.effective_start_date
    AND pptuf.effective_end_date
    AND ppd.position_definition_id = hapf.position_definition_id
    AND haou1.organization_id = xxhr_utils_pkg.xxhr_get_parent_org_f (
    haou.organization_id,
    'BC',
    'WHO Organization Hierarchy',
    SYSDATE)
    AND haou.organization_id IN
    ( SELECT organization_id_child
    FROM per_org_structure_elements
    WHERE org_structure_version_id =
    (SELECT MAX (posv1.org_structure_version_id)
    FROM per_org_structure_versions posv1,
    per_organization_structures pos
    WHERE posv1.organization_structure_id =
    pos.organization_structure_id
    AND pos.primary_structure_flag = 'Y')
    CONNECT BY organization_id_parent =
    PRIOR organization_id_child
    START WITH organization_id_parent = :2)
    UNION ALL
    SELECT ppd.segment2 position_number,
    ppd.segment3 position_title,
    per_emp.employee_name employee_name,
    haou1.NAME budget_centre,
    haou1.organization_id budget_centre_id,
    hapf.position_id position_id,
    haou.organization_id position_org_id,
    per_emp.person_id person_id,
    haou.NAME position_org_name,
    haou.TYPE pos_org_type
    FROM hr_all_organization_units haou,
    hr_all_organization_units haou1,
    hr_all_positions_f hapf,
    per_position_definitions ppd,
    (SELECT papf.full_name employee_name,
    papf.person_id person_id,
    paaf.position_id position_id
    FROM per_person_types ppt,
    per_person_type_usages_f pptuf,
    per_all_people_f papf,
    per_all_assignments_f paaf
    WHERE 1 = 1
    AND SYSDATE BETWEEN pptuf.effective_start_date
    AND pptuf.effective_end_date
    AND ppt.system_person_type = ('EMP')
    AND ppt.person_type_id = pptuf.person_type_id
    AND papf.person_id = pptuf.person_id
    AND SYSDATE BETWEEN papf.effective_start_date
    AND papf.effective_end_date
    AND papf.person_id = paaf.person_id
    AND SYSDATE BETWEEN paaf.effective_start_date
    AND paaf.effective_end_date
    AND paaf.assignment_status_type_id = 1
    AND paaf.organization_id = :3) per_emp
    WHERE hapf.organization_id = :4
    AND haou.business_group_id = :5
    AND hapf.business_group_id = :6
    AND SYSDATE BETWEEN haou.date_from
    AND NVL (haou.date_to,
    TO_DATE ('31-DEC-4712', 'DD-MON-RRRR'))
    AND SYSDATE BETWEEN haou1.date_from
    AND NVL (haou1.date_to,
    TO_DATE ('31-DEC-4712', 'DD-MON-RRRR'))
    AND hapf.organization_id = haou.organization_id
    AND hapf.position_id = per_emp.position_id(+)
    AND SYSDATE BETWEEN hapf.effective_start_date
    AND hapf.effective_end_date
    AND ppd.position_definition_id = hapf.position_definition_id
    AND haou1.organization_id = xxhr_utils_pkg.xxhr_get_parent_org_f (
    haou.organization_id,
    'BC',
    'WHO Organization Hierarchy',
    SYSDATE)
    UNION ALL
    SELECT ppd.segment2 position_number,
    ppd.segment3 position_title,
    NULL employee_name,
    haou1.NAME budget_centre,
    haou1.organization_id budget_centre_id,
    hapf.position_id position_id,
    haou.organization_id position_org_id,
    NULL person_id,
    haou.NAME position_org_name,
    haou.TYPE pos_org_type
    FROM hr_all_organization_units haou,
    hr_all_organization_units haou1,
    hr_all_positions_f hapf,
    per_position_definitions ppd
    WHERE haou.business_group_id = :7 AND hapf.business_group_id = :8
    AND SYSDATE BETWEEN haou.date_from
    AND NVL (haou.date_to,
    TO_DATE ('31-DEC-4712', 'DD-MON-RRRR'))
    AND SYSDATE BETWEEN haou1.date_from
    AND NVL (haou1.date_to,
    TO_DATE ('31-DEC-4712', 'DD-MON-RRRR'))
    AND hapf.organization_id = haou.organization_id
    AND SYSDATE BETWEEN hapf.effective_start_date
    AND hapf.effective_end_date
    AND ppd.position_definition_id = hapf.position_definition_id
    AND haou1.organization_id = xxhr_utils_pkg.xxhr_get_parent_org_f (
    haou.organization_id,
    'BC',
    'WHO Organization Hierarchy',
    SYSDATE)
    AND NOT EXISTS
    (SELECT 'c'
    FROM per_person_types ppt,
    per_person_type_usages_f pptuf,
    per_all_people_f papf,
    per_all_assignments_f paaf
    WHERE 1 = 1
    AND SYSDATE BETWEEN pptuf.effective_start_date
    AND pptuf.effective_end_date
    AND ppt.system_person_type = ('EMP')
    AND ppt.person_type_id = pptuf.person_type_id
    AND papf.person_id = pptuf.person_id
    AND SYSDATE BETWEEN papf.effective_start_date
    AND papf.effective_end_date
    AND papf.person_id = paaf.person_id
    AND SYSDATE BETWEEN paaf.effective_start_date
    AND paaf.effective_end_date
    AND paaf.assignment_status_type_id = 1
    AND hapf.position_id = paaf.position_id)
    AND haou.organization_id IN
    ( SELECT organization_id_child
    FROM per_org_structure_elements
    WHERE org_structure_version_id =
    (SELECT MAX (posv1.org_structure_version_id)
    FROM per_org_structure_versions posv1,
    per_organization_structures pos
    WHERE posv1.organization_structure_id =
    pos.organization_structure_id
    AND pos.primary_structure_flag = 'Y')
    CONNECT BY organization_id_parent =
    PRIOR organization_id_child
    START WITH organization_id_parent = :9)
    at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:891)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:603)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
    at oracle.apps.fnd.framework.webui.OAListOfValuesHelper.processRequest(OAListOfValuesHelper.java:439)
    at oracle.apps.fnd.framework.webui.beans.layout.OAListOfValuesBean.processRequest(OAListOfValuesBean.java:413)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:959)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:926)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:646)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
    at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(OABodyBean.java:353)
    at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2373)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1759)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:511)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:432)
    at oa_html._OA._jspService(_OA.java:84)
    at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119) at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
    at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267) at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
    at oracle.jsp.JspServlet.service(JspServlet.java:156) at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
    at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456) at org.apache.jserv.JServConnection.run(JServConnection.java:294)
    at java.lang.Thread.run(Thread.java:619)
    ## Detail 0 ##
    java.sql.SQLException: ORA-01722: invalid number
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134)
    at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:289)
    at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:590)
    at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1973)
    at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteFetch(TTC7Protocol.java:1119)
    at oracle.jdbc.driver.OracleStatement.doExecuteQuery(OracleStatement.java:2566)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2963)
    at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:658)
    at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:584)
    at oracle.jbo.server.QueryCollection.buildResultSet(QueryCollection.java:631)
    at oracle.jbo.server.QueryCollection.executeQuery(QueryCollection.java:518)
    at oracle.jbo.server.ViewObjectImpl.executeQueryForCollection(ViewObjectImpl.java:3375)
    at oracle.jbo.server.OAJboViewObjectImpl.executeQueryForCollection(OAJboViewObjectImpl.java:828)
    at oracle.apps.fnd.framework.server.OAViewObjectImpl.executeQueryForCollection(OAViewObjectImpl.java:4525)
    at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:574)
    at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:544)
    at oracle.jbo.server.ViewRowSetImpl.executeDetailQuery(ViewRowSetImpl.java:619)
    at oracle.jbo.server.ViewObjectImpl.executeDetailQuery(ViewObjectImpl.java:3339)
    at oracle.jbo.server.ViewObjectImpl.executeQuery(ViewObjectImpl.java:3326)
    at oracle.apps.fnd.framework.server.OAViewObjectImpl.executeQuery(OAViewObjectImpl.java:441)
    at who.oracle.apps.xxwp.hrplan.lov.webui.XXWP_ParentPositionLOVCO.processRequest(XXWP_ParentPositionLOVCO.java:108)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:587)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
    at oracle.apps.fnd.framework.webui.OAListOfValuesHelper.processRequest(OAListOfValuesHelper.java:439)
    at oracle.apps.fnd.framework.webui.beans.layout.OAListOfValuesBean.processRequest(OAListOfValuesBean.java:413)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:959)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:926)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:646)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
    at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(OABodyBean.java:353)
    at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2373)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1759)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:511)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:432)
    at oa_html._OA._jspService(_OA.java:84)
    at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
    at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
    at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
    at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
    at oracle.jsp.JspServlet.service(JspServlet.java:156)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
    at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
    at org.apache.jserv.JServConnection.run(JServConnection.java:294)
    at java.lang.Thread.run(Thread.java:619) java.sql.SQLException: ORA-01722: invalid number
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134)
    at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:289)
    at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:590)
    at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1973)
    at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteFetch(TTC7Protocol.java:1119)
    at oracle.jdbc.driver.OracleStatement.doExecuteQuery(OracleStatement.java:2566)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2963)
    at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:658)
    at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:584)
    at oracle.jbo.server.QueryCollection.buildResultSet(QueryCollection.java:631)
    at oracle.jbo.server.QueryCollection.executeQuery(QueryCollection.java:518)
    at oracle.jbo.server.ViewObjectImpl.executeQueryForCollection(ViewObjectImpl.java:3375)
    at oracle.jbo.server.OAJboViewObjectImpl.executeQueryForCollection(OAJboViewObjectImpl.java:828)
    at oracle.apps.fnd.framework.server.OAViewObjectImpl.executeQueryForCollection(OAViewObjectImpl.java:4525)
    at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:574)
    at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:544)
    at oracle.jbo.server.ViewRowSetImpl.executeDetailQuery(ViewRowSetImpl.java:619)
    at oracle.jbo.server.ViewObjectImpl.executeDetailQuery(ViewObjectImpl.java:3339)
    at oracle.jbo.server.ViewObjectImpl.executeQuery(ViewObjectImpl.java:3326)
    at oracle.apps.fnd.framework.server.OAViewObjectImpl.executeQuery(OAViewObjectImpl.java:441)
    at who.oracle.apps.xxwp.hrplan.lov.webui.XXWP_ParentPositionLOVCO.processRequest(XXWP_ParentPositionLOVCO.java:108)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:587)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
    at oracle.apps.fnd.framework.webui.OAListOfValuesHelper.processRequest(OAListOfValuesHelper.java:439)
    at oracle.apps.fnd.framework.webui.beans.layout.OAListOfValuesBean.processRequest(OAListOfValuesBean.java:413)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:959)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:926)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:646)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
    at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(OABodyBean.java:353)
    at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2373)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1759)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:511)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:432)
    at oa_html._OA._jspService(_OA.java:84) at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
    at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
    at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
    at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
    at oracle.jsp.JspServlet.service(JspServlet.java:156)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
    at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
    at org.apache.jserv.JServConnection.run(JServConnection.java:294)
    at java.lang.Thread.run(Thread.java:619)
    The above error message also has the line below, just mentioning to avoid searching the whole error message.
    java.sql.SQLException: ORA-01722: invalid number
    Could you please help me with this issue.
    Thanks and Regards
    Srini

    Srini,
    Probably this is due to passing of null value instead of a valid number, while executing the VO.
    Check with the below line of code.
    XXWP_ParentPositionLOVCO.java @line number - 108
    Regards,
    Gyan

  • Stale Data error when invoking seeded OAF from a custom OAF page

    Hi All,
    We have a requirement in OAF where we have to open a Seeded OAF Page (Install Base) from our Custom Page. We are using the javascript function “openWindow()” to open the page in a new window. When we close the seeded page by clicking seeded page window using the Window-close button and then perform any event on the custom page, we get the Stale Data error as given below.
    Error: Stale Data
    The requested page contains stale data. This error could have been caused through the use of the browser's navigation buttons (the browser Back button, for example).
    Cause:
    The number of displayed records, 2, exceeds the actual number of records, 1, in view object OwqAM.IKNCICOWQDetailVO1. Some of the displayed records may have been deleted.
    Here is the part of code we have tried.
    String destination = "/OA_HTML/RF.jsp?function_id="+Func_Id+"&"+"resp_id="+Resp_id+"&"+"resp_appl_id="+Application_id+"&security_group_id=0&lang_code=US";
    String testDest = "javascript:openWindow(top,'"+destination+"',null,{width:750, height:550},false,'document',null);void(0);";
    OABodyBean bodyBean = (OABodyBean)pageContext.getRootWebBean();
    bodyBean.setOnLoad(testDest);
    Also this issue is encountered only when we open an OAF page in a new window. We also have a functionality where a JSP page is opened on similar lines, but above said navigations do not result in the same error.
    If anyone has come across such a issue and have a resolution, please let me know. Any pointers would be of great help.
    Thanks,
    Mrugesh

    Hi,
    We had tried passing RetainAM = Y and then bouncing apache. Still we were getting the same error.
    We are not facing the STALE DATA issue when we invoke JSP page and oracle forms. It is only when we launch a seeded OAF page from our custom OAF page that we are getting this error.
    Regards,
    Mrugesh

  • Very Urgent!!!Calling custom OAF vent reg page from JTT page gives error.

    1. We have a need to customize Oracle Marketing Online Event registration page (Oracle standard JTT page: amsEventRegistrantsEntryMain.jsp - available via function AMS_EVENT_REG_ENTRY) .
    2. We have created a new custom OAF page for the event registration and modified the function definition Web HTML property from "amsEventRegistrantsEntryMain.jsp" to "jtfcrmchrome.jsp?
    page=/oracle/apps/xxamw/xxams/event/webui/XXAmsEventRegScheduleCrePG&akRegionApplicationId=540&jttoijappn=OKL" (tried also with OA.jsp call)
    3. Now when we click on the Register link from the base (This Oracle standard Register link calls AMS_EVENT_REG_ENTRY and since AMS_EVENT_REG_ENTRY is modified we expect OAF page to render) page it throws "You have insufficient privileges for the current operation. Please contact your System Administrator." error. The function is not accessible.
    4. Navigation: Oracle Marketing Super User -> Marketing Online -> Event -> Registration Stb menu -> Search for a "Event Schedule Name" -> Click Go -> Click on Register link (We expect our custom OAF page when register link is
    clicked)
    Please note this design was tested successfully in an instance but when we migrated this to a new instance it fails. We cannot compare two instances since the previous instance no longer exists. Seems some issue with JTT menu straucture since we are using Oracle standard JTT function. This is a very urgent issue and any quick help or pointer will be great.
    Thanks/ Santanu

    Hi,
    R u still facing the issue?
    If So can you please tell me:
    Have u added your called function to the current user? That means by navigating to the responsibility you can access the same page directly, with out doing any transaction? If so then create your custom function with your required URL and attach to a menu ; then check if you are able to view that page from the menu navigation?If these thing is not working then I think you need to create a custom page that will extend the std region , that time hopefully it will work.
    Please post your result/thought!!
    Regards
    Apurba K Saha

  • How do I create custom HTTP Error Pages for a Weblogic Server

    I need to be able to display custom HTTP error pages such as a 404 from my Weblogic
    Server when my web application is not deployed.
    Is this possible?
    I have seen some suggestions about putting something like:
    <error-page>
    <error-code>404</error-code>
    <location>Error404.jsp</location>
    </error-page>
    in the web.xml for my web application but I can't see how that would work since
    the web application would not be deployed. I need to set these messages at the
    server level.
    Any help would be appreciated!
    thanks

    Your CategoryAxis id="ha_ccm" uses categoryField="period", and this is the label for the your series (i.e. "Quarter 4/2010"). You cannot have multiple categoryFields for the CategoryAxis; it can only use one data field for the labels. You can use data tips and/or label functions to show the individual series' values on the columns.
    Also:
    Your labelField in the ColumnSeries are set to a ColumnSet name instead of a field name in your dataprovider.
    Font must be embedded if you set ColumnChart.showLabelVertically="true".

  • Custom Error Pages (Not for PL/SQL Errors)

    Hi,
    How can I make my own error page for when I branch to an invalid page?
    I caught this example:
    http://djmein.blogspot.com/2007/04/custom-error-handling-in-apex.html
    But I beleive it is only for handling exceptions thrown in PL/SQL and this cannot be applied here.
    Anyone know?

    I'm struggling on this also. Anyone have the solution as well?

  • Error in configuring Custom Error Pages for Faces Portlets

    According to
    http://e-docs.bea.com/wls/docs92/schemaref/controls-netuix/http.www.bea.com.servers.netuix.xsd.controls.netuix.1.0.0/element/facescontent.html
    you can specify an errorUri attribute on the facesContent object for the error page.
    <netuix:facesContent contentUri="/testList.jsp" errorUri="/error.jsp"/>
    WebLogic Workshop even allows setting this in the tool.
    However, the errorUri never gets picked up and the following error shows up.
    <BEA-423266> <No setter for property :: errorUri.>
    Anyone faced this problem. Is there any other alternative to specify a custom error page for JSF portlets.
    Please note that the errorUri works fine for the jspContent tag used for JSP Portlets.

    Hi Sanjeev,
    You need to check if you have access to AXF_CONFIGS table. Check if you have ran GRANT_ACCESS.sql script which has below grant commands.
    grant execute any type to apps;
    grant create type to AXF;
    grant select on AXF.AXF_CONFIGS to apps;
    v_formId AXF_CONFIGS.FORMID%TYPE; means tableName.columnName%type;
    so looks like when you are running AXF_EBS_SOLUTION_DATA.sql you are not able to access AXF_CONFIGS table.
    Hope this helps.
    Regards,
    Amol Gavali.

  • Embeddable Region for Custom OAF Pages

    Hi
    1.
    I have a custom OAF Page in which I have embedded the CZInitialize.jsp page.
    I have another mySave.jsp page which will be called after saving the configuration (return_url parameter of the configurator call).
    In mySave.jsp I have to call Pricing API and get the price of the item.
    This item price, I have to display in the main OAF region.
    The problem I am facing is that I am not able to reload the page when the configurator is saved.
    Is there a way to do this?
    2.
    Is there a framework embeddable region which I can just extend in my Custom OAF Page so that I can capture the event of configuration save in my main page Controller?
    Any help in this is greatly appreciated.
    Thanks and Regards
    Sameer

    Hi,
    Refer below link:
    http://mukx.blogspot.in/2009/04/moacmulti-org-access-control-in-oa.html
    --Sushant
    Edited by: Sushant Sharma on 26 Oct, 2012 8:38 PM

  • R12 CLASSPATH to compile the 11i custom OAF pages in R12

    Hi,
    Can you please let us know how to compile the 11i custom OAF pages in R12 in Unix Box.
    We copied the 11i custom OAF pages to R12 and when we try to compile the java files all are erroring out. How can we compile these classes.
    Thanks,
    HC

    Hi Anoop,
    Thanks for responding. Please find the error messages below.
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    public void setupHeaderAndItemsRgn(OAPageContext oapagecontext, OAWebBean oawebbean)
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:770: cannot find symbol
    symbol : class OAPageContext
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    public void setupHeadercustributesTable(OAPageContext oapagecontext, OAWebBean oawebbean)
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:770: cannot find symbol
    symbol : class OAWebBean
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    public void setupHeadercustributesTable(OAPageContext oapagecontext, OAWebBean oawebbean)
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:823: cannot find symbol
    symbol : class OAPageContext
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    public void processRequest(OAPageContext oapagecontext, OAWebBean oawebbean)
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:823: cannot find symbol
    symbol : class OAWebBean
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    public void processRequest(OAPageContext oapagecontext, OAWebBean oawebbean)
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:1499: cannot find symbol
    symbol : class OAPageContext
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    public void processFormData(OAPageContext oapagecontext, OAWebBean oawebbean)
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:1499: cannot find symbol
    symbol : class OAWebBean
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    public void processFormData(OAPageContext oapagecontext, OAWebBean oawebbean)
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:1513: cannot find symbol
    symbol : class OAPageContext
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    public void processFormRequest(OAPageContext oapagecontext, OAWebBean oawebbean)
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:1513: cannot find symbol
    symbol : class OAWebBean
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    public void processFormRequest(OAPageContext oapagecontext, OAWebBean oawebbean)
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:2022: cannot find symbol
    symbol : class OAPageContext
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    private void setupContractTeams(OAPageContext oapagecontext, OAWebBean oawebbean, BidHeaderVORow bidheadervorow)
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:2022: cannot find symbol
    symbol : class OAWebBean
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    private void setupContractTeams(OAPageContext oapagecontext, OAWebBean oawebbean, BidHeaderVORow bidheadervorow)
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:2022: cannot find symbol
    symbol : class BidHeaderVORow
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    private void setupContractTeams(OAPageContext oapagecontext, OAWebBean oawebbean, BidHeaderVORow bidheadervorow)
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:2078: cannot find symbol
    symbol : class OAPageContext
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    private void setupSiteAddressBean(OAPageContext oapagecontext, OAWebBean oawebbean, Number number, Number number1, Number number2)
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:2078: cannot find symbol
    symbol : class OAWebBean
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    private void setupSiteAddressBean(OAPageContext oapagecontext, OAWebBean oawebbean, Number number, Number number1, Number number2)
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:2211: cannot find symbol
    symbol : class OAPageContext
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    private void removeSessionValues(OAPageContext oapagecontext, OAWebBean oawebbean)
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:2211: cannot find symbol
    symbol : class OAWebBean
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    private void removeSessionValues(OAPageContext oapagecontext, OAWebBean oawebbean)
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:2218: cannot find symbol
    symbol : class OAPageContext
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    private void putSessionValues(OAPageContext oapagecontext, OAWebBean oawebbean)
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:2218: cannot find symbol
    symbol : class OAWebBean
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    private void putSessionValues(OAPageContext oapagecontext, OAWebBean oawebbean)
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:54: cannot find symbol
    symbol : variable VersionInfo
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    public static final boolean RCS_ID_RECORDED = VersionInfo.recordClassVersion("$Header: ResponsePageLevelCO.java 115.138.11510.27 2006/04/25 22:08:10 snatu shi" +
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:60: cannot find symbol
    symbol : class OAApplicationModule
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    OAApplicationModule oaapplicationmodule = oapagecontext.getApplicationModule(oawebbean);
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:61: cannot find symbol
    symbol : class OAViewObject
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    OAViewObject oaviewobject = (OAViewObject)oaapplicationmodule.findViewObject("BidItemsVO");
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:61: cannot find symbol
    symbol : class OAViewObject
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    OAViewObject oaviewobject = (OAViewObject)oaapplicationmodule.findViewObject("BidItemsVO");
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:62: cannot find symbol
    symbol : class OAViewRowImpl
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    OAViewRowImpl oaviewrowimpl = (OAViewRowImpl)oaviewobject.getCurrentRow();
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:62: cannot find symbol
    symbol : class OAViewRowImpl
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    OAViewRowImpl oaviewrowimpl = (OAViewRowImpl)oaviewobject.getCurrentRow();
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:71: cannot find symbol
    symbol : class OAPageLayoutBean
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    OAPageLayoutBean oapagelayoutbean = oapagecontext.getPageLayoutBean();
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:72: cannot find symbol
    symbol : class ResponseAM
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    ResponseAM responseam = (ResponseAM)oapagecontext.getApplicationModule(oawebbean);
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:72: cannot find symbol
    symbol : class ResponseAM
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    ResponseAM responseam = (ResponseAM)oapagecontext.getApplicationModule(oawebbean);
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:73: cannot find symbol
    symbol : class BidHeaderVO
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    BidHeaderVO bidheadervo = (BidHeaderVO)responseam.findViewObject("BidHeaderVO");
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:73: cannot find symbol
    symbol : class BidHeaderVO
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    BidHeaderVO bidheadervo = (BidHeaderVO)responseam.findViewObject("BidHeaderVO");
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:74: cannot find symbol
    symbol : class BidHeaderVORow
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    BidHeaderVORow bidheadervorow = (BidHeaderVORow)bidheadervo.first();
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:74: cannot find symbol
    symbol : class BidHeaderVORow
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    BidHeaderVORow bidheadervorow = (BidHeaderVORow)bidheadervo.first();
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:76: cannot find symbol
    symbol : class MessageToken
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    MessageToken amessagetoken[] = {
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:77: cannot find symbol
    symbol : class MessageToken
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    new MessageToken("AUCTIONID", bidheadervorow.getAuctionDisplayNumber().toString()), new MessageToken("BIDNUMBER", bidheadervorow.getBidNumber().toString())
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:77: cannot find symbol
    symbol : class MessageToken
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    new MessageToken("AUCTIONID", bidheadervorow.getAuctionDisplayNumber().toString()), new MessageToken("BIDNUMBER", bidheadervorow.getBidNumber().toString())
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:79: cannot find symbol
    symbol : variable SourcingUtil
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    s = SourcingUtil.getMessage(oapagecontext, oawebbean, "PON_CRT_RESP_TITLE", amessagetoken, bidheadervorow.getDoctypeId().intValue());
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:87: cannot find symbol
    symbol : class ResponseAM
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    ResponseAM responseam = (ResponseAM)oapagecontext.getApplicationModule(oawebbean);
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:87: cannot find symbol
    symbol : class ResponseAM
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    ResponseAM responseam = (ResponseAM)oapagecontext.getApplicationModule(oawebbean);
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:88: cannot find symbol
    symbol : class BidHeaderVO
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    BidHeaderVO bidheadervo = (BidHeaderVO)responseam.findViewObject("BidHeaderVO");
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:88: cannot find symbol
    symbol : class BidHeaderVO
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    BidHeaderVO bidheadervo = (BidHeaderVO)responseam.findViewObject("BidHeaderVO");
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:89: cannot find symbol
    symbol : class BidHeaderVORow
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    BidHeaderVORow bidheadervorow = (BidHeaderVORow)bidheadervo.getCurrentRow();
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:89: cannot find symbol
    symbol : class BidHeaderVORow
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    BidHeaderVORow bidheadervorow = (BidHeaderVORow)bidheadervo.getCurrentRow();
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:91: cannot find symbol
    symbol : class OAPageLayoutBean
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    OAPageLayoutBean oapagelayoutbean = (OAPageLayoutBean)oawebbean;
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:91: cannot find symbol
    symbol : class OAPageLayoutBean
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    OAPageLayoutBean oapagelayoutbean = (OAPageLayoutBean)oawebbean;
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:94: cannot find symbol
    symbol : class OABreadCrumbsBean
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    OABreadCrumbsBean oabreadcrumbsbean = (OABreadCrumbsBean)oapagelayoutbean.getBreadCrumbsLocator();
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:94: cannot find symbol
    symbol : class OABreadCrumbsBean
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    OABreadCrumbsBean oabreadcrumbsbean = (OABreadCrumbsBean)oapagelayoutbean.getBreadCrumbsLocator();
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:115: cannot find symbol
    symbol : variable OAUrl
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    s = new String(OAUrl.removeParamFromUrlString(s1, as));
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:120: cannot find symbol
    symbol : variable SourcingUtil
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    s = SourcingUtil.constructOAFLink("PON_SOURCING_BUYER", "buying", 0);
    ^
    /opt/app/atepl12/apps/apps_st/comn/java/classes/cust/oracle/apps/pon/auctions/webui/CustResponsePageLevelCO.java:123: cannot find symbol
    symbol : variable SourcingUtil
    location: class cust.oracle.apps.pon.auctions.webui.CustResponsePageLevelCO
    s = SourcingUtil.constructOAFLink("PON_SOURCING_SUPPLIER", "selling", 0);
    ^
    100 errors

  • Calling custom OAF page from JSP page in Oracle apps

    Hi,
    I am working on a requirement to call a Custom OAF page from a JSP page in Oracle apps 11.5.10.
    I have registered the OAF page and defined a function for it. When we call this OAF page from JSP (without parameter), the page opens up
    URL: http://APPSURL:8020/OA_HTML/RF.jsp?function_id=27221&resp_id=50312&resp_appl_id=515&security_group_id=0&lang_code=US
    but as soon as I am trying to pass a parameter sr_id in the URL:
    http://APPSURL:8020/OA_HTML/RF.jsp?function_id=27221&resp_id=50312&resp_appl_id=515&security_group_id=0&lang_code=US&sr_id=106
    we are getting following error:
    You are trying to access a page that is no longer active.
    - The referring page may have come from a previous session. Please select Home to proceed.
    Please let me know if someone has faced the same problem...
    Thanks!!!

    Hi,
    Before calling a OAF page..from external JSP page...u need to set certain mandatory parameter like transaction Id and context.
    Regards,
    Gyan

  • Customized OAF page -- Duplicates Issue

    Hi All,
    We have a customized OAF page which allows user to perform the below operations,
    1. Query for records
    2. Add a new row
    3. Save the changes
    Issue is 3 of the fields in the page are of unique combination. We perform the validation to ensure unique values only get stored, if user tries to enter an value combination which already exists then system throws an error. But when user enters valid records and save it, the previously entered wrong data also gets stored to database.
    I have explained the scenario below, Item id/global code/local code are the unique combination fields
    1. User enters below values
    ITEM ID GLOBALCode LocalCode Desc
    IT123 100 100 T1
    Saved successfully.
    2. User now enters below values
    ITEM ID GLOBALCode LocalCode Desc
    IT123 100 100 T2
    When tries to save, get error message as Combination already exist. If i search for item id IT123 and Global code 100 it shows only 1 row
    3. User now enters below values
    ITEM ID GLOBALCode LocalCode Desc
    IT123 100 101 T3
    Saves the data successfully. But if i search for item id IT123 and global code 100 i am getting 3 rows as below,
    ITEM ID GLOBALCode LocalCode Desc
    IT123 100 100 T1
    IT123 100 100 T2
    IT123 100 101 T3
    Errored out record in step 2 also got inserted. Please assist if any of you have faced similar issue else provide some pointers in resolving the issue.
    Thanks,
    Rajesh SM.

    Rajesh,
    Issue is 3 of the fields in the page are of unique combination. We perform the validation to ensure unique values only get stored,
    if user tries to enter an value combination which already exists then system throws an error. But when user enters valid records
    and save it, the previously entered wrong data also gets stored to database.what all the steps or code u wrote to check the combination already exists or not. Post the method u have written to check the same.
    Regards,
    Gyan

  • Issue with messagedownload field on custom OAF page

    We have a custom OAF page where we are displaying file attachments using messagedownload field.
    We have a VO for this field where we are fetching the file name and file (BLOB).
    For the message download field, the properties are set as:
    DataType: VARCHAR2
    View Instance: custom vo
    View attribute: filename
    File View Attribute: filedata(BLOB column)
    The issue is when we have multiple files to display of the same file type like 6 pdf files, the file name is correct, but the content is correct only for the first file. The remaining 5 files also show the content of the first file though the filename is correct.
    Please let us know if anyone faced similar issue and the probable solution.
    Thanks in advance.
    Regards,
    Kiranmayi.

    Check that the view object used to render the table must have a designated primary key, else download bean will download content from the first row every time.
    --Sushant

  • Custom 404 Error page in Sharepoint Foundation 2013

    Hi all,
    How to point to the custom 404 error page in Share Point Foundation 2013. I have seen some links but not working for me. Please me let me know if you have any suggestion.
    Thanks.

    Can i create any page and pass the page url in it,like if i have created a page as custom404.aspx under pages library so do i need to do like this?
    $spsite = Get-SPSite "<http://sharepoint:1000/>"
    $spsite.FileNotFoundUrl = "<pages/custom404.aspx>"
    is this the correct way or i am doing incorrectly??
    please suggest

  • How can I set up a custom 404 error page on OSX Server?

    I moved my web site to a local server and changed the structure drastically.  Unfortunately I am getting hits for information that was on the old server which I haven't put back yet.  I'd like to set up a custom 404 Error Page to let people know what's up.  In server.app I can set up a 500 error page but not a 404 and when I tried hand coding it into the sites .conf file I really messed things up.  It took me a while to get that all corrected!
    Thanks for any advice,
    Bill W

    Found it!
    Under the web server Advanced Setting set "Allow overrides using .htaccess" then create an .htaccess file in the root directory with the line:
    ErrorDocument 404 notfounderror.html
    Use whatever HTML/PHP/etc. document you have created.

Maybe you are looking for