<?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: Request for help - Internal table size in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/request-for-help-internal-table-size/m-p/3084138#M731406</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;There is no restriction. When you add new rows and if the already allocated memory exceeds then a new 8kb memory will be allocated. so, It will only depend on the available free memory left in the system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The maximum memory that can be occupied by an internal table (including its internal administration) is 2 gigabytes. A more realistic figure is up to 500 megabytes. An additional restriction for hashed tables is that they may not contain more than 2 million entries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;there is no limit like that until unless u define the capacity as follows,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of &amp;lt;itab&amp;gt; occurs 8,&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;P&gt;data: end of &amp;lt;itab&amp;gt;.&lt;/P&gt;&lt;P&gt;in such cases, it takes only upto 8 kb.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the internal table size can be defined by the programmer as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;occurs 0&lt;/P&gt;&lt;P&gt;occurs 1,&lt;/P&gt;&lt;P&gt;ouccrs 2,&lt;/P&gt;&lt;P&gt;occurs3,&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;occurs n .. etc where are the maximum memort of the internal table is OCCURS 0 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;0-&amp;gt;ZERO means 2 gigabytes of data size which is 2powerof 30. .&lt;/P&gt;&lt;P&gt;after that there is no memory growth in the program ... so it will give you sort dump for that only field-sysmbols are used .... for separating the internal table data dynamically to avoid short dump and to increase the performance of the read concept&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No, limit depends on the memory size itself. Because whenever more space is needed it is automatically allocated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF you define an internal table using OCCURS N then it will reallocate n memory slots of same size.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward is useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 16 Nov 2007 10:18:01 GMT</pubDate>
    <dc:creator>mahaboob_pathan</dc:creator>
    <dc:date>2007-11-16T10:18:01Z</dc:date>
    <item>
      <title>Request for help - Internal table size</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/request-for-help-internal-table-size/m-p/3084134#M731402</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to creat a internal table which should hold more than 8 lacks records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Which is the better internal table type??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the help in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Prabhu.R&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Nov 2007 09:50:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/request-for-help-internal-table-size/m-p/3084134#M731402</guid>
      <dc:creator>prabhu_rengaraju4</dc:creator>
      <dc:date>2007-11-16T09:50:03Z</dc:date>
    </item>
    <item>
      <title>Re: Request for help - Internal table size</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/request-for-help-internal-table-size/m-p/3084135#M731403</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;PRE&gt;&lt;CODE&gt;Types: Begin of ty_data,
            f1 type f1,
            f2 type f2,
            ............
            ............
           End of ty_data.

Data: itab type table of ty_data,
        wa type ty_data.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Nov 2007 09:53:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/request-for-help-internal-table-size/m-p/3084135#M731403</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-16T09:53:03Z</dc:date>
    </item>
    <item>
      <title>Re: Request for help - Internal table size</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/request-for-help-internal-table-size/m-p/3084136#M731404</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;hashed table is best to handle huge amount of data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;L.Velu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Nov 2007 09:54:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/request-for-help-internal-table-size/m-p/3084136#M731404</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-16T09:54:02Z</dc:date>
    </item>
    <item>
      <title>Re: Request for help - Internal table size</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/request-for-help-internal-table-size/m-p/3084137#M731405</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;Storage in internal Table does not depend on the number of records but depend on the memory they will be using.&lt;/P&gt;&lt;P&gt;An internal table allows maximum of 2GB of storage, this can be increased by applying some patch up to 4 GB but that will degrade the programs performance.&lt;/P&gt;&lt;P&gt;To resolve this limit the number of records while selecting and rerun the program as per required number of times.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAP ABAP does it automaticaly if ur internal table is filled it increases its space automatically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward if usefull&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Nov 2007 10:03:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/request-for-help-internal-table-size/m-p/3084137#M731405</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-16T10:03:45Z</dc:date>
    </item>
    <item>
      <title>Re: Request for help - Internal table size</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/request-for-help-internal-table-size/m-p/3084138#M731406</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;There is no restriction. When you add new rows and if the already allocated memory exceeds then a new 8kb memory will be allocated. so, It will only depend on the available free memory left in the system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The maximum memory that can be occupied by an internal table (including its internal administration) is 2 gigabytes. A more realistic figure is up to 500 megabytes. An additional restriction for hashed tables is that they may not contain more than 2 million entries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;there is no limit like that until unless u define the capacity as follows,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of &amp;lt;itab&amp;gt; occurs 8,&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;P&gt;data: end of &amp;lt;itab&amp;gt;.&lt;/P&gt;&lt;P&gt;in such cases, it takes only upto 8 kb.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the internal table size can be defined by the programmer as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;occurs 0&lt;/P&gt;&lt;P&gt;occurs 1,&lt;/P&gt;&lt;P&gt;ouccrs 2,&lt;/P&gt;&lt;P&gt;occurs3,&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;occurs n .. etc where are the maximum memort of the internal table is OCCURS 0 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;0-&amp;gt;ZERO means 2 gigabytes of data size which is 2powerof 30. .&lt;/P&gt;&lt;P&gt;after that there is no memory growth in the program ... so it will give you sort dump for that only field-sysmbols are used .... for separating the internal table data dynamically to avoid short dump and to increase the performance of the read concept&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No, limit depends on the memory size itself. Because whenever more space is needed it is automatically allocated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF you define an internal table using OCCURS N then it will reallocate n memory slots of same size.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward is useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Nov 2007 10:18:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/request-for-help-internal-table-size/m-p/3084138#M731406</guid>
      <dc:creator>mahaboob_pathan</dc:creator>
      <dc:date>2007-11-16T10:18:01Z</dc:date>
    </item>
  </channel>
</rss>

