<?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: Error in Left Outer join in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-left-outer-join/m-p/12392997#M1994925</link>
    <description>&lt;P&gt;Please edit your question, select your code and press the "CODE" button to make it correctly colorized/indented, so that it's easier for us to analyze it. Thank you.&lt;/P&gt;</description>
    <pubDate>Sat, 17 Jul 2021 08:24:45 GMT</pubDate>
    <dc:creator>Sandra_Rossi</dc:creator>
    <dc:date>2021-07-17T08:24:45Z</dc:date>
    <item>
      <title>Error in Left Outer join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-left-outer-join/m-p/12392995#M1994923</link>
      <description>&lt;P&gt;Hello Experts,&lt;/P&gt;
  &lt;P&gt;I'm new to abap. Trying to add "Left outer join" in the program. However getting below syntax error:&lt;/P&gt;
  &lt;P&gt;Pls help. Points will be awarded for right answer.&lt;/P&gt;
  &lt;P&gt;REPORT ZMARA_LEFTOUTERJOIN.&lt;BR /&gt;&lt;BR /&gt;Types : BEGIN OF Ty_mat, &lt;BR /&gt; matnr type matnr,&lt;BR /&gt; ERNAME TYPE ERNAM,&lt;BR /&gt; werks type werks,&lt;BR /&gt; LABST TYPE LABST,&lt;BR /&gt; END OF TY_MAT.&lt;BR /&gt;&lt;BR /&gt;DATA : it_MAT TYPE TABLE OF ty_MAT,&lt;BR /&gt; WA_MAT TYPE TY_MAT.&lt;BR /&gt;&lt;BR /&gt;PARAMETERS : p_MATNR TYPE MATNR.&lt;BR /&gt;&lt;BR /&gt;SELECT MARA-MATNR MARA-ERNAM MARD-WERKS MARD-LABST INTO TABLE it_mat&lt;BR /&gt; FROM MARA AS MARA LEFT OUTER JOIN MARD AS MARD&lt;BR /&gt; ON MARA-MATNR =&lt;STRONG&gt; MARD-MATNR&lt;/STRONG&gt;&lt;BR /&gt; where mara-matnr = P_matnr.&lt;/P&gt;
  &lt;P&gt;&lt;IMG alt="" /&gt;&lt;/P&gt;
  &lt;P&gt;Regards&lt;/P&gt;
  &lt;P&gt;ganesan&lt;/P&gt;</description>
      <pubDate>Sat, 17 Jul 2021 07:26:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-left-outer-join/m-p/12392995#M1994923</guid>
      <dc:creator>former_member656987</dc:creator>
      <dc:date>2021-07-17T07:26:34Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Left Outer join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-left-outer-join/m-p/12392996#M1994924</link>
      <description>&lt;P&gt;&lt;STRONG&gt; Error&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Line 23 Program ZMARA_LEFTOUTERJOIN &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Field "MARD-MATNR" is unknown.&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 17 Jul 2021 07:57:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-left-outer-join/m-p/12392996#M1994924</guid>
      <dc:creator>former_member656987</dc:creator>
      <dc:date>2021-07-17T07:57:51Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Left Outer join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-left-outer-join/m-p/12392997#M1994925</link>
      <description>&lt;P&gt;Please edit your question, select your code and press the "CODE" button to make it correctly colorized/indented, so that it's easier for us to analyze it. Thank you.&lt;/P&gt;</description>
      <pubDate>Sat, 17 Jul 2021 08:24:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-left-outer-join/m-p/12392997#M1994925</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2021-07-17T08:24:45Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Left Outer join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-left-outer-join/m-p/12392998#M1994926</link>
      <description>&lt;P&gt;Please use the COMMENT button for comments, questions, adding details, replying to a comment or a proposed solution or to the OP question, etc., ANSWER is only to propose a solution, dixit SAP text at the right of the answer area.&lt;/P&gt;</description>
      <pubDate>Sat, 17 Jul 2021 08:24:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-left-outer-join/m-p/12392998#M1994926</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2021-07-17T08:24:57Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Left Outer join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-left-outer-join/m-p/12392999#M1994927</link>
      <description>&lt;P&gt;In ABAP SQL, use tilde, not dash (and also alias is not needed if it's same as table name&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT MARA~MATNR MARA~ERNAM MARD~WERKS MARD~LABST 
  INTO TABLE it_mat
  FROM MARA
  LEFT OUTER JOIN MARD
  ON MARA~MATNR = MARD~MATNR.&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 17 Jul 2021 08:30:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-left-outer-join/m-p/12392999#M1994927</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2021-07-17T08:30:49Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Left Outer join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-left-outer-join/m-p/12393000#M1994928</link>
      <description>&lt;P&gt;Wonderful. It worked. one quick question, while using write statement, I'm using dash like "mara-matnr" which is working, why not dash is not working while using join statement.&lt;/P&gt;&lt;P&gt;Thanks!!&lt;/P&gt;</description>
      <pubDate>Sat, 17 Jul 2021 08:56:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-left-outer-join/m-p/12393000#M1994928</guid>
      <dc:creator>former_member656987</dc:creator>
      <dc:date>2021-07-17T08:56:48Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Left Outer join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-left-outer-join/m-p/12393001#M1994929</link>
      <description>&lt;P&gt;Because you don't deal with same nature of object - &lt;STRONG&gt;table/alias column&lt;/STRONG&gt; versus &lt;STRONG&gt;component of a structured variable, type or constant&lt;/STRONG&gt;:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;~ : &lt;A href="https://help.sap.com/doc/abapdocu_latest_index_htm/latest/en-US/index.htm?file=abentable_comp_selector_glosry.htm"&gt;Glossary - Column selector&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;- : &lt;A href="https://help.sap.com/doc/abapdocu_latest_index_htm/latest/en-US/index.htm?file=abenstructure_component_selector.htm"&gt;Structure Component Selector&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Sat, 17 Jul 2021 09:44:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-left-outer-join/m-p/12393001#M1994929</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2021-07-17T09:44:17Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Left Outer join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-left-outer-join/m-p/12393002#M1994930</link>
      <description>&lt;P&gt;And remove the "points" phrase. It's offensive for people who try to help "for free"&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jul 2021 06:40:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-left-outer-join/m-p/12393002#M1994930</guid>
      <dc:creator>VXLozano</dc:creator>
      <dc:date>2021-07-19T06:40:58Z</dc:date>
    </item>
  </channel>
</rss>

