<?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 behaving like Abort Message in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-behaving-like-abort-message/m-p/6864699#M1476256</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;In my program code , there is a error message written, but when this error message is triggered it is displayed as ABORT message and it is skipping the transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  SORT zt5.
  READ TABLE zt5 INDEX 1.

  IF sy-subrc &amp;lt;&amp;gt; '0'.
    MESSAGE e208 WITH 'No tiene vistas autorizadas'.
  ENDIF.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could any one tell the reason why it is happening.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Prasanth Kasturi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 10 May 2010 09:01:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-05-10T09:01:03Z</dc:date>
    <item>
      <title>Error message behaving like Abort Message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-behaving-like-abort-message/m-p/6864699#M1476256</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;In my program code , there is a error message written, but when this error message is triggered it is displayed as ABORT message and it is skipping the transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  SORT zt5.
  READ TABLE zt5 INDEX 1.

  IF sy-subrc &amp;lt;&amp;gt; '0'.
    MESSAGE e208 WITH 'No tiene vistas autorizadas'.
  ENDIF.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could any one tell the reason why it is happening.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Prasanth Kasturi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 May 2010 09:01:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-behaving-like-abort-message/m-p/6864699#M1476256</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-10T09:01:03Z</dc:date>
    </item>
    <item>
      <title>Re: Error message behaving like Abort Message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-behaving-like-abort-message/m-p/6864700#M1476257</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;is it report program or module pool ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 May 2010 09:04:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-behaving-like-abort-message/m-p/6864700#M1476257</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2010-05-10T09:04:50Z</dc:date>
    </item>
    <item>
      <title>Re: Error message behaving like Abort Message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-behaving-like-abort-message/m-p/6864701#M1476258</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;Try this way:
&lt;PRE&gt;&lt;CODE&gt;MESSAGE i000 DISPLAY LIKE 'E' WITH 'No tiene vistas autorizadas'&lt;/CODE&gt;&lt;/PRE&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 May 2010 09:06:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-behaving-like-abort-message/m-p/6864701#M1476258</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-10T09:06:16Z</dc:date>
    </item>
    <item>
      <title>Re: Error message behaving like Abort Message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-behaving-like-abort-message/m-p/6864702#M1476259</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think thats how error messages behave. You might try something like this if you want the transaction to be called after the error message&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  SORT zt5.
  READ TABLE zt5 INDEX 1.
 
  IF sy-subrc  '0'.
    MESSAGE 'No tiene vistas autorizadas' TYPE 'S' DISPLAY LIKE 'E'.
    EXIT.
  ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vikranth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 May 2010 09:07:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-behaving-like-abort-message/m-p/6864702#M1476259</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-10T09:07:00Z</dc:date>
    </item>
    <item>
      <title>Re: Error message behaving like Abort Message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-behaving-like-abort-message/m-p/6864703#M1476260</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;It is a Report Program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I do not want an alternative,I wanted to know why the system is behaving in this manner.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are there any settings that can be changed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 May 2010 09:13:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-behaving-like-abort-message/m-p/6864703#M1476260</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-10T09:13:58Z</dc:date>
    </item>
    <item>
      <title>Re: Error message behaving like Abort Message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-behaving-like-abort-message/m-p/6864704#M1476261</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kasturi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;if you issue a ERROR message in "PBO/ AT SELECTION-SCREEN OUTPUT it behaves like ABORT message.
if it is of type "WARNING/INFORMATION then it behaves
 as "SUCCESS message(On the Status BAR)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Hope this would clear the concept of MESSAGE types. For more info Take F1 Help on &lt;STRONG&gt;MESSAGE&lt;/STRONG&gt; Key word&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheerz&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 May 2010 09:15:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-behaving-like-abort-message/m-p/6864704#M1476261</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-10T09:15:50Z</dc:date>
    </item>
    <item>
      <title>Re: Error message behaving like Abort Message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-behaving-like-abort-message/m-p/6864705#M1476262</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Okay check whether do you giving error message in event AT SELECTION-SCREEN OUTPUT if yes change from that event&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 May 2010 09:19:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-behaving-like-abort-message/m-p/6864705#M1476262</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2010-05-10T09:19:50Z</dc:date>
    </item>
    <item>
      <title>Re: Error message behaving like Abort Message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-behaving-like-abort-message/m-p/6864706#M1476263</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just to support the suggestion given by aRs - &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Goto the program demo_messages&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;choose the options&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;called from selection screen&lt;/P&gt;&lt;P&gt;Message type Error&lt;/P&gt;&lt;P&gt;Triggered in PBO&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and hit execute button &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 May 2010 09:23:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-behaving-like-abort-message/m-p/6864706#M1476263</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-05-10T09:23:20Z</dc:date>
    </item>
    <item>
      <title>Re: Error message behaving like Abort Message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-behaving-like-abort-message/m-p/6864707#M1476264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;Have you written your message statement under &lt;STRONG&gt;AT SELECTION-SCREEN EVENT&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 May 2010 09:25:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-behaving-like-abort-message/m-p/6864707#M1476264</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-10T09:25:32Z</dc:date>
    </item>
  </channel>
</rss>

