<?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: How To Do Right Outer Join, Full Outer Join ? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-right-outer-join-full-outer-join/m-p/12633635#M2013593</link>
    <description>&lt;P&gt;Did you search ?  &lt;/P&gt;&lt;P&gt;&lt;A href="https://discoveringabap.com/2021/09/23/abap-7-4-and-beyond-7-open-sql-enhancements-part-2/" target="test_blank"&gt;https://discoveringabap.com/2021/09/23/abap-7-4-and-beyond-7-open-sql-enhancements-part-2/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;</description>
    <pubDate>Tue, 30 Aug 2022 06:42:03 GMT</pubDate>
    <dc:creator>FredericGirod</dc:creator>
    <dc:date>2022-08-30T06:42:03Z</dc:date>
    <item>
      <title>How To Do Right Outer Join, Full Outer Join ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-right-outer-join-full-outer-join/m-p/12633633#M2013591</link>
      <description>&lt;P&gt;Hi SCN,&lt;/P&gt;
  &lt;P&gt;Is Full Outer Join Available in ABAP Programming ? If not how to perform it ?&lt;/P&gt;
  &lt;P&gt;I need clarity regarding joins In terms of ABAP Programming &lt;/P&gt;
  &lt;P&gt;Please help with Syntax for all available joins &lt;/P&gt;
  &lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Aug 2022 06:17:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-right-outer-join-full-outer-join/m-p/12633633#M2013591</guid>
      <dc:creator>sandeep_suggu</dc:creator>
      <dc:date>2022-08-30T06:17:23Z</dc:date>
    </item>
    <item>
      <title>Re: How To Do Right Outer Join, Full Outer Join ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-right-outer-join-full-outer-join/m-p/12633634#M2013592</link>
      <description>&lt;P&gt;Hi &lt;SPAN class="mention-scrubbed"&gt;sandeepsuggu&lt;/SPAN&gt;,&lt;/P&gt;&lt;P&gt;Yes, we can perform right outer join and full outer join in SAP ABAP. Famous SFLIGHT table example:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA(lv_city) = 'XYZ'.

SELECT c~carrname, p~connid
FROM scarr AS c 
RIGHT OUTER JOIN spfli AS p
ON p~carrid = c~carrid AND
   p~cityfrom = @lv_city
INTO TABLE @DATA(lt_flights).&amp;lt;br&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;
Check out the latest documentation for joins on SAP, here you will find more examples: &lt;A href="https://help.sap.com/doc/abapdocu_752_index_htm/7.52/en-US/abenjoins_abexa.htm" target="_blank"&gt;Inner, Outer, and Cross Joins&lt;/A&gt;</description>
      <pubDate>Tue, 30 Aug 2022 06:39:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-right-outer-join-full-outer-join/m-p/12633634#M2013592</guid>
      <dc:creator>Nitish2027</dc:creator>
      <dc:date>2022-08-30T06:39:42Z</dc:date>
    </item>
    <item>
      <title>Re: How To Do Right Outer Join, Full Outer Join ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-right-outer-join-full-outer-join/m-p/12633635#M2013593</link>
      <description>&lt;P&gt;Did you search ?  &lt;/P&gt;&lt;P&gt;&lt;A href="https://discoveringabap.com/2021/09/23/abap-7-4-and-beyond-7-open-sql-enhancements-part-2/" target="test_blank"&gt;https://discoveringabap.com/2021/09/23/abap-7-4-and-beyond-7-open-sql-enhancements-part-2/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;</description>
      <pubDate>Tue, 30 Aug 2022 06:42:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-right-outer-join-full-outer-join/m-p/12633635#M2013593</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2022-08-30T06:42:03Z</dc:date>
    </item>
    <item>
      <title>Re: How To Do Right Outer Join, Full Outer Join ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-right-outer-join-full-outer-join/m-p/12633636#M2013594</link>
      <description>&lt;P&gt;See &lt;A href="https://help.sap.com/doc/abapdocu_latest_index_htm/latest/en-US/index.htm?file=abapselect_join.htm"&gt;ABAP documentation SELECT, join&lt;/A&gt; for syntax and examples&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.sap.com/doc/abapdocu_latest_index_htm/latest/en-US/index.htm?file=abapselect_join.htm"&gt;&lt;/A&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;[INNER] JOIN&lt;/LI&gt;&lt;LI&gt;LEFT [OUTER] JOIN&lt;/LI&gt;&lt;LI&gt;RIGHT [OUTER] JOIN&lt;/LI&gt;&lt;LI&gt;CROSS JOIN (= cartesian product of all lines of both tables)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;([xxx] means xxx is optional)&lt;/P&gt;&lt;P&gt;There's no Full Outer Join (full join being left and right at the same time) as you can see.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Aug 2022 12:39:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-right-outer-join-full-outer-join/m-p/12633636#M2013594</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2022-08-30T12:39:43Z</dc:date>
    </item>
  </channel>
</rss>

