<?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: Regarding: Short Dump in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-short-dump/m-p/4456375#M1056388</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 your select query try into corresponding fields of table it_vbap instead of table table it_vbap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if it does not work try out with AND in where condition instead of OR.&lt;/P&gt;&lt;P&gt;this may be becoz of that due to OR condition there are values more than the limit of youe internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rajesh Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 Sep 2008 12:45:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-09T12:45:56Z</dc:date>
    <item>
      <title>Regarding: Short Dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-short-dump/m-p/4456370#M1056383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI&lt;/P&gt;&lt;P&gt; when I try to execute the following select query .&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;        select * from vbap into table it_vbap where vbeln = p_vbeln&lt;/P&gt;&lt;P&gt;                                                                  or vgbel = p_vbeln&lt;/P&gt;&lt;P&gt;                                                                  or vbeln  = j_3avbfae-vbelv&lt;/P&gt;&lt;P&gt;                                                                  or vgbel = j_3avbfae-vbelv&lt;/P&gt;&lt;P&gt;                                                                  or vbeln = p_vgbel&lt;/P&gt;&lt;P&gt;                                                                  or vgbel = p_vgbel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the system throwing up dump with the following message&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;'Memory low : leave the transaction before taking break'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please make me know the issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;jaya prasanna kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Sep 2008 11:08:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-short-dump/m-p/4456370#M1056383</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-09T11:08:15Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding: Short Dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-short-dump/m-p/4456371#M1056384</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;well with your OR criterias there are probabaly a LOT of records matching those.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Probably more than you can handle in an itab.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Sep 2008 11:11:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-short-dump/m-p/4456371#M1056384</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-09T11:11:47Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding: Short Dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-short-dump/m-p/4456372#M1056385</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That message comes when you're in debug after a dump - it's telling you that memory is low, so you should get out of debug asap, so that the memory can be cleaned up.  What's the actual message in the dump?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chance are that the dump is also telling you your are out of memory.  You're selecting more data than the system can handle.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Sep 2008 11:12:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-short-dump/m-p/4456372#M1056385</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2008-09-09T11:12:08Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding: Short Dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-short-dump/m-p/4456373#M1056386</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The issue is that your internal table is exceeding the memory limit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the dump it will showing how much memory space is alloted to the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Basis people will be alloted some memory space to the internal table and your internal table is exceeding that limit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so try to divide the data while passing the data into the internal table while using select statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Sep 2008 11:12:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-short-dump/m-p/4456373#M1056386</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-09T11:12:24Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding: Short Dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-short-dump/m-p/4456374#M1056387</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jaya,&lt;/P&gt;&lt;P&gt;This dump might be because of insufficient free memory available. Check with ur basis team as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also i can see toomany OR conditions in ur select. Its a good idea to use range here instead of too many OR conditions. Also select only the required fields instead of SELECT * which consumes lots of memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Sep 2008 11:13:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-short-dump/m-p/4456374#M1056387</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2008-09-09T11:13:35Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding: Short Dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-short-dump/m-p/4456375#M1056388</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 your select query try into corresponding fields of table it_vbap instead of table table it_vbap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if it does not work try out with AND in where condition instead of OR.&lt;/P&gt;&lt;P&gt;this may be becoz of that due to OR condition there are values more than the limit of youe internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rajesh Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Sep 2008 12:45:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-short-dump/m-p/4456375#M1056388</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-09T12:45:56Z</dc:date>
    </item>
  </channel>
</rss>

