<?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: Join with EKBE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/join-with-ekbe/m-p/12455182#M1999877</link>
    <description>&lt;P&gt;In your query, there are other tables joined, so I guess it's easy to do the same for EKBE. Did you try? If yes, what is your issue?&lt;/P&gt;&lt;P&gt;NB: I see other alike questions in the forum with some nice answers:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;join EKKO EKPO "EKBE" site:sap.com&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Sat, 31 Jul 2021 03:16:49 GMT</pubDate>
    <dc:creator>Sandra_Rossi</dc:creator>
    <dc:date>2021-07-31T03:16:49Z</dc:date>
    <item>
      <title>Join with EKBE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/join-with-ekbe/m-p/12455181#M1999876</link>
      <description>&lt;P&gt;Dear All,&lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;I am having below existing query. In this query now I want modification in such a way that &lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;it_eine_latest will retain all values and EKBE will be joined in such a way that in case no entries from EKBE, the column from EKBE will be blank in it_eine_latest and if EKBE has values for EBELN/EBELP then those values should be available.&lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;(D~BUDAT is nothing but EKBE~BUDAT)&lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;SELECT a~infnr&lt;BR /&gt; a~ebeln&lt;BR /&gt; a~ebelp&lt;BR /&gt; a~datlb&lt;BR /&gt; a~netpr&lt;BR /&gt; a~peinh&lt;BR /&gt; b~netpr&lt;BR /&gt; c~lifnr&lt;BR /&gt; c~waers&lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;D~BUDAT&lt;BR /&gt; FROM eine AS a JOIN&lt;BR /&gt; ekpo AS b&lt;BR /&gt; ON a~ebeln = b~ebeln AND&lt;BR /&gt; a~ebelp = b~ebelp&lt;BR /&gt; JOIN ekko AS c "ADORNAL CTASK0043115&lt;BR /&gt; ON b~ebeln = c~ebeln "ADORNAL CTASK0043115&lt;BR /&gt; INTO TABLE it_eine_latest&lt;BR /&gt; FOR ALL ENTRIES IN it_eina&lt;BR /&gt; WHERE a~infnr = it_eina-infnr AND&lt;BR /&gt; ( a~esokz = '0' OR a~esokz = '3' ) AND " Std Order⋐con&lt;BR /&gt; a~bstyp = 'F' AND " PO&lt;BR /&gt; b~loekz = space AND&lt;BR /&gt; ( b~pstyp = '0' OR b~pstyp = '3' )&lt;BR /&gt; AND c~bsart = 'NB'. &lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt; I will be thankful for kindly helping with above query.&lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;Regards.&lt;/P&gt;</description>
      <pubDate>Fri, 30 Jul 2021 21:40:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/join-with-ekbe/m-p/12455181#M1999876</guid>
      <dc:creator>sanjay_deshpande4</dc:creator>
      <dc:date>2021-07-30T21:40:03Z</dc:date>
    </item>
    <item>
      <title>Re: Join with EKBE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/join-with-ekbe/m-p/12455182#M1999877</link>
      <description>&lt;P&gt;In your query, there are other tables joined, so I guess it's easy to do the same for EKBE. Did you try? If yes, what is your issue?&lt;/P&gt;&lt;P&gt;NB: I see other alike questions in the forum with some nice answers:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;join EKKO EKPO "EKBE" site:sap.com&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 31 Jul 2021 03:16:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/join-with-ekbe/m-p/12455182#M1999877</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2021-07-31T03:16:49Z</dc:date>
    </item>
    <item>
      <title>Re: Join with EKBE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/join-with-ekbe/m-p/12455183#M1999878</link>
      <description>&lt;P&gt;Thanks Sandra Rossi for replying.&lt;/P&gt;&lt;P&gt;LEFT OUTER JOIN on EKBE is the solution.&lt;/P&gt;</description>
      <pubDate>Sat, 31 Jul 2021 06:30:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/join-with-ekbe/m-p/12455183#M1999878</guid>
      <dc:creator>sanjay_deshpande4</dc:creator>
      <dc:date>2021-07-31T06:30:51Z</dc:date>
    </item>
  </channel>
</rss>

