<?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 table join in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-join/m-p/1702141#M307705</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;  I have a requirement in which I have 6 inputs project no, wbs no, cost center no, plant no, purchasing group, po creation date. I need to bring the po details as the report. I have coded a select query joining all the 4 tables involved in the input as below.Is it correct ? will I get the desired output for any combinations of input if i join? because all the inputs are optional.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT a~ebeln&lt;/P&gt;&lt;P&gt;           a~bsart&lt;/P&gt;&lt;P&gt;           a~lifnr&lt;/P&gt;&lt;P&gt;           a~ekgrp&lt;/P&gt;&lt;P&gt;           a~bedat&lt;/P&gt;&lt;P&gt;           a~waers&lt;/P&gt;&lt;P&gt;           b~werks&lt;/P&gt;&lt;P&gt;           c~ps_psp_pnr&lt;/P&gt;&lt;P&gt;           c~kostl&lt;/P&gt;&lt;P&gt;           d~psphi&lt;/P&gt;&lt;P&gt;    INTO CORRESPONDING FIELDS OF TABLE t_po_hdr&lt;/P&gt;&lt;P&gt;    FROM ekko as a&lt;/P&gt;&lt;P&gt;    JOIN ekpo as b ON a&lt;SUB&gt;ebeln = b&lt;/SUB&gt;ebeln&lt;/P&gt;&lt;P&gt;    JOIN ekkn as c ON a&lt;SUB&gt;ebeln = c&lt;/SUB&gt;ebeln&lt;/P&gt;&lt;P&gt;    JOIN prps as d ON c&lt;SUB&gt;ps_psp_pnr = d&lt;/SUB&gt;pspnr&lt;/P&gt;&lt;P&gt;    WHERE a~bsart IN ('PO','EBP')&lt;/P&gt;&lt;P&gt;    AND   a~ekgrp IN s_pg_no&lt;/P&gt;&lt;P&gt;    AND   a~bedat IN s_po_dt&lt;/P&gt;&lt;P&gt;    AND   b~werks IN s_pl_no&lt;/P&gt;&lt;P&gt;    AND   c~ps_psp_pnr IN s_wbs_no&lt;/P&gt;&lt;P&gt;    AND   c~kostl IN s_cc_no&lt;/P&gt;&lt;P&gt;    AND   d~psphi IN s_proj.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 10 Nov 2006 10:01:01 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-11-10T10:01:01Z</dc:date>
    <item>
      <title>table join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-join/m-p/1702141#M307705</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;  I have a requirement in which I have 6 inputs project no, wbs no, cost center no, plant no, purchasing group, po creation date. I need to bring the po details as the report. I have coded a select query joining all the 4 tables involved in the input as below.Is it correct ? will I get the desired output for any combinations of input if i join? because all the inputs are optional.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT a~ebeln&lt;/P&gt;&lt;P&gt;           a~bsart&lt;/P&gt;&lt;P&gt;           a~lifnr&lt;/P&gt;&lt;P&gt;           a~ekgrp&lt;/P&gt;&lt;P&gt;           a~bedat&lt;/P&gt;&lt;P&gt;           a~waers&lt;/P&gt;&lt;P&gt;           b~werks&lt;/P&gt;&lt;P&gt;           c~ps_psp_pnr&lt;/P&gt;&lt;P&gt;           c~kostl&lt;/P&gt;&lt;P&gt;           d~psphi&lt;/P&gt;&lt;P&gt;    INTO CORRESPONDING FIELDS OF TABLE t_po_hdr&lt;/P&gt;&lt;P&gt;    FROM ekko as a&lt;/P&gt;&lt;P&gt;    JOIN ekpo as b ON a&lt;SUB&gt;ebeln = b&lt;/SUB&gt;ebeln&lt;/P&gt;&lt;P&gt;    JOIN ekkn as c ON a&lt;SUB&gt;ebeln = c&lt;/SUB&gt;ebeln&lt;/P&gt;&lt;P&gt;    JOIN prps as d ON c&lt;SUB&gt;ps_psp_pnr = d&lt;/SUB&gt;pspnr&lt;/P&gt;&lt;P&gt;    WHERE a~bsart IN ('PO','EBP')&lt;/P&gt;&lt;P&gt;    AND   a~ekgrp IN s_pg_no&lt;/P&gt;&lt;P&gt;    AND   a~bedat IN s_po_dt&lt;/P&gt;&lt;P&gt;    AND   b~werks IN s_pl_no&lt;/P&gt;&lt;P&gt;    AND   c~ps_psp_pnr IN s_wbs_no&lt;/P&gt;&lt;P&gt;    AND   c~kostl IN s_cc_no&lt;/P&gt;&lt;P&gt;    AND   d~psphi IN s_proj.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Nov 2006 10:01:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-join/m-p/1702141#M307705</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-10T10:01:01Z</dc:date>
    </item>
    <item>
      <title>Re: table join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-join/m-p/1702142#M307706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you would be able to get the required data but it would be advisable to separate it into two SELECTs as I feel it might lead to performance issues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can look at joining ekko, ekpo and ekkn in one select and using for all entries get the data from prps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anurag&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Nov 2006 10:09:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-join/m-p/1702142#M307706</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-10T10:09:26Z</dc:date>
    </item>
    <item>
      <title>Re: table join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-join/m-p/1702143#M307707</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;U will get the ouput. But it is not suggested to have a join on four tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Better u seperate the select statement in two and then take the data into one internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT a~ebeln&lt;/P&gt;&lt;P&gt;a~bsart&lt;/P&gt;&lt;P&gt;a~lifnr&lt;/P&gt;&lt;P&gt;a~ekgrp&lt;/P&gt;&lt;P&gt;a~bedat&lt;/P&gt;&lt;P&gt;a~waers&lt;/P&gt;&lt;P&gt;b~werks&lt;/P&gt;&lt;P&gt;INTO CORRESPONDING FIELDS OF TABLE t_po_hdr&lt;/P&gt;&lt;P&gt;FROM ekko as a&lt;/P&gt;&lt;P&gt;JOIN ekpo as b ON a&lt;SUB&gt;ebeln = b&lt;/SUB&gt;ebeln&lt;/P&gt;&lt;P&gt;WHERE a~bsart IN ('PO','EBP')&lt;/P&gt;&lt;P&gt;AND a~ekgrp IN s_pg_no&lt;/P&gt;&lt;P&gt;AND a~bedat IN s_po_dt&lt;/P&gt;&lt;P&gt;AND b~werks IN s_pl_no.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT c~ps_psp_pnr&lt;/P&gt;&lt;P&gt;c~kostl&lt;/P&gt;&lt;P&gt;d~psphi&lt;/P&gt;&lt;P&gt;INTO CORRESPONDING FIELDS OF TABLE t_po_hdr1&lt;/P&gt;&lt;P&gt;FROM ekkn as c &lt;/P&gt;&lt;P&gt;JOIN prps as d ON c&lt;SUB&gt;ps_psp_pnr = d&lt;/SUB&gt;pspnr&lt;/P&gt;&lt;P&gt;WHERE c~ps_psp_pnr IN s_wbs_no&lt;/P&gt;&lt;P&gt;AND c~kostl IN s_cc_no&lt;/P&gt;&lt;P&gt;AND d~psphi IN s_proj.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Vibha &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Please mark all the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Nov 2006 10:15:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-join/m-p/1702143#M307707</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-10T10:15:53Z</dc:date>
    </item>
    <item>
      <title>Re: table join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-join/m-p/1702144#M307708</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;I suggest u to use SELECT with FOR ALL ENTRIES option instead of JOIN if it is not mandatory for performance wise to be gud&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select ebeln bsart lifnr ekgrp bedat waers&lt;/P&gt;&lt;P&gt;from ekko&lt;/P&gt;&lt;P&gt;into table itab1 where bsart in ('PO','EBP')&lt;/P&gt;&lt;P&gt;and ekgrp IN s_pg_no&lt;/P&gt;&lt;P&gt;and bedat IN s_po_dt&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select ebeln werks&lt;/P&gt;&lt;P&gt;from ekpo &lt;/P&gt;&lt;P&gt;into table itab2&lt;/P&gt;&lt;P&gt;for all entries in itab1&lt;/P&gt;&lt;P&gt;where ebeln = itab1-ebeln&lt;/P&gt;&lt;P&gt;and werks IN s_pl_no.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select ebeln ps_psp_pnr kostl&lt;/P&gt;&lt;P&gt;from ekkn &lt;/P&gt;&lt;P&gt;into table itab3&lt;/P&gt;&lt;P&gt;for all entries in itab1&lt;/P&gt;&lt;P&gt;where ebeln = itab1-ebeln &lt;/P&gt;&lt;P&gt;and ps_psp_pnr IN s_wbs_no&lt;/P&gt;&lt;P&gt;and kostl IN s_cc_no.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select ps_psp_pnr psphi&lt;/P&gt;&lt;P&gt;from prps&lt;/P&gt;&lt;P&gt;into table itab4&lt;/P&gt;&lt;P&gt;for all entries in itab3&lt;/P&gt;&lt;P&gt;where ps_psp_pnr = itab3-ps_psp_pnr&lt;/P&gt;&lt;P&gt;and psphi IN s_proj. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check if u have missed any key fields in where clause&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do assign points if it helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        sowjanya suggula&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Nov 2006 10:40:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-join/m-p/1702144#M307708</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-10T10:40:02Z</dc:date>
    </item>
    <item>
      <title>Re: table join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-join/m-p/1702145#M307709</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;For better performance pl ignore to join more than two tables . U can select all necessary data by joining EKPO &amp;amp; EKKO tables into  one internal table say itab1.  Then If the content of  itab1 is not initial then select rest of the data using FOR ALL ENTRIES IN ITAB1 . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If sounds good pl reward,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Nov 2006 11:14:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-join/m-p/1702145#M307709</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-10T11:14:27Z</dc:date>
    </item>
    <item>
      <title>Re: table join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-join/m-p/1702146#M307710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;go through this join statement which ll give you how to join more than 3 tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT c~matnr                 "Material no.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          c~werks                 "Plant&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          c~lvorm                 "Flag Mat.-Del. at Plant level&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          c~bwtty                 "Valuation category&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          c~kzkri                 "Indicator: Gritical part&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          c~dispr                 "Material: MRP profile&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;ADD  Mike Krepcik  TD 3363  02/01/05  D10K913640&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          c~dismm                 "MRP type&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;END                TD 3363  02/01/05  D10K913640&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          c~plifz                 "Planned delivery time in days&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          c~perkz                 "Period indicator&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          c~minbe                 "Reorder point&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          c~mabst                 "Maximum stock level&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          c~umlmc                 "Stock in Tran. (plant to plant)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          a~mtart                 "Material type&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          a~meins                 "Base unit of measure&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          k~spras                 "Language key&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          k~maktx                 "Material description&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          w~bwkey                 "Valuation area&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          w~bwtar                 "Valuation type&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          w~lbkum                 "Total value stock&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          w~salk3                 "Value of total valuated stock&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          w~verpr                 "Moving ave. price/periodic unit&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          w~peinh                 "Price unit  ADD  D10K913194&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     FROM marc AS c LEFT OUTER JOIN mara AS a&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          ON   c&lt;SUB&gt;matnr = a&lt;/SUB&gt;matnr&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;                    LEFT OUTER JOIN makt AS k&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          ON   c&lt;SUB&gt;matnr = k&lt;/SUB&gt;matnr&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;                    LEFT OUTER JOIN mbew AS w&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          ON   c&lt;SUB&gt;matnr = w&lt;/SUB&gt;matnr  AND&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;               c&lt;SUB&gt;werks = w&lt;/SUB&gt;bwkey&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     INTO TABLE i_splus&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       WHERE c~matnr IN s_matnr      "Material no.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       AND   c~werks IN s_werks.     "Plant      &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Nov 2006 11:50:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-join/m-p/1702146#M307710</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-10T11:50:01Z</dc:date>
    </item>
    <item>
      <title>Re: table join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-join/m-p/1702147#M307711</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;  U can split into 2 select statments and use for all enteris.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Justin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Nov 2006 11:55:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-join/m-p/1702147#M307711</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-10T11:55:52Z</dc:date>
    </item>
  </channel>
</rss>

