<?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 cluster table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/cluster-table/m-p/2320916#M509514</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi experts,&lt;/P&gt;&lt;P&gt;                can v create cluster n pooled tables. if yes kindly gve example.&lt;/P&gt;&lt;P&gt;wht is the diff b/w transparent, cluster and pooled tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;alson&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 28 May 2007 10:59:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-28T10:59:17Z</dc:date>
    <item>
      <title>cluster table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cluster-table/m-p/2320916#M509514</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi experts,&lt;/P&gt;&lt;P&gt;                can v create cluster n pooled tables. if yes kindly gve example.&lt;/P&gt;&lt;P&gt;wht is the diff b/w transparent, cluster and pooled tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;alson&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 May 2007 10:59:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cluster-table/m-p/2320916#M509514</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-28T10:59:17Z</dc:date>
    </item>
    <item>
      <title>Re: cluster table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cluster-table/m-p/2320917#M509515</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;&lt;/P&gt;&lt;P&gt;There are three types of tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Transparent Table &lt;/P&gt;&lt;P&gt;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;2. Pooled Table &lt;/P&gt;&lt;P&gt;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;3. Cluster Table &lt;/P&gt;&lt;P&gt;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;&lt;/P&gt;&lt;P&gt;The major difference between transparent tables, pooled tables and clusterd Tables are:&lt;/P&gt;&lt;P&gt;&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;&lt;/P&gt;&lt;P&gt;****do rewards if usefull&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 May 2007 11:01:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cluster-table/m-p/2320917#M509515</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-28T11:01:51Z</dc:date>
    </item>
    <item>
      <title>Re: cluster table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cluster-table/m-p/2320918#M509516</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;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;just create a normal table and select EXTRAS-&amp;gt;CHANGE TABLE CATOGERY THERE U CAN CHANGE.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;clustered tables:&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;A cluster table is similar to a pooled table. It has a many-to-one relationship with a table in the database. Many cluster tables are stored in a single table in the database called a table cluster.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;pooled tables:&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;A pooled table in R/3 has a many-to-one relationship with a table in the database (see Figures 3.1 and 3.2). For one table in the database, there are many tables in the R/3 Data Dictionary. The table in the database has a different name than the tables in the DDIC, it has a different number of fields, and the fields have different names as well. Pooled tables are an SAP proprietary construct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;transparent tables:&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;A transparent table in the dictionary has a one-to-one relationship with a table in the database. Its structure in R/3 Data Dictionary corresponds to a single database table. For each transparent table definition in the dictionary, there is one associated table in the database. The database table has the same name, the same number of fields, and the fields have the same names as the R/3 table definition. When looking at the definition of an R/3 transparent table, it might seem like you are looking at the database table itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RGDS,&lt;/P&gt;&lt;P&gt;BHARAT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Bharat Kalagara&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 May 2007 11:01:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cluster-table/m-p/2320918#M509516</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-28T11:01:56Z</dc:date>
    </item>
    <item>
      <title>Re: cluster table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cluster-table/m-p/2320919#M509517</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;hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cluster table&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;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;Pooled tables &lt;/P&gt;&lt;P&gt;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;Transparent table:&lt;/P&gt;&lt;P&gt;A transparent table is created automatically on the database when it is activated in the ABAP Dictionary. At this time, the database-independent description of the table in the ABAP Dictionary is translated into the language of the database system used.The database table has the same name as the table in the ABAP Dictionary. The fields also have the same names in both the database and the ABAP Dictionary. The data types in the ABAP Dictionary are converted to the corresponding data types of the database system.&lt;/P&gt;&lt;P&gt;The order of the fields in the ABAP Dictionary can differ from that of the fields on the database. This permits you to insert new fields without having to convert the table. When you add a new field, adjust the order of the fields by changing the database catalog (ALTER TABLE). The new field is added to the database table.&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;Sree&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 May 2007 11:03:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cluster-table/m-p/2320919#M509517</guid>
      <dc:creator>sreeramkumar_madisetty</dc:creator>
      <dc:date>2007-05-28T11:03:28Z</dc:date>
    </item>
    <item>
      <title>Re: cluster table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cluster-table/m-p/2320920#M509518</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;&amp;lt;b&amp;gt;Difference Between Transparent, Cluster and Pooled Tables&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Transparent tables (BKPF, VBAK, VBAP, KNA1, COEP)&lt;/P&gt;&lt;P&gt;i) Allows secondary indexes (SE11-&amp;gt;Display Table-&amp;gt;Indexes) &lt;/P&gt;&lt;P&gt;ii) 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;&lt;/P&gt;&lt;P&gt;2) Pool Tables (match codes, look up tables)&lt;/P&gt;&lt;P&gt;i) 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;ii) No secondary indexes &lt;/P&gt;&lt;P&gt;iii) Select * is Ok because all columns retrieved anyway &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) Cluster Tables (BSEG,BSEC)&lt;/P&gt;&lt;P&gt;i) Should be accessed via primary key - very fast retrieval otherwise very slow &lt;/P&gt;&lt;P&gt;ii) No secondary indexes &lt;/P&gt;&lt;P&gt;iii) 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;iv) 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;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Examples of Cluster &amp;amp; Pooled Tables:&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this table DD02L here u can see the cluster &amp;amp; pooled table &lt;/P&gt;&lt;P&gt;to see pooled table specify pool in tabclass for cluster use cluster in tabclass. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&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;A001&lt;/P&gt;&lt;P&gt;A004&lt;/P&gt;&lt;P&gt;A005&lt;/P&gt;&lt;P&gt;A006&lt;/P&gt;&lt;P&gt;A007&lt;/P&gt;&lt;P&gt;A009&lt;/P&gt;&lt;P&gt;A010&lt;/P&gt;&lt;P&gt;A012&lt;/P&gt;&lt;P&gt;A015&lt;/P&gt;&lt;P&gt;A016&lt;/P&gt;&lt;P&gt;A017&lt;/P&gt;&lt;P&gt;A018&lt;/P&gt;&lt;P&gt;A019&lt;/P&gt;&lt;P&gt;A021&lt;/P&gt;&lt;P&gt;A022&lt;/P&gt;&lt;P&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;AUAA&lt;/P&gt;&lt;P&gt;AUAB&lt;/P&gt;&lt;P&gt;AUAO&lt;/P&gt;&lt;P&gt;AUAS&lt;/P&gt;&lt;P&gt;AUAT&lt;/P&gt;&lt;P&gt;AUAV&lt;/P&gt;&lt;P&gt;AUAW&lt;/P&gt;&lt;P&gt;AUAY&lt;/P&gt;&lt;P&gt;BSEC&lt;/P&gt;&lt;P&gt;BSED&lt;/P&gt;&lt;P&gt;BSEG&lt;/P&gt;&lt;P&gt;BSES&lt;/P&gt;&lt;P&gt;BSET&lt;/P&gt;&lt;P&gt;CDPOS &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;Padmam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 May 2007 11:08:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cluster-table/m-p/2320920#M509518</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-28T11:08:47Z</dc:date>
    </item>
  </channel>
</rss>

