Page render problem in cc&b(ORMB)

Hi,
Once login the application home page would not render and one exclamation mark appear on left side on IE. When I check the detail of that error is shows :
Line: 679
Char: 5
Erroe: myNavigationKeys' is undefined
Code: 0
URL: http://localhost:6500/uiPage/userMaint?language=ENG
Its not the IE problem since my host url don't works on different machine IE and other machine application works on my machine IE.
Previously application works fine, this problem occur suddenly!!
Please reply back if somebody have any idea regarding the same.
Thanks in advance
~Subodh
Edited by: Subodh on May 30, 2011 11:21 PM

Check that you have HTTP 1.1 is enabled as the products uses that version of the protocol.
Use HTTP 1.1 on Options -> Advanced

Similar Messages

  • Page Rending Problem In Apex ,Please help

    The Page build by Master Detail Form Wizard. And this page has 37 items (not include tabular forms or reports)
    Under the normal conditions ,each page HTML rendering format must like that:
    =================
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
    <head>
    <body>
    <script type="text/javascript">
    </script>
    </body>
    </html>
    ====================
    Scenario 1
    We display all region( 10 regions display)
    After I run the page , the APEX Rendering the html, but we found the javascript error.
    In this scenario, the html rendering result is :
    =====================
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
    <head>
    <body>
    <script type="text/javascript">
    ==============
    You can find that the </html>and </body> are missing. And the last part of script aslo missing.JavaScript error is raised by the HTML source can not be completely loaded.
    We save the html source code form Apex rending as the file . We can find that the file size is 48.7 KB
    Scenario 2
    We hide some region ( 7 regions display) , we make some region condition is "Never"
    After I run the page , the APEX Rendering the html
    If we open a form with data , the rending html will like this:
    =================
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
    <head>
    <body>
    <script type="text/javascript">
    </script>
    </body>
    </htm
    ====================
    You can find the we only miss the last two characters. And we save the html source code form Apex rending as the file . This file size is 32.0 KB.
    If we open a form without data , the rending html is :
    =================
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
    <head>
    <body>
    <script type="text/javascript">
    </script>
    </body>
    </html>
    ====================
    This is the well formed html , we save the html source code form Apex rending as the file ;
    This file size is 24.0KB only.
    We found that ,In our workspace the pages rending size more then 32K, than some thing will be missing at the last rows of the page.
    Are there any configuration wrong? Are there any limitation on the APEX page builder?
    Thanks
    Leo
    Edited by: [email protected] on 2009-5-5 上午12:31

    Re: </htm Error below Apex Page

  • IF Form region AND report + search tool in same page THEN = problem

    Helllo everybody
    I posted an initial and now the advanced as I received helpful comments but still is unsolved:
    Problem:
    If I have a Form, and a Report With a Search feature on the same page the problem is that when I click on the button of Search to find records in the Report, the page reloads as it goes and returs to the server. Alright, however, that reloading causes the Form to submit data while there is no data because I was not working with the Form. When the report gets the "submission of the Form" it receives all empty data and it complains as it cannot have Null values in its rows.
    Solution:
    The thing would be to tell the form not to submit anything unless expressley pressed the button Create or Save. It seems that these buttons activate when the page is reloaded I mean reloaded by haiving pressed the button Search of the Reports region.
    The helpful comments were in the direction of going to Processes, Automatic Row Processing and then choosing a conditional for processing of the Form, that it, it would only activate (submit itself if that condition is met)
    So I go to PL/SQL Function body Returning a boolean and I paste this: RETURN :REQUEST IN('SAVE','CREATE');
    but the problem continues unsolved, that doesnt help. It must be very close but there is something I am missing
    thank you very much
    Alvaro
    Edited by: user12155340 on 18-Nov-2009 15:04

    Hi,
    I think this is double post.
    BUTTON CLICK ON SEARCH ITEM CAUSES OTHER REGIONS (FORM) IN TABLE TO ERRORS
    Please read my last comment from that link.
    Application express forum might give you better and precise answer.
    You need just figure out how set conditions
    http://download.oracle.com/docs/cd/E14373_01/appdev.32/e11838/concept.htm#sthref149
    http://download.oracle.com/docs/cd/E14373_01/appdev.32/e11838/concept.htm#sthref237
    Br, Jari
    Edited by: jarola on Nov 19, 2009 12:51 PM
    BTW, I remember that there was just few days ago same kind question answered in Application Express forum.
    I post link if I find it. You may try find it also

  • Animated gif and page refresh problem

    Animated gif and page refresh problem
    Hi There,
    I'm trying to build a simple "Please wait......" screen using jsp and javascript.
    So far all is going well except that my animatate gif keeps refreshing everything the page is refresh.
    Is there a way the i can prevent the body of the page from refreshing?
    below is my sample code:
    <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    <jsp:useBean id="StatusBean" class="com1.CandidateRelease" scope="session"/>
    <html>
    <script LANGUAGE="JavaScript">
    function refresh()
    <% if (StatusBean.isRunning()) { %>     
         //setTimeout("refresh()", 1000);
         setTimeout("location='status.jsf'", 1000);
    <% }else{%>
         window.location= "busStopAdmin.jsf";
    <%} %>
    </script>
    <head>
         <script LANGUAGE="JavaScript">     
              refresh();
         </script>     
    </head>
    <body>
         <img id="myImage" src="../img/ojp_wait.gif" alt="" width="151" height="36">
    </body>
    </html>

    Animated gif and page refresh problem
    Hi There,
    I'm trying to build a simple "Please wait......" screen using jsp and javascript.
    So far all is going well except that my animatate gif keeps refreshing everything the page is refresh.
    Is there a way the i can prevent the body of the page from refreshing?
    below is my sample code:
    <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    <jsp:useBean id="StatusBean" class="com1.CandidateRelease" scope="session"/>
    <html>
    <script LANGUAGE="JavaScript">
    function refresh()
    <% if (StatusBean.isRunning()) { %>     
         //setTimeout("refresh()", 1000);
         setTimeout("location='status.jsf'", 1000);
    <% }else{%>
         window.location= "busStopAdmin.jsf";
    <%} %>
    </script>
    <head>
         <script LANGUAGE="JavaScript">     
              refresh();
         </script>     
    </head>
    <body>
         <img id="myImage" src="../img/ojp_wait.gif" alt="" width="151" height="36">
    </body>
    </html>

  • Question: Is there a way to create a PDF from outlook e-mail that does not embed the attachment? better, is there a way to convert the e-mail with attachement (not embeded) as pdf pages? - Problem: I have 1400 e-mails with attachments that need to be conv

    Is there a way to create a PDF from outlook e-mail that does not embed the attachment? better, is there a way to convert the e-mail with attachement (not embeded) as pdf pages?
    - Problem: I have 1400 e-mails with attachments that need to be converted into pdf and the attachments cannot be embeded.
    System: PC Windows 7 using Acrobat X Prof. - Thank you!

    Hi ,
    There is an option of embedding index for faster search while converting email to a PDF .
    However I am not sure that will serve your purpose or not .
    I would recommend you to get in touch with Microsoft support as well .
    Meanwhile I'll work on it and get back to you in case I get a desired solution .
    Regards
    Sukrit Dhingra

  • Page expire problem in one env of two environments having same code

    Hi,
    We have an web application deployed into two environments. The application versions and server versions are same in both environments. We are using sun one application server.
    When we click on back button (Say Env1) we are getting page exipre problem. The same code is working fine in other env (Say Env2).
    We have not coded anywhere to clear the client side information after it is displayed. It looks like there is some server setting using which we can specify not to save any information at client machine.
    Can any one of you help me in resolving this issue.
    Thanks in advance.
    K Vishnu Chaithanya

    http://support.microsoft.com/kb/234067
    http://lists.evolt.org/archive/Week-of-Mon-20040405/157547.html

  • Page Size Problem in Pdf

    Hi All,
    I want to print cheques form oracle Reports 10g, I developed report in 6i & it works fine, Now I am going to convert it in 10g, in report developer it works fine but when it generates through reports server it generates on full pdf page.
    Kindly help me how can I reduce the page size by default.
    Regards,
    Najeebullah Soomro

    Salam, Najeebullah Soomro
    I want to print cheques form oracle Reports 10g, I developed report in 6i & it works fineDoes PDF also working as your page setup in 6i?
    Now I am going to convert it in 10g, in report developer it works fine but when it generates through reports server it generates on full pdf page.Now problem in 10g PDF ?
    set the page margin at layout property and also make smaller the frame at Edit Margin mode.
    Hope this helps

  • IPhone - PDF Page Display Problem

    I am trying to display pages from a PDF included in my application to a Quartz context. I can get the first page to display correctly, but am having trouble displaying subsequent pages. In essence I am using the example shown in the Quartz 2D programming Guide (13-1 and 13-2 code examples).
    When the view is first loaded, I display the first page, and do something like the following:
    CGPDFDocumentRef document;
    CGPDFPageRef page;
    document = MyGetPDFDocumentRef (filename);
    page = CGPDFDocumentGetPage (document, 1);
    CGContextDrawPDFPage (myContext, page);
    After this the function exits. There is a button on the screen to go to the next page. In the pressed event function I do something like this:
    page = CGPDFDocumentGetPage (document, 1);
    CGContextDrawPDFPage (myContext, page);
    The problem is the page does not show up on the screen. It only shows up if I leave the view and then come back (I have a Toolbar at the bottom of the application similar to the iPod or Clock application).
    Am I missing something to get the second page to display immediately? Or is there a better way to display a PDF in my application...
    Thanks.
    -James

    searching MS WORD > HELP > CONVERSION SETTINGS
    doesn't give me anything close to this issue
    any idea where to find those conversion settings ?
    thanks again
    k

  • How to disable VO initialization on page render for MessgeChoice *URGENT*

    Gurus,
    I've got a poplist that is getting initialized when page is being rendered. This is causing quite a bit of lag when the page initially renders. The VO is also being called through an EVENT, at which time, an extra condition is applied. This is the valid way this VO should be called.
    How do you avoid the blind query when the page initially renders?
    Please help deadline has passed.
    Thanks,
    Scott
    P.S. I must assign setWhereClause bind variable in VOImpl because value is being derived by user.
    Edited by: sreese on Oct 8, 2009 3:32 PM

    Scott,
    If you don't want to initialize the value of MesssageChoice at page render then when you want to intialize it.
    explain & what is the issue if you initialize in PR.
    Thanks
    --Anil                                                                                                                                                                                                                                                                                                                                                                                                   

  • Error processing a page. Problem reading document (110)

    This occurring following error message when opening a PDF file:
    "Error processing a page. Problem reading document (110)"
    Does anyone have any suggestions?

    When I encountered an error "there was a problem reading this document 110" in Acrobat Pro 11 on 28.7 MB CS6 file, it indeed was very frustrating.
    I solved my problem, but since I don't know which step benefitted me, I've to enumerate all the steps I took:
    Read below:
    1.1. I could copy the file anywhere on the drive, but couldn't 'save as' from Acrobat Pro.
    1.2. No document security was applied of any sort on the file.
    1.3. Still in the first tab of the document properties, all details under advance section were empty. No 'PDF Version' 'location' 'file size' etc were populated. Nothing.
    1.4. I couldn't change and save anything in any of property dialogue. I could comment on the text, but as soon as I tried to save, it gave an error (some sort of 'File reading' error).
    1.5. When I tried to extract a page (I tried many), it gave 'reading error'.
    1.6. I didn't try 'splitting error'. Since I was 100% sure, it'll give me same reading error.
    1.7. I opened the file in Firefox and tried saving it as pdf from there. But no error, but no save either.
    1.8. I ran 'Remove Hidden Information' from protection panel without any errors.
    1.9. I tried 'sanitize document' from the same tab, but didn't succeed.
    1.10. Then (here I think the problem was resolved), from Document Processing panel, I did some commands. 1st, 'Export all images', successfully. Then 'Remove all links', it found 0.
    1.11. Then in 'print production' panel, I clicked/tried to open acrobat distiller. The same opened, did some processing. But I don't know if it did something in solving the problem or not.
    1.12. Although I think my problem was resolved till now, but the last step I did was 'Saved As' the file (from the file menu) as a .ps file. Though I've not yet reopened/used that ps file (to convert it into a pdf file again). But around here I wanted to close the file and it asked me whether I wanted to save the file, I said yes. And it saved the file correctly. And I checked that in properties dialogue, the missing information was populated too.
    1.13. Sorry for so lengthy instructions, but I had no choice.

  • Render problems

    Hi,
    I have serious render problems with Premiere CC. I't wont render at all. Crashes down every time with a window saying occurred serious problem...
    The file that i've been working on is heavy with AE direct links and above adjustment track.
    Im working station is Mac Pro Mac OSX 9.2.
    So I assume having this machine Premiere will run smooth.
    But on contrary I cant touch my files because it will crash down.
    Can anybody have any suggestions that are not exporting all my AE files as movie clips and reedit the whole video again.
    Thanks! 

    I am on Windows, but have a few saved Mac discussions that may help (or, may not... but free to read)
    Mac and Root User http://forums.adobe.com/thread/879931
    -and http://forums.adobe.com/thread/940869?tstart=0
    Mac & nVidia Driver http://forums.adobe.com/thread/1075592
    -and http://www.nvidia.com/object/mac-driver-archive.html
    Mac Retina Bug http://forums.adobe.com/thread/1159632
    Troubleshooting guide for Mac freeze
    http://helpx.adobe.com/x-productkb/global/troubleshoot-system-errors-freezes-mac.html
    http://blogs.adobe.com/aftereffects/2011/02/troubleshooting-quicktime-errors-with-after-ef fects.html
    External speakers stop playback http://forums.adobe.com/thread/1370072?tstart=0
    OSX Crash http://helpx.adobe.com/creative-cloud/kb/ame-premiere-crash-launch-export.html

  • Has CS6 fixed the PPro with AE dynamic links slow to render problems?

    I've got PPro with AE dynamic links slow to render problems similar to those discussed in this thread:
    http://forums.adobe.com/thread/904652?start=0&tstart=0
    As I understand it (and I could well be wrong), if I render a PPro project that has AE projects dynamically linked in (anything from simple lower thirds to color grading), during rendering the AE bits run as a service, which limits the AE bits to a single CPU and effectively stops simultaneous rendering of multiple frames. This is why I can get very high render times (essentially no parallel processing), and why messing with the number of CPUs allowed for simultaneous frame rendering, or the amount of RAM said CPUs can access, has little to no effect on total render time.
    Supposedly as some point AE was going to be changed such that it used Media Encoder to do it's rendering (same as PPro does), thus speeding up rendering for any PPro project that has AE parts dynamically linked in.
    Has this been done in CS6? If not, any idea when that's scheduled to happen?

    Jim Simon wrote:
    (I do wish Adobe staff would keep this distinction mind when creating their videos.  When I saw one about the new background rendering in PP, I was interested, only to learn that he was actually talking about background exporting, a feature PP has had since AME was introduced in CS4.)
    The distinction is not so distinct, and this is an industry issue, not really Adobe. After Effects has a render queue, which is used for exporting, but you can also export. Lightwave has this, even Avid. The terms do have their own distinct meanings, but of course context is usually required. So usually "rendering previews" or "rendering final output" serve as context-sensitive uses of the term.
    Terminology abuse is widespread, even people with video cameras now call themselves "filmmakers" and people who produce films never shown nor intended for a cinema call themselves "cinematographers." ENG video producers are called "photogs" and news photographers are called "photojournalists."
    Transcoding, encoding, rendering, exporting....mish-mashed unfortunately, but thankfully most people can figure out what's meant.
    Back to the OP - After Effects can be used with Adobe Media Encoder, it's just not the default. You can import any composition into AME from AE and render your encoded export.
    As for background rendering....I remember when Pinnacle Liquid was the first to the table with that feature back in 2004 or 2005. It seemed awesome, except that you needed a ton of spare hard drive space and lots of processing to keep the background rendering going...effecitvely your processor was in use 100% of the time. When you weren't scrubbing or playing back, Liquid was rendering previews. Of course, you could use those previews during export but you rarely would have wanted to do so, since it was better quality to reference the original data when compositing the layers and effects to output to a web file, for instance. Then  you had to keep cleaning up the preview cache.
    I rarely render previews at all, and when I do it's just a small segment at a time, just to get a full look at the final composite. Mercury Playback is usually more than capable of playing back most of my edits the rest of the time.

  • Macbook Pro/Mozill​a Firefox --Page Loading Problems

    I experience 'page loading' problems when going from one page to another. Sometimes the page takes a long time to load. Sometimes it times out and never does load.
    Does anyone else with this combination of laptop and browser experience these problems? Any suggestions for overcoming this lag?

    I know OS X used to have some problems with the way some routers do DNS.  There was this topic a while ago:
    http://forums.verizon.com/t5/FiOS-Internet/DL-page​-load-speed-great-but-browser-quot-looking-up-quot​...
    For our Mac we had to set the router to send external IP addresses of a DNS system (either verizon's or something like OpenDNS which we use).
    You could manually change the DNS settings on the Mac to see if that fixes the problem and then you could mac the change the settings at the router level if you like.

  • Safari page load problems and 10.5.3

    Since I have upgraded to 10.5.3, I am experiencing Safari page load problems on all my user accounts on my 2.0 GHz Core Duo Black MacBook. I have reviewed threads in this forum and that of the Safari forum with no solution that solves the problem. so I post here in hopes of additional expert solution ideas.
    *The Problem:* Since upgrading to 10.5.3 Safari fails to complete page downloads for some, but not all websites. When these same websites are accessed with Firefox there is no problem. With Safari the page load will stop at about 75% completion, or the page will not load at all.
    Here is an example of a webpage that will not complete: http://www.realclearpolitics.com/
    Here is an example of a webpage that will not load at all: http://cherylsguitar.com/site (my wife's business)
    I also have a G4 iMac running 10.4.11 on the same WiFi network that does NOT experience the Safari page load problems. All is good and speedy on this trusty machine.
    *Solutions Attempted:*
    - Deleted plist (with no effect)
    - Re-installed Safari from Leopard disk (with no effect)
    - Scoured User Preferences in Library for offending applications, plug-ins, etc.
    - Reset PRAM
    - Reset and examined cable modem and router (AirPort Extreme 802.11g)
    *Hardware and Network info:*
    - 2.0 GHz Core Duo Black MacBook
    - 2 GB Ram
    - AirPort Extreme Base Station (generation 1) running 802.11g

    Allan Eckert wrote:
    Hi Perry Lehman;
    Have you cleared out your cookies?
    Allan
    Allan,
    Yes. I have reset Safari clearing all but website icons with no effect. I also tried turning of the Safari pop-up blocker with some very limited success. Disabling pop-up blocker will marginally help page load speed for some websites, but others still fail to load at all.
    Thanks for taking time to post.

  • Partial page load problem when using Muse in an existing non-Muse Masterpage; how to issue a jquery

    Partial page load problem when using Muse in an existing non-Muse Masterpage; how to issue a jquery args.get_isPartialLoad().
    My page is loaded into a palcehold within the Ajax update panel within the current Masterpage, so page loadload doesn't occur. But if my Muse page can capture  the partial pageload then I can tell jquery to run the Muse formating routine.

    Jackie,  I am having the same issue and agree that it obscures our site analytics.
    I only have the "WebMarketing" subscription - so I cannot see how often people visit my site (unless I just dont know how to view that).  Here is a screen shot of how many different locations I have and how much it affects my site visitor count based on the other locations which seem "legit" because they have more page views than visits.
    I hope there is a way to fix or block this.

Maybe you are looking for