<?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 hi in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3833896#M921944</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is one of the performance tuning method: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Internal Table is defined with &amp;#147;TYPE STANDARD TABLE OF&amp;#148; &amp;amp; Work-Areas is used instead of header lines&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please tell me the reason for this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 13 May 2008 11:13:12 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-13T11:13:12Z</dc:date>
    <item>
      <title>hi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3833896#M921944</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is one of the performance tuning method: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Internal Table is defined with &amp;#147;TYPE STANDARD TABLE OF&amp;#148; &amp;amp; Work-Areas is used instead of header lines&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please tell me the reason for this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2008 11:13:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3833896#M921944</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-13T11:13:12Z</dc:date>
    </item>
    <item>
      <title>Re: hi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3833897#M921945</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To declare a internal table you use a simple type ) Instead of table type) in declaration. So that you create a table you declare the table as the table type of the simple type. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAP recomands to use work area instead of header line. In also increase the readability of the program and avoid confusions between header and table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2008 11:16:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3833897#M921945</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-13T11:16:56Z</dc:date>
    </item>
    <item>
      <title>Re: hi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3833898#M921946</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Internal Table is defined with &amp;#147;TYPE STANDARD TABLE OF&amp;#148; &amp;amp; Work-Areas is used instead of header lines&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Work-Areas  this workarea defined with the required fields instead of referign to the table name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the selection of the fields which will be use ful for the exact requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of selecting all the fields from the table this is the best way and the performance wise is better by considering the memory wise and processing of the internal table records.&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;madan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2008 11:19:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3833898#M921946</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-13T11:19:01Z</dc:date>
    </item>
    <item>
      <title>Re: hi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3833899#M921947</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;&lt;/P&gt;&lt;P&gt;One crucial advantage, the OCCURS is simply not allowed in the OO context, and neither are header lines. So you should always use TYPE TABLE OF and explicit work areas instead of header lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OCCURS 0 by default can allocate 8KB of memory but OCCURS 0 is obsolete.&lt;/P&gt;&lt;P&gt;reusability is more with 'TYPES' and 'TYPE STANDARD TABLE OF'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls go through this link&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb35de358411d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb35de358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&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;Raj.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2008 11:21:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3833899#M921947</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-13T11:21:17Z</dc:date>
    </item>
  </channel>
</rss>

