<?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 Re: CONTINUE!!!!!!!!!!!!! in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/continue/m-p/2400792#M534795</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CONTINUE: Will terminate the current loop process and continue with next.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXIT: Will terminate the entire loop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Jun 2007 14:02:05 GMT</pubDate>
    <dc:creator>alex_m</dc:creator>
    <dc:date>2007-06-19T14:02:05Z</dc:date>
    <item>
      <title>CONTINUE!!!!!!!!!!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/continue/m-p/2400789#M534792</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Give examples for Statements  -&lt;/P&gt;&lt;HR originaltext="-------" /&gt;&lt;P&gt;   CONTINUE    EXIT   Where and how they can be used in programs give examples&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2007 13:55:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/continue/m-p/2400789#M534792</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-19T13:55:41Z</dc:date>
    </item>
    <item>
      <title>Re: CONTINUE!!!!!!!!!!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/continue/m-p/2400790#M534793</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;To terminate a single loop pass immediately and unconditionally, use the CONTINUE statement in the statement block of the loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After the statement, the system ignores any remaining statements in the current statement block, and starts the next loop pass. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TO Terminate the entire Loop use the EXIT command&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; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2007 13:58:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/continue/m-p/2400790#M534793</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-19T13:58:52Z</dc:date>
    </item>
    <item>
      <title>Re: CONTINUE!!!!!!!!!!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/continue/m-p/2400791#M534794</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;b&amp;gt;Continue..&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Within loop structures like &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DO ... ENDDO &lt;/P&gt;&lt;P&gt;WHILE ... ENDWHILE &lt;/P&gt;&lt;P&gt;LOOP ... ENDLOOP &lt;/P&gt;&lt;P&gt;SELECT ... ENDSELECT &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONTINUE terminates the current loop pass, returns the processing to the beginning of the loop and starts the next loop pass, if there is one. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;DO loop: Omit an area (10 ... 20) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DO 100 TIMES.&lt;/P&gt;&lt;P&gt;  IF SY-INDEX &amp;gt;= 10 AND SY-INDEX &amp;lt;= 20.&lt;/P&gt;&lt;P&gt;    CONTINUE.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;  ...&lt;/P&gt;&lt;P&gt;ENDDO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Exit&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In loop structures: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Leaves the loop processing (DO , WHILE , LOOP , SELECT ) &lt;/P&gt;&lt;P&gt;In subroutines and other modularization units (but outside loop structures): &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;&lt;/P&gt;&lt;P&gt;Outside loop structures and modularization units (report processing): &lt;/P&gt;&lt;P&gt;Cancels the report processing and displays the list &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES T100.&lt;/P&gt;&lt;P&gt;DATA SAP_COUNT TYPE I.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM T100 WHERE SPRSL = SY-LANGU AND&lt;/P&gt;&lt;P&gt;                         ARBGB = 'DS'.&lt;/P&gt;&lt;P&gt;  WRITE / T100-TEXT.&lt;/P&gt;&lt;P&gt;  IF T100-TEXT CS 'SAP'.&lt;/P&gt;&lt;P&gt;    ADD 1 TO SAP_COUNT.&lt;/P&gt;&lt;P&gt;    IF SAP_COUNT = 3.&lt;/P&gt;&lt;P&gt;      EXIT.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2007 14:00:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/continue/m-p/2400791#M534794</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-19T14:00:21Z</dc:date>
    </item>
    <item>
      <title>Re: CONTINUE!!!!!!!!!!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/continue/m-p/2400792#M534795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CONTINUE: Will terminate the current loop process and continue with next.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXIT: Will terminate the entire loop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2007 14:02:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/continue/m-p/2400792#M534795</guid>
      <dc:creator>alex_m</dc:creator>
      <dc:date>2007-06-19T14:02:05Z</dc:date>
    </item>
  </channel>
</rss>

