<?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 Internal table size for reading data from application server in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-size-for-reading-data-from-application-server/m-p/6422844#M1409669</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sir,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a file on the application server which contains data for IDOC header and line segments...Now I have to download the whole data into one internal table..please guide me of what size I have to take an inernal table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Krishan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 Dec 2009 09:26:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-12-16T09:26:49Z</dc:date>
    <item>
      <title>Internal table size for reading data from application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-size-for-reading-data-from-application-server/m-p/6422844#M1409669</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sir,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a file on the application server which contains data for IDOC header and line segments...Now I have to download the whole data into one internal table..please guide me of what size I have to take an inernal table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Krishan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Dec 2009 09:26:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-size-for-reading-data-from-application-server/m-p/6422844#M1409669</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-16T09:26:49Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table size for reading data from application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-size-for-reading-data-from-application-server/m-p/6422845#M1409670</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can use "INITIAL SIZE" while declaring the internla table&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Dec 2009 09:29:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-size-for-reading-data-from-application-server/m-p/6422845#M1409670</guid>
      <dc:creator>agnihotro_sinha2</dc:creator>
      <dc:date>2009-12-16T09:29:13Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table size for reading data from application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-size-for-reading-data-from-application-server/m-p/6422846#M1409671</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sir,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So could you please tell its significane and sample code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Krishan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Dec 2009 09:34:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-size-for-reading-data-from-application-server/m-p/6422846#M1409671</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-16T09:34:48Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table size for reading data from application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-size-for-reading-data-from-application-server/m-p/6422847#M1409672</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in your program when you declare the Internal table declare it in this way:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cosidering IT_IDOC_DATA as internal table name&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

DATA:  it_idoc_data  TYPE TABLE OF zht_idoc_data INITIAL SIZE &amp;lt;n&amp;gt; 
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb366d358411d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb366d358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ags.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Dec 2009 09:39:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-size-for-reading-data-from-application-server/m-p/6422847#M1409672</guid>
      <dc:creator>agnihotro_sinha2</dc:creator>
      <dc:date>2009-12-16T09:39:40Z</dc:date>
    </item>
  </channel>
</rss>

