Problem in displaying messages in the status bar

Hi all,
I have a custom form and whenever user clicks on the save button after entering any data in it, i would like to display a message in the status bar(as like in standard oracle forms).
I got the following solutions from some Guru's but it dint worked.
Sol 1: Setting the CONSOLE WINDOW property of the form to the custom window name.
I tried it and got the following error while compiling the form.
FRM-40735: ON-ERROR trigger raised unhandled exception
ORA-06508
In my ON-ERROR trigger i have the standard code
APP_STANDARD.EVENT('ON-ERROR');
sol 2: writing the following code snippet in POST-INSERT or POST-UPDATE trigger
clear_message;
message('Data Saved', NO_ACKNOWLEDGE);
synchronize;
With both the solutions i dint get any positive output.
Is there any other suggestions ?
Thanks in Advance.
Praveen

A hack: at the end of init() put
ActionListener hack = new ActionListener() {
public void actionPerformed(ActionEvent evt) {          showStatus("My status message"); }
new javax.swing.Timer(1000, hack).start();
Then 1000 milliseconds after init() completes it'll display your message.
There's got to be a cleaner way but if you're satisfied with this, great.
Michael

Similar Messages

  • Display error message in the status bar during PBO

    Hi All,
    I want to issue an error message on a program's selection-screen.
    The thing is when I issue an error message inside PBO, all the text in the selection-screen are gone and replaced with lines.
    So i displayed the error message in the status bar.
                      MESSAGE S074(Z4) DISPLAY LIKE 'E'.
    But the problem with this is that it will allow to continue data processing.
    What shall I do in order for my error message to behave as an error message and not as a status message?

    Hi,
    Write your message in PAI same as you have done MESSAGE S074(Z4) DISPLAY LIKE 'E'.
    after this use call screen 'your screen no'.
    it will not lock the field.

  • Link URL containing feed: is not displayed correctly in the status bar

    When a link contains feed: in the URL, it is not displayed correctly in the status bar.
    The actual URL is
    a href="feed:http://www.....com/feed/"
    but the URL shown in the status bar is
    feed://http//www.....com/feed/
    IE8 shows the correct URL in the status bar. Not sure if this is a problem, but thought I would report it.

    Such a feed works for me even if it is displayed differently then you expect on the status bar.
    <pre><nowiki>data:text/html,<a href="feed:https://support.mozilla.com/en-US/questions/758020/feed">feed</a></nowiki></pre>

  • Display Message error in Status Bar

    Hi Experts.
    I create a screen, if the user don't insert all fields i want display a message error.
    But I want display it in the Status Bar!!!!
    Now i try with:
    MESSAGE i018.
    It's all OK.... but there is the wrong icon
    But with
    MESSAGE w018.
    or
    MESSAGE e018.
    There is the right icon but when display the error message the input by user are lock!!!
    What can I do to see the right icon and don't lock the user input?????
    Edited by: Marco Modenese on Apr 17, 2008 12:28 PM

    Put your fields and the module for validation in CHAIN.
    ENDCHAIN. block.
    like this
    chain.
    field field1.
    field field2.
    module validate.
    endchain.
    IN main program
    module validate.
    if <condition>.
    MESSAGE e018.
    endif.
    endmodule.

  • How to set the message in the status bar...

    hai,
    how to set the message in the status bar...
    let us say "inserted data successfully, or opening page followed  by the link clicked on the screen....."
    kindly help me out

    sunil,
    do not use advise by Ashutosh with WebDynpro.
    Instead of placing message into browser status bar (and browser is not the only WD UI agent), use IWDMessageManager API to post messages of such kind:
    wdComponentAPI.getMessageManager().reportSucces("Record inserted"); 
    VS

  • Firefox displays "Stopped" in the status bar; stops all the tabs and does not do anything!

    Firefox displays "Stopped" in the status bar after running for a few minutes. It does not do anything on the page unless it is killed by opening the task manager. Sometimes I even have to restart the computer. And if that also doesn't work that shut down using the power button. Others have reported similar issues too.
    == This happened ==
    Every time Firefox opened
    == couple of weeks ago

    See:
    * http://kb.mozillazine.org/Windows_Media_Player#Missing_plugin
    * http://windows.microsoft.com/en-US/windows/downloads/windows-media-player (see Firefox)
    * http://port25.technet.com/pages/windows-media-player-firefox-plugin-download.aspx

  • Suppress messages in the status bar

    Hello
    I am trying to launch my 10g forms on 10gAS. when the servlet loads up, I get too many messages in the browser status bar.
    like //url:lservlet/<jsessionid:some encrypted text>
    Is there any config to supress it?
    All the messages of opening gif files are shown on the status bar.

    Keerthi,
    your question is not very clear.
    I assume you dont want to see that message.
    IF that is the case, why dont you comment that line completely.
    Message S000 WITH SPACE, means it will still show the success message, but there is no text.

  • Stay at the input screen after prompting message at the status bar

    I have some validation on the input values have been performed before executing the program. For invalid input value, I prompt an error message using "MESSAGE 'XXXX' TYPE 'E'.". The message is shown successfully at the bottom, but it goes to an empty screen. How can I show the message and at the same time staying at the user input screen?
    Thanks for your help!

    Hi,
    This can be done as follows.
    EG;
    SELECT * from mara
         into table i_mara
         where matnr = s_matnr.
    if sy-subrc NE 0.
    <b> message i000 with text-000.
    STOP.</b>
    endif.
    Use information message and STOP the process this will remain in ur selection screen itself.
    Hope this solves ur problem, just a day before i also got the same problema and fixed it.
    Kindly reward points and close the thread.

  • Droid 2 is displaying "EN" in the status bar next to 3g when Keyboard is open

    I have checked the language settings in the Language and Keyboard.  As mentioned in another post marked solved.   It is set to US english.  Like the post before, it only comes on when I slide open the QWERTY Keyboard under the screen.  The other DROID 2 that we have does not have this happening.  Any Ideas?

    I found it! It was in the settings> language & keyboard> multi-touch keyboard settings> input languages> check English, but uncheck Espanol. Once I unchecked the Spanish option, the EN on my keyboard went away.  
    You would think the EN stands for English, but it's actually for Espanol.  I hope that helps! 

  • Error Message Displaying the status Bar not like popup message

    Hi all,
    My Requirement is while creating  invoice if pricing conditons is repeted , system should thorough the error message like (uplicate Condition Types Are Not Possible  in the status Bar but Im getting poup Error message So I want to display the same message in the status Bar.
    Please Help me any one.
    Regards,
    Prathap

    I dont want to Display the popup, I want to Display in Status Bar as a Error Message.
    Like this .
    If I put  message type 'E' its Displaying popup message , MESSAGE ' Duplicate Condition Types Are Not Possible.' TYPE 'E'.
    If I Put messge type 'I' its Displaying in Status Bar .
    Regards,
    Prathap
    Edited by: giri prathap on Sep 13, 2011 12:35 PM

  • How can I make the status messages appear IN the status bar / add-on bar instead of floating ABOVE the status bar? (like it used to)

    now that I have the status bar back, why won't it show the status messages IN the status bar?

    The Status-4-Evar add-on can do this, it makes the add-ons bar behave in a similar way to the status bar in Firefox 3.6 and earlier.
    https://addons.mozilla.org/firefox/addon/status-4-evar/

  • IPhone 6: Where's the status bar in landscape mode?

    I just got the iPhone 6 (I believe iOS 8.1) and my only problem is that it removes the status bar in when in landscape mode. I find it extremely annoying that I can no longer see the time, monitor my battery life, check whether if I'm even receiving a signal, etc. when I'm using apps such as Safari or Notes in landscape mode. Is there any way to get the status bar back like in previous software versions? So far, I hate having to switch to portrait mode, using the pull down menu, or pressing the home button just to see it...

    Same here - I returned my original, same problem on the second one, and same problem on my son's phone. I called Apple tech months ago, got to a senior supervisor who assured me he'd get back to me, but never did.

  • How to control an error message to display at the status bar or in a popup?

    Hi experts,
    I find that one of the error message in an user exit display at the status bar in some conditions while
    display in a pop up window in other conditions. Is there some way to control its display style as I want
    it? Thanks in advance.

    Hi,
      Use the below code....
    CALL FUNCTION 'PTRM_UTIL_MESSAGE_APPEND
    EXPORTING
    i_msgtype = 'I' or 'W' <because you want message to display otherthan error>
    i_msgid = <Your message id which you are using in user exit>
    i_msgnumber = <Your messge number>
    Or
    If you want to display the text in a pop up window instead of the above process then use 'POPUP_TO_DISPLAY_TEXT' to display the message text in the popup.
    Rgds,
    Bujji

  • How do i get rid of a instructional information that displays under the status bar?

    The instructional information that displays below the status bar tells how
    to add info to the custom search menu wizard and it covers part of my browser window.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • The status bar is pushed up at about 3/4 of the screen, so I can view onlu firefox at about 1/4, good thing there is a scroll bar, but below the status bar is white display? can u please help me, I want to drag down the status bar so I can have a full vi

    The status bar is pushed up at about 3/4 of the screen, so I can view only Firefox at about 1/4, good thing there is a scroll bar, but below the status bar is white display? can u please help me, I want to drag down the status bar so I can have a full view
    == This happened ==
    Every time Firefox opened

    Your code is absolutely unreadable - even if someone was willing to
    help, it's simply impossible. I do give you a few tips, though: If you
    understand your code (i.e. if it really is YOUR code), you should be
    able to realize that your minimum and maximum never get set (thus they
    are both 0) and your exam 3 is set with the wrong value. SEE where
    those should get set and figure out why they're not. Chances are you
    are doing something to them that makes one 'if' fail or you just
    erroneously assign a wrong variable!

Maybe you are looking for