<?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 outer join issue in select in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/left-outer-join-issue-in-select/m-p/11836151#M1957002</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unable to understand the post. What is "write" table? Could you just explain using the same names as in SELECT? What values do you have in the database? And what exactly is the question?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Overall JOIN is a rather straightforward SQL command and is explained in ABAP documentation.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 10 Aug 2016 18:54:38 GMT</pubDate>
    <dc:creator>Jelena_Perfiljeva</dc:creator>
    <dc:date>2016-08-10T18:54:38Z</dc:date>
    <item>
      <title>left outer join issue in select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/left-outer-join-issue-in-select/m-p/11836150#M1957001</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to write code for datasource enhancement and using select with left outer join.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But issue is there is record in left table with id equal to "X" and not in write table my select is not picking up the record. As part of this I need to pick the record in main table even if no entries in write table. Not sure whats the issue here,posting code below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;SELECT &lt;/SPAN&gt;*&amp;nbsp; &lt;SPAN class="L0S52"&gt;INTO &lt;/SPAN&gt;CORRESPONDING &lt;SPAN class="L0S52"&gt;FIELDS &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;OF&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;TABLE ITAB&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;FROM&amp;nbsp; &lt;/SPAN&gt;main table&amp;nbsp; &lt;SPAN class="L0S52"&gt;AS m&lt;/SPAN&gt; &lt;SPAN class="L0S52"&gt;left &lt;/SPAN&gt;outer &lt;SPAN class="L0S52"&gt;join second table&lt;/SPAN&gt; &lt;SPAN class="L0S52"&gt;AS s&lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt; &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;ON&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; m&lt;SPAN class="L0S70"&gt;~id&lt;/SPAN&gt; &lt;SPAN class="L0S55"&gt;= s&lt;/SPAN&gt;&lt;SPAN class="L0S70"&gt;~&lt;/SPAN&gt;id&amp;nbsp; &lt;SPAN class="L0S52"&gt;where m&lt;/SPAN&gt;&lt;SPAN class="L0S70"&gt;~inum&lt;/SPAN&gt; &lt;SPAN class="L0S52"&gt;NE &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;''&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help if you could.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Aug 2016 16:06:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/left-outer-join-issue-in-select/m-p/11836150#M1957001</guid>
      <dc:creator>former_member196080</dc:creator>
      <dc:date>2016-08-10T16:06:30Z</dc:date>
    </item>
    <item>
      <title>Re: left outer join issue in select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/left-outer-join-issue-in-select/m-p/11836151#M1957002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unable to understand the post. What is "write" table? Could you just explain using the same names as in SELECT? What values do you have in the database? And what exactly is the question?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Overall JOIN is a rather straightforward SQL command and is explained in ABAP documentation.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Aug 2016 18:54:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/left-outer-join-issue-in-select/m-p/11836151#M1957002</guid>
      <dc:creator>Jelena_Perfiljeva</dc:creator>
      <dc:date>2016-08-10T18:54:38Z</dc:date>
    </item>
    <item>
      <title>Re: left outer join issue in select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/left-outer-join-issue-in-select/m-p/11836152#M1957003</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think its resolved I was doing reading * which was causing not to read from either tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also another question I've is I'm creating datasource at infoset and for reading few fields on few conditions I'm doing left outer join on the same two tables where I've infoset biuld.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is that right approach?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Aug 2016 19:05:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/left-outer-join-issue-in-select/m-p/11836152#M1957003</guid>
      <dc:creator>former_member196080</dc:creator>
      <dc:date>2016-08-10T19:05:17Z</dc:date>
    </item>
    <item>
      <title>Re: left outer join issue in select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/left-outer-join-issue-in-select/m-p/11836153#M1957004</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First, let me correct it : SELECT * works perfectly with an outer join (or there is a bug in the SAP "kernel" but I doubt). You probably have an issue in your whole program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't understand your new question, anyway you should open a new thread, and close this one.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Aug 2016 19:52:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/left-outer-join-issue-in-select/m-p/11836153#M1957004</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2016-08-10T19:52:32Z</dc:date>
    </item>
    <item>
      <title>Re: left outer join issue in select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/left-outer-join-issue-in-select/m-p/11836154#M1957005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the documentation &lt;A href="http://help.sap.com/abapdocu_750/en/index.htm?file=abapselect_join.htm"&gt;SELECT - JOIN&lt;/A&gt; and the examples given there ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Aug 2016 06:42:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/left-outer-join-issue-in-select/m-p/11836154#M1957005</guid>
      <dc:creator>retired_member</dc:creator>
      <dc:date>2016-08-11T06:42:40Z</dc:date>
    </item>
  </channel>
</rss>

