<?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: regarding pooled &amp; cluster tables. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-pooled-cluster-tables/m-p/3333334#M798820</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Each field of cluster/pooled table behaves as tables which contains the no. of entries.So u cant use inner join in cluster and pooled tables.reward if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Jan 2008 06:20:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-29T06:20:29Z</dc:date>
    <item>
      <title>regarding pooled &amp; cluster tables.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-pooled-cluster-tables/m-p/3333332#M798818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Everyone,&lt;/P&gt;&lt;P&gt;                       plz. tell me why is it not possible to use inner join on Pooled and Cluster tables?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2008 06:00:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-pooled-cluster-tables/m-p/3333332#M798818</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-29T06:00:09Z</dc:date>
    </item>
    <item>
      <title>Re: regarding pooled &amp; cluster tables.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-pooled-cluster-tables/m-p/3333333#M798819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;U can't perform JOIN with Pooled or Cluster tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;trying to join A018 and KONP .... here A018 is Pooled table... Look at below threads...&lt;/P&gt;&lt;P&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="805693"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&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="2975129"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2008 06:04:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-pooled-cluster-tables/m-p/3333333#M798819</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-29T06:04:16Z</dc:date>
    </item>
    <item>
      <title>Re: regarding pooled &amp; cluster tables.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-pooled-cluster-tables/m-p/3333334#M798820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Each field of cluster/pooled table behaves as tables which contains the no. of entries.So u cant use inner join in cluster and pooled tables.reward if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2008 06:20:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-pooled-cluster-tables/m-p/3333334#M798820</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-29T06:20:29Z</dc:date>
    </item>
    <item>
      <title>Re: regarding pooled &amp; cluster tables.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-pooled-cluster-tables/m-p/3333335#M798821</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As our friends have already explained, we can not join pooled and clustered tables, for example when dealing with BKPF and BSEG tables.&lt;/P&gt;&lt;P&gt;The general approach would be using FOR ALL ENTRIES:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;codeselect bukrs belne gjahr .....&lt;/P&gt;&lt;P&gt;into table it_bkpf &lt;/P&gt;&lt;P&gt;from bkpf&lt;/P&gt;&lt;P&gt;where &amp;lt;cond&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select belnr buzei dmbtr ....&lt;/P&gt;&lt;P&gt;into table it_bseg&lt;/P&gt;&lt;P&gt;for all entries in it_bkpf&lt;/P&gt;&lt;P&gt;from bseg&lt;/P&gt;&lt;P&gt;where bukrs = it_bkpf-bukrs&lt;/P&gt;&lt;P&gt;and belnr = it_bkpf-belnr&lt;/P&gt;&lt;P&gt;and gjahr = it_bkpf-gjahr&lt;/P&gt;&lt;P&gt;....[/code]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Kindly Reward Points If Found Usefull&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Chaitanya.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Kindly Reward Points If Found Usefull&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Chaitanya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2008 06:26:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-pooled-cluster-tables/m-p/3333335#M798821</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-29T06:26:00Z</dc:date>
    </item>
    <item>
      <title>Re: regarding pooled &amp; cluster tables.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-pooled-cluster-tables/m-p/3333336#M798822</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi vishal&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it is not possible to use the inner join on pooled and cluster tables because in pool table-------the  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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; but wen u comes to &lt;/P&gt;&lt;P&gt;Cluster table -&lt;/P&gt;&lt;HR originaltext="------------" /&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;for example take BSEG table ,in that&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BSEG itself is a table and BUZID is the field which stores the line item of A/c Document. Due to cluster table U can't join this table as inner join.that is the bseg table is clustering the fields when it is joining with other fields.so it will leads to errrors finally.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thats y we wont use those both.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reply me if u neeed more clarification&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;karthik&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward me if answer is helpfull&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2008 06:59:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-pooled-cluster-tables/m-p/3333336#M798822</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-29T06:59:49Z</dc:date>
    </item>
    <item>
      <title>Re: regarding pooled &amp; cluster tables.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-pooled-cluster-tables/m-p/3333337#M798823</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;pooled tables:&lt;/P&gt;&lt;P&gt;These are logical tables, which must be assigned to a table pool when they are defined. Pooled tables can be used to store control data (such as screen sequences or program parameters).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cluster tables:&lt;/P&gt;&lt;P&gt;A table cluster combines several logical tables in the ABAP/4 Dictionary. Several logical rows from different cluster tables are brought together in a single physical record. The records from the cluster tables assigned to a cluster are thus stored in a single common table in the database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if its useful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2008 09:07:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-pooled-cluster-tables/m-p/3333337#M798823</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-29T09:07:01Z</dc:date>
    </item>
    <item>
      <title>Re: regarding pooled &amp; cluster tables.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-pooled-cluster-tables/m-p/3333338#M798824</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Transparent Table:&lt;/P&gt;&lt;P&gt;A physical table definition in the database for the table definition which is stored in the ABAP Dictionary for transparent tables when the&lt;/P&gt;&lt;P&gt;table is activated. The table definition is translated from the ABAP&lt;/P&gt;&lt;P&gt;Dictionary to a definition of the particular database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pooled table:&lt;/P&gt;&lt;P&gt;Pooled tables can be used to store control data (e.g. screen sequences,&lt;/P&gt;&lt;P&gt;program parameters or temporary data). Several pooled tables can be&lt;/P&gt;&lt;P&gt;combined to form a table pool. The table pool corresponds to a physical&lt;/P&gt;&lt;P&gt;table on the database in which all the records of the allocated pooled&lt;/P&gt;&lt;P&gt;tables are stored.&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.&lt;/P&gt;&lt;P&gt;Several cluster tables can be combined to form a table cluster. Several&lt;/P&gt;&lt;P&gt;logical lines of different tables are combined to form a physical record&lt;/P&gt;&lt;P&gt;in this table type. This permits object-by-object storage or&lt;/P&gt;&lt;P&gt;object-by-object access. In order to combine tables in clusters, at&lt;/P&gt;&lt;P&gt;least parts of the keys must agree. Several cluster tables are stored in&lt;/P&gt;&lt;P&gt;one corresponding table on the database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See the documetation at:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/cf/21f083446011d189700000e8322d00/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/cf/21f083446011d189700000e8322d00/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/81/415d363640933fe10000009b38f839/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/81/415d363640933fe10000009b38f839/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2008 09:10:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-pooled-cluster-tables/m-p/3333338#M798824</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-29T09:10:18Z</dc:date>
    </item>
  </channel>
</rss>

