<?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 size in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-size/m-p/5512765#M1260520</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;please give your select query...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;kushagra sharma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Apr 2009 08:42:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-16T08:42:23Z</dc:date>
    <item>
      <title>Internal table size</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-size/m-p/5512758#M1260513</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am fetching data from MSEG table based on MKPF using for all entries.&lt;/P&gt;&lt;P&gt;But the data is more so its getting dump with message input table size has no space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using syntax like&lt;/P&gt;&lt;P&gt;Data : itab type table of .....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can i increase the table size.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can anybody suggest me..&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2009 07:17:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-size/m-p/5512758#M1260513</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-16T07:17:35Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table size</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-size/m-p/5512759#M1260514</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kumar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;while fetching data..&lt;/P&gt;&lt;P&gt;use the PACKET SIZE  in the SELECT query..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can get more details about the PACKET SIZE on the F1 help of the SELECT qurey.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2009 07:21:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-size/m-p/5512759#M1260514</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-16T07:21:35Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table size</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-size/m-p/5512760#M1260515</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;size limit of the internal table is 2GB&lt;/P&gt;&lt;P&gt;So, the best possibility is to decrease the amount of data you are selecting instead of increasing the size of the table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2009 07:21:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-size/m-p/5512760#M1260515</guid>
      <dc:creator>amit_khare</dc:creator>
      <dc:date>2009-04-16T07:21:59Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table size</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-size/m-p/5512761#M1260516</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Add keyword 'PACKAGE SIZE n' in select statement. where n specifies number of rows ur fetching at a time. With inclusion of package size u have to include 'ENDSELECT' also&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2009 07:23:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-size/m-p/5512761#M1260516</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-16T07:23:32Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table size</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-size/m-p/5512762#M1260517</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;If I understood correctly, it's not matter that you have to increase the size of the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Every Internal Table could  hold the data up to 2GB; It's too high.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this issue usually comes when your code is executing under a infinite loop. Please check for you code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And However,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES : BEGIN OF ig_itab,&lt;/P&gt;&lt;P&gt;             lifnr(010),&lt;/P&gt;&lt;P&gt;             END OF ig_itab.&lt;/P&gt;&lt;P&gt;DATA: it_itab TYPE STANDARD TABLE OF ig_itab size n WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Size u can declare as 10 etc...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2009 07:32:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-size/m-p/5512762#M1260517</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-16T07:32:29Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table size</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-size/m-p/5512763#M1260518</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   Mseg is a cluster like BSEG Table. As there is no date specification is in MSEG we have to give maximum where condition for such tables. What I think you are fetching your Material Document from MKPF according to that fetching entries against MSEG. &lt;/P&gt;&lt;P&gt;As Mseg contains all the histories against Material Document so you have to give Material Document Year in your selection critaria. I think that might reduce the size of internal table data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Himanshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2009 08:30:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-size/m-p/5512763#M1260518</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-16T08:30:10Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table size</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-size/m-p/5512764#M1260519</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;Internal tabel zsize limit is 2GB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Add PACKET SIZE in the select query to retrieve data&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;Jyothi CH.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2009 08:33:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-size/m-p/5512764#M1260519</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-16T08:33:43Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table size</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-size/m-p/5512765#M1260520</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;please give your select query...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;kushagra sharma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2009 08:42:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-size/m-p/5512765#M1260520</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-16T08:42:23Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table size</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-size/m-p/5512766#M1260521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi My code is as below :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES : BEGIN OF TTY_MKPF, " Types for MKPF&lt;/P&gt;&lt;P&gt;        MBLNR TYPE MBLNR,&lt;/P&gt;&lt;P&gt;        MJAHR TYPE MJAHR,&lt;/P&gt;&lt;P&gt;        BUDAT TYPE BUDAT,&lt;/P&gt;&lt;P&gt;        END OF TTY_MKPF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES : BEGIN OF TTY_MSEG, " Types for MSEG&lt;/P&gt;&lt;P&gt;        MBLNR TYPE MBLNR,&lt;/P&gt;&lt;P&gt;        MJAHR TYPE MJAHR,&lt;/P&gt;&lt;P&gt;        BWART TYPE BWART,&lt;/P&gt;&lt;P&gt;        MATNR TYPE MATNR,&lt;/P&gt;&lt;P&gt;        WERKS TYPE WERKS_D,&lt;/P&gt;&lt;P&gt;        DMBTR TYPE DMBTR,&lt;/P&gt;&lt;P&gt;        MENGE TYPE MENGE_D,&lt;/P&gt;&lt;P&gt;        END OF TTY_MSEG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : I_MKPF TYPE TABLE OF TTY_MKPF, "Internal table for MKPF Table&lt;/P&gt;&lt;P&gt;       WA_MKPF TYPE  TTY_MKPF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : I_MSEG TYPE TABLE OF TTY_MSEG, "Internal table for MSEG Table&lt;/P&gt;&lt;P&gt;       WA_MSEG TYPE TTY_MSEG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT MBLNR&lt;/P&gt;&lt;P&gt;             MJAHR&lt;/P&gt;&lt;P&gt;             BUDAT FROM MKPF INTO TABLE I_MKPF WHERE BUDAT IN S_DATE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF I_MKPF[] IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;SELECT MBLNR&lt;/P&gt;&lt;P&gt;           MJAHR&lt;/P&gt;&lt;P&gt;           BWART&lt;/P&gt;&lt;P&gt;           MATNR&lt;/P&gt;&lt;P&gt;           WERKS&lt;/P&gt;&lt;P&gt;           DMBTR&lt;/P&gt;&lt;P&gt;           MENGE FROM MSEG INTO TABLE I_MSEG FOR ALL ENTRIES IN I_MKPF WHERE&lt;/P&gt;&lt;P&gt;                                             MBLNR = I_MKPF-MBLNR AND&lt;/P&gt;&lt;P&gt;                                             MJAHR = I_MKPF-MJAHR AND&lt;/P&gt;&lt;P&gt;                                             BWART IN ('251','252','561','562','601','602','701','702') AND&lt;/P&gt;&lt;P&gt;                                             WERKS IN S_WERKS AND&lt;/P&gt;&lt;P&gt;                                             LGORT = C_LGORT.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suggest me what to do ?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2009 09:21:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-size/m-p/5512766#M1260521</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-16T09:21:22Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table size</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-size/m-p/5512767#M1260522</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please make a database view on the 2 tables based on the maximum number of filtering conditions.&lt;/P&gt;&lt;P&gt;Now fire your query on this view...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps,&lt;/P&gt;&lt;P&gt;Raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2009 09:23:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-size/m-p/5512767#M1260522</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-16T09:23:32Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table size</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-size/m-p/5512768#M1260523</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;do select query on mseg first then on mkpf&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lalit Mohan Gupta.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2009 17:53:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-size/m-p/5512768#M1260523</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-16T17:53:00Z</dc:date>
    </item>
  </channel>
</rss>

