Status bar no longer being displayed in browser

I am running an Oracle Application Server 10g (Forms and Reports services). When a form is displayed, it use to have the "default menu" displayed (action, edit,query...) and the "status bar" below the form. The status bar is no longer being displayed. I don't remember changing the configuration files (formsweb.cfg...) in anyway that would cause this.
Does anyone have an idea?

Tiago,
Are you refering to the browser status bar?
I'm referring to the oracle forms status bar which would display a frm-xxxxx error message should it occur. It was being displayed with all my forms, and now it is not.
Thanks.

Similar Messages

  • TS4009 set up my new iPhone 5S 6 hours ago - when go to Music it says "Loading iTunes Match-" now status bar - how long does it take?  how can I see the progress or status of the Load?  I don't know if it is actually doing anything

    How can I find the status of loading iTunes match?  I set up my iPhone 5S over 6 hours ago and still no music.  No status bar - I don't know if anything is even downloading

    Welcome to the Apple Community.
    It shouldn't take anywhere near that, I'd try again, make sure you have a good connection.

  • Safari status bar no longer shows page load progress

    Hi...  Though it's been this way for a while now, perhaps since the start of whatever Safari version came along with OS X 10.8 Mountain Lion ??, I've finally become curious enough to ask about the following...
    In times gone by, the Safari status bar at the bottom of the page would show page loading progress...  You know, the old xx out of yy items complete or something like that???  But now, nothing...  Nothing at all in the Status Bar while a page is loading...  Nor is there a spinning gear in the URL line to show you something is going on...  Instead, all there is is the blue progress bar that slowly moves left to right across the URL box to show you what is happening...  And often that blue bar stalls where it just sits for quite a while...  And when that happens I never know the details of what is going on...
    Do I have something set up wrong???  Or did Apple decide we don't need to know what's going on while pages attempt to load???  I sometimes quit Safari when I have a secure page log on that appears to stall and all I have as feedback is a stalled blue progress bar... 
    All I ever see light up in the status bar is the URL of a link I might hover over on a page...  Otherwise, nothing...  That doesn't seem right...  Again, am I doing something wrong in the Status Bar set up or is that all the Status Bar ever shows now????  And if the latter, why would Apple have chosen to stop letting us observe page loading progress???  At least that used to tell me something was happening..  A blue progress bar that stops moving doesn't tell me anything useful... 
    Any thoughts or help on this would be much appreciated...  thanks...  bob...

    Mountain Lion 10.8.2
    Safari 6.0.2
    Robert Paris wrote:
    Do I have something set up wrong???
    Nothong is set up wrong.
    That is the way Safari works as far as I know.
    Best.

  • The "blue bar" no longer properly displays Chinese characters.

    I recently updated my Adobe Reader from 7 to 9.4, and since doing so, Firefox no longer displays Chinese characters in the title bar. Instead, I now only see question marks.
    I've added Chinese to the preferred languages and also tried switching the browser's text to Unicode, but neither of these has made a difference.
    It's certainly a minor issue, but if anyone knows what to do, I'd greatly appreciate the help!
    Thanks!

    A possible cause is that Firefox has a problem with the (system) font that is used to display the Chinese characters on the title bar.
    Were any new fonts installed recently?
    You can try to use the system file checker to see if there are any problems with font files.
    See Description of Windows XP and Windows Server 2003 System File Checker (Sfc.exe): http://support.microsoft.com/kb/310747

  • XML file is not being displayed in browser? Why?

    Hi all!
    I have a secnario file->XI->J2EE appl.
    I am using  File sender adapter and HTTP Receiver adapter.
    I placed XML file in D:\somedir of my machine, it is picking up well by XI, <b>all i want to know is how XI sends this XML file to my J2EE Appl.</b>Because my servlet should display the same XML file in browser. I deployed my J2EE appl on weblogic application server9.0 I am getting the following error:
    The XML page cannot be displayed
    Cannot view XML input using style sheet. Please correct the error and then click the Refresh button, or try again later.
    XML document must have a top level element. Error processing resource 'http://localhost:7001/Invoke/DisplayRes'.
    These are settings that i have given in my Receiver HTTP adapter:
    Aadapter Type: HTTP
                       Receiver
    Transport Protocol:  HTTP1.0
    Message Protocol:    XI payload in HTTP body
    Adapter Engine:      Integration Server
    Addressing Type:     URL address
    Target host:         localhost
    Service Number:      7001(Port number of Weblogic appl server--where my J2EE appl is deployed).
    Path     :  /Invoke/DisplayRes/(Context path of J2EE appl)
    Authentication Type:Use Logon Data for SAP System
    Content Type: text/xml
    Username:   xiappluser
    password:   xx
    XML code:   UTF-8
    This is my Servlet code:
    public class DisplayRes extends HttpServlet {
         public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
         doPost(request,response);
         public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
         BufferedReader brin =new BufferedReader(new InputStreamReader(request.getInputStream()));
         String inputLine;
         StringBuffer sBuf = new StringBuffer();
         PrintWriter out = response.getWriter();
         response.setContentType("text/xml");
         while ((inputLine = brin.readLine()) != null)
             sBuf.append(inputLine);
               out.println(sBuf.toString());
              brin.close();
             out.flush();
    Where i went wrong please help me,
    NOTE: I want to know how XI sends XML file to my J2EE appl. I suppose my servlet receives it in request object.If so can i use like:
    response.setContentType("text/xml");
      String xmlFile = request.getParameter("myXMLFile");
      PrintWriter out = response.getWriter();
      out.write(xmlFile);
      out.flush();
      out.close();
    Please help me!
    Thanks a lot!

    Hi Datta,
    You seem to have big problem with this scneario as you have raised this question couple of times , in couple of topics / threads. I will try to make a few things about this clear.
    1. XI when sends data to a J2EE application , in your case a servlet, I believe you must be using a HTTP adapter to post the data to it. Whenever XI will post a XML data to a HTTP resource , it will post it as the request body and that is why the code in one of my previous post reads,
    BufferedReader brin =new BufferedReader(new InputStreamReader(request.getInputStream()));
    String inputLine;
    StringBuffer sBuf = new StringBuffer();
    PrintWriter out = response.getWriter();
    response.setContentType("text/xml");
    while ((inputLine = brin.readLine()) != null)
    sBuf.append(inputLine);
    out.println(sBuf.toString());
    brin.close();
    out.flush();
    If you 've noticed, the statement
    request.getInputStream()
    retrieves the body of the request as binary data using a ServletInputStream.
    So your answer to your question is
    <b>XI transferes data to a servlet as a part of HTTP request body</b>, if you use a HTTP adapter.
    2. By J2EE application , if you mean a server java proxy, then the method whose name matches with that of the Inbound Message interface recieves a parameter , from which you can retrieve the parameters passed by XI. Just check the getters of that object.
    Hope this clears your basic doubts!!!
    Rgds,
    Amol

  • How can I get around the find bar no longer being shared between tabs in the latest version of Firefox?

    Previously, one could open a new tab and the find bar would remain at the bottom of the page from the previously opened tab. So, for example, I could search for something in a tab I open, open a new tab and the same find bar would be at the bottom so I could search the new website for the same thing. Any way around this?

    Hi,
    This function is no longer officially in Firefox, however this addon replaces it: https://addons.mozilla.org/en-US/firefox/addon/find-in-tabs
    Hope this helps!
    Curtis

  • The body of my emails are no longer being displayed...

    ...what gives?  This just started to happen yesterday and applies to all my accounts (gmail, msn, and MS Exchange).  In the preview of the emails on the left when holding in landscape, I can see the preview of the body.  On the right where the entire message is supposed to be displayed, I see the header (From and To) as well as the Subject line with the date and time, but below that is nothing at all.  Very strange!!  Help!!!

    Try closing the Mail app completely and see if they show when you re-open it : from the home screen (i.e. not with the Mail app 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Mail app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    If that doesn't work then do a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • ShowModalDialogue displays status bar when not told to

    Hi
    I am using the below code to display message box to the user
    var sOptions="dialogHeight:150px; dialogLeft:200px; dialogWidth:500px; help:no; scroll:no; status:no;";
    var intRet = theApplication().ShowModalDialog("MsgBox_orig.htm", arr, sOptions);
    Even after passing the value status as ‘no’, the status bar is displayed.
    Browser being used is IE Version : 6.0.2900.2180.xpsp_sp2_qfe.080814-1242
    Siebel Version : 8.0.0.3
    Please let me know how to fix this.

    i was getting the spinning grey wheel in status bar, with no files displaying.
    this thread describes re-launching Finder - which did the trick for me - though my issue was with the internal hard drive, not an external
    https://discussions.apple.com/thread/3649473?start=0&tstart=0

  • IE browser loading status bar

    When attempting to load the following page using IE (v6), the
    SWF loads fine but the status bar at the bottom of the browser
    indicates "1 item remaining....."
    http://lakeplacid.com/flash/f/map/lodgingmap.cfm
    The status bar will eventually complete, but it's not an
    accurate alert.
    The movie is fully loaded once the first frame is displayed.
    Has anyone encountered this before?
    This isn't THAT important, but I've had some complaints from
    clients regarding the "misleading" information.
    Thanks!

    Some of the early workarounds for the recent Internet
    Explorer changes (regarding active controls) cause the appearance
    of incomplete loading. Flash 8 and Dreamweaver 8 now have officlal
    updates that create new JavaScript and HTML publishing code, so
    that pages containing SWFs load completely on all browsers, and
    don't create the annoying warnings on IE.

  • Safari Status Bar, no information while loading page

    This isn't new and I apologize if this has already been answered elsewhere but I looked and didn't find an obvious answer.  In past versions (?) Safari's status bar at the bottom of the browser window used to show information about page loading progress while the page was attempting to load.  Items like
    x out of y items complete (or loaded or something like that)
    used to be displayed...
    Now, and for some time now, nothing...  Why???
    Now, there is nothing but the blue progress bar that moves left to right in the URL box while the page is loading...  As long as it's moving, then I can say progress is happening...  However, often the blue bar stops for quite a long time and by habit I still find myself looking down to the status bar to see what it says and it says nothing... 
    Again, this isn't new now but I'm just now getting curios enough to ask about it... 
    Am I doing something wrong or do I need to take some addtional steps to get useful information out of the status bar??? 
    What's up with the Safari Status Bar???
    thanks...

    But what about when a page is loading and the blue progress bar in the URL window stalls.  Anytime that happens I look down to the status bar and where it used to offer useful information, now it offers nothing.  What happened to that???  Is there anyway to get info on a seemingly stalled load of a page???
    thanks...  bob...

  • Status Bar Disappears in Mail App

    Vonage sends me email attachments containing my voicemails in WAV (G.711) format. Although, G.711 encoded WAV's are very popular in telecom I understand they are not supported on the iPhone. I now convert these WAVs to MP3 and forward as an email attachment to the iPhone.
    When I try to play the WAV attachment from the email app, the status bar disappears (only when in the mail app).
    When I play the MP3 attachment from the mail app, the status bar no longer displays correctly (only when in the mail app).
    I must power off and power on my iPhone for the status bar to return when in the mail app. I've restored by iPhone multiple times and the problem still occurs.
    Email me, [email protected] and I'll forward the email containing the attachments.
    How can I fix this?

    This blog post discusses when support for MP3 and WAV email attachments was added by Apple. The supported was added in 1.1.1.
    http://www.boygeniusreport.com/2007/09/27/iphone-now-supports-mp3-and-wav-attach ments/
    The screen shot even shows what the email attachment looks like.
    It also appears that the status bar may have disappeared in that screen shot too.
    So, MP3 and WAV email attachments are supported.
    Message was edited by: Bog

  • Finder window: Grey spinning wheel in status bar and not able to access files?

    Can anyone help with this issue which has utterly perplexed me for 24 hours now.
    I have all of my photos and videos stored on an external hard drive. Yesterday the hard drive started misbehaving and when I tried to access files it would simply not load them, the folders would appear empty (even though the files were there) and a grey spinning wheel would appear at the bottom of the finder window. This would then cause the finder to (sometimes) slow down and require restarting.
    This has continued today, the drive seems to be okay according to Disc Utility, Disk Warrior and TechTool - all of them showing no errors but the drive continues to behave very strangely. To be safe I am transferring everything to another drive as we speak.
    In the finder status bar a grey spinning "wheel" will appear in the bottom right corner whenever the drive tries (and subsequently fails) to load content. Here's a screenshot, notice also the icon for the drive changes to a blue icon with a series of wavey lines:
    I've no idea what is causing this or why its happening. It's very odd and the drive will act okay until you try to access files, then it will just indefinately show the grey spinning wheel.
    Strangely a moment ago all of my drives became "read only" (including the Macintosh HD) and were ALL doing this. The problem only occurs when my current Media external hard drive is plugged in, so I'm transferring everything off it (which I hope will be successful). It does this on any machine its plugged in to, yet it's not got any problems according to various tests with disk utility etc.
    Any help?

    i was getting the spinning grey wheel in status bar, with no files displaying.
    this thread describes re-launching Finder - which did the trick for me - though my issue was with the internal hard drive, not an external
    https://discussions.apple.com/thread/3649473?start=0&tstart=0

  • Supress message in status bar when using Call Transaction

    Hi,
    I have designed a RF program and I am using a BDC program to call LT11 transaction for confirming TO.
    As this was a Flowrack storage type we will assign Source HU during TO confirmation. So I went for a BDC.
    But after confirmation I am getting a Status message TO XXX confirmed in the status bar which is also displayed in the RF Screen for every line item confirmed. I want to supress this message.
    I am getting this message in the messtab table as well by using Call Transaction. So how can I supress this message in Status bar.
    Please let me know for more information.
    Thanks,
    Manoj.

    >
    kaka79 wrote:
    > I have designed a RF program and I am using a BDC program to call LT11 transaction for confirming TO.
    > But after confirmation I am getting a Status message TO XXX confirmed in the status bar which is also displayed in the RF Screen for every line item confirmed. I want to supress this message.
    > I am getting this message in the messtab table as well by using Call Transaction. So how can I supress this message in Status bar.
    The CTU (CALL TRANSACTION ... USING ...) captures and stores all the messages into the message internal table (... MESSAGES INTO itab ...), but they are not displayed. So, if one of them appears in the status bar, it's because there is an additional MESSAGE ... statement in the program using the CTU. So look at it and add a condition before the MESSAGE statement to not output this exact message (click the message on status bar to get the message number, or debug the program to get it from the message internal table).

  • Status bar disappeared

    I had to disable something(?) in add-ons, in order to be able to read PDF's. It was Adobe Acrobat NPAPI plug-in, version 10.1.4
    Did not have this problem before. THEN I noticed that my status bar no longer had my weather icon, date or showed status of loading site.
    Any questions I type take me to old answers, for Firefox 4 or so. I am using 14.0.1
    iMac, 10.6.8

    Same situation here. I have several icons that cannot be moved from the non-existent status bar, such as NoSquint and Delicious. They will not budge from the status bar.
    Mozilla's removing the status bar from Firefox was a Microsoft move - we're going to do it, you have no say in the matter, and, no, you don't have the choice to view the status bar.

  • My blue task/status bar at the bottom of the page is no longer visible. How do I turn that back on? The status bar feature under view does display it.

    For some reason the blue status/task bar that would normally display at the bottom of the webpage (shows time, etc.) is no longer visible. I do not know how it got turned off and going to view-status bar simply enables a gray bar to display that says "done". I have searched using terms like "display task bar", etc and nothing comes up but view- status bar.
    == This happened ==
    Every time Firefox opened
    == May 5th

    That is the Windows Taskbar and not part of Firefox.
    The Firefox Status Bar shows messages like Looking up and Waiting for and loading and Done.
    If you do not see that Taskbar with Firefox closed then you may have hidden it.
    Try to move the mouse at the bottom and see if you can pull it up with the left mouse button pressed.
    If the Taskbar disappear if you open Firefox the check the Properties of the Taskbar to make sure that it is always visible.

Maybe you are looking for

  • Issue with events not propagating when selecting toolbar items

    Hey All, I'm on OS X Lion using CS6 beta and observing events in Photoshop form an outside application using Cocoa's NSEvent#addGlobalMonitorForEventsMatchingMask. It seems Photoshop is stoping the propogation of some events coming out of selection o

  • ADF Exception--Need some urgent help

    Hi Guys, I am a new biee in ADF and am trying to override an apply button on a JSPX page. I have created a Custom Bean, which popultes a drop down list and now now i want to select one item from drop down and when i click the apply button, the select

  • Expdp fails with ORA-31693, ORA-02354 and ORA-01555

    Hi, Oracle Database 10.2.0.4.0, Windows Server 2003 I was doing a full database DATA PUMP export as follow: expdp system/pass@SID FULL=y DIRECTORY=MY_EXPORT DUMPFILE=EXPORT_DB.dmp logfile=EXPORT_DB.log It always worked fine but today I received an er

  • File receiver - xml beautifier

    Hi experts, I have a simple Idoc2File scenario where the resulting file contains all the xml content in a single line. Is there a way to get it in a nice intended format? (xml beautifier functionality) many thanks

  • Bootable Linux CD - Help Needed

    Hi, Firstly I'll apologise as this isn't really a Solaris problem. If anyone can point me to the correct Linux forum I'll take my query there. But for the moment I hope someone here can help... Does anyone out there know how to create a bootable Linu