<?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/1877205#M368748</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can try like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HASHED TABLE: &lt;/P&gt;&lt;P&gt;The new entry is placed in the internal hash administration of the table according to the table key. The key values are taken from the specifiedwork area wa or the header line of the table. The runtime required remains constant, since it does not depend on the number of table entries. The key must be unique. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 30 Jan 2007 10:00:30 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-30T10:00:30Z</dc:date>
    <item>
      <title>hash table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hash-table/m-p/1877203#M368746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I insert data into a hash table ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ilhan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Jan 2007 09:55:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hash-table/m-p/1877203#M368746</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-30T09:55: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/1877204#M368747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Jan 2007 09:58:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hash-table/m-p/1877204#M368747</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-30T09:58:48Z</dc:date>
    </item>
    <item>
      <title>Re: hash table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hash-table/m-p/1877205#M368748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can try like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HASHED TABLE: &lt;/P&gt;&lt;P&gt;The new entry is placed in the internal hash administration of the table according to the table key. The key values are taken from the specifiedwork area wa or the header line of the table. The runtime required remains constant, since it does not depend on the number of table entries. The key must be unique. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Jan 2007 10:00:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hash-table/m-p/1877205#M368748</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-30T10:00:30Z</dc:date>
    </item>
    <item>
      <title>Re: hash table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hash-table/m-p/1877206#M368749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;check this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types: begin of typ_pernr,  &lt;/P&gt;&lt;P&gt;         pernr  like pa0001-pernr,  &lt;/P&gt;&lt;P&gt;         ename  like pa0001-ename,  &lt;/P&gt;&lt;P&gt;       end   of typ_pernr.  &lt;/P&gt;&lt;P&gt;data: ls_pernr  type typ_pernr,  &lt;/P&gt;&lt;P&gt;      lt_pernr  type  hashed table of typ_pernr  with unique key pernr.  &lt;/P&gt;&lt;P&gt;...  &lt;/P&gt;&lt;P&gt;  select pernr ename into table lt_pernr  from pa0001.  &lt;/P&gt;&lt;P&gt;...  &lt;/P&gt;&lt;P&gt;  loop at itab.  &lt;/P&gt;&lt;P&gt;    read table lt_pernr  with table key pernr  =  itab-pernr  &lt;/P&gt;&lt;P&gt;         into ls_pernr.  &lt;/P&gt;&lt;P&gt;    write: ls_pernr-ename, itab-data.  &lt;/P&gt;&lt;P&gt;  endloop.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;keerthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Jan 2007 10:00:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hash-table/m-p/1877206#M368749</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-30T10:00:46Z</dc:date>
    </item>
    <item>
      <title>Re: hash table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hash-table/m-p/1877207#M368750</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;Defines the table as one that is managed with an internal hash procedure. You can imagine a hashed table as a set, whose elements you can address using their unique key. Unlike standard and sorted tables, you cannot access hash tables using an index. All entries in the table must have a unique key. Access time using the key is constant, regardless of the number of table entries. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can only access a hashed table using the generic key operations or other generic operations ( SORT, LOOP, and so on). Explicit or implicit index operations (such as LOOP ... FROM oe INSERT itab within a LOOP) are not allowed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Shankar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Jan 2007 10:01:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hash-table/m-p/1877207#M368750</guid>
      <dc:creator>p291102</dc:creator>
      <dc:date>2007-01-30T10:01:46Z</dc:date>
    </item>
  </channel>
</rss>

