<?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: Programatically increase the size of internal table? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/programatically-increase-the-size-of-internal-table/m-p/2533744#M574794</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sonu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This stack dump is the result of some select statment population a huge amount of data or for some other operation. Just check all the select statement populating the same as there can be some reason. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the use of the where clause and try to reduce the amount of data transfer small.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Samantak.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rewards points for useful answers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 23 Jul 2007 09:06:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-23T09:06:50Z</dc:date>
    <item>
      <title>Programatically increase the size of internal table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/programatically-increase-the-size-of-internal-table/m-p/2533735#M574785</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ABAPers,&lt;/P&gt;&lt;P&gt;  I wish to know, how to increase the size of my internal table programatically? I mean, when i run my report, my report should enlarge the space required for my internal table and when the report ends, the memory allocation for the internal table would be set back to default value. &lt;/P&gt;&lt;P&gt;  Is this programatically possible?&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sonu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2007 08:53:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/programatically-increase-the-size-of-internal-table/m-p/2533735#M574785</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-23T08:53:49Z</dc:date>
    </item>
    <item>
      <title>Re: Programatically increase the size of internal table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/programatically-increase-the-size-of-internal-table/m-p/2533736#M574786</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;We cannot increase the Memory of internal table Programmatically (Dynamically)&lt;/P&gt;&lt;P&gt;Based on the INITIAL SIZE addition the system allocates the memory.&lt;/P&gt;&lt;P&gt;We can use FREE &amp;lt;itab&amp;gt; to deallocate the memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2007 08:56:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/programatically-increase-the-size-of-internal-table/m-p/2533736#M574786</guid>
      <dc:creator>varma_narayana</dc:creator>
      <dc:date>2007-07-23T08:56:44Z</dc:date>
    </item>
    <item>
      <title>Re: Programatically increase the size of internal table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/programatically-increase-the-size-of-internal-table/m-p/2533737#M574787</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;It is the basic property of the internal tables to increase in size during run time depending upon the data coming in to it.&lt;/P&gt;&lt;P&gt;So always declare them like OCCURS 0, instead of some fixed value like OCCURS 100 or OCCURS 10, so that depending on the data it will go on increase without the propermammer bothering for the memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward points for useful Answers&amp;lt;/b&amp;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>Mon, 23 Jul 2007 08:57:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/programatically-increase-the-size-of-internal-table/m-p/2533737#M574787</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-23T08:57:47Z</dc:date>
    </item>
    <item>
      <title>Re: Programatically increase the size of internal table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/programatically-increase-the-size-of-internal-table/m-p/2533738#M574788</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 set an initial value that too statically not at runtime.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BUt why do you want to set the size programatically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since Internal tables are somethign whihc will be assigned memory based on the need at runtime, why do you want to do the job o the runtime yourself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2007 08:59:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/programatically-increase-the-size-of-internal-table/m-p/2533738#M574788</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2007-07-23T08:59:18Z</dc:date>
    </item>
    <item>
      <title>Re: Programatically increase the size of internal table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/programatically-increase-the-size-of-internal-table/m-p/2533739#M574789</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sonu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Generally Internal Table operations are handled automatically. For example if you have allocated some space for the internal table statically and at runtime the demand increases then the machine automatically allocates that space. But you can also programmatically allocate the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After you have completed all the operation with internal table you want to deallocate the same. This can also be done using the command Free itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So you can free the internal table from the memory allocation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FREE ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Samantak.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rewards points for useful answers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2007 09:00:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/programatically-increase-the-size-of-internal-table/m-p/2533739#M574789</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-23T09:00:29Z</dc:date>
    </item>
    <item>
      <title>Re: Programatically increase the size of internal table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/programatically-increase-the-size-of-internal-table/m-p/2533740#M574790</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;depending on your requirement use OCCURS with N -&amp;gt; species who much memory shuld be allocated for that particular internal table as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OCCURS  0 -&amp;gt; default memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OCCURS 10 -&amp;gt; same as occurs 0 but after filling first record 10 more reord space memory is allocated dynamically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if helpful reward some points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with regards,&lt;/P&gt;&lt;P&gt;Suresh Aluri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2007 09:01:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/programatically-increase-the-size-of-internal-table/m-p/2533740#M574790</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-23T09:01:51Z</dc:date>
    </item>
    <item>
      <title>Re: Programatically increase the size of internal table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/programatically-increase-the-size-of-internal-table/m-p/2533741#M574791</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sesh,&lt;/P&gt;&lt;P&gt;  Actually my internal table has reached its limits and when i try to append more entries, it dumps saying:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"The current program had to be terminated because of an&lt;/P&gt;&lt;P&gt; error when installing the R/3 System.The program had already requested  &lt;/P&gt;&lt;P&gt; 723080128 bytes from the operating system with 'malloc' when the operating &lt;/P&gt;&lt;P&gt; system reported after a further memory request that there was no more memory &lt;/P&gt;&lt;P&gt; space available".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Hence i wish to add more memory to just this internal table. Any idea how to do this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sonu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2007 09:02:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/programatically-increase-the-size-of-internal-table/m-p/2533741#M574791</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-23T09:02:58Z</dc:date>
    </item>
    <item>
      <title>Re: Programatically increase the size of internal table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/programatically-increase-the-size-of-internal-table/m-p/2533742#M574792</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That is a BASIS level setting. Contact your basis in this regard.&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, 23 Jul 2007 09:05:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/programatically-increase-the-size-of-internal-table/m-p/2533742#M574792</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-23T09:05:08Z</dc:date>
    </item>
    <item>
      <title>Re: Programatically increase the size of internal table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/programatically-increase-the-size-of-internal-table/m-p/2533743#M574793</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 ever u declare an internal table declare it as occurs 0. &lt;/P&gt;&lt;P&gt;and it occupies a 5K of memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if the total number of records size exceeds the size of internal table&lt;/P&gt;&lt;P&gt;it allocates another 5k of memory. so i think there is no need of changing size of internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Srinivas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2007 09:05:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/programatically-increase-the-size-of-internal-table/m-p/2533743#M574793</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-23T09:05:17Z</dc:date>
    </item>
    <item>
      <title>Re: Programatically increase the size of internal table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/programatically-increase-the-size-of-internal-table/m-p/2533744#M574794</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sonu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This stack dump is the result of some select statment population a huge amount of data or for some other operation. Just check all the select statement populating the same as there can be some reason. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the use of the where clause and try to reduce the amount of data transfer small.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Samantak.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rewards points for useful answers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2007 09:06:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/programatically-increase-the-size-of-internal-table/m-p/2533744#M574794</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-23T09:06:50Z</dc:date>
    </item>
    <item>
      <title>Re: Programatically increase the size of internal table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/programatically-increase-the-size-of-internal-table/m-p/2533745#M574795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Since the internal table is an dynamic object,the size of an internal table increases dynamically no matter whatever the size u have specified during declaration of an internal table.&lt;/P&gt;&lt;P&gt;The memory of internal table increases in blocks when memory available is less.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Santhosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2007 09:07:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/programatically-increase-the-size-of-internal-table/m-p/2533745#M574795</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-23T09:07:01Z</dc:date>
    </item>
    <item>
      <title>Re: Programatically increase the size of internal table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/programatically-increase-the-size-of-internal-table/m-p/2533746#M574796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anji,&lt;/P&gt;&lt;P&gt;  This is the scenario. I am calling an ABAP function module in my report in a loop. After some 500 entries, it dumps. The entry for which it dumps, when i try to pass it individually to the Function Module, it works fine. Before every call to my the Function Module, i have used FREE memory and FREE ITAB statements too.&lt;/P&gt;&lt;P&gt;Can anyone help me in this :(.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sonu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2007 09:07:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/programatically-increase-the-size-of-internal-table/m-p/2533746#M574796</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-23T09:07:11Z</dc:date>
    </item>
    <item>
      <title>Re: Programatically increase the size of internal table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/programatically-increase-the-size-of-internal-table/m-p/2533747#M574797</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;Looks like you are running out of memory during run time. Contact your BASIS and check the memory settings of the System and the application server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If possible ask him to increase is it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2007 09:08:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/programatically-increase-the-size-of-internal-table/m-p/2533747#M574797</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2007-07-23T09:08:37Z</dc:date>
    </item>
    <item>
      <title>Re: Programatically increase the size of internal table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/programatically-increase-the-size-of-internal-table/m-p/2533748#M574798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ravi,&lt;/P&gt;&lt;P&gt;  I undestand its a BASIS level setting, do you have an idea of which SYSTEM PARAMETER needs to be changed to incorporate more space to my internal &lt;/P&gt;&lt;P&gt;tables?&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Sonu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2007 09:09:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/programatically-increase-the-size-of-internal-table/m-p/2533748#M574798</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-23T09:09:28Z</dc:date>
    </item>
    <item>
      <title>Re: Programatically increase the size of internal table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/programatically-increase-the-size-of-internal-table/m-p/2533749#M574799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sesh,&lt;/P&gt;&lt;P&gt;  Hopefully i could, but the problem is that i have deployed my report on customer's system and his BASIS Admin is not available due to the time diff., i tried to incorporate all the performance measures like Free Memory, Free Itab and everything but still could not eliminate this error.&lt;/P&gt;&lt;P&gt;  I know this is happening because of the memory overflow. But why is it that the function module dumps when i call it in loop after some 500 entries. When i call the function module alone only with the entry it dumped at, it works fine?&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sonu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2007 09:12:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/programatically-increase-the-size-of-internal-table/m-p/2533749#M574799</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-23T09:12:47Z</dc:date>
    </item>
    <item>
      <title>Re: Programatically increase the size of internal table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/programatically-increase-the-size-of-internal-table/m-p/2533750#M574800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sonu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Apart from the basis setting, its also dependent upon &lt;/P&gt;&lt;P&gt;   the physical configuration.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ie. how much space is available in hard disk, how much space&lt;/P&gt;&lt;P&gt;  is available in memory of server (at that time)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. If our program takes so much space,  &lt;/P&gt;&lt;P&gt;    then there is no guarantee that in future, (after doing proper basis settings),&lt;/P&gt;&lt;P&gt;   it may not require more space.&lt;/P&gt;&lt;P&gt;   Hence, the same error may come again in near future.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. So it is best to change the architecture of the program, &lt;/P&gt;&lt;P&gt;  so that data is fetched / displayed in bunches.&lt;/P&gt;&lt;P&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;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2007 09:14:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/programatically-increase-the-size-of-internal-table/m-p/2533750#M574800</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-23T09:14:57Z</dc:date>
    </item>
    <item>
      <title>Re: Programatically increase the size of internal table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/programatically-increase-the-size-of-internal-table/m-p/2533751#M574801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amit, &lt;/P&gt;&lt;P&gt;  I wish i could change the architecture, but since the function module am using is SAP function module and its a huge one with thousands of subrouutines and complex structures, hence i can't :(.&lt;/P&gt;&lt;P&gt;Anyways thanks a lot fot the help.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sonu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2007 09:17:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/programatically-increase-the-size-of-internal-table/m-p/2533751#M574801</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-23T09:17:38Z</dc:date>
    </item>
  </channel>
</rss>

