<?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 Table type in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-type/m-p/2048913#M422206</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;                               Can anyone tell me the exact significance and usage of table types ?&lt;/P&gt;&lt;P&gt;if possible with some examples.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Useful answers will be rewarded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Haritha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 26 Mar 2007 06:40:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-26T06:40:54Z</dc:date>
    <item>
      <title>Table type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-type/m-p/2048913#M422206</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;                               Can anyone tell me the exact significance and usage of table types ?&lt;/P&gt;&lt;P&gt;if possible with some examples.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Useful answers will be rewarded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Haritha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Mar 2007 06:40:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-type/m-p/2048913#M422206</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-26T06:40:54Z</dc:date>
    </item>
    <item>
      <title>Re: Table type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-type/m-p/2048914#M422207</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Haritha.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A table type describes the structure and functional attributes of an internal table in ABAP. In ABAP programs you can reference a table type YTEST defined in the ABAP Dictionary with the command DATA YTEST1 TYPE YTEST. An internal table YTEST1 is created in the program with the attributes defined for YTEST in the ABAP Dictionary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A table type is defined by:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;its line type&amp;lt;/b&amp;gt;, that defines the structure and data type attributes of a line of the internal table &lt;/P&gt;&lt;P&gt;the options for managing and accessing the data (&amp;lt;b&amp;gt; access mode&amp;lt;/b&amp;gt;) in the internal table &lt;/P&gt;&lt;P&gt;the &amp;lt;b&amp;gt;key &amp;lt;/b&amp;gt;( key definition and key category) of the internal table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can see the following link.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;http://help.sap.com/saphelp_erp2005vp/helpdata/en/90/8d7304b1af11d194f600a0c929b3c3/frameset.htm&lt;/P&gt;&lt;P&gt;&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Reward points if useful......&lt;/P&gt;&lt;P&gt;Suresh......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Mar 2007 06:51:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-type/m-p/2048914#M422207</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-26T06:51:57Z</dc:date>
    </item>
    <item>
      <title>Re: Table type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-type/m-p/2048915#M422208</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;Transparent table, Pool table and cluster table are data dictionary table objects sorted table, indexed table and hash table are internal tables. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table pools (pools) and table clusters (clusters) are special table types in the ABAP Dictionary. The data from several different tables can be stored together in a table pool or table cluster. Tables assigned to a table pool or table cluster are referred to as pooled tables or cluster tables. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A table in the database in which all records from the pooled tables assigned to the table pool are stored corresponds to a table pool. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The definition of a pool consists essentially of two key fields (Tabname and Varkey) and a long argument field (Vardata). &lt;/P&gt;&lt;P&gt;Table Clusters Several logical data records from different cluster tables can be stored together in one physical  &lt;/P&gt;&lt;P&gt;record in a table cluster. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A cluster key consists of a series of freely definable key fields and a field (Pageno) for distinguishing continuation records. A cluster also contains a long field (Vardata) that contains the contents of the data fields of the cluster tables for this key. If the data does not fit into the long field, continuation records are created. Control information on the structure of the data string is still written at the beginning of the Vardata field.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hashed tables  &lt;/P&gt;&lt;P&gt;This is the most appropriate type for any table where the main operation is key access. 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. 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;Regards&lt;/P&gt;&lt;P&gt; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Mar 2007 06:55:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-type/m-p/2048915#M422208</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-26T06:55:12Z</dc:date>
    </item>
    <item>
      <title>Re: Table type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-type/m-p/2048916#M422209</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Haritha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;u&amp;gt; &amp;lt;b&amp;gt;Table Types:&amp;lt;/b&amp;gt;&amp;lt;/u&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A table type describes the structure and functional attributes of an internal table in ABAP. In ABAP programs you can reference a table type TTYP defined in the ABAP Dictionary with the command DATA &amp;lt;inttab&amp;gt; TYPE TTYP. An internal table &amp;lt;inttab&amp;gt; is created in the program with the attributes defined for TTYP in the ABAP Dictionary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;A table type is defined by:&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;its line type, that defines the structure and data type attributes of a line of the internal table &lt;/P&gt;&lt;P&gt;the options for managing and accessing the data ( access mode) in the internal table &lt;/P&gt;&lt;P&gt;the key ( key definition and key category) of the internal table&lt;/P&gt;&lt;P&gt;The row type is defined by directly entering the data type, length and number of decimal places or by referencing a data element, structured type ( structure, table or view) or other table type. Or the row type can be a reference type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if it helps you......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sandhya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Mar 2007 08:51:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-type/m-p/2048916#M422209</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-27T08:51:45Z</dc:date>
    </item>
  </channel>
</rss>

