<?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 syntax in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-syntax/m-p/1998372#M406530</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;occurs 0  -&lt;/P&gt;&lt;HR originaltext="--------" /&gt;&lt;P&gt;&amp;gt; Initially memory allocated for Zero records , later on depending on the no of records memory will be increased&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;occurs 100 -&lt;/P&gt;&lt;HR originaltext="------" /&gt;&lt;P&gt;&amp;gt; Initially memory allocated for 100 records , later on depending on the no of records memory will be increased&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 19 Mar 2007 13:57:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-19T13:57:42Z</dc:date>
    <item>
      <title>internal table syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-syntax/m-p/1998367#M406525</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data: begin of itab occurs 0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What does 0 signify here ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Mar 2007 13:50:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-syntax/m-p/1998367#M406525</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-19T13:50:59Z</dc:date>
    </item>
    <item>
      <title>Re: internal table syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-syntax/m-p/1998368#M406526</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;Occurs 0 ---&amp;gt; By default no memory allocation to the itab. The Allocation will be dynamically done at run time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Occurs N ---&amp;gt; By default it will be allocated of Size N.&lt;/P&gt;&lt;P&gt;N indicates the approximate no. of rows in the internal table. This is not good Practice in case of performance.&lt;/P&gt;&lt;P&gt;for better performance use occurs 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For more information, please check this link.&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_47x200/helpdata/en/fc/eb3646358411d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_47x200/helpdata/en/fc/eb3646358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Mar 2007 13:54:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-syntax/m-p/1998368#M406526</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-19T13:54:21Z</dc:date>
    </item>
    <item>
      <title>Re: internal table syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-syntax/m-p/1998369#M406527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When appending or inserting a new record into the internal table, an extra space of So many records is allocated in the memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this case the memory is allocated as and when the new record is allocated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if&lt;/P&gt;&lt;P&gt; its is occurs 4, then for every 4th record, an extra space that is sufficient for holding 4 new records is allocated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Mar 2007 13:54:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-syntax/m-p/1998369#M406527</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-19T13:54:41Z</dc:date>
    </item>
    <item>
      <title>Re: internal table syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-syntax/m-p/1998370#M406528</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Internal tables are run time tables; &lt;/P&gt;&lt;P&gt;Memory allocation will be done automatically depending up on the data coming to internal tables:&lt;/P&gt;&lt;P&gt;when you declare 0 it starts from taking a lower memory and starts by taking extra memory of 8 MB like that as per the requirement.&lt;/P&gt;&lt;P&gt;you can give occurs 1000 also, if you feel that huge data will be populated in your internal table.&lt;/P&gt;&lt;P&gt;So instead of fixing/asking /allocating the fixed memory to the internal table initilaly, if we declare as occurs 0 it will take the memory reasonably and utilise correctly.&lt;/P&gt;&lt;P&gt;reward if useful&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>Mon, 19 Mar 2007 13:56:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-syntax/m-p/1998370#M406528</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-19T13:56:30Z</dc:date>
    </item>
    <item>
      <title>Re: internal table syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-syntax/m-p/1998371#M406529</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;Check this link:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb3646358411d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb3646358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;L Appana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Mar 2007 13:56:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-syntax/m-p/1998371#M406529</guid>
      <dc:creator>Laxmana_Appana_</dc:creator>
      <dc:date>2007-03-19T13:56:52Z</dc:date>
    </item>
    <item>
      <title>Re: internal table syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-syntax/m-p/1998372#M406530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;occurs 0  -&lt;/P&gt;&lt;HR originaltext="--------" /&gt;&lt;P&gt;&amp;gt; Initially memory allocated for Zero records , later on depending on the no of records memory will be increased&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;occurs 100 -&lt;/P&gt;&lt;HR originaltext="------" /&gt;&lt;P&gt;&amp;gt; Initially memory allocated for 100 records , later on depending on the no of records memory will be increased&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Mar 2007 13:57:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-syntax/m-p/1998372#M406530</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-19T13:57:42Z</dc:date>
    </item>
  </channel>
</rss>

