<?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 when dealing with the DO statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-dealing-with-the-do-statement/m-p/3167935#M753693</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, I have a DO statement like below. &amp;lt;b&amp;gt;DO for 6times&amp;lt;/b&amp;gt;....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;  DO 6 TIMES&lt;/P&gt;&lt;P&gt;        VARYING TEMP_INV_AGING_COUNT  FROM &amp;lt;FS1&amp;gt; NEXT &amp;lt;FS2&amp;gt;  RANGE E_INV_AGING_STRU&lt;/P&gt;&lt;P&gt;        VARYING TEMP_INV_AGING_AMOUNT FROM &amp;lt;FS3&amp;gt; NEXT &amp;lt;FS4&amp;gt; RANGE E_INV_AGING_STRU.&lt;/P&gt;&lt;P&gt;        ............................&lt;/P&gt;&lt;P&gt;        ............................&lt;/P&gt;&lt;P&gt;  ENDDO.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When processing this statement, there are no issues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Later, in the program I have another DO statemnt like below. &amp;lt;b&amp;gt;DO for 8 times&amp;lt;/b&amp;gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;  DO 8 TIMES&lt;/P&gt;&lt;P&gt;       VARYING TEMP_AGING_COUNT  FROM &amp;lt;FS1&amp;gt; NEXT &amp;lt;FS2&amp;gt; RANGE E_OTHER_AGING_STRU&lt;/P&gt;&lt;P&gt;       VARYING TEMP_AGING_AMOUNT FROM &amp;lt;FS3&amp;gt; NEXT &amp;lt;FS4&amp;gt; RANGE E_OTHER_AGING_STRU.&lt;/P&gt;&lt;P&gt;  ........................&lt;/P&gt;&lt;P&gt;  ........................&lt;/P&gt;&lt;P&gt;  ENDDO.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once it comes to DO 8 TIMES statement, it is going to DUMP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can someone help me why it is happening so..? Is there any limit for processing the DO Loop(for the number of iterations)...? Because, when processing the same DO statement for 6 times, there are no issues. But, when processing the same for 8 times, it is going to dump. Please help me. Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Paddu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 10 Dec 2007 07:16:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-10T07:16:52Z</dc:date>
    <item>
      <title>Error when dealing with the DO statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-dealing-with-the-do-statement/m-p/3167935#M753693</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, I have a DO statement like below. &amp;lt;b&amp;gt;DO for 6times&amp;lt;/b&amp;gt;....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;  DO 6 TIMES&lt;/P&gt;&lt;P&gt;        VARYING TEMP_INV_AGING_COUNT  FROM &amp;lt;FS1&amp;gt; NEXT &amp;lt;FS2&amp;gt;  RANGE E_INV_AGING_STRU&lt;/P&gt;&lt;P&gt;        VARYING TEMP_INV_AGING_AMOUNT FROM &amp;lt;FS3&amp;gt; NEXT &amp;lt;FS4&amp;gt; RANGE E_INV_AGING_STRU.&lt;/P&gt;&lt;P&gt;        ............................&lt;/P&gt;&lt;P&gt;        ............................&lt;/P&gt;&lt;P&gt;  ENDDO.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When processing this statement, there are no issues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Later, in the program I have another DO statemnt like below. &amp;lt;b&amp;gt;DO for 8 times&amp;lt;/b&amp;gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;  DO 8 TIMES&lt;/P&gt;&lt;P&gt;       VARYING TEMP_AGING_COUNT  FROM &amp;lt;FS1&amp;gt; NEXT &amp;lt;FS2&amp;gt; RANGE E_OTHER_AGING_STRU&lt;/P&gt;&lt;P&gt;       VARYING TEMP_AGING_AMOUNT FROM &amp;lt;FS3&amp;gt; NEXT &amp;lt;FS4&amp;gt; RANGE E_OTHER_AGING_STRU.&lt;/P&gt;&lt;P&gt;  ........................&lt;/P&gt;&lt;P&gt;  ........................&lt;/P&gt;&lt;P&gt;  ENDDO.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once it comes to DO 8 TIMES statement, it is going to DUMP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can someone help me why it is happening so..? Is there any limit for processing the DO Loop(for the number of iterations)...? Because, when processing the same DO statement for 6 times, there are no issues. But, when processing the same for 8 times, it is going to dump. Please help me. Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Paddu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Dec 2007 07:16:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-dealing-with-the-do-statement/m-p/3167935#M753693</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-10T07:16:52Z</dc:date>
    </item>
    <item>
      <title>Re: Error when dealing with the DO statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-dealing-with-the-do-statement/m-p/3167936#M753694</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;&lt;/P&gt;&lt;P&gt;   What type of error u r facing could u plz paste that description of that error here&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;pRashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Dec 2007 07:21:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-dealing-with-the-do-statement/m-p/3167936#M753694</guid>
      <dc:creator>former_member386202</dc:creator>
      <dc:date>2007-12-10T07:21:23Z</dc:date>
    </item>
    <item>
      <title>Re: Error when dealing with the DO statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-dealing-with-the-do-statement/m-p/3167937#M753695</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is going to DUMP afetr coming to the DO 8 TIMES statement. This is the error description in Dump Analysis.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Error in the ABAP Application Program                                          &lt;/P&gt;&lt;P&gt;The current ABAP program "ZXX_ABCD_DSA" had to be terminated because it has come across a statement that unfortunately cannot be executed.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Paddu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Dec 2007 08:24:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-when-dealing-with-the-do-statement/m-p/3167937#M753695</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-10T08:24:32Z</dc:date>
    </item>
  </channel>
</rss>

