<?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: Left join in view ? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/left-join-in-view/m-p/4666030#M1097674</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;Resulting set for outer join &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The outer join basically creates the same resulting set as the inner join, with the difference that at least one line is created in the resulting set for every selected line on the left-hand side, even if no line on the right-hand side fulfills the join_cond condition. The columns on the right-hand side that do not fulfill the join_cond condition are filled with null values. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So i think obviously you can use left join here for a view table...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Arunima&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 Oct 2008 05:02:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-23T05:02:50Z</dc:date>
    <item>
      <title>Left join in view ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/left-join-in-view/m-p/4666029#M1097673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello expert &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can we create left join in view ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;means in view i wanna two tables in inner join &lt;/P&gt;&lt;P&gt;and add another table as left join&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can i do this ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Oct 2008 04:49:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/left-join-in-view/m-p/4666029#M1097673</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-23T04:49:46Z</dc:date>
    </item>
    <item>
      <title>Re: Left join in view ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/left-join-in-view/m-p/4666030#M1097674</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;Resulting set for outer join &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The outer join basically creates the same resulting set as the inner join, with the difference that at least one line is created in the resulting set for every selected line on the left-hand side, even if no line on the right-hand side fulfills the join_cond condition. The columns on the right-hand side that do not fulfill the join_cond condition are filled with null values. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So i think obviously you can use left join here for a view table...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Arunima&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Oct 2008 05:02:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/left-join-in-view/m-p/4666030#M1097674</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-23T05:02:50Z</dc:date>
    </item>
    <item>
      <title>Re: Left join in view ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/left-join-in-view/m-p/4666031#M1097675</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;Views in the ABAP Dictionary are implemented as inner joins. If the inner table contains no lines that correspond to lines in the outer table, no data is transferred. This is not always the desired result. For example, when you read data from a text table, you want to include lines in the selection even if the corresponding text does not exist in the required language. If you want to include all of the data from the outer table, you can program a left outer join in ABAP. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Oct 2008 06:35:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/left-join-in-view/m-p/4666031#M1097675</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-23T06:35:40Z</dc:date>
    </item>
    <item>
      <title>Re: Left join in view ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/left-join-in-view/m-p/4666032#M1097676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Arunima &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but i think you didn' t get my question?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;that i 'm creating a database view .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and i need a perticular left join in this view.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if it is possible then reply as soon as possible&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Oct 2008 06:36:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/left-join-in-view/m-p/4666032#M1097676</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-23T06:36:10Z</dc:date>
    </item>
    <item>
      <title>Re: Left join in view ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/left-join-in-view/m-p/4666033#M1097677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;not possible in ABAP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Mar 2009 10:03:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/left-join-in-view/m-p/4666033#M1097677</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-20T10:03:04Z</dc:date>
    </item>
  </channel>
</rss>

