<?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: hash table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hash-table/m-p/1775678#M334618</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ganesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the INSERT &amp;amp; COLLECT statements for appending values in a hash table. You cannot use a APPEND statement as it could be used only for indexed tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For more details refer the following link:&lt;/P&gt;&lt;P&gt;&amp;lt;a href="http://help.sap.com/saphelp_47x200/helpdata/en/fc/eb362c358411d1829f0000e829fbfe/frameset.htm"&amp;gt;http://help.sap.com/saphelp_47x200/helpdata/en/fc/eb362c358411d1829f0000e829fbfe/frameset.htm&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chetan.&lt;/P&gt;&lt;P&gt;PS:Reward points if this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 28 Dec 2006 06:25:26 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-28T06:25:26Z</dc:date>
    <item>
      <title>hash table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hash-table/m-p/1775673#M334613</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; will it possible to append values to hash table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ganesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Dec 2006 06:15:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hash-table/m-p/1775673#M334613</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-28T06:15:15Z</dc:date>
    </item>
    <item>
      <title>Re: hash table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hash-table/m-p/1775674#M334614</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,,&lt;/P&gt;&lt;P&gt;ou cannot use index operation in HASHED table.&lt;/P&gt;&lt;P&gt;Use INSERT &amp;lt;WA&amp;gt; INTO TABLE &amp;lt;HAS_ITAB&amp;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;This is the most appropriate type for any table where the main operation is key access. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You cannot access a hashed table using its index. The response time for key access remains constant, regardless of the number of table entries. Like database tables, hashed tables always have a unique key.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Hashed tables are useful if you want to construct and use an internal table which resembles a database table or for processing large amounts of data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;siva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Dec 2006 06:18:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hash-table/m-p/1775674#M334614</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-28T06:18:13Z</dc:date>
    </item>
    <item>
      <title>Re: hash table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hash-table/m-p/1775675#M334615</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You will not be able to use the APPEND statement. Instead you can use the INSERT statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INSERT &amp;lt;wa&amp;gt; INTO &amp;lt;itab&amp;gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Dec 2006 06:21:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hash-table/m-p/1775675#M334615</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-28T06:21:10Z</dc:date>
    </item>
    <item>
      <title>Re: hash table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hash-table/m-p/1775676#M334616</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ganesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hashed tables can only be accessed via the primary key. The response time is constant, regardless of the number of table entries, since access proceeds via a hash algorithm.. The hash algorithm is determined internally. The key of a hashed table must be unique. You can neither implicitly nor explicitly access hash tables through indexes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Index operations cannot be used for hashed tables.&amp;lt;/b&amp;gt; For index tables(Standard and sorted), index operations are faster than key operations.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hashed tables are useful for reading a single data record via the table key, since the resulting access time is independent of the number of table entries. The location of the data record to be read is determined using the hash function. The time required is independent of the number of table entries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INSERT for a standard table or hashed table using the key has the same effect as an APPEND statement. For hashed tables, however, the address of the data row to be entered must also be calculated. For inserts in sorted tables, the sort sequence must be strictly observed, which means the access costs grow with increasing table size.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Dec 2006 06:23:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hash-table/m-p/1775676#M334616</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-28T06:23:03Z</dc:date>
    </item>
    <item>
      <title>Re: hash table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hash-table/m-p/1775677#M334617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ganesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check the blog,&lt;/P&gt;&lt;P&gt;/people/harry.dietz/blog/2005/10/28/performance-improvement-hints-3-internal-table--fill-and-read&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Hema.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;Reward points if it is useful.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Dec 2006 06:25:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hash-table/m-p/1775677#M334617</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-28T06:25:20Z</dc:date>
    </item>
    <item>
      <title>Re: hash table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hash-table/m-p/1775678#M334618</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ganesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the INSERT &amp;amp; COLLECT statements for appending values in a hash table. You cannot use a APPEND statement as it could be used only for indexed tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For more details refer the following link:&lt;/P&gt;&lt;P&gt;&amp;lt;a href="http://help.sap.com/saphelp_47x200/helpdata/en/fc/eb362c358411d1829f0000e829fbfe/frameset.htm"&amp;gt;http://help.sap.com/saphelp_47x200/helpdata/en/fc/eb362c358411d1829f0000e829fbfe/frameset.htm&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chetan.&lt;/P&gt;&lt;P&gt;PS:Reward points if this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Dec 2006 06:25:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hash-table/m-p/1775678#M334618</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-28T06:25:26Z</dc:date>
    </item>
  </channel>
</rss>

