<?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: Inner Join - whats wrong? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join-whats-wrong/m-p/7968384#M1603488</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;&lt;/P&gt;&lt;P&gt;use this query  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;select a~matnr b~werks b~dispo adrnr mtart matkl meins
  INTO CORRESPONDING FIELDS OF TABLE gt_ausgabe
  FROM        mara AS a  INNER  JOIN marc AS b
  ON b~matnr = a~matnr
*  INNER  JOIN marc AS c  ON c~matnr = a~matnr
  INNER JOIN t001w AS d  ON d~werks = b~werks  
  where a~matnr = pr_matnr
    and b~werks = pr_werks
    and c~dispo = pr_dispo
    and adrnr = pr_adrnr
    and mtart = pr_mtart
    and matkl = pr_matkl
    and meins = pr_meins.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why  you are using mara table and marc table multiple times   ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Deepak.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Deepak Dhamat on Jun 20, 2011 10:31 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 20 Jun 2011 08:31:13 GMT</pubDate>
    <dc:creator>deepak_dhamat</dc:creator>
    <dc:date>2011-06-20T08:31:13Z</dc:date>
    <item>
      <title>Inner Join - whats wrong?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join-whats-wrong/m-p/7968379#M1603483</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Hello there,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I was trying to make an Inner Join, but unfortunately without success.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;there is the code, can someone pls tell me what is wrong??&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                                            .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: gs_mara TYPE mara,
      gt_mara TYPE STANDARD TABLE OF mara.
DATA: gs_marc TYPE marc,
      gt_marc TYPE STANDARD TABLE OF marc.
DATA: gs_makt TYPE makt,
      gt_makt TYPE STANDARD TABLE OF makt.
DATA: gs_t001w TYPE t001w,
      gt_t001w TYPE STANDARD TABLE OF t001w.


TYPES: BEGIN OF ts_ausgabe,
       matnr TYPE matnr,
       mtart TYPE mtart,
       matkl TYPE matkl,
       meins TYPE meins,
       werks TYPE werks_d,
       dispo TYPE dispo,
       adrnr TYPE adrnr,
       END OF ts_ausgabe.

DATA: gs_ausgabe TYPE ts_ausgabe.
DATA: gt_ausgabe TYPE STANDARD TABLE OF ts_ausgabe.



SELECT-OPTIONS: pr_matnr FOR gs_mara-matnr,
                pr_werks FOR gs_marc-werks.

