<?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: Data Dictionary in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/2166572#M458885</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;   Internal tables in ABAP are catogerized into 3 types&lt;/P&gt;&lt;P&gt; 1) Standard tables - by default&lt;/P&gt;&lt;P&gt; 2) Sorted internal tables - declared by SORTED addition, while doing insertions &lt;/P&gt;&lt;P&gt;     system follows the sorting order, needs a key field&lt;/P&gt;&lt;P&gt;  3) Hashed internal tables: &lt;/P&gt;&lt;P&gt;      declared with HASHED TABLE addition, followes some hash technique to store the records in the table,&lt;/P&gt;&lt;P&gt;      also follows the same hash technique while retriving the value, main advantage is time to access any record is same.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 10 May 2007 11:13:56 GMT</pubDate>
    <dc:creator>srinivas_akiri</dc:creator>
    <dc:date>2007-05-10T11:13:56Z</dc:date>
    <item>
      <title>Data Dictionary</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/2166570#M458883</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;Wat is the difference between Standard , Sorted ,Hashed &amp;amp; Indexed Intenal tables &amp;amp;How we r going to declare this tables while writing  program (i.e) Wat is the syntax for declaring this 4 internal table .Plz give an example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;Sai&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 May 2007 10:13:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/2166570#M458883</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-10T10:13:00Z</dc:date>
    </item>
    <item>
      <title>Re: Data Dictionary</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/2166571#M458884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;tables in dictionary are of two types&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) INDEXED&lt;/P&gt;&lt;P&gt;  a) standard&lt;/P&gt;&lt;P&gt;  b)sorted&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2)NON INDEXED&lt;/P&gt;&lt;P&gt;  a) Hashed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;... { {[STANDARD] TABLE} &lt;/P&gt;&lt;P&gt;    | {SORTED TABLE} &lt;/P&gt;&lt;P&gt;    | {HASHED TABLE} &lt;/P&gt;&lt;P&gt;    | {ANY TABLE} &lt;/P&gt;&lt;P&gt;    | {INDEX TABLE} } ... . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;Definition of the table type in an internal table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can specify the non-generic table types standard table ( STANDARD TABLE), sorted table ( SORTED TABLE), and hashed table (HASHED TABLE), as well as the generic table types ANY TABLE and INDEX TABLE. The addition STANDARD is optional for standard tables. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The non-generic table types determine the internal administration and access type in the ABAP program for an internal table: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Standard tables are managed system-internally by a logical index. New rows are either attached to the table or added at certain positions. The table key or the index identify individual rows. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorted tables are managed by a logical index (like standard tables). The entries are listed in ascending order according to table key. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hashed tables are managed by a hash algorithm. There is no logical index. The entries are not ordered in the memory. The position of a row is calculated by specifying a key using a hash function. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The generic table types define a generic table type that can only be used for typing formal parameters and field symbols: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ANY TABLE includes all table types. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INDEX TABLE includes all standard tables and sorted tables.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 May 2007 11:02:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/2166571#M458884</guid>
      <dc:creator>hymavathi_oruganti</dc:creator>
      <dc:date>2007-05-10T11:02:26Z</dc:date>
    </item>
    <item>
      <title>Re: Data Dictionary</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/2166572#M458885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;   Internal tables in ABAP are catogerized into 3 types&lt;/P&gt;&lt;P&gt; 1) Standard tables - by default&lt;/P&gt;&lt;P&gt; 2) Sorted internal tables - declared by SORTED addition, while doing insertions &lt;/P&gt;&lt;P&gt;     system follows the sorting order, needs a key field&lt;/P&gt;&lt;P&gt;  3) Hashed internal tables: &lt;/P&gt;&lt;P&gt;      declared with HASHED TABLE addition, followes some hash technique to store the records in the table,&lt;/P&gt;&lt;P&gt;      also follows the same hash technique while retriving the value, main advantage is time to access any record is same.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 May 2007 11:13:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/2166572#M458885</guid>
      <dc:creator>srinivas_akiri</dc:creator>
      <dc:date>2007-05-10T11:13:56Z</dc:date>
    </item>
  </channel>
</rss>

