<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Error Message popup in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-popup/m-p/3652633#M879754</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I am getting Error message in the form of popup.&lt;/P&gt;&lt;P&gt;i should get the same error message in the status bar as "I" and "W" message types.&lt;/P&gt;&lt;P&gt;how to achieve this.&lt;/P&gt;&lt;P&gt;helpful suggestions will sure be rewarded.&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;samarendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 04 Apr 2008 14:13:28 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-04T14:13:28Z</dc:date>
    <item>
      <title>Error Message popup</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-popup/m-p/3652633#M879754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I am getting Error message in the form of popup.&lt;/P&gt;&lt;P&gt;i should get the same error message in the status bar as "I" and "W" message types.&lt;/P&gt;&lt;P&gt;how to achieve this.&lt;/P&gt;&lt;P&gt;helpful suggestions will sure be rewarded.&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;samarendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Apr 2008 14:13:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-popup/m-p/3652633#M879754</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-04T14:13:28Z</dc:date>
    </item>
    <item>
      <title>Re: Error Message popup</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-popup/m-p/3652634#M879755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Replace 'E' with 'I' or 'W' to achieve that ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Apr 2008 14:15:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-popup/m-p/3652634#M879755</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-04T14:15:29Z</dc:date>
    </item>
    <item>
      <title>Re: Error Message popup</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-popup/m-p/3652635#M879756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can do as below:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
message 'Error information' type 'E'.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sriram Ponna.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Apr 2008 14:15:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-popup/m-p/3652635#M879756</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-04T14:15:58Z</dc:date>
    </item>
    <item>
      <title>Re: Error Message popup</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-popup/m-p/3652636#M879757</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi check this program..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT ztest message-id zmsd.&lt;/P&gt;&lt;P&gt;data: v_test type i value '10'.&lt;/P&gt;&lt;P&gt;if v_test ne 12.&lt;/P&gt;&lt;P&gt;message s000 with 'this is not matched'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT ztest message-id zmsd.&lt;/P&gt;&lt;P&gt;data: v_test type i value '10'.&lt;/P&gt;&lt;P&gt;if v_test ne 12.&lt;/P&gt;&lt;P&gt;message i000 with 'this is working'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Apr 2008 14:21:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-popup/m-p/3652636#M879757</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-04T14:21:50Z</dc:date>
    </item>
    <item>
      <title>Re: Error Message popup</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-popup/m-p/3652637#M879758</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear sriram,&lt;/P&gt;&lt;P&gt;There is logic given down after the condition further.&lt;/P&gt;&lt;P&gt;when i have given the message as "W" or "I' then it is not displaying the message and it is continuing to the further logic.&lt;/P&gt;&lt;P&gt;where in which there are success messages also.&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;samarendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Apr 2008 14:26:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-popup/m-p/3652637#M879758</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-04T14:26:03Z</dc:date>
    </item>
    <item>
      <title>Re: Error Message popup</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-popup/m-p/3652638#M879759</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if u specify the message type 'E' it will stops u other wise it will continue ....if u give the type as 'I' or 'W'...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Apr 2008 14:37:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-popup/m-p/3652638#M879759</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-04T14:37:21Z</dc:date>
    </item>
    <item>
      <title>Re: Error Message popup</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-popup/m-p/3652639#M879760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In your GUI on top right you see personalization options ...you can reach it through ALT+F12...now in this pop up choose options and further select options tab..now unclick dialog box at error message...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Apr 2008 14:51:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-popup/m-p/3652639#M879760</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-04T14:51:44Z</dc:date>
    </item>
    <item>
      <title>Re: Error Message popup</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-popup/m-p/3652640#M879761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;message 'Error Message' type 'E' display like 'I' or 'W' whatever you want.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Apr 2008 14:55:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-popup/m-p/3652640#M879761</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-04T14:55:04Z</dc:date>
    </item>
    <item>
      <title>Re: Error Message popup</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-popup/m-p/3652641#M879762</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message types are E - Error&lt;/P&gt;&lt;P&gt;                             I  - Information&lt;/P&gt;&lt;P&gt;                             W - Warning&lt;/P&gt;&lt;P&gt;                             S - Success &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you use Error or Success Message types  will shows on the status bar&lt;/P&gt;&lt;P&gt;If you use Information or Warning Message types will give popup windows&lt;/P&gt;&lt;P&gt;Error will not allow the futher action untill correct it but information or warning press enter it will allows to continue.  You can write different types.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg:   Message 'Type 1' type 'E'.&lt;/P&gt;&lt;P&gt;        Message E0001(Zxxx)  with 'Type 2'.&lt;/P&gt;&lt;P&gt;In 2nd Eg:  Message class should be there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;Ganesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Apr 2008 15:00:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-popup/m-p/3652641#M879762</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-04T15:00:30Z</dc:date>
    </item>
    <item>
      <title>Re: Error Message popup</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-popup/m-p/3652642#M879763</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear amiya&lt;/P&gt;&lt;P&gt;i have gone through the solution that u have given.&lt;/P&gt;&lt;P&gt;this did not help me because all the message options are not checked.&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;samarendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 Apr 2008 03:51:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-popup/m-p/3652642#M879763</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-05T03:51:47Z</dc:date>
    </item>
    <item>
      <title>Re: Error Message popup</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-popup/m-p/3652643#M879764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Ravi,&lt;/P&gt;&lt;P&gt;this also has not helped me because it is showing the popup again i.e., warning message is also behaving like error message.&lt;/P&gt;&lt;P&gt;Earlier the warning message or information message used to show in status bar.&lt;/P&gt;&lt;P&gt;now it is showing as popup and stopping further processing logic&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;samarendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 Apr 2008 03:54:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-popup/m-p/3652643#M879764</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-05T03:54:23Z</dc:date>
    </item>
  </channel>
</rss>