START-OF-SELECTION.


  select a~matnr b~werks c~dispo d~adrnr e~mtart f~matkl g~meins
  INTO CORRESPONDING FIELDS OF TABLE gt_ausgabe
  FROM        mara AS a  INNER  JOIN marc AS b 
  ON b~matnr = a~matnr
  INNER  JOIN marc AS c  ON c~matnr = a~matnr
  INNER JOIN t001w AS d  ON d~werks = a~matnr  
  INNER  JOIN mara AS e  ON e~matnr = a~matnr
  INNER  JOIN mara AS f  ON f~matnr = a~matnr
  INNER  JOIN mara AS g  ON g~matnr = a~matnr


  where a~matnr = pr_matnr
    and b~werks = pr_werks
    and c~dispo = pr_dispo
    and d~adrnr = pr_adrnr
    and e~mtart = pr_mtart
    and f~matkl = pr_matkl
    and g~meins = pr_meins.
  
  write: / matnr dispo adrnr mtart matkl meins.


    LOOP AT gt_mara INTO gs_mara.
      READ TABLE gt_marc INTO gs_marc WITH KEY matnr = gs_mara-matnr.

      IF sy-subrc = 0.
        MOVE: gs_mara-matnr TO gs_ausgabe-matnr,
              gs_mara-mtart TO gs_ausgabe-mtart,
              gs_mara-matkl TO gs_ausgabe-matkl,
              gs_mara-meins TO gs_ausgabe-meins,
              gs_marc-werks TO gs_ausgabe-werks,
              gs_marc-dispo TO gs_ausgabe-dispo,
              gs_t001w-adrnr TO gs_ausgabe-adrnr.

        WRITE: / gs_mara-matnr, gs_mara-mtart, gs_mara-matkl, gs_mara-meins, gs_marc-werks, gs_marc-dispo, gs_t001w-adrnr.
        APPEND gs_ausgabe TO gt_ausgabe.
      ENDIF.
    ENDLOOP.

    LOOP AT gt_ausgabe INTO gs_ausgabe.

      WRITE: / sy-vline, gs_ausgabe-matnr,
               sy-vline, gs_ausgabe-mtart,
               sy-vline, gs_ausgabe-matkl,
               sy-vline, gs_ausgabe-meins,
               sy-vline, gs_ausgabe-werks,
               sy-vline, gs_ausgabe-dispo,
               sy-vline, gs_ausgabe-adrnr.
      ULINE.
    ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Thomas Zloch on Jun 20, 2011 10:19 AM - code tags added&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jun 2011 08:15:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join-whats-wrong/m-p/7968379#M1603483</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-20T08:15:51Z</dc:date>
    </item>
    <item>
      <title>Re: Inner Join - whats wrong?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join-whats-wrong/m-p/7968380#M1603484</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please define "without success", syntax error, short dump, too much data, missing data?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jun 2011 08:20:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join-whats-wrong/m-p/7968380#M1603484</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2011-06-20T08:20:24Z</dc:date>
    </item>
    <item>
      <title>Re: Inner Join - whats wrong?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join-whats-wrong/m-p/7968381#M1603485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kfir,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
   select a~matnr b~werks c~dispo d~adrnr e~mtart f~matkl g~meins
   INTO CORRESPONDING FIELDS OF TABLE gt_ausgabe
   FROM        mara AS a  INNER  JOIN marc AS b 
   ON b~matnr = a~matnr
   INNER  JOIN marc AS c  ON c~matnr = a~matnr
   INNER JOIN t001w AS d  ON d~werks = a~matnr  
   INNER  JOIN mara AS e  ON e~matnr = a~matnr
   INNER  JOIN mara AS f  ON f~matnr = a~matnr
   INNER  JOIN mara AS g  ON g~matnr = a~matnr
 &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;joining t001&lt;SUB&gt;werks on mara&lt;/SUB&gt;matnr will not work...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;REA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jun 2011 08:24:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join-whats-wrong/m-p/7968381#M1603485</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-20T08:24:02Z</dc:date>
    </item>
    <item>
      <title>Re: Inner Join - whats wrong?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join-whats-wrong/m-p/7968382#M1603486</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;well first thank you for the quick respond.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Im quite sure that I have a problem with the &lt;U&gt;structure&lt;/U&gt; of the Inner Join, but I dont find the problem...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jun 2011 08:26:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join-whats-wrong/m-p/7968382#M1603486</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-20T08:26:41Z</dc:date>
    </item>
    <item>
      <title>Re: Inner Join - whats wrong?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join-whats-wrong/m-p/7968383#M1603487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think REA nailed it down already &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Plus, why are you joining MARA four times and MARC twice? You seem to be joining once per field required, not necessary, once per table is fine.&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/abapdocu_702/en/abapselect_join.htm" target="test_blank"&gt;http://help.sap.com/abapdocu_702/en/abapselect_join.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Thomas Zloch on Jun 20, 2011 10:32 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jun 2011 08:28:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join-whats-wrong/m-p/7968383#M1603487</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2011-06-20T08:28:05Z</dc:date>
    </item>
    <item>
      <title>Re: Inner Join - whats wrong?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join-whats-wrong/m-p/7968384#M1603488</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;&lt;/P&gt;&lt;P&gt;use this query  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;select a~matnr b~werks b~dispo adrnr mtart matkl meins
  INTO CORRESPONDING FIELDS OF TABLE gt_ausgabe
  FROM        mara AS a  INNER  JOIN marc AS b
  ON b~matnr = a~matnr
