OAF Page not opening

Hi All,
I hv created a custom OA page and attached the page function to WF_GUEST_GRANTS menu, so that it can be opened up thro an email notification without logging in. It works fine but after accessing it for about 5-6 times, the page doesnt showup anything. I need to clear the cookies in IE and only then the page shows up. Anything can be done to handle this during developing the page ?
Regards,
Suresh.

Can you also provide the kind of details you are putting on page ?
--Shiv                                                                                                                                                                                   

Similar Messages

  • Why will certain pages not open

    why will certain pages not open?  i get "failed to open page"

    Down For Everyone Or Just Me -> Check if your website is down or up?

  • Applet windows page not opened

    Hi
    In oracle application 11i , when i click the system->define.. applet windows page not opened.. please give possible solution to clear the issue...
    Regards

    Hi,
    when i click the system->define.. applet windows page not openedPlease mention more details about the navigation path.
    please give possible solution to clear the issue.Please see this thread.
    applet page not open in linux
    applet page not open in linux
    Regards,
    Hussein

  • OAF : Could not open PDF from Self Service Page or Jdeveloper.

    Hi Friends,
    We are on R12 Applications.
    Appreciate any help.
    Requirement :
    1. Open the PDF from Self Service Page.
    Error :
    Adobe Reader Could Not Open the PDF because it is either not a supported file type or the file is damaged.
    Below is my Controller and AM code
    ======================
    Controller Code
    ==========
    /*===========================================================================+
    | Copyright (c) 2001, 2005 Oracle Corporation, Redwood Shores, CA, USA |
    | All rights reserved. |
    +===========================================================================+
    | HISTORY |
    +===========================================================================*/
    package XXX.oracle.apps.ak.xml.webui;
    import oracle.apps.fnd.common.VersionInfo;
    import oracle.apps.fnd.framework.webui.OAControllerImpl;
    import oracle.apps.fnd.framework.webui.OAPageContext;
    import oracle.apps.fnd.framework.webui.beans.OAWebBean;
    import oracle.apps.fnd.common.VersionInfo;
    import oracle.apps.fnd.framework.webui.OAControllerImpl;
    import oracle.apps.fnd.framework.webui.OAPageContext;
    import oracle.apps.fnd.framework.webui.beans.OAWebBean;
    import oracle.apps.fnd.framework.server.OAApplicationModuleImpl;
    import oracle.xml.parser.v2.XMLNode;
    import java.io.ByteArrayInputStream;
    import java.io.ByteArrayOutputStream;
    import javax.servlet.ServletOutputStream;
    import javax.servlet.http.HttpServletResponse;
    import oracle.apps.fnd.framework.OAException;
    import oracle.apps.fnd.framework.server.OADBTransactionImpl;
    import oracle.apps.xdo.XDOException;
    import oracle.apps.xdo.oa.schema.server.TemplateHelper;
    import oracle.cabo.ui.data.DataObject;
    import oracle.jbo.XMLInterface;
    * Controller for ...
    public class XMLIntegrationCO extends OAControllerImpl
    public static final String RCS_ID="$Header$";
    public static final boolean RCS_ID_RECORDED =
    VersionInfo.recordClassVersion(RCS_ID, "%packagename%");
    public static final int DEPTH = 4;
    public static final int APP_ID = 20003;
    public static final String APP_NAME = "XBOL";
    public static final String TEMPLATE_CODE ="Emp_Template";
    public static final int BUFFER_SIZE = 32000;
    * Layout and page setup logic for a region.
    * @param pageContext the current OA page context
    * @param webBean the web bean corresponding to the region
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    OAApplicationModuleImpl am= (OAApplicationModuleImpl)pageContext.getApplicationModule(webBean);
    am.invokeMethod("initEmpVO");
    am.invokeMethod("getEmpDataXML");
    * Procedure to handle form submissions for form elements in
    * a region.
    * @param pageContext the current OA page context
    * @param webBean the web bean corresponding to the region
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    OAApplicationModuleImpl am= (OAApplicationModuleImpl)pageContext.getApplicationModule(webBean);
    String event = pageContext.getParameter("event");
    System.out.println("XXX : Event "+event);
    if("GenerateReport".equals(event))
    // Get the HttpServletResponse object from the PageContext. The report output is written to HttpServletResponse.
    DataObject sessionDictionary = (DataObject)pageContext.getNamedDataObject("_SessionParameters");
    HttpServletResponse response = (HttpServletResponse)sessionDictionary.selectValue(null,"HttpServletResponse");
    try {
    ServletOutputStream os = response.getOutputStream();
    // Set the Output Report File Name and Content Type
    String contentDisposition = "attachment;filename=EmpReport.pdf";
    response.setHeader("Content-Disposition",contentDisposition);
    response.setContentType("application/PDF");
    // Get the Data XML File as the XMLNode
    XMLNode xmlNode = (XMLNode) am.invokeMethod("getEmpDataXML");
    ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
    xmlNode.print(outputStream);
    ByteArrayInputStream inputStream = new ByteArrayInputStream(outputStream.toByteArray());
    ByteArrayOutputStream pdfFile = new ByteArrayOutputStream();
    //Generate the PDF Report.
    TemplateHelper.processTemplate(
    ((OADBTransactionImpl)pageContext.getApplicationModule(webBean).getOADBTransaction()).getAppsContext(),
    APP_NAME,
    TEMPLATE_CODE,
    ((OADBTransactionImpl)pageContext.getApplicationModule(webBean).getOADBTransaction()).getUserLocale().getLanguage(),
    ((OADBTransactionImpl)pageContext.getApplicationModule(webBean).getOADBTransaction()).getUserLocale().getCountry(),
    inputStream,
    TemplateHelper.OUTPUT_TYPE_PDF,
    null,
    pdfFile);
    // Write the PDF Report to the HttpServletResponse object and flush.
    byte[] b = pdfFile.toByteArray();
    response.setContentLength(b.length);
    os.write(b, 0, b.length);
    os.flush();
    os.close();
    catch(Exception e)
    response.setContentType("text/html");
    throw new OAException(e.getMessage(), OAException.ERROR);
    pageContext.setDocumentRendered(true);
    AM CODE
    ======
    package subba.oracle.apps.ak.xml.server;
    import java.io.ByteArrayOutputStream;
    import oracle.apps.fnd.common.MessageToken;
    import oracle.apps.fnd.framework.OAException;
    import oracle.apps.fnd.framework.OAViewObject;
    import oracle.apps.fnd.framework.server.OAApplicationModuleImpl;
    import oracle.apps.fnd.framework.test.inputscanner.server.EmpVOImpl;
    import oracle.help.common.xml.*;
    import oracle.jbo.XMLInterface;
    import oracle.xml.parser.v2.XMLDocument;
    import oracle.xml.parser.v2.XMLElement;
    import oracle.xml.parser.v2.XMLNode;
    // --- File generated by Oracle ADF Business Components Design Time.
    // --- Custom code may be added to this class.
    // --- Warning: Do not modify method signatures of generated methods.
    public class testXMLAMImpl extends OAApplicationModuleImpl {
    /**This is the default constructor (do not remove)
    public testXMLAMImpl() {
    /**Sample main for debugging Business Components code using the tester.
    public static void main(String[] args) {
    launchTester("XXX.oracle.apps.ak.xml.server", /* package name */
    "testXMLAMLocal" /* Configuration Name */);
    public void initEmpVO()
    EmployeeVOImpl vo = getEmployeeVO1();
    if(vo == null)
    MessageToken errTokens[] = {
    new MessageToken("OBJECT_NAME", "EmployeeVO1")
    throw new OAException("AK", "FWK_TBX_OBJECT_NOT_FOUND", errTokens);
    } else
    vo.executeQuery();
    public void getEmpDataXML()
    try {
    ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
    OAViewObject vo = (OAViewObject)findViewObject("EmployeeVO1");
    ((XMLNode) vo.writeXML(4, XMLInterface.XML_OPT_ALL_ROWS)).print(outputStream);
    System.out.println(outputStream.toString());
    catch(Exception e)
    throw new OAException (e.getMessage());
    /**Container's getter for EmployeeVO1
    public EmployeeVOImpl getEmployeeVO1() {
    return (EmployeeVOImpl)findViewObject("EmployeeVO1");
    }

    Try the OA Framework Forum

  • SkillBuilders Modal Page not opening when click edit link in a Manual Tabul

    Hello,
    This thread is related to a recent thread I created (Column Link is not working on a Manual Tabular Form I am using Apex 4.1.1.00.27, Oracle DB 10.2.0.5.0.
    In summary, I have a collection that retrieves the information from the EMP table, a manual tabular form based on that collection, and a link in the DEPTNO field that branch to another page with a Form based on the DEPT table.
    What I want to accomplish is to call the DEPT Form as a modal page that opens from my EMP Page.
    What I did so far:
    1. DEPT Page uses the popup template and branch to itself.
    2. The Link Attribute of the Link Column (DEPTNO) is set to: onclick= *"return false;"*
    3. I created a DA using jQuery Selector: *td[headers="LINK"] a*. Action: SkillBuilders Modal Page plug-in. URL Location: Attribute of Triggering Element. Attribute Name: href. Event Scope: live (Dynamic in Apex 4.2).
    4. Changed the Application Security to Allow Embed in Frames.
    My problem is that when I click the DEPTNO column, is it not opening the Modal Page.
    I created an example on apex.oracle.com in case some of you want to look into it:
    Workspace: EDIAZJORGE
    Username: test
    Password: test123
    App Name: Sample App
    App Number: 12231
    I appreciate any help.
    Thank you,
    Erick

    You were using a wrong jQuery selector. There are no columns with headers "LINK". Evidently, you want the modal to open through clicking the icon in the "DEPTNO" column, so all that is required is to change the selector to
    td[headers="DEPTNO"] aYou can always easily test your selectors when you use a tool like Firebug. Simply run the selector in the console, and it'll show you all selected object. In your case, executing $('td[headers="LINK"] a') showed nothing. Dropping "a" still gave nothing. At that point i was pretty sure there were no columns with such a header...

  • 10.1.2.0.2 portal page not opening

    Hi,
    I have already 10.1.2.0.0 Infra on one m/c1 and installed 10.1.2.0.2 middletier on other m/c2 and using OID from m/c1.
    Installation was successful, but portal page is not opening, any ideas.
    Thanks in advance
    Mak

    There is a either a big bug in 10.1.2.0.2 or i am going somewhere wrong.
    On one of the test m/c's i have installed 10.1.2.0.2 infra and middletier but still portal page was not opening and also to astonishment in this case also all the applications in oc4j_portal were not loaded.
    Thanks in advance

  • Link to page, not open new window

    Hi there
    in Edge, how do I code to link to a page, without opening a new browser window (but also without using _self which caused problems by trying to open the link in the animation window).
    Thanks
    Simon

    So ... just to clarify ... _blank would open a new window, not what I want!

  • Self service pages not opening

    Dear All
    We are upgrading form 11.0.3 to R12, and they have build lots customized workflow and self service pages. The menus and functions are there, but still it is not opening and it says page cant be opened.
    But employee self service responsibilty is opening fine. Do we need to do any setups or we have anything to move like we move the custom form and reports.
    Kindly help me in this
    Thanks in advance
    Regards
    Nakshathra

    So no Self Service page is opening? If that is the case, then I guess some configuration issue with URL or something similar.
    Is Apache log completely empty or it has the page request calls logged?
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Correct page not open . but open page another site.

    I use Firefox latest version 5.0.1 . when i type address bar any website name and enter then start advertise and business related website are open. suppose i search any song Google site and then enter so, related webpage not open . the page open in another site.

    Many possibilities here. Lets start from the begining.
    a) Does your Apex run on a machine that can be accessed over the internet?Try the ping <IP> from Internet. You shoudl be able to reach it.
    b) If a is yes, have you opened your Apex port on your firewall for access?
    Regards,

  • Cisco Contact center Web page not opening

    Hi,
    I am using Cisco Contact center version 7 in High availability mode. Web page of the primary server is not opening, but web page of secondary server is working. If I restart the primary server the web page starts working but after sometime its stop working.
    Please help me to resolve the same.
    regards,
    Neo

    What Sr do you have on the UCCX 7.0(1) version ?
    Your issue looks similar to the defect "CSCsu22366 - AppAdmin Page does not load -World Wide Publishing service stuck "
    Once you see the issue can you try the following work around
    ====
    Login to appadmin from the 2nd node, go to the Control Center page, select the broken node,
    and restart it's CRS Administration process
    =====
    Hope this helps
    Anuj

  • HTML pages not opening

    Dear experts,
    We recently cloned production to make a new test . But the HTML pages are not opening like the one that open when you click salary button on the assignment form. Iam getting the following error
    Error: ORA-01403 no data found
    any ideas?
    Regards
    Muhammad Noman Shafique

    Dear friends,
    We restarted the apache and now everything is working fine.
    Regards,
    Muhammad Noman Shafique

  • Java Servlet page not opening error 404

    Hi!
    I am working with servlets. I compiled the java file and the class file is been moved to
    c:\javawebserver2.0\servlets, and the html files moved to public_html. Html files r opening
    the classpath is mapped to jsdk.jar i.e
    set CLASSPATH=c:\javawebserver2.0\lib\jsdk.jar
    Built-in samples r working without any problem
    when i try to run the servlet
    Page Not Found error 404 occuring
    Please do the favour for me
    thanks

    404 Not Found means you didn't deploy the app properly.
    I think deploying an app like this is a terrible idea. If you have more than one app deployed on a production web server/servlet engine, you wouldn't want to put them all in the same place. "public_html" and the generic "servlets" directory shouldn't be used as dumping grounds for all your apps.
    Learn how to deploy using a WAR file. It'll keep all your apps separate and their constitutive parts together.
    Why Java Web Server? I don't think anyone uses it seriously anymore. Tomcat is the reference implementation of the servlet/JSP specs. I'd download that and use it instead of JWS. JMO, of course.

  • Web page not opening

    Hello Friends,
    In a new server I am not able to open the BSP Pages. Even I have maintain the Host file in my machine. But still it is not opening.
    Please tell me the appropriate solution.
    Thanks and regards,
    Kuldeep Verma

    Hi Kuldeep,
    Please check from the SAP whether the particular page is published and also the test the BSP application for errors.
    Regards,
    Prashil

  • New Pages not opening some documents

    Why can I open some of my Pages documents and some others say that a newer version of Pages is avail for download in the App Store?  I go to the App Store and it says that I have already downloaded and installed the newer version.  Please tell me what I can do.

    I encountered problems with opening some documents on Pages for iMac (v5.1) as well.  Specifically, the documents contained mathematical symbols, and were stored on the iCloud.
    When I dragged the document out of iCloud, and onto the desktop, I could open and edit the documents without issue.  When I moved them back to the iCloud, I once again could not open them with Pages for iMac.  However, I could edit them without issue from my iPhone.
    Moving the document out the iCloud to the desktop, in order to open and edit them, and then moving them back to the iCloud so they can be accessed everywhere else, is clearly a work around, not a solution.  And it seems to only apply to my documents with mathematical symbols.  Which particular symbol(s) is/are the issue, I have not investigated.

  • Help with applet page not opening please

    Hi I hope somebody can help. I downloaded the Java Plug in 1.4.2_05 but the applet for my offshore bank account applet will not open - just a blank grey page appears.
    I went to the test applet page and the following note came up. "You are using an older version of Java Technology 1.1.4"
    I can see the dancing Duke logo.
    I followed the instructions to download the latest version again and up pops a window saying that we have the latest version. I went through the FAQ page - also checked all the setting were correct. I have the coffee cup Logo. I can see the plugin control panel, also the Java website control panel. The draw4 and note pad applications open up.
    I need to know why the banking applet will not load.
    We are running Windows Explorer 6
    Thanks
    Michele

    Hi there,
    Your IE is using hte Microsoft IE JVM plugin, you'll need to install Sun's plugin for IE. Installing the JDK/JRE fresh usually gives you an option of what browsers to install the plugin to.
    Hope that helps!
    Karianna

Maybe you are looking for

  • How to add a new field from SQL to report

    Post Author: Auburn CA Forum: .NET The field I am wanting to add to my report is not an actual field in SQL.  The field is actually a calculation done in the Select statement like this:  SELECT (SUM(CASE KILSHEET.Contract WHEN 1 THEN ((TOT_CARC_WEIGH

  • Vendor Address not displayed in Payment list RFZALI20 (F110)

    Dear All, One country users are not able to see the vendor address/bank details in payment list RFZALI20 in F110 transaction. However, this information is displayed when I run the payment list as shown below: I could find that this information is con

  • Life span of Clear enclosure 23 HD

    Hi all, I just love the previous version (acrylic, clear enclosure) 23" HD display as opposed to the current aluminum version. I recently purchased them used and was wondering how long I can expect these to lasts. I know things like the intensity set

  • My music flash player on myspace is messed up

    I am a musician and I have a myspace band page. My music flash player on myspace only shows 3 songs when I have four uploaded. It also only shows three songs when I go to hear music on someone else's page. However, when my friend views my page from h

  • Problems with the A key in landscape keyboard iPhone 5s (32GB AT&T black)

    I have a black iPhone 5s 32Gb through AT&T. Recently I've been having a lot of problems with typing in landscape mode.  It may only be in the messages app, I'm not sure, that's definately when I notice it the most.  What happens is I will be typing v