<?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: ddic table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/ddic-table/m-p/2570312#M586813</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Transparent Table : Exists with the same structure both in dictionary as well as in database exactly with the same data and fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pooled Table : Pooled tables are logical tables that must be assigned to a table pool when they are defined. Pooled tables are used to store control data. Several pooled tables can be cominied in a table pool. The data of these pooled tables are then sorted in a common table in the database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cluster Table : Cluster tables are logical tables that must be assigned to a table cluster when they are defined. Cluster tables can be used to strore control data. They can also be used to store temporary data or texts, such as documentation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;difference between Standard tables, Pooled tables and Clusterd Tables&lt;/P&gt;&lt;P&gt;A transparent table is a table that stores data directly. You can read these tables directly on the database from outside SAP with for instance an SQL statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Transparent table is a one to one relation table i.e. when you create one transparent table then exactly same table will create in data base and if is basically used to store transaction data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A clustered and a pooled table cannot be read from outside SAP because certain data are clustered and pooled in one field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One of the possible reasons is for instance that their content can be variable in length and build up. Database manipulations in Abap are limited as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But pool and cluster table is a many to one relationship table. This means many pool table store in a database table which is know as table pool.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All the pool table stored table in table pool does not need to have any foreign key relationship but in the case of cluster table it is must. And pool and cluster table is basically use to store application data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table pool can contain 10 to 1000 small pool table which has 10 to 100 records. But cluster table can contain very big but few (1 to 10) cluster table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For pool and cluster table you can create secondary index and you can use select distinct, group for pool and cluster table. You can use native SQL statement for pool and cluster table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A structure is a table without data. It is only filled by program logic at the moment it is needed starting from tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A view is a way of looking at the contents of tables. It only contains the combination of the tables at the basis and the way the data needs to be represented. You actually call directly upon the underlying tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go through this link&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://web.mit.edu/sapr3/dev/sap_table_types.htm" target="test_blank"&gt;http://web.mit.edu/sapr3/dev/sap_table_types.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I. Transparent tables (BKPF, VBAK, VBAP, KNA1, COEP)&lt;/P&gt;&lt;P&gt;Allows secondary indexes (SE11-&amp;gt;Display Table-&amp;gt;Indexes)&lt;/P&gt;&lt;P&gt;Can be buffered (SE11-&amp;gt;Display Table-&amp;gt;technical settings) Heavily updated tables should not&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;be buffered.&lt;/P&gt;&lt;P&gt;II. Pool Tables (match codes, look up tables)&lt;/P&gt;&lt;P&gt;Should be accessed via primary key or&lt;/P&gt;&lt;P&gt;Should be buffered (SE11-&amp;gt;Display Table-&amp;gt;technical settings)&lt;/P&gt;&lt;P&gt;No secondary indexes&lt;/P&gt;&lt;P&gt;Select * is Ok because all columns retrieved anyway&lt;/P&gt;&lt;P&gt;III. Cluster Tables (BSEG,BSEC)&lt;/P&gt;&lt;P&gt;Should be accessed via primary key - very fast retrieval otherwise very slow&lt;/P&gt;&lt;P&gt;No secondary indexes&lt;/P&gt;&lt;P&gt;Select * is Ok because all columns retrieved anyway. Performing an operation on multiple&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rows is more efficient than single row operations. Therefore you still want to select into&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;an internal table. If many rows are being selected into the internal table, you might still&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like to retrieve specific columns to cut down on the memory required.&lt;/P&gt;&lt;P&gt;Statistical SQL functions (SUM, AVG, MIN, MAX, etc) not supported&lt;/P&gt;&lt;P&gt;Can not be buffered&lt;/P&gt;&lt;P&gt;IV. Buffered Tables (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&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a good idea for performance, it is not always necessary. Some tables are already buffered&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in memory. These are mostly configuration tables. If a table is already buffered, then a&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select statement against it is very fast. To determine if a table is buffered, choose the&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'technical settings' soft button from the data dictionary display of a table (SE12). Pool&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables should all be buffered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;srinivas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;*&lt;STRONG&gt;reward for useful answers&lt;/STRONG&gt;*&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 31 Jul 2007 13:05:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-31T13:05:19Z</dc:date>
    <item>
      <title>ddic table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ddic-table/m-p/2570310#M586811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear friends,&lt;/P&gt;&lt;P&gt;I wanna know about ddic table .Actually what it means,is there any difference exists between ddic table and transparent table &lt;/P&gt;&lt;P&gt;and &lt;/P&gt;&lt;P&gt;There exist ONE TO ONE relationship between ddic table and transparent table&lt;/P&gt;&lt;P&gt;Can u please expain me what does it means in simple words with example???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Parag&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Jul 2007 12:25:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ddic-table/m-p/2570310#M586811</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-31T12:25:00Z</dc:date>
    </item>
    <item>
      <title>Re: ddic table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ddic-table/m-p/2570311#M586812</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;In DDIC there are two types of tables,&lt;/P&gt;&lt;P&gt;Transparent Tables&lt;/P&gt;&lt;P&gt;Pooled and Clustered Tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Jul 2007 12:36:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ddic-table/m-p/2570311#M586812</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-31T12:36:11Z</dc:date>
    </item>
    <item>
      <title>Re: ddic table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ddic-table/m-p/2570312#M586813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Transparent Table : Exists with the same structure both in dictionary as well as in database exactly with the same data and fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pooled Table : Pooled tables are logical tables that must be assigned to a table pool when they are defined. Pooled tables are used to store control data. Several pooled tables can be cominied in a table pool. The data of these pooled tables are then sorted in a common table in the database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cluster Table : Cluster tables are logical tables that must be assigned to a table cluster when they are defined. Cluster tables can be used to strore control data. They can also be used to store temporary data or texts, such as documentation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;difference between Standard tables, Pooled tables and Clusterd Tables&lt;/P&gt;&lt;P&gt;A transparent table is a table that stores data directly. You can read these tables directly on the database from outside SAP with for instance an SQL statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Transparent table is a one to one relation table i.e. when you create one transparent table then exactly same table will create in data base and if is basically used to store transaction data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A clustered and a pooled table cannot be read from outside SAP because certain data are clustered and pooled in one field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One of the possible reasons is for instance that their content can be variable in length and build up. Database manipulations in Abap are limited as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But pool and cluster table is a many to one relationship table. This means many pool table store in a database table which is know as table pool.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All the pool table stored table in table pool does not need to have any foreign key relationship but in the case of cluster table it is must. And pool and cluster table is basically use to store application data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table pool can contain 10 to 1000 small pool table which has 10 to 100 records. But cluster table can contain very big but few (1 to 10) cluster table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For pool and cluster table you can create secondary index and you can use select distinct, group for pool and cluster table. You can use native SQL statement for pool and cluster table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A structure is a table without data. It is only filled by program logic at the moment it is needed starting from tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A view is a way of looking at the contents of tables. It only contains the combination of the tables at the basis and the way the data needs to be represented. You actually call directly upon the underlying tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go through this link&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://web.mit.edu/sapr3/dev/sap_table_types.htm" target="test_blank"&gt;http://web.mit.edu/sapr3/dev/sap_table_types.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I. Transparent tables (BKPF, VBAK, VBAP, KNA1, COEP)&lt;/P&gt;&lt;P&gt;Allows secondary indexes (SE11-&amp;gt;Display Table-&amp;gt;Indexes)&lt;/P&gt;&lt;P&gt;Can be buffered (SE11-&amp;gt;Display Table-&amp;gt;technical settings) Heavily updated tables should not&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;be buffered.&lt;/P&gt;&lt;P&gt;II. Pool Tables (match codes, look up tables)&lt;/P&gt;&lt;P&gt;Should be accessed via primary key or&lt;/P&gt;&lt;P&gt;Should be buffered (SE11-&amp;gt;Display Table-&amp;gt;technical settings)&lt;/P&gt;&lt;P&gt;No secondary indexes&lt;/P&gt;&lt;P&gt;Select * is Ok because all columns retrieved anyway&lt;/P&gt;&lt;P&gt;III. Cluster Tables (BSEG,BSEC)&lt;/P&gt;&lt;P&gt;Should be accessed via primary key - very fast retrieval otherwise very slow&lt;/P&gt;&lt;P&gt;No secondary indexes&lt;/P&gt;&lt;P&gt;Select * is Ok because all columns retrieved anyway. Performing an operation on multiple&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rows is more efficient than single row operations. Therefore you still want to select into&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;an internal table. If many rows are being selected into the internal table, you might still&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like to retrieve specific columns to cut down on the memory required.&lt;/P&gt;&lt;P&gt;Statistical SQL functions (SUM, AVG, MIN, MAX, etc) not supported&lt;/P&gt;&lt;P&gt;Can not be buffered&lt;/P&gt;&lt;P&gt;IV. Buffered Tables (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&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a good idea for performance, it is not always necessary. Some tables are already buffered&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in memory. These are mostly configuration tables. If a table is already buffered, then a&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select statement against it is very fast. To determine if a table is buffered, choose the&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'technical settings' soft button from the data dictionary display of a table (SE12). Pool&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables should all be buffered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;srinivas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;*&lt;STRONG&gt;reward for useful answers&lt;/STRONG&gt;*&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Jul 2007 13:05:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ddic-table/m-p/2570312#M586813</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-31T13:05:19Z</dc:date>
    </item>
    <item>
      <title>Re: ddic table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ddic-table/m-p/2570313#M586814</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DDIC stands for Data Dictionary&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There exist ONE TO ONE relationship between ddic table and transparent table..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It means :&lt;/P&gt;&lt;P&gt;There is a physical table on the database for each transparent table. The names of the physical tables and the logical table definition in the ABAP/4 Dictionary correspond and &lt;/P&gt;&lt;P&gt;one field in dictionary correspond to one field in physical database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When the table is activated, a physical table definition is created in the database for the table definition stored in the ABAP Dictionary. The table definition is translated from the ABAP Dictionary to a definition of the particular database in One to One Relationship..&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&lt;/P&gt;&lt;P&gt;Pooled table&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Pooled tables can be used to store control data (e.g. screen sequences, program parameters or temporary data). Several pooled tables can be combined to form a table pool. The table pool corresponds to a physical table on the database in which all the records of the allocated pooled tables are stored.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Cluster table&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Cluster tables contain continuous text, for example, documentation. Several cluster tables can be combined to form a table cluster. Several logical lines of different tables are combined to form a physical record in this table type. This permits object-by-object storage or object-by-object access. In order to combine tables in clusters, at least parts of the keys must agree. Several cluster tables are stored in one corresponding table on the database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Prax&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Jul 2007 15:03:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ddic-table/m-p/2570313#M586814</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-31T15:03:42Z</dc:date>
    </item>
    <item>
      <title>Re: ddic table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ddic-table/m-p/2570314#M586815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="502156"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="3842482"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;/message/3767615#3767615 &lt;B&gt;[original link is broken]&lt;/B&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Aug 2007 01:20:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ddic-table/m-p/2570314#M586815</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-01T01:20:25Z</dc:date>
    </item>
    <item>
      <title>Re: ddic table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ddic-table/m-p/2570315#M586816</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just search in SE11 transaction for DD* for the Database table, which will help you for system tables of DDIC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Following are the tables having the DDIC table properties -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DD01L                          Domains&lt;/P&gt;&lt;P&gt;DD01T                          R/3 DD: domain texts&lt;/P&gt;&lt;P&gt;DD02L                          SAP Tables&lt;/P&gt;&lt;P&gt;DD02T                          R/3 DD: SAP table texts&lt;/P&gt;&lt;P&gt;DD03L                          Table Fields&lt;/P&gt;&lt;P&gt;DD03T                          DD: Texts for fields (language dependent)&lt;/P&gt;&lt;P&gt;DD04L                          Data elements&lt;/P&gt;&lt;P&gt;DD04T                          R/3 DD: Data element texts&lt;/P&gt;&lt;P&gt;DD05S                          Foreign key fields&lt;/P&gt;&lt;P&gt;DD06L                          Pool/cluster structures&lt;/P&gt;&lt;P&gt;DD08L                          R/3 DD: relationship definitions&lt;/P&gt;&lt;P&gt;DD09L                          DD: Technical settings of tables&lt;/P&gt;&lt;P&gt;DD30L                          Search helps&lt;/P&gt;&lt;P&gt;DD30T                          Search help texts&lt;/P&gt;&lt;P&gt;ECLOG_HEAD                     Table for Log Header&lt;/P&gt;&lt;P&gt;E070                           Change &amp;amp; Transport System: Header of Reque&lt;/P&gt;&lt;P&gt;E071                           Change &amp;amp; Transport System: Object Entries&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&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>Wed, 01 Aug 2007 06:57:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ddic-table/m-p/2570315#M586816</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-01T06:57:17Z</dc:date>
    </item>
  </channel>
</rss>

