<?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 Algorithm in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hash-algorithm/m-p/2678106#M618857</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Harsha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check these out (general information):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;a href="http://en.wikipedia.org/wiki/Hash_function"&amp;gt;Hash function&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;a href="http://en.wikipedia.org/wiki/Hash_table"&amp;gt;Hash table&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;a href="http://en.wikipedia.org/wiki/Hash_list"&amp;gt;Hash list&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;a href="http://en.wikipedia.org/wiki/Hash_tree"&amp;gt;Hash tree&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sukhee&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 09 Aug 2007 12:48:02 GMT</pubDate>
    <dc:creator>sukhbold_altanbat</dc:creator>
    <dc:date>2007-08-09T12:48:02Z</dc:date>
    <item>
      <title>Hash Algorithm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hash-algorithm/m-p/2678105#M618856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls explain Hash Algorithm with one example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks In Advance,&lt;/P&gt;&lt;P&gt;Ur's&lt;/P&gt;&lt;P&gt;Harsha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Aug 2007 12:05:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hash-algorithm/m-p/2678105#M618856</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-09T12:05:48Z</dc:date>
    </item>
    <item>
      <title>Re: Hash Algorithm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hash-algorithm/m-p/2678106#M618857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Harsha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check these out (general information):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;a href="http://en.wikipedia.org/wiki/Hash_function"&amp;gt;Hash function&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;a href="http://en.wikipedia.org/wiki/Hash_table"&amp;gt;Hash table&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;a href="http://en.wikipedia.org/wiki/Hash_list"&amp;gt;Hash list&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;a href="http://en.wikipedia.org/wiki/Hash_tree"&amp;gt;Hash tree&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sukhee&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Aug 2007 12:48:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hash-algorithm/m-p/2678106#M618857</guid>
      <dc:creator>sukhbold_altanbat</dc:creator>
      <dc:date>2007-08-09T12:48:02Z</dc:date>
    </item>
    <item>
      <title>Re: Hash Algorithm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hash-algorithm/m-p/2678107#M618858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if you want a internal table which allows faster reading then you should go for hashed table , but the disadvantage is that you cannot use index to read the hashed itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you have to use keys.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sample declratin of hashed table.&lt;/P&gt;&lt;P&gt;data:cc_text TYPE HASHED TABLE OF /bi0/tcostcenter WITH UNIQUE KEY co_area costcenter langu .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to read entries from the hashed table.&lt;/P&gt;&lt;P&gt;READ TABLE cc_text INTO wa_cc_text WITH KEY&lt;/P&gt;&lt;P&gt;co_area = coarea&lt;/P&gt;&lt;P&gt;costcenter = cctr&lt;/P&gt;&lt;P&gt;langu = sy-langu .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hash table access time dosent increase based on the number of records, its constant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check out the ABAP key work documentation for different types of internal table and their usages. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; How Hash Algorithm and Logarithmic Algorithm works&lt;/P&gt;&lt;P&gt;&amp;gt; to fetch the data ?&lt;/P&gt;&lt;P&gt;Fetching part is the same as standard internal table, only when you work with the internal table, than it's different.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; What the basic things we have to keep in mined when&lt;/P&gt;&lt;P&gt;&amp;gt; we select the Internal table ?&lt;/P&gt;&lt;P&gt;Eg Performance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Any rule for selecting the internal table which&lt;/P&gt;&lt;P&gt;&amp;gt; should be followed ?&lt;/P&gt;&lt;P&gt;Standard table is quite easy to use, but you might loose performance with it. Most of the time hash table is the fastest.&lt;/P&gt;&lt;P&gt;Using standard table and sort it is a good choice, when you access in READ TABLE via BINARY SEARCH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check 'ABAP for Power Users' SAP tutorial in SDN, it very good explains this topic in detail.&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;A href="http://www.sap.info/public/en/category.php4/Category-28943c61b1e60d84b/page/0/article/Article-11988425e684a338ff/en" target="test_blank"&gt;http://www.sap.info/public/en/category.php4/Category-28943c61b1e60d84b/page/0/article/Article-11988425e684a338ff/en&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;Regards,&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Aug 2007 12:54:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hash-algorithm/m-p/2678107#M618858</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-09T12:54:15Z</dc:date>
    </item>
    <item>
      <title>Re: Hash Algorithm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hash-algorithm/m-p/2678108#M618859</link>
      <description>&lt;P&gt;these links are not opened it's showing Error.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2019 06:34:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hash-algorithm/m-p/2678108#M618859</guid>
      <dc:creator>VijayaDeepthi</dc:creator>
      <dc:date>2019-09-24T06:34:09Z</dc:date>
    </item>
  </channel>
</rss>

