<?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 Inner Join in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-inner-join/m-p/2735811#M635440</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Venkatesh, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u use the coding like u mentioned in the reply, u will get the following error message,  &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;For pooled tables, cluster tables and projection views, JOIN is not	allowed.	&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, u cannot use join in pooled and cluster tables.&lt;/P&gt;&lt;P&gt;Try to check it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 03 Sep 2007 08:58:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-03T08:58:55Z</dc:date>
    <item>
      <title>Regarding Inner Join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-inner-join/m-p/2735806#M635435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Inner join is possible on pooled tables, cluster table. How???&lt;/P&gt;&lt;P&gt;If Yes, then plz tell me how..&lt;/P&gt;&lt;P&gt;if not, then wat can we do against pooled tables, cluster table, any other option for inner join.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Anil Kumar&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Sep 2007 08:36:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-inner-join/m-p/2735806#M635435</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-03T08:36:08Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Inner Join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-inner-join/m-p/2735807#M635436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;To my knowledge, Inner Join is not possible in the case of CLUSTER table. &lt;/P&gt;&lt;P&gt;Best way is to get records separately to two internal tables from other tables and CLUSTER tables, then join these two internal tables using for all entries. This will definitely work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try and reward if found useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Sep 2007 08:41:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-inner-join/m-p/2735807#M635436</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-03T08:41:33Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Inner Join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-inner-join/m-p/2735808#M635437</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;inner joins are possible in cluster and pooled tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but if we use then the performance will be very poor..&lt;/P&gt;&lt;P&gt;for eg&lt;/P&gt;&lt;P&gt;take bseg is a cluster table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;instead of going to bseg table &lt;/P&gt;&lt;P&gt;we have the related transparent tables like&lt;/P&gt;&lt;P&gt;vbsegk,  " Document Segment for Vendor Document Parking&lt;/P&gt;&lt;P&gt; vbsegd,  " Document Segment for Customer Document Parking &lt;/P&gt;&lt;P&gt;vbsegs,   "  Description  Document Segment for Document Parking - G/L Account data base.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like these.. and so many &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;better to write select on these tables and loop the itab &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;for inner joins&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT a&lt;SUB&gt;field1 a&lt;/SUB&gt;field2  a~field3&lt;/P&gt;&lt;P&gt; b~field1 &lt;/P&gt;&lt;P&gt;b&lt;SUB&gt;field2  b&lt;/SUB&gt;field3 &lt;/P&gt;&lt;P&gt;from bseg as a inner join bkpf as b&lt;/P&gt;&lt;P&gt;on a&lt;SUB&gt;field1 = b&lt;/SUB&gt;field1&lt;/P&gt;&lt;P&gt;where conditions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks &amp;amp; regards,&lt;/P&gt;&lt;P&gt;Venkatesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Sep 2007 08:42:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-inner-join/m-p/2735808#M635437</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-03T08:42:09Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Inner Join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-inner-join/m-p/2735809#M635438</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi anil,&lt;/P&gt;&lt;P&gt;   go thro this link.&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="2247241"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Arun.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Sep 2007 08:43:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-inner-join/m-p/2735809#M635438</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-03T08:43:14Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Inner Join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-inner-join/m-p/2735810#M635439</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Inner join is not possible for cluster tables&lt;/P&gt;&lt;P&gt;so we can get the data from the table into internal tables and join that &lt;/P&gt;&lt;P&gt;internal tables using FOR ALL ENTRIES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Azhar&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Sep 2007 08:44:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-inner-join/m-p/2735810#M635439</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-03T08:44:45Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Inner Join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-inner-join/m-p/2735811#M635440</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Venkatesh, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u use the coding like u mentioned in the reply, u will get the following error message,  &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;For pooled tables, cluster tables and projection views, JOIN is not	allowed.	&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, u cannot use join in pooled and cluster tables.&lt;/P&gt;&lt;P&gt;Try to check it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Sep 2007 08:58:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-inner-join/m-p/2735811#M635440</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-03T08:58:55Z</dc:date>
    </item>
  </channel>
</rss>