*  INNER  JOIN marc AS c  ON c~matnr = a~matnr
  INNER JOIN t001w AS d  ON d~werks = b~werks  
  where a~matnr = pr_matnr
    and b~werks = pr_werks
    and c~dispo = pr_dispo
    and adrnr = pr_adrnr
    and mtart = pr_mtart
    and matkl = pr_matkl
    and meins = pr_meins.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why  you are using mara table and marc table multiple times   ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Deepak.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Deepak Dhamat on Jun 20, 2011 10:31 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jun 2011 08:31:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join-whats-wrong/m-p/7968384#M1603488</guid>
      <dc:creator>deepak_dhamat</dc:creator>
      <dc:date>2011-06-20T08:31:13Z</dc:date>
    </item>
    <item>
      <title>Re: Inner Join - whats wrong?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join-whats-wrong/m-p/7968385#M1603489</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mara is 4 times in JOIn as "a", "e", "f" and "g".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One time would be enough! Use only MARA as "a".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Klaius&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jun 2011 08:32:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join-whats-wrong/m-p/7968385#M1603489</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-20T08:32:30Z</dc:date>
    </item>
    <item>
      <title>Re: Inner Join - whats wrong?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join-whats-wrong/m-p/7968386#M1603490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;well, I will try it in other way...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have these values, which i have to unify in one table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;from mara:&lt;/P&gt;&lt;P&gt;matnr, mtart, matkl, meins&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;from marc:&lt;/P&gt;&lt;P&gt;werks, dispo, matnr&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;from makt:&lt;/P&gt;&lt;P&gt;matnr&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;from t001w:&lt;/P&gt;&lt;P&gt;werks, adrnr&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my way is to build a new table, and with inner join to fill the new table.&lt;/P&gt;&lt;P&gt;is the way that I wrote is right? &lt;/P&gt;&lt;P&gt;thank you all for your time!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jun 2011 08:37:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join-whats-wrong/m-p/7968386#M1603490</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-20T08:37:42Z</dc:date>
    </item>
    <item>
      <title>Re: Inner Join - whats wrong?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join-whats-wrong/m-p/7968387#M1603491</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;&lt;/P&gt;&lt;P&gt;There is no need to build new table  , just use above query where &lt;/P&gt;&lt;P&gt;you will get all data   in your internal table  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then use that table  for further processing  .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Deepak.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jun 2011 08:40:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join-whats-wrong/m-p/7968387#M1603491</guid>
      <dc:creator>deepak_dhamat</dc:creator>
      <dc:date>2011-06-20T08:40:59Z</dc:date>
    </item>
    <item>
      <title>Re: Inner Join - whats wrong?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join-whats-wrong/m-p/7968388#M1603492</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;check below statement...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; select a&lt;SUB&gt;matnr b&lt;/SUB&gt;werks b&lt;SUB&gt;dispo c&lt;/SUB&gt;adrnr a&lt;SUB&gt;mtart a&lt;/SUB&gt;matkl a~meins&lt;/P&gt;&lt;P&gt;  INTO CORRESPONDING FIELDS OF TABLE gt_ausgabe&lt;/P&gt;&lt;P&gt;  FROM        mara AS a  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  INNER  JOIN marc AS b &lt;/P&gt;&lt;P&gt;  ON b&lt;SUB&gt;matnr = a&lt;/SUB&gt;matnr&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  INNER JOIN t001w AS c  ON &lt;/P&gt;&lt;P&gt;  c&lt;SUB&gt;werks = b&lt;/SUB&gt;werks  &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  where a~matnr in pr_matnr and&lt;/P&gt;&lt;P&gt;        b~werks in pr_werks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ram.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jun 2011 08:54:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join-whats-wrong/m-p/7968388#M1603492</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-20T08:54:09Z</dc:date>
    </item>
    <item>
      <title>Re: Inner Join - whats wrong?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join-whats-wrong/m-p/7968389#M1603493</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ohh, I think that I get it:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when I write ´´ a&lt;SUB&gt;matnr ´´ I dont really mean to the value ``matnr`` that exist in mara, but this ´´a&lt;/SUB&gt;´´ refer to the whole DB mara/marc...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jun 2011 09:11:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join-whats-wrong/m-p/7968389#M1603493</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-20T09:11:49Z</dc:date>
    </item>
    <item>
      <title>Re: Inner Join - whats wrong?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join-whats-wrong/m-p/7968390#M1603494</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;if you have &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;mara as a&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a~matnr refers to mara-matnr, not to marc-matnr!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Klaus&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Klaus Babl on Jun 20, 2011 11:18 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jun 2011 09:18:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join-whats-wrong/m-p/7968390#M1603494</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-20T09:18:24Z</dc:date>
    </item>
    <item>
      <title>Re: Inner Join - whats wrong?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join-whats-wrong/m-p/7968391#M1603495</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ok thank you. now I understand it better !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jun 2011 09:30:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join-whats-wrong/m-p/7968391#M1603495</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-20T09:30:38Z</dc:date>
    </item>
  </channel>
</rss>

