<?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: Filter join table . in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/filter-join-table/m-p/5215530#M1206242</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; It should be &lt;/P&gt;&lt;/CODE&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;CODE&gt;where ekko-bukrs eq p_bukrs.&lt;/CODE&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry, Riki&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think that AVI using &lt;STRONG&gt;EKKO-BUKRS&lt;/STRONG&gt; as a select option and for select option can't use &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;where ekko-bukrs eq p_bukrs." Mean you can't write EQ P_BUKRS&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you are thinking that there was no Extension Button and user can only give one Value and Interval is also not enable then you must use like following.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;where ekko-bukrs eq p_bukrs-low.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and if you want to get the high Value mean Interval is on than.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;where ekko-bukrs eq p_bukrs-high.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope Will Help,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Kind Regards,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Feb 2009 16:23:09 GMT</pubDate>
    <dc:creator>faisalatsap</dc:creator>
    <dc:date>2009-02-19T16:23:09Z</dc:date>
    <item>
      <title>Filter join table .</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/filter-join-table/m-p/5215527#M1206239</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello experts , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my query , i have 6 tables ,  i display this parameter on selection screen : p_bukrs . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the program that was generate ,  i don't have filter in join with this parameter . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can i to filter my join tables with this parameter , after this statment : "WHERE EKKO-BUKRS IN P_BUKRS ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Avi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Feb 2009 15:44:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/filter-join-table/m-p/5215527#M1206239</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-19T15:44:55Z</dc:date>
    </item>
    <item>
      <title>Re: Filter join table .</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/filter-join-table/m-p/5215528#M1206240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It should be &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;where ekko-bukrs eq p_bukrs.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Feb 2009 15:50:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/filter-join-table/m-p/5215528#M1206240</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-19T15:50:24Z</dc:date>
    </item>
    <item>
      <title>Re: Filter join table .</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/filter-join-table/m-p/5215529#M1206241</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;Please have a look at the following Sample code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT afko~aufnr afpo~psmng afpo~wemng INTO CORRESPONDING FIELDS OF TABLE itab_orders
    FROM afko
    INNER JOIN afpo ON ( afko~aufnr = afpo~aufnr )
    INNER JOIN mvke ON ( afpo~matnr = mvke~matnr AND mvke~vkorg = '1000' AND mvke~vtweg = '20' )
    WHERE afko~aufnr IN aufnrs. " You Can Write like this&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Feb 2009 16:07:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/filter-join-table/m-p/5215529#M1206241</guid>
      <dc:creator>faisalatsap</dc:creator>
      <dc:date>2009-02-19T16:07:13Z</dc:date>
    </item>
    <item>
      <title>Re: Filter join table .</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/filter-join-table/m-p/5215530#M1206242</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; It should be &lt;/P&gt;&lt;/CODE&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;CODE&gt;where ekko-bukrs eq p_bukrs.&lt;/CODE&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry, Riki&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think that AVI using &lt;STRONG&gt;EKKO-BUKRS&lt;/STRONG&gt; as a select option and for select option can't use &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;where ekko-bukrs eq p_bukrs." Mean you can't write EQ P_BUKRS&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you are thinking that there was no Extension Button and user can only give one Value and Interval is also not enable then you must use like following.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;where ekko-bukrs eq p_bukrs-low.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and if you want to get the high Value mean Interval is on than.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;where ekko-bukrs eq p_bukrs-high.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope Will Help,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Kind Regards,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Feb 2009 16:23:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/filter-join-table/m-p/5215530#M1206242</guid>
      <dc:creator>faisalatsap</dc:creator>
      <dc:date>2009-02-19T16:23:09Z</dc:date>
    </item>
    <item>
      <title>Re: Filter join table .</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/filter-join-table/m-p/5215531#M1206243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Hello experts , &lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; In my query , i have 6 tables ,  i display this parameter on selection screen : p_bukrs . &lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; In the program that was generate ,  i don't have filter in join with this parameter . &lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; How can i to filter my join tables with this parameter , after this statment : "WHERE EKKO-BUKRS IN P_BUKRS ? &lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Thanks for your help. &lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Avi.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks faisal, i guess he said he is using a parameter in his first line.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Feb 2009 16:30:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/filter-join-table/m-p/5215531#M1206243</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-19T16:30:51Z</dc:date>
    </item>
  </channel>
</rss>

