<?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: int table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/int-table/m-p/1990806#M404217</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;Use the addition PACKAGE in your select statement. For reference refer to the select stmt in the standard program of the tcode 2KEE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Subramanian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 07 Mar 2007 05:08:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-07T05:08:46Z</dc:date>
    <item>
      <title>int table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/int-table/m-p/1990804#M404215</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i want to retrieve 1 million records ,if we use select statement surely get dump...in that case how to retreive the data?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2007 05:04:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/int-table/m-p/1990804#M404215</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-07T05:04:43Z</dc:date>
    </item>
    <item>
      <title>Re: int table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/int-table/m-p/1990805#M404216</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;If you give the correct Key fields in where condition of the Select statement&lt;/P&gt;&lt;P&gt;it will fetch the Million record also wityhout any problem into internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also use FIELD GROUPS instead of int Tables, if you feel that the data is too high.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2007 05:06:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/int-table/m-p/1990805#M404216</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-07T05:06:54Z</dc:date>
    </item>
    <item>
      <title>Re: int table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/int-table/m-p/1990806#M404217</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;Use the addition PACKAGE in your select statement. For reference refer to the select stmt in the standard program of the tcode 2KEE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Subramanian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2007 05:08:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/int-table/m-p/1990806#M404217</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-07T05:08:46Z</dc:date>
    </item>
    <item>
      <title>Re: int table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/int-table/m-p/1990807#M404218</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try using package size and retreive&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select  * from ztable into  itab  package size 10000 where matnr eq 'XXXX'.&lt;/P&gt;&lt;P&gt;append itab.&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Chandrasekhar Jagarlamudi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2007 05:10:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/int-table/m-p/1990807#M404218</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-07T05:10:21Z</dc:date>
    </item>
    <item>
      <title>Re: int table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/int-table/m-p/1990808#M404219</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI..&lt;/P&gt;&lt;P&gt;  U will not get any dump in retreving 1 million records..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  select statement will definitely fetch those all records..&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;  But try to get the records which are needed to u only and keep the necessary   conditions in where condition at select statement to get better performance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards Rk&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2007 05:10:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/int-table/m-p/1990808#M404219</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-07T05:10:41Z</dc:date>
    </item>
    <item>
      <title>Re: int table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/int-table/m-p/1990809#M404220</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;You can use the Pakage size option&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select field1 field2 field3&lt;/P&gt;&lt;P&gt;from Tablename&lt;/P&gt;&lt;P&gt;into table it_tablename package size 10000.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Package size determines the Total # of records that will be picked up in the First loop.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;loop at it_tablename.&lt;/P&gt;&lt;P&gt;write:/ it_tablename-field1,&lt;/P&gt;&lt;P&gt;        it_tablename-field2.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;refresh it_tablename.&lt;/P&gt;&lt;P&gt;free it_tablename.&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this way the first 10000 records are fetched written on to the screen, the memory is freed and the Internal table is ready for the second set to 10000 records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go through these links. it will be helpful to you,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="141923"&gt;&lt;/A&gt;&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="1431863"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/performance-tuning-for-data-selection-statement.htm" target="test_blank"&gt;http://www.sap-img.com/abap/performance-tuning-for-data-selection-statement.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2007 05:12:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/int-table/m-p/1990809#M404220</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-07T05:12:07Z</dc:date>
    </item>
  </channel>
</rss>

