<?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: Program going for dump when selecting into an internal table through RFC. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-going-for-dump-when-selecting-into-an-internal-table-through-rfc/m-p/4889001#M1142251</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Are you calling RFC from other SAP system?  If so, you can download the Data to App.Server and FTP to the other using Std Program and then read the data from the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you&lt;/P&gt;&lt;P&gt;Raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 02 Jan 2009 09:25:45 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-01-02T09:25:45Z</dc:date>
    <item>
      <title>Program going for dump when selecting into an internal table through RFC.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-going-for-dump-when-selecting-into-an-internal-table-through-rfc/m-p/4888998#M1142248</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My program is a RFC. I need to select the full table from a RFC in an internal table. The problem is that the db table has huge data and my program is going for a dump ("TSV_TNEW_PAGE_ALLOC_FAILED")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------------------------------" /&gt;&lt;P&gt;Dump analysis.&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------------------------------" /&gt;&lt;P&gt;No storage space available for extending the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------------------------------" /&gt;&lt;P&gt;What happened?&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------------------------------" /&gt;&lt;P&gt;You attempted to extend an internal table, but the required space was&lt;/P&gt;&lt;P&gt;not available.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------------------------------" /&gt;&lt;P&gt;How to correct the error&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The amount of storage space (in bytes) filled at termination time was:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Roll area...................... 2717424&lt;/P&gt;&lt;P&gt;Extended memory (EM)........... 190442616&lt;/P&gt;&lt;P&gt;Assigned memory (HEAP)......... 10004800&lt;/P&gt;&lt;P&gt;Short area..................... " "&lt;/P&gt;&lt;P&gt;Paging area.................... 106496&lt;/P&gt;&lt;P&gt;Maximum address space.......... 4294967295&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you can see that this is a memory allocation problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is that BASIS team can no longer increase the memory, so I need to have a walkaround this problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was previously using   CALL FUNCTION 'RFC_READ_TABLE' DESTINATION p_dest  in  the program. But this FM is going for a dump in the program. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created a new custom FM in which I have used the packaging property.&lt;/P&gt;&lt;P&gt;		SELECT * FROM db_tab&lt;/P&gt;&lt;P&gt;        PACKAGE SIZE 10000&lt;/P&gt;&lt;P&gt;            APPENDING TABLE i_tab&lt;/P&gt;&lt;P&gt;But this too is not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;According to the functionality, we need to have SELECT *  and need to extract all the records too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any way where we can put the data into 2 or 3 internal tables from the rfc select.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions would be welcome.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Arindam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2008 05:19:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-going-for-dump-when-selecting-into-an-internal-table-through-rfc/m-p/4888998#M1142248</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-08T05:19:07Z</dc:date>
    </item>
    <item>
      <title>Re: Program going for dump when selecting into an internal table through RFC.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-going-for-dump-when-selecting-into-an-internal-table-through-rfc/m-p/4888999#M1142249</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Arindam,&lt;/P&gt;&lt;P&gt;   As increasing the Roll area memory is not an option i'd suggest you modify your select. Split it up into 2 or more selects based on any one primary key field or based on time periods. The records can be processed in the 2-3 internal tables one after the other or if you arrive at a fewer number of records after certain eliminations then combine the tables at that point.&lt;/P&gt;&lt;P&gt;There are a lot of related threads on this topic in this forum. I'm pasting one below for reference&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="5585268"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2008 08:32:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-going-for-dump-when-selecting-into-an-internal-table-through-rfc/m-p/4888999#M1142249</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-08T08:32:01Z</dc:date>
    </item>
    <item>
      <title>Re: Program going for dump when selecting into an internal table through RFC.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-going-for-dump-when-selecting-into-an-internal-table-through-rfc/m-p/4889000#M1142250</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you do not need all the fields in the Db table, Select only required fields in place of Select *&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Jan 2009 09:08:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-going-for-dump-when-selecting-into-an-internal-table-through-rfc/m-p/4889000#M1142250</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-02T09:08:22Z</dc:date>
    </item>
    <item>
      <title>Re: Program going for dump when selecting into an internal table through RFC.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-going-for-dump-when-selecting-into-an-internal-table-through-rfc/m-p/4889001#M1142251</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Are you calling RFC from other SAP system?  If so, you can download the Data to App.Server and FTP to the other using Std Program and then read the data from the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you&lt;/P&gt;&lt;P&gt;Raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Jan 2009 09:25:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-going-for-dump-when-selecting-into-an-internal-table-through-rfc/m-p/4889001#M1142251</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-02T09:25:45Z</dc:date>
    </item>
    <item>
      <title>Re: Program going for dump when selecting into an internal table through RFC.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-going-for-dump-when-selecting-into-an-internal-table-through-rfc/m-p/4889002#M1142252</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
SELECT * FROM db_tab
PACKAGE SIZE 10000
APPENDING TABLE i_tab
But this too is not working.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Read the documentation carefully!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should use an INTO or an APPENDING with a refresh somewhere.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Otherwise your table grows again, because a packages added!, and performance is even worse!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Siegfried&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Jan 2009 11:29:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-going-for-dump-when-selecting-into-an-internal-table-through-rfc/m-p/4889002#M1142252</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-02T11:29:58Z</dc:date>
    </item>
  </channel>
</rss>

