<?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 Inner Join in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join/m-p/2741299#M636918</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;&lt;/P&gt;&lt;P&gt;I want to create inner join between &amp;lt;b&amp;gt;KONV&amp;lt;/b&amp;gt; table (Condition Transaction Data) and &amp;lt;b&amp;gt;VBAK / VBRK / VBRP&amp;lt;/b&amp;gt; (with anyone)...but not possible becuase, &amp;lt;b&amp;gt;KONV&amp;lt;/b&amp;gt; is the cluster table.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wat can i do.....because i want to take field &amp;lt;b&amp;gt;KONV-KSCHL&amp;lt;/b&amp;gt; (CONDITION TYPE) from this table, if u have any other idea or suggest me take another table, in which join will possible.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Anil Kumar&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 05 Sep 2007 03:28:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-05T03:28:06Z</dc:date>
    <item>
      <title>Inner Join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join/m-p/2741299#M636918</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;&lt;/P&gt;&lt;P&gt;I want to create inner join between &amp;lt;b&amp;gt;KONV&amp;lt;/b&amp;gt; table (Condition Transaction Data) and &amp;lt;b&amp;gt;VBAK / VBRK / VBRP&amp;lt;/b&amp;gt; (with anyone)...but not possible becuase, &amp;lt;b&amp;gt;KONV&amp;lt;/b&amp;gt; is the cluster table.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wat can i do.....because i want to take field &amp;lt;b&amp;gt;KONV-KSCHL&amp;lt;/b&amp;gt; (CONDITION TYPE) from this table, if u have any other idea or suggest me take another table, in which join will possible.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Anil Kumar&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Sep 2007 03:28:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join/m-p/2741299#M636918</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-05T03:28:06Z</dc:date>
    </item>
    <item>
      <title>Re: Inner Join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join/m-p/2741300#M636919</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the table VBAK has the field KNUMV - Number of the document condition&lt;/P&gt;&lt;P&gt;from this VBAK-KNUMV get the record from KONV table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Join is not suggested on KONV with VBAK / VBRK tables because KONV is a cluster table. Instead you can use FOR ALL ENTRIES of IT_VBAK&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;from the KNUMV you can get the Condition Type KSCHL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have answered the same in your previous post.&lt;/P&gt;&lt;P&gt;Kindly close this thread.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gopi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Sep 2007 03:31:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join/m-p/2741300#M636919</guid>
      <dc:creator>gopi_narendra</dc:creator>
      <dc:date>2007-09-05T03:31:01Z</dc:date>
    </item>
    <item>
      <title>Re: Inner Join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join/m-p/2741301#M636920</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use FOR ALL ENTRIES..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fetch all the Billing document numbers from VBRK and then for them fetch KSCHL..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT KSCHL&lt;/P&gt;&lt;P&gt;FROM KONV&lt;/P&gt;&lt;P&gt;INTO CORRESPONDING FIELDS OF tab&lt;/P&gt;&lt;P&gt;FOR ALL ENTRIES IN TAB&lt;/P&gt;&lt;P&gt;WHERE vbeln EQ tab-vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But, for billing data i prefer to use FM:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RV_BILLING_PRINT_VIEW&lt;/P&gt;&lt;P&gt;RV_PRICE_PRINT_ITEM&lt;/P&gt;&lt;P&gt;RV_PRICE_PRINT_HEAD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Best Regards,&lt;/P&gt;&lt;P&gt;Vikas Bittera.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Sep 2007 03:35:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join/m-p/2741301#M636920</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-05T03:35:05Z</dc:date>
    </item>
    <item>
      <title>Re: Inner Join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join/m-p/2741302#M636921</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;First retrieve KNUMV from VBAK or VBRK table and keep in ITAB1. Pass this KNUMV field value to KONV table using FOR ALL ENTRIES of ITAB1 and get KSCHL and keep in ITAB2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have already answered this question, to ur earlier question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Sathyaa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Sep 2007 05:23:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join/m-p/2741302#M636921</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-05T05:23:08Z</dc:date>
    </item>
    <item>
      <title>Re: Inner Join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join/m-p/2741303#M636922</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You Can Join &amp;lt;b&amp;gt;KONP&amp;lt;/b&amp;gt; table with VBRP with &amp;lt;b&amp;gt;KNUMH&amp;lt;/b&amp;gt; field to get KSCHL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if useful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Amit Singla.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Sep 2007 12:04:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inner-join/m-p/2741303#M636922</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-25T12:04:05Z</dc:date>
    </item>
  </channel>
</rss>

