<?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: FULL OUTER JOIN with ABAP CDS in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/full-outer-join-with-abap-cds/m-p/568928#M22108</link>
    <description>&lt;P&gt;I was thinking about &lt;/P&gt;
  &lt;P&gt;LEFT OUTER JOIN&lt;/P&gt;
  &lt;P&gt;UNION&lt;/P&gt;
  &lt;P&gt;RIGHT OUTER JOIN&lt;/P&gt;
  &lt;P&gt;but I am not sure if this is the best way to do it.&lt;/P&gt;</description>
    <pubDate>Wed, 22 Nov 2017 14:32:41 GMT</pubDate>
    <dc:creator>former_member240882</dc:creator>
    <dc:date>2017-11-22T14:32:41Z</dc:date>
    <item>
      <title>FULL OUTER JOIN with ABAP CDS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/full-outer-join-with-abap-cds/m-p/568926#M22106</link>
      <description>&lt;P&gt;How can I implement a FULL OUTER JOIN in ABAP CDS ?&lt;/P&gt;</description>
      <pubDate>Wed, 22 Nov 2017 06:22:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/full-outer-join-with-abap-cds/m-p/568926#M22106</guid>
      <dc:creator>former_member240882</dc:creator>
      <dc:date>2017-11-22T06:22:33Z</dc:date>
    </item>
    <item>
      <title>Re: FULL OUTER JOIN with ABAP CDS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/full-outer-join-with-abap-cds/m-p/568927#M22107</link>
      <description>&lt;P&gt;Have you tried UNION ?&lt;/P&gt;</description>
      <pubDate>Wed, 22 Nov 2017 11:45:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/full-outer-join-with-abap-cds/m-p/568927#M22107</guid>
      <dc:creator>Sathya_Gunasekaran</dc:creator>
      <dc:date>2017-11-22T11:45:07Z</dc:date>
    </item>
    <item>
      <title>Re: FULL OUTER JOIN with ABAP CDS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/full-outer-join-with-abap-cds/m-p/568928#M22108</link>
      <description>&lt;P&gt;I was thinking about &lt;/P&gt;
  &lt;P&gt;LEFT OUTER JOIN&lt;/P&gt;
  &lt;P&gt;UNION&lt;/P&gt;
  &lt;P&gt;RIGHT OUTER JOIN&lt;/P&gt;
  &lt;P&gt;but I am not sure if this is the best way to do it.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Nov 2017 14:32:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/full-outer-join-with-abap-cds/m-p/568928#M22108</guid>
      <dc:creator>former_member240882</dc:creator>
      <dc:date>2017-11-22T14:32:41Z</dc:date>
    </item>
    <item>
      <title>Re: FULL OUTER JOIN with ABAP CDS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/full-outer-join-with-abap-cds/m-p/568929#M22109</link>
      <description>&lt;P&gt;CROSS JOIN?&lt;/P&gt;
  &lt;P&gt;&lt;A href="https://help.sap.com/http.svc/rc/abapdocu_752_index_htm/7.52/en-US/index.htm?file=abencds_f1_joined_data_source.htm" target="test_blank"&gt;https://help.sap.com/http.svc/rc/abapdocu_752_index_htm/7.52/en-US/index.htm?file=abencds_f1_joined_data_source.htm&lt;/A&gt;&lt;/P&gt;
  &lt;P&gt;I know it is a difference, but maybe it is what you need?&lt;/P&gt;</description>
      <pubDate>Wed, 22 Nov 2017 15:20:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/full-outer-join-with-abap-cds/m-p/568929#M22109</guid>
      <dc:creator>retired_member</dc:creator>
      <dc:date>2017-11-22T15:20:30Z</dc:date>
    </item>
    <item>
      <title>Re: FULL OUTER JOIN with ABAP CDS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/full-outer-join-with-abap-cds/m-p/568930#M22110</link>
      <description>&lt;P&gt;You may want to use 'DISTINCT' to eliminate duplicates!&lt;/P&gt;</description>
      <pubDate>Thu, 23 Nov 2017 12:01:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/full-outer-join-with-abap-cds/m-p/568930#M22110</guid>
      <dc:creator>Sathya_Gunasekaran</dc:creator>
      <dc:date>2017-11-23T12:01:01Z</dc:date>
    </item>
    <item>
      <title>Re: FULL OUTER JOIN with ABAP CDS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/full-outer-join-with-abap-cds/m-p/568931#M22111</link>
      <description>&lt;P&gt;Thank you for the suggestion.&lt;/P&gt;
  &lt;P&gt;While a CROSS JOIN does all combinations of the LHS and RHS, a FULL OUTER JOIN is a UNION of LEFT OUTER and RIGHT OUTER JOINS. I decided to go with the later solution. May not be the best way to do it but I think this is something that one would expect out of CDS views in ABAP given that it is available in HANA.&lt;/P&gt;
  &lt;P&gt;I can't think of a way to use a CROSS JOIN in lieu of a FULL OUTER JOIN.&lt;/P&gt;
  &lt;P&gt;Just for the enlightenment of readers, here is a note on FULL OUTER JOIN available in HANA&lt;/P&gt;
  &lt;P&gt;&lt;A href="https://blogs.sap.com/2014/05/25/all-about-joins-using-sql-in-hana/" target="test_blank"&gt;https://blogs.sap.com/2014/05/25/all-about-joins-using-sql-in-hana/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Nov 2017 16:26:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/full-outer-join-with-abap-cds/m-p/568931#M22111</guid>
      <dc:creator>former_member240882</dc:creator>
      <dc:date>2017-11-23T16:26:04Z</dc:date>
    </item>
  </channel>
</rss>

