<?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: Regarding Joins in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-joins/m-p/2108484#M440326</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your replay.&lt;/P&gt;&lt;P&gt;i know that whenever i use for all statement instead of join.&lt;/P&gt;&lt;P&gt;but i cant change join statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is this query is correct or not......just you can find that query&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 05 Apr 2007 16:30:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-05T16:30:58Z</dc:date>
    <item>
      <title>Regarding Joins</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-joins/m-p/2108481#M440323</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;Please check this code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select afko~aufnr &lt;/P&gt;&lt;P&gt;         afvc~vornr                                         &lt;/P&gt;&lt;P&gt;         afvc~steus &lt;/P&gt;&lt;P&gt;         afvv~arbei &lt;/P&gt;&lt;P&gt;         afvc~anzzl                                         &lt;/P&gt;&lt;P&gt;         afvv~ismnw &lt;/P&gt;&lt;P&gt;         afvv~ofmnw &lt;/P&gt;&lt;P&gt;         crhd~arbpl &lt;/P&gt;&lt;P&gt;         afvv~fssbd                                        &lt;/P&gt;&lt;P&gt;         afvv~fssbz                                         &lt;/P&gt;&lt;P&gt;         afvv~fseld                                         &lt;/P&gt;&lt;P&gt;         afvv~fselz                                         &lt;/P&gt;&lt;P&gt;         mhio~abnum &lt;/P&gt;&lt;P&gt;         mhis~nplda &lt;/P&gt;&lt;P&gt;     into corresponding fileds of table t_opr &lt;/P&gt;&lt;P&gt;  from afvv  join afvc on (afvc&lt;SUB&gt;aufpl = afvv&lt;/SUB&gt;aufpl and  afvc&lt;SUB&gt;aplzl = afvv&lt;/SUB&gt;aplzl)&lt;/P&gt;&lt;P&gt;            join crhd on afvc&lt;SUB&gt;arbid = crhd&lt;/SUB&gt;objid&lt;/P&gt;&lt;P&gt;            join afko on afko&lt;SUB&gt;aufpl = afvc&lt;/SUB&gt;aufpl&lt;/P&gt;&lt;P&gt;            join mhio on  mhio&lt;SUB&gt;aufnr = afko&lt;/SUB&gt;aufnr&lt;/P&gt;&lt;P&gt;            join mhis on ( mhis&lt;SUB&gt;abnum = mhio&lt;/SUB&gt;abnum and mhis&lt;SUB&gt;warpl = mhio&lt;/SUB&gt;warpl ).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Apr 2007 15:53:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-joins/m-p/2108481#M440323</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-05T15:53:08Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Joins</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-joins/m-p/2108482#M440324</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; Avoid using join statement use FOR ALL ENTRIES instead of joins &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; In the given code specify some of the related conditions in where condition too..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select afko~aufnr&lt;/P&gt;&lt;P&gt;afvc~vornr&lt;/P&gt;&lt;P&gt;afvc~steus&lt;/P&gt;&lt;P&gt;afvv~arbei&lt;/P&gt;&lt;P&gt;afvc~anzzl&lt;/P&gt;&lt;P&gt;afvv~ismnw&lt;/P&gt;&lt;P&gt;afvv~ofmnw&lt;/P&gt;&lt;P&gt;crhd~arbpl&lt;/P&gt;&lt;P&gt;afvv~fssbd&lt;/P&gt;&lt;P&gt;afvv~fssbz&lt;/P&gt;&lt;P&gt;afvv~fseld&lt;/P&gt;&lt;P&gt;afvv~fselz&lt;/P&gt;&lt;P&gt;mhio~abnum&lt;/P&gt;&lt;P&gt;mhis~nplda&lt;/P&gt;&lt;P&gt;into corresponding fileds of table t_opr&lt;/P&gt;&lt;P&gt;from afvv join afvc on (afvc&lt;SUB&gt;aufpl = afvv&lt;/SUB&gt;aufpl and afvc&lt;SUB&gt;aplzl = afvv&lt;/SUB&gt;aplzl)&lt;/P&gt;&lt;P&gt;join crhd on afvc&lt;SUB&gt;arbid = crhd&lt;/SUB&gt;objid&lt;/P&gt;&lt;P&gt;join afko on afko&lt;SUB&gt;aufpl = afvc&lt;/SUB&gt;aufpl&lt;/P&gt;&lt;P&gt;join mhio on mhio&lt;SUB&gt;aufnr = afko&lt;/SUB&gt;aufnr&lt;/P&gt;&lt;P&gt;join mhis on ( mhis&lt;SUB&gt;abnum = mhio&lt;/SUB&gt;abnum and mhis&lt;SUB&gt;warpl = mhio&lt;/SUB&gt;warpl )&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;where &amp;lt;Conditions&amp;gt;.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Apr 2007 16:01:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-joins/m-p/2108482#M440324</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-05T16:01:39Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Joins</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-joins/m-p/2108483#M440325</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;  Dont use joins instead use for all entries as joins will raise performance issues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Haritha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Apr 2007 16:10:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-joins/m-p/2108483#M440325</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-05T16:10:33Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Joins</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-joins/m-p/2108484#M440326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your replay.&lt;/P&gt;&lt;P&gt;i know that whenever i use for all statement instead of join.&lt;/P&gt;&lt;P&gt;but i cant change join statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is this query is correct or not......just you can find that query&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Apr 2007 16:30:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-joins/m-p/2108484#M440326</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-05T16:30:58Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Joins</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-joins/m-p/2108485#M440327</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this is syntactically correct but u wont get anyvalue in the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Specify ur where condition to fetch the values from table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select afko~aufnr&lt;/P&gt;&lt;P&gt;afvc~vornr&lt;/P&gt;&lt;P&gt;afvc~steus&lt;/P&gt;&lt;P&gt;afvv~arbei&lt;/P&gt;&lt;P&gt;afvc~anzzl&lt;/P&gt;&lt;P&gt;afvv~ismnw&lt;/P&gt;&lt;P&gt;afvv~ofmnw&lt;/P&gt;&lt;P&gt;crhd~arbpl&lt;/P&gt;&lt;P&gt;afvv~fssbd&lt;/P&gt;&lt;P&gt;afvv~fssbz&lt;/P&gt;&lt;P&gt;afvv~fseld&lt;/P&gt;&lt;P&gt;afvv~fselz&lt;/P&gt;&lt;P&gt;mhio~abnum&lt;/P&gt;&lt;P&gt;mhis~nplda&lt;/P&gt;&lt;P&gt;into corresponding fields of table t_opr&lt;/P&gt;&lt;P&gt;from afvv join afvc on afvc&lt;SUB&gt;aufpl = afvv&lt;/SUB&gt;aufpl and afvc&lt;SUB&gt;aplzl = afvv&lt;/SUB&gt;aplzl&lt;/P&gt;&lt;P&gt;join crhd on afvc&lt;SUB&gt;arbid = crhd&lt;/SUB&gt;objid&lt;/P&gt;&lt;P&gt;join afko on afko&lt;SUB&gt;aufpl = afvc&lt;/SUB&gt;aufpl&lt;/P&gt;&lt;P&gt;join mhio on mhio&lt;SUB&gt;aufnr = afko&lt;/SUB&gt;aufnr&lt;/P&gt;&lt;P&gt;join mhis on  mhis&lt;SUB&gt;abnum = mhio&lt;/SUB&gt;abnum and mhis&lt;SUB&gt;warpl = mhio&lt;/SUB&gt;warpl.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Apr 2007 16:52:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-joins/m-p/2108485#M440327</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-05T16:52:35Z</dc:date>
    </item>
  </channel>
</rss>

