<?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 STOP and EXIT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/stop-and-exit/m-p/1294971#M156558</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Guys,&lt;/P&gt;&lt;P&gt;In ERP 2005, Stop statement is giving run time dump in programs.&lt;/P&gt;&lt;P&gt;But in 46C its working fine. can we replace EXIT command replacing STOP statement here. Please explain and suggest me.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Ambichan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 08 Jun 2006 02:47:51 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-08T02:47:51Z</dc:date>
    <item>
      <title>STOP and EXIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/stop-and-exit/m-p/1294971#M156558</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Guys,&lt;/P&gt;&lt;P&gt;In ERP 2005, Stop statement is giving run time dump in programs.&lt;/P&gt;&lt;P&gt;But in 46C its working fine. can we replace EXIT command replacing STOP statement here. Please explain and suggest me.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Ambichan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jun 2006 02:47:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/stop-and-exit/m-p/1294971#M156558</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-08T02:47:51Z</dc:date>
    </item>
    <item>
      <title>Re: STOP and EXIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/stop-and-exit/m-p/1294972#M156559</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 depends on where you put the EXIT.&lt;/P&gt;&lt;P&gt;If you use the STOP statement within an event block, the system stops processing the block immediately.If the EXIT statement occurs in a loop using DO, WHILE, or LOOP, it is the loop that terminates, not the processing block.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also try the key word LEAVE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suresh Datti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jun 2006 02:56:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/stop-and-exit/m-p/1294972#M156559</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2006-06-08T02:56:14Z</dc:date>
    </item>
    <item>
      <title>Re: STOP and EXIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/stop-and-exit/m-p/1294973#M156560</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use statement &amp;lt;b&amp;gt;LEAVE to SCREEN sy-dynnr.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jun 2006 03:31:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/stop-and-exit/m-p/1294973#M156560</guid>
      <dc:creator>vinod_gunaware2</dc:creator>
      <dc:date>2006-06-08T03:31:26Z</dc:date>
    </item>
    <item>
      <title>Re: STOP and EXIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/stop-and-exit/m-p/1294974#M156561</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;&amp;lt;b&amp;gt;1&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;EXIT&amp;lt;/b&amp;gt; Statement.&lt;/P&gt;&lt;P&gt;=====&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Within a loop&amp;lt;/b&amp;gt;: The entire loop is terminated, and processing continues with the first statement following the loop. &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Outside a loop&amp;lt;/b&amp;gt;: Terminates the current processing block. &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;In a reporting event&amp;lt;/b&amp;gt;: Jumps directly to the output list.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;2&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;STOP&amp;lt;/b&amp;gt; Statement.&lt;/P&gt;&lt;P&gt;====&lt;/P&gt;&lt;P&gt;Only occurs in event blocks for reporting events. Leaves the event block and goes to the END-OF-SELECTION block.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now decide whether we can use STOP statement in LOOP or not.We should not use within loop thats y dump is coming.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think it gives u clear idea.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Thanks,&lt;/P&gt;&lt;P&gt;Venkat.O&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jun 2006 03:42:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/stop-and-exit/m-p/1294974#M156561</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2006-06-08T03:42:31Z</dc:date>
    </item>
    <item>
      <title>Re: STOP and EXIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/stop-and-exit/m-p/1294975#M156562</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;'STOP' The statement is only intended for use in the INITIALIZATION, AT SELECTION-SCREEN, START-OF-SELECTION, and GET events. It terminates the current processing block in an executable program and triggers the END-OF-SELECTION event. In all other processing blocks, or when you do not want to trigger the END-OF-SELECTION event, you must use EXIT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jun 2006 03:56:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/stop-and-exit/m-p/1294975#M156562</guid>
      <dc:creator>hymavathi_oruganti</dc:creator>
      <dc:date>2006-06-08T03:56:41Z</dc:date>
    </item>
    <item>
      <title>Re: STOP and EXIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/stop-and-exit/m-p/1294976#M156563</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;Basic form EXIT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect - Within a loop structure:&lt;/P&gt;&lt;P&gt;Terminates loop processing (DO, WHILE, LOOP, SELECT).&lt;/P&gt;&lt;P&gt;- Within subroutines and other modularization units (but not in a loop structure):&lt;/P&gt;&lt;P&gt;Leaves the subroutine or modularization unit (FORM, MODULE,FUNCTION, TOP-OF-PAGE, END-OF-PAGE).&lt;/P&gt;&lt;P&gt;- Outside loop structures and modularization units (report&lt;/P&gt;&lt;P&gt;processing):&lt;/P&gt;&lt;P&gt;Terminates report processing and triggers list display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement is not allowed in an ABAP Objects context. &lt;/P&gt;&lt;P&gt;STOP not allowed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement terminates a processing block in an excutable program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The statement is only intended for use in the INITIALIZATION,AT SELECTION-SCREEN, START-OF-SELECTION, and GET events. &lt;/P&gt;&lt;P&gt;It terminates the current processing block in an executable program and triggers the END-OF-SELECTION event. In all other processing blocks, or when you do not want to trigger the END-OF-SELECTION event, you must use EXIT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if helpful,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Sumana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jun 2006 04:14:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/stop-and-exit/m-p/1294976#M156563</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-08T04:14:50Z</dc:date>
    </item>
  </channel>
</rss>

