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

Similar Messages

  • 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

  • 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.

  • 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/

  • The status bar not going while download the app.

    The status bar not going while download the app.
    I'm bought the bento from App Store, I finished the payment, but the status bar appeared but doesn't show any progress. Strange!!

    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 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

  • 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.

  • Error in the status bar while using t:jscookMenu

    I have implemented t:jscookmenu in my source code like this
    <t:jscookMenu imageLocation="../css/themeIE" javascriptLocation="../css/themeIE" layout="hbr styleLocation="../css/themeIE" theme="ThemeIE">
    <t:navigationMenuItems value="#{MenuBean.menu}"/>
    </t:jscookMenu>
    The error shown in the status bar is
    Error: unterminated string literal
    Source File: "Filename"
    Line: 54, Column: 14
    Source Code:
    myThemeIEBase='../css/themeIE/
    The html source code is given below:-
    <script src="../css/themeIE/JSCookMenu.js" type="text/javascript"><!--//--></script>
    <script src="../css/themeIE/MyFacesHack.js" type="text/javascript"><!--//--></script>
    <script type="text/javascript"><!--myThemeIEBase='../css/themeIE///--></script>
    <script src="../css/themeIE/theme.js" type="text/javascript"><!--//--></script>
    Please help to locate the error

    Hi Vijay,
    Your javascript is probably trying to access one or more of the items within a displayed tabular form - the "f01", "f02" etc named items.
    If your script does something like:
    var x = document.getElementsByName("f01");
    ..rest of your code for f01 items..you can test if there are any "f01" items by doing:
    var x = document.getElementsByName("f01");
    if (x){
    ..rest of your code for f01 items..
    }If there are no items, x is null, so the "..rest of your.." script will not get executed and no errors will occur.
    Andy

  • 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

  • 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>

  • 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

  • How to avoid JS Error in the status bar when report doesnt contain value.

    Hi
    Whenever the tabular report doesnt show any records for the given input parameter (parameter passed using select list item).
    We are displaying error message in APex. But at the status bar, it is showing "Error" (unspecified
    error).
    Kindly let me know how to avoid this kind of error at status bar.
    Thanks
    Vijay

    Hi Vijay,
    Your javascript is probably trying to access one or more of the items within a displayed tabular form - the "f01", "f02" etc named items.
    If your script does something like:
    var x = document.getElementsByName("f01");
    ..rest of your code for f01 items..you can test if there are any "f01" items by doing:
    var x = document.getElementsByName("f01");
    if (x){
    ..rest of your code for f01 items..
    }If there are no items, x is null, so the "..rest of your.." script will not get executed and no errors will occur.
    Andy

  • How do I get Firefox to display the information bar when a pop up is blocked I accidentally clicked on "Don't show this message when pop-ups are blocked" when a pop up was blocked. How do I get this message to reappear again when a pop up is blocked?

    I just updated Firefox but can't get it to display the message when a pop-up is blocked. Most times I want them blocked but sometimes I need them enabled.

    You can see a pop-up block icon in the right corner of the Status Bar if you have chosen to hide the information bar at the top.
    You can left-click that pop-up block icon on the Status Bar and remove the check mark from "Don't show info message when pop-ups are blocked"
    You can look at these prefs on the '''about:config''' page and reset them via the right-click context menu:
    Status bar icon: browser.popups.showPopupBlocker
    Info bar at the top: privacy.popups.showBrowserMessage
    To open the ''about:config'' page, type '''about:config''' in the location (address) bar and press the Enter key, just like you type the url of a website to open a website.
    If you see a warning then you can confirm that you want to access that page.

Maybe you are looking for

  • On Demand sub report not printing in IE and Other Browsers

    Hi All, We have developed Crystal report for our web application with version 13.0 and Visual Studio 2010. When we run our web app in IIS report display fine in All web browser and when we print report in ActiveX mode in IE 9+ for main report it prin

  • Process order should not take part in MRP run

    Hello Colleagues I looking for a way how to exclude not released process orders (we have PP-PI) from MD04 report. Not released process order should not take part in MRP run. I was trying to do it using OPJJ for availability check 02 and checking rule

  • How to unsync my iPod from my iPhone??

    I synced my iphone to my ipod so i would have the same songs on my iphone however now every time i download a new app on my iphone it automatically downloads on my ipod and vice versa.... how do i make it only go to the device i want it to go on?

  • Multiple Cost Allocation Structures in Single Business Group

    We are curently looking at solution design of creating multiple Cost allocation flexfield in single business group environment. Purpose : Based on organization structure (18 companies) , the finance consultants proposed multiple COA structures with d

  • How can I Improve my Render Engine?

    Hey everyone, I successfully set up the Adobe After Effects CS6 Render Engine on my render node but it is rendering very slowly (even if I enabled multiprocessing). Here are the specs: Windows Server 2008 R2 Service Pack 1 Processor: AMD Opteron Proc