<?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 space problem.. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-space-problem/m-p/4020533#M960731</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;Declare itab as:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:itab type table of &amp;lt;type&amp;gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 20 Jun 2008 08:40:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-20T08:40:50Z</dc:date>
    <item>
      <title>Internal table space problem..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-space-problem/m-p/4020530#M960728</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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   i developed one report with one internal table.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here...., when I am debugging, when the cursor  is coming to the select stmt after the fetch cursor, it is giving me the error&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the internal table ITAB could not be enlarged forther....&lt;/P&gt;&lt;P&gt;Memory localtion: 'Session memory'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you ettempted to extend the data structure fir the management of the ememory blocks for table ITAB.However, the 1658888 bytes required for this were no longer availble in the specified memory area.&lt;/P&gt;&lt;P&gt;the amount of memory requested is no longer availble.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What can i do for this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;( here Itab declared as OCCURS 0)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;Naveen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jun 2008 08:37:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-space-problem/m-p/4020530#M960728</guid>
      <dc:creator>naveen_inuganti2</dc:creator>
      <dc:date>2008-06-20T08:37:38Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table space problem..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-space-problem/m-p/4020531#M960729</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;Insteda of decalring ITAB OCCURS 0, &lt;/P&gt;&lt;P&gt;decalre with any NON ZERO value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex: itab occurs 100. ( As this will extend the memory with 100 rec)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Revert back if any issues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regrads,&lt;/P&gt;&lt;P&gt;Naveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jun 2008 08:39:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-space-problem/m-p/4020531#M960729</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-20T08:39:58Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table space problem..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-space-problem/m-p/4020532#M960730</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don't use OCCURS n statement. It's an &lt;STRONG&gt;obsolete&lt;/STRONG&gt; one. Instead, use:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: itab TYPE STANDARD/SORTED/HASHED TABLE OF some_type,
      wa TYPE some_type.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Also, in your program, if you don't need some other tables/variables in the flow, free the alocated memory for those using &lt;STRONG&gt;FREE&lt;/STRONG&gt;: var, other_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Valter Oliveira.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jun 2008 08:40:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-space-problem/m-p/4020532#M960730</guid>
      <dc:creator>valter_oliveira</dc:creator>
      <dc:date>2008-06-20T08:40:21Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table space problem..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-space-problem/m-p/4020533#M960731</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;Declare itab as:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:itab type table of &amp;lt;type&amp;gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jun 2008 08:40:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-space-problem/m-p/4020533#M960731</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-20T08:40:50Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table space problem..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-space-problem/m-p/4020534#M960732</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;declare the table like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:BEGIN OF fs_material,&lt;/P&gt;&lt;P&gt;      matno(6) TYPE c,&lt;/P&gt;&lt;P&gt;      mat(20) TYPE c,&lt;/P&gt;&lt;P&gt;      plant TYPE i,&lt;/P&gt;&lt;P&gt;      quantity TYPE i,&lt;/P&gt;&lt;P&gt;      END OF fs_material.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: t_material LIKE TABLE OF fs_material.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;priya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jun 2008 08:41:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-space-problem/m-p/4020534#M960732</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-20T08:41:57Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table space problem..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-space-problem/m-p/4020535#M960733</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Naveen,&lt;/P&gt;&lt;P&gt;This might be because of problem with internal memory availability. Check ur code, If u r not using any internal table i.e declared globally then use &lt;STRONG&gt;FREE&lt;/STRONG&gt; statement to release the memory so that it can be used for ur itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FREE itabtemp.&lt;/STRONG&gt; "itab temp is not being used further from this&lt;/P&gt;&lt;P&gt;point of time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reduce global declarations as far as possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jun 2008 08:46:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-space-problem/m-p/4020535#M960733</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2008-06-20T08:46:36Z</dc:date>
    </item>
  </channel>
</rss>

