<?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 types in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-types/m-p/3438300#M825686</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can anyone plz tell me what is table types in simple words,and how to create table types,and what situation we will create table types.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks &amp;amp; regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 09 Feb 2008 05:24:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-09T05:24:35Z</dc:date>
    <item>
      <title>table types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-types/m-p/3438300#M825686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can anyone plz tell me what is table types in simple words,and how to create table types,and what situation we will create table types.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks &amp;amp; regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 Feb 2008 05:24:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-types/m-p/3438300#M825686</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-09T05:24:35Z</dc:date>
    </item>
    <item>
      <title>Re: table types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-types/m-p/3438301#M825687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sriniva,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAP Table Types&lt;/P&gt;&lt;P&gt;I. &lt;STRONG&gt;Transparent tables&lt;/STRONG&gt; (BKPF, VBAK, VBAP, KNA1, COEP)&lt;/P&gt;&lt;P&gt;&amp;#149;	Allows secondary indexes (SE11-&amp;gt;Display Table-&amp;gt;Indexes) &lt;/P&gt;&lt;P&gt;&amp;#149;	Can be buffered (SE11-&amp;gt;Display Table-&amp;gt;technical settings) Heavily updated tables should not be buffered. &lt;/P&gt;&lt;P&gt;II. &lt;STRONG&gt;Pool Tables (match codes, look up tables&lt;/STRONG&gt;)&lt;/P&gt;&lt;P&gt;&amp;#149;	Should be accessed via primary key or &lt;/P&gt;&lt;P&gt;&amp;#149;	Should be buffered (SE11-&amp;gt;Display Table-&amp;gt;technical settings) &lt;/P&gt;&lt;P&gt;&amp;#149;	No secondary indexes &lt;/P&gt;&lt;P&gt;&amp;#149;	Select * is Ok because all columns retrieved anyway &lt;/P&gt;&lt;P&gt;III. &lt;STRONG&gt;Cluster Tables (BSEG,BSEC)&lt;/STRONG&gt;&amp;#149;	Should be accessed via primary key - very fast retrieval otherwise very slow &lt;/P&gt;&lt;P&gt;&amp;#149;	No secondary indexes &lt;/P&gt;&lt;P&gt;&amp;#149;	Select * is Ok because all columns retrieved anyway. Performing an operation on multiple rows is more efficient than single row operations. Therefore you still want to select into an internal table. If many rows are being selected into the internal table, you might still like to retrieve specific columns to cut down on the memory required. &lt;/P&gt;&lt;P&gt;&amp;#149;	Statistical SQL functions (SUM, AVG, MIN, MAX, etc) not supported &lt;/P&gt;&lt;P&gt;&amp;#149;	Can not be buffered &lt;/P&gt;&lt;P&gt;IV. &lt;STRONG&gt;Buffered Tables&lt;/STRONG&gt; (includes both Transparent &amp;amp; Pool Tables)&lt;/P&gt;&lt;P&gt;While buffering database tables in program memory (SELECT into internal table) is generally a good idea for performance, it is not always necessary. Some tables are already buffered in memory. These are mostly configuration tables. If a table is already buffered, then a select statement against it is very fast. To determine if a table is buffered, choose the 'technical settings' soft button from the data dictionary display of a table (SE12). Pool tables should all be buffered.&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;KTS Reddy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 Feb 2008 05:36:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-types/m-p/3438301#M825687</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-09T05:36:30Z</dc:date>
    </item>
    <item>
      <title>Re: table types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-types/m-p/3438302#M825688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  In classes if u want to declare inernal table in the parameters then u declare table types and then refer it to the parameter then that variable is like internal table.&lt;/P&gt;&lt;P&gt;   you can declare table type in se11 when u declare the data type then give table type and give line type as ur structure.&lt;/P&gt;&lt;P&gt;Plzz reward points if it helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 Feb 2008 05:38:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-types/m-p/3438302#M825688</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-09T05:38:00Z</dc:date>
    </item>
    <item>
      <title>Re: table types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-types/m-p/3438303#M825689</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Srinivas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table Types : 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 &lt;/P&gt;&lt;P&gt;           DATA : itab TYPE TTYP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reafer these links below for clear ideas.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/fb/f14736a1f0ad1fe10000009b38f839/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/fb/f14736a1f0ad1fe10000009b38f839/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/90/8d7304b1af11d194f600a0c929b3c3/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/90/8d7304b1af11d194f600a0c929b3c3/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sakthi C&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 Feb 2008 05:41:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-types/m-p/3438303#M825689</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-09T05:41:12Z</dc:date>
    </item>
    <item>
      <title>Re: table types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-types/m-p/3438304#M825690</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;   If u want create an internal table in your program that is used in more than one programs having same line type,access type and key Definition.then define that table type in Data Dictionary(SE11) and using that table type to can&lt;/P&gt;&lt;P&gt;create an internal table in any program.&lt;/P&gt;&lt;P&gt;Please reward if find useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mayank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 Feb 2008 05:45:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-types/m-p/3438304#M825690</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-09T05:45:08Z</dc:date>
    </item>
  </channel>
</rss>

