<?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 Loops in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/loops/m-p/2302318#M503301</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it possible to catch an illegal assignment to a data&lt;/P&gt;&lt;P&gt;object inside a loop and continue?  Or does this type of&lt;/P&gt;&lt;P&gt;exception cause the termination of the loop?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to process records within a loop and ignore those&lt;/P&gt;&lt;P&gt;records which throw exceptions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 18 May 2007 19:10:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-18T19:10:11Z</dc:date>
    <item>
      <title>Loops</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loops/m-p/2302318#M503301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it possible to catch an illegal assignment to a data&lt;/P&gt;&lt;P&gt;object inside a loop and continue?  Or does this type of&lt;/P&gt;&lt;P&gt;exception cause the termination of the loop?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to process records within a loop and ignore those&lt;/P&gt;&lt;P&gt;records which throw exceptions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2007 19:10:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loops/m-p/2302318#M503301</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-18T19:10:11Z</dc:date>
    </item>
    <item>
      <title>Re: Loops</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loops/m-p/2302319#M503302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use continue statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at iatb.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if cond  ne 4.&lt;/P&gt;&lt;P&gt;&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;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;continue statement - it skip that record and go for further record in that loop&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2007 19:13:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loops/m-p/2302319#M503302</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-18T19:13:20Z</dc:date>
    </item>
    <item>
      <title>Re: Loops</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loops/m-p/2302320#M503303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Gregory,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this, it will catch the system exceptions which will cause by data problems.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CATCH SYSTEM-EXCEPTIONS arithmetic_errors = 4 &lt;/P&gt;&lt;P&gt;                        OTHERS = 8. &lt;/P&gt;&lt;P&gt;  &amp;lt;&amp;lt;YOUR CODE&amp;gt;&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDCATCH. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards&lt;/P&gt;&lt;P&gt;Pavan Kothapalli&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2007 19:26:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loops/m-p/2302320#M503303</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-18T19:26:20Z</dc:date>
    </item>
    <item>
      <title>Re: Loops</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loops/m-p/2302321#M503304</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gregory,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use &amp;lt;b&amp;gt;CONTINUE&amp;lt;/b&amp;gt;&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;Reward points if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Aneesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2007 19:26:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loops/m-p/2302321#M503304</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-18T19:26:43Z</dc:date>
    </item>
  </channel>
</rss>

