<?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/2142627#M451518</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;Continue statement at any given point directs the thread to escape the remaining segments of that loop and brings it back to the starting point of the next iteration for the concerned loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;P&gt;reward with points&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Apr 2007 05:55:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-17T05:55:46Z</dc:date>
    <item>
      <title>continue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/continue/m-p/2142623#M451514</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if i declare continue statement in events what will happen?&lt;/P&gt;&lt;P&gt;if i declare continue statement before events what will happen?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Apr 2007 05:39:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/continue/m-p/2142623#M451514</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-17T05:39:17Z</dc:date>
    </item>
    <item>
      <title>Re: continue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/continue/m-p/2142624#M451515</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Balu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The continue statement is coded within a loop. It acts like a goto, passing control immediately to the terminating statement of the loop and beginning a new loop pass. In effect, it causes the statements below it within the loop to be ignored and a new loop pass to begin.&lt;/P&gt;&lt;P&gt;The following points apply: &lt;/P&gt;&lt;P&gt;&amp;#149;	continue can only be coded within a loop. &lt;/P&gt;&lt;P&gt;&amp;#149;	continue has no additions. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this resolves your query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward all the helpful answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Apr 2007 05:40:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/continue/m-p/2142624#M451515</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-17T05:40:38Z</dc:date>
    </item>
    <item>
      <title>Re: continue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/continue/m-p/2142625#M451516</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;"continue" statement we will use inside the loop only.if we use continue in aloop it will terminate the current iteration.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;bharat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Apr 2007 05:43:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/continue/m-p/2142625#M451516</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-17T05:43:51Z</dc:date>
    </item>
    <item>
      <title>Re: continue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/continue/m-p/2142626#M451517</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hhi,&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;&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, 17 Apr 2007 05:53:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/continue/m-p/2142626#M451517</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-17T05:53:13Z</dc:date>
    </item>
    <item>
      <title>Re: continue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/continue/m-p/2142627#M451518</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;Continue statement at any given point directs the thread to escape the remaining segments of that loop and brings it back to the starting point of the next iteration for the concerned loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;P&gt;reward with points&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Apr 2007 05:55:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/continue/m-p/2142627#M451518</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-17T05:55:46Z</dc:date>
    </item>
  </channel>
</rss>

