<?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: internal table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1760497#M329229</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1)It means when the program is loaded in the memory the system initializes the space for the table in according the numbers of records indicated by OCCURS or INITAL SIZE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2)So it's usually better to indicate 0 if it doesn't know an initial number of records of an internal table, infact the systema'll automatically widen the space if it needs more space than how much considerated initially.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Dec 2006 10:36:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-19T10:36:23Z</dc:date>
    <item>
      <title>internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1760496#M329228</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all,&lt;/P&gt;&lt;P&gt;what is the advantage of using INITIAL SIZE while internal table declaration?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 10:33:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1760496#M329228</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-19T10:33:11Z</dc:date>
    </item>
    <item>
      <title>Re: internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1760497#M329229</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1)It means when the program is loaded in the memory the system initializes the space for the table in according the numbers of records indicated by OCCURS or INITAL SIZE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2)So it's usually better to indicate 0 if it doesn't know an initial number of records of an internal table, infact the systema'll automatically widen the space if it needs more space than how much considerated initially.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 10:36:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1760497#M329229</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-19T10:36:23Z</dc:date>
    </item>
    <item>
      <title>Re: internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1760498#M329230</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;1. INSERT [wa INTO|INITIAL LINE INTO] itab [INDEX idx]. &lt;/P&gt;&lt;P&gt;2. INSERT [wa INTO|INITIAL LINE INTO] TABLE itab. &lt;/P&gt;&lt;P&gt;3. INSERT LINES OF itab1 [FROM idx1] [TO idx2] &lt;/P&gt;&lt;P&gt;             INTO itab2 [INDEX idx3]. &lt;/P&gt;&lt;P&gt;4. INSERT LINES OF itab1 [FROM idx1] [TO idx2] &lt;/P&gt;&lt;P&gt;             INTO TABLE itab2. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We can increase the performance of internal table.&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;Star shankar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 10:37:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1760498#M329230</guid>
      <dc:creator>p291102</dc:creator>
      <dc:date>2006-12-19T10:37:14Z</dc:date>
    </item>
    <item>
      <title>Re: internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1760499#M329231</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it means howmuch space is reserved for the internal table in the memory..&lt;/P&gt;&lt;P&gt;u shud always use occurs 0 clause as it is more efficient and program keeps on increasing memory until the records to be fetched are finished..&lt;/P&gt;&lt;P&gt;so it is good practice to use occurs 0 always.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 10:37:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1760499#M329231</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-19T10:37:17Z</dc:date>
    </item>
    <item>
      <title>Re: internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1760500#M329232</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;When you user INITIAL SIZE &amp;lt;n&amp;gt;,you can specify the initial amount of main memory assigned to an internal table object when you define the data type using the INITIAL SIZE &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This size does not belong to the data type of the internal table, and does not affect the type check. You can use the above addition to reserve memory space for &amp;lt;n&amp;gt; table lines when you declare the table object. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When this initial area is full, the system makes twice as much extra space available up to a limit of 8KB. Further memory areas of 12KB each are then allocated. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Before Release 3.0, internal tables all had header lines and a flat-structured line type. There were no independent table types. You could only create a table object using the OCCURS addition in the DATA statement, followed by a declaration of a flat structure:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF &amp;lt;itab&amp;gt; OCCURS &amp;lt;n&amp;gt;,&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&amp;lt;fi&amp;gt; ..., &lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;END OF &amp;lt;itab&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The effect of the OCCURS addition is to construct a standard table with the data type &amp;lt;linetype&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Prakash&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 10:38:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1760500#M329232</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-19T10:38:21Z</dc:date>
    </item>
    <item>
      <title>Re: internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1760501#M329233</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for ur answers. i have awarded all ur efforts&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 10:59:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1760501#M329233</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-19T10:59:20Z</dc:date>
    </item>
  </channel>
</rss>

