<?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: Abap dump error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error/m-p/391705#M9693</link>
    <description>&lt;P&gt;I don't know why you want me to have a crystal ball to answer a query could you be specific what you meant ? don't beat around the bush this is forum for technical questions not for debating ones personal opinions &lt;/P&gt;</description>
    <pubDate>Tue, 24 Jan 2017 13:17:45 GMT</pubDate>
    <dc:creator>VijayCR</dc:creator>
    <dc:date>2017-01-24T13:17:45Z</dc:date>
    <item>
      <title>Abap dump error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error/m-p/391691#M9679</link>
      <description>&lt;P&gt;Hello Experts,&lt;/P&gt;&lt;P&gt;I have a issue with a  ABAP program that he teminited with dump .&lt;/P&gt;&lt;P&gt;  Its &lt;/P&gt;&lt;P&gt;Its possible to optimizate the folowing  code ?&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/15925-1e4vs.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/15924-4ygfa.png" /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jan 2017 12:15:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error/m-p/391691#M9679</guid>
      <dc:creator>former_member298288</dc:creator>
      <dc:date>2017-01-18T12:15:03Z</dc:date>
    </item>
    <item>
      <title>Re: Abap dump error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error/m-p/391692#M9680</link>
      <description>&lt;P&gt;Ask your BASIS team. They need to increase paging area.&lt;/P&gt;&lt;P&gt;Rgds&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jan 2017 12:40:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error/m-p/391692#M9680</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-01-18T12:40:40Z</dc:date>
    </item>
    <item>
      <title>Re: Abap dump error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error/m-p/391693#M9681</link>
      <description>&lt;P&gt;Increase the memory size..check with your BASIS team or restrict the amount of data you have given in selection.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jan 2017 12:41:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error/m-p/391693#M9681</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-01-23T12:41:24Z</dc:date>
    </item>
    <item>
      <title>Re: Abap dump error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error/m-p/391694#M9682</link>
      <description>&lt;P&gt;You've not really given enough information for a proper answer. &lt;/P&gt;&lt;P&gt;You need to determine if this issue is due to a memory leak (faulty programming) or just too much data. In either case, the fix is not to increase the amount of memory you have - except in rare cases you'll just run into the new limit. &lt;/P&gt;&lt;P&gt;To work out whether it's a memory leak, run in debug. Check the amount of data in &amp;lt;wt_fs_tables&amp;gt; before the loop start - use the memory analyser to see how much memory it's actually using. As you go through the loop, watch &amp;lt;wt_fs_tablez&amp;gt; and see how its memory usage increases.&lt;/P&gt;&lt;P&gt;Check whether the method containing this bit of code is being called multiple times.&lt;/P&gt;&lt;P&gt;One more piece of advice. Your variable naming is absolutely terrible. I assume that "fs" is for field symbols? That's a complete waste, because the little brackets &lt;STRONG&gt;&amp;lt; &amp;gt;&lt;/STRONG&gt; tell you it's a field symbol. And &lt;STRONG&gt;tables &lt;/STRONG&gt;and &lt;STRONG&gt;tablez &lt;/STRONG&gt;are utter meaningless names. Please spend some effort making your code readable and comprehensible. &lt;/P&gt;</description>
      <pubDate>Mon, 23 Jan 2017 13:33:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error/m-p/391694#M9682</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2017-01-23T13:33:35Z</dc:date>
    </item>
    <item>
      <title>Re: Abap dump error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error/m-p/391695#M9683</link>
      <description>&lt;P&gt;Ding ding ding!!!! &lt;/P&gt;&lt;P&gt;Very limited info yet so many people willing to throw bad information at him hoping they are right. Uggg&lt;/P&gt;&lt;P&gt;I agree with your points. I suspect that &amp;lt;wt_fs_tables&amp;gt; and  &amp;lt;wt_fs_tablez&amp;gt; point to the same table. He is looping one while inserting to it....basically he keeps extending the table by one on each loop, so it will just keep looping.....and keep adding records....and loop again on the new record....and add a new one....etc etc......so of course his internal table is "blowing up". BUT....he hasn't told us too much more.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jan 2017 16:18:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error/m-p/391695#M9683</guid>
      <dc:creator>ChrisSolomon</dc:creator>
      <dc:date>2017-01-23T16:18:53Z</dc:date>
    </item>
    <item>
      <title>Re: Abap dump error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error/m-p/391696#M9684</link>
      <description>&lt;P&gt;Yep, treat a gushing wound with a blood infusion. Stellar advice.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jan 2017 19:51:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error/m-p/391696#M9684</guid>
      <dc:creator>Jelena_Perfiljeva</dc:creator>
      <dc:date>2017-01-23T19:51:04Z</dc:date>
    </item>
    <item>
      <title>Re: Abap dump error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error/m-p/391697#M9685</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;I suspect that &amp;lt;wt_fs_tables&amp;gt; and &amp;lt;wt_fs_tablez&amp;gt; point to the same table&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;That is exactly what I thought looking at the code... what are the table sizes to begin with? That would be useful information!&lt;/P&gt;&lt;P&gt;Matthew, you brought up another pet peeve of mine. As a consultant, I have written code for many, many, clients and very often I am handed a huge manual and told to follow some cockamamie naming convention. For example, if it is local call start with 'l', next a 'v' to denote it is a variable (really, really?), next 'c' because it is a character, then local to where, so I end up with a variable lvc_funcname_counter... Argh!&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jan 2017 22:21:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error/m-p/391697#M9685</guid>
      <dc:creator>raghug</dc:creator>
      <dc:date>2017-01-23T22:21:16Z</dc:date>
    </item>
    <item>
      <title>Re: Abap dump error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error/m-p/391698#M9686</link>
      <description>&lt;P&gt;Jelena, good point, bad analogy... Often trauma patients are hooked up to blood (in my days, more commonly plasma these days) while looking for a way to get the bleeding stopped. Does save lives - just saying &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jan 2017 22:24:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error/m-p/391698#M9686</guid>
      <dc:creator>raghug</dc:creator>
      <dc:date>2017-01-23T22:24:47Z</dc:date>
    </item>
    <item>
      <title>Re: Abap dump error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error/m-p/391699#M9687</link>
      <description>&lt;P&gt;and how do you propose to solve this problem with parallel processing? &lt;/P&gt;</description>
      <pubDate>Mon, 23 Jan 2017 22:26:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error/m-p/391699#M9687</guid>
      <dc:creator>raghug</dc:creator>
      <dc:date>2017-01-23T22:26:13Z</dc:date>
    </item>
    <item>
      <title>Re: Abap dump error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error/m-p/391700#M9688</link>
      <description>&lt;P&gt;If you haven't already seen it, you'll find this interesting&lt;/P&gt;&lt;P&gt;&lt;A href="https://blogs.sap.com/2014/12/29/abap-modern-code-conventions/" target="test_blank"&gt;https://blogs.sap.com/2014/12/29/abap-modern-code-conventions/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Jan 2017 08:20:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error/m-p/391700#M9688</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2017-01-24T08:20:37Z</dc:date>
    </item>
    <item>
      <title>Re: Abap dump error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error/m-p/391701#M9689</link>
      <description>&lt;P&gt;Use the below mentioned link &lt;A href="https://wiki.scn.sap.com/wiki/display/ABAP/FETCH+and+OPEN+CURSOR+Analysis" target="test_blank"&gt;https://wiki.scn.sap.com/wiki/display/ABAP/FETCH+and+OPEN+CURSOR+Analysis&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Also check if you can aggregare on some field ?&lt;/P&gt;&lt;P&gt;Use the PACKAGE SIZE in your query.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Jan 2017 11:07:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error/m-p/391701#M9689</guid>
      <dc:creator>VijayCR</dc:creator>
      <dc:date>2017-01-24T11:07:42Z</dc:date>
    </item>
    <item>
      <title>Re: Abap dump error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error/m-p/391702#M9690</link>
      <description>&lt;P&gt;Do you have a crystal ball, which i can borrow? &lt;/P&gt;</description>
      <pubDate>Tue, 24 Jan 2017 11:28:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error/m-p/391702#M9690</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2017-01-24T11:28:37Z</dc:date>
    </item>
    <item>
      <title>Re: Abap dump error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error/m-p/391703#M9691</link>
      <description>&lt;P&gt;What do you mean a crystal ball??&lt;/P&gt;</description>
      <pubDate>Tue, 24 Jan 2017 12:33:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error/m-p/391703#M9691</guid>
      <dc:creator>VijayCR</dc:creator>
      <dc:date>2017-01-24T12:33:48Z</dc:date>
    </item>
    <item>
      <title>Re: Abap dump error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error/m-p/391704#M9692</link>
      <description>&lt;P&gt;Check this -&amp;gt; &lt;A href="http://bfy.tw/9f6S" target="test_blank"&gt;http://bfy.tw/9f6S&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Jan 2017 12:58:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error/m-p/391704#M9692</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2017-01-24T12:58:00Z</dc:date>
    </item>
    <item>
      <title>Re: Abap dump error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error/m-p/391705#M9693</link>
      <description>&lt;P&gt;I don't know why you want me to have a crystal ball to answer a query could you be specific what you meant ? don't beat around the bush this is forum for technical questions not for debating ones personal opinions &lt;/P&gt;</description>
      <pubDate>Tue, 24 Jan 2017 13:17:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error/m-p/391705#M9693</guid>
      <dc:creator>VijayCR</dc:creator>
      <dc:date>2017-01-24T13:17:45Z</dc:date>
    </item>
    <item>
      <title>Re: Abap dump error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error/m-p/391706#M9694</link>
      <description>&lt;P&gt;Thank you so much for your answers &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the amount of data in &amp;lt;wt_fs_tables&amp;gt; before the loop is 2 219 336.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Jan 2017 14:03:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error/m-p/391706#M9694</guid>
      <dc:creator>former_member298288</dc:creator>
      <dc:date>2017-01-24T14:03:58Z</dc:date>
    </item>
    <item>
      <title>Re: Abap dump error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error/m-p/391707#M9695</link>
      <description>&lt;P&gt;&lt;EM&gt;I don't know why you want me to have a crystal ball to answer a query could you be specific what you meant ?&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;You would understand the "pun", if you realise why your answer got 6 "down votes" (read: at the time of posting this comment) ... and with this i rest my case! &lt;/P&gt;</description>
      <pubDate>Tue, 24 Jan 2017 14:13:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error/m-p/391707#M9695</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2017-01-24T14:13:35Z</dc:date>
    </item>
    <item>
      <title>Re: Abap dump error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error/m-p/391708#M9696</link>
      <description>&lt;P&gt;You need to check in the debugger and/or dump analysis the memory consumption. The number of records in the table doesn't give the whole picture. &lt;/P&gt;&lt;P&gt;If you want meaningful responses, then provide additional info, e.g., screenshot of the memory analysis.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Jan 2017 14:18:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error/m-p/391708#M9696</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2017-01-24T14:18:15Z</dc:date>
    </item>
    <item>
      <title>Re: Abap dump error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error/m-p/391709#M9697</link>
      <description>&lt;P&gt;When  I run the program manually , I get any errors. but when this program running in parallel with another programs I get the dump mensionned below.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Jan 2017 16:18:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error/m-p/391709#M9697</guid>
      <dc:creator>former_member298288</dc:creator>
      <dc:date>2017-01-24T16:18:45Z</dc:date>
    </item>
    <item>
      <title>Re: Abap dump error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error/m-p/391710#M9698</link>
      <description>&lt;P&gt;Besides the crystal ball, I need crystal-something-else to understand the relationship between that article about portioning up data fetches and running them in parallel processes to the question here, which has nothing to do with the database. And, using PACKAGE SIZE on an internal table - sorry future readers for the in-the-moment cultural reference - all I can think of is a certain comment on "alternate facts" by someone who is really worried about things being YUUGGE!&lt;/P&gt;</description>
      <pubDate>Tue, 24 Jan 2017 16:18:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error/m-p/391710#M9698</guid>
      <dc:creator>raghug</dc:creator>
      <dc:date>2017-01-24T16:18:54Z</dc:date>
    </item>
  </channel>
</rss>

