<?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 join query help in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/join-query-help/m-p/7116678#M1510535</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 am encountering error like the values &lt;STRONG&gt;not getting populated in internal table&lt;/STRONG&gt; though values are in dbtable...so if u can help me out in the join query it will be of gr8 help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT a1~guid a1~posting_date a1~process_type
       b1~sales_org b1~division b1~dis_channel
       INTO CORRESPONDING FIELDS OF TABLE it_ordel
       FROM ( ( crmd_orderadm_h AS a1 INNER JOIN crmd_link AS c1 ON a1~guid  = c1~guid_hi )
                INNER JOIN crmd_orgman AS b1 ON c1~guid_hi = b1~guid )
       WHERE c1~objtype_hi = '05'
       AND   c1~objtype_set = '21'.
    AND   a1~process_type IN so_prst
       AND   a1~posting_date IN so_podt
       AND   b1~division     IN so_div.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnx&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 02 Jul 2010 07:42:43 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-07-02T07:42:43Z</dc:date>
    <item>
      <title>join query help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/join-query-help/m-p/7116678#M1510535</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 am encountering error like the values &lt;STRONG&gt;not getting populated in internal table&lt;/STRONG&gt; though values are in dbtable...so if u can help me out in the join query it will be of gr8 help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT a1~guid a1~posting_date a1~process_type
       b1~sales_org b1~division b1~dis_channel
       INTO CORRESPONDING FIELDS OF TABLE it_ordel
       FROM ( ( crmd_orderadm_h AS a1 INNER JOIN crmd_link AS c1 ON a1~guid  = c1~guid_hi )
                INNER JOIN crmd_orgman AS b1 ON c1~guid_hi = b1~guid )
       WHERE c1~objtype_hi = '05'
       AND   c1~objtype_set = '21'.
    AND   a1~process_type IN so_prst
       AND   a1~posting_date IN so_podt
       AND   b1~division     IN so_div.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnx&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Jul 2010 07:42:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/join-query-help/m-p/7116678#M1510535</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-02T07:42:43Z</dc:date>
    </item>
    <item>
      <title>Re: join query help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/join-query-help/m-p/7116679#M1510536</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For a start, you are best to stop using the a1&lt;SUB&gt;....b1&lt;/SUB&gt;. Use the actual table name instead. It makes the SQL easier to read.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Jul 2010 08:07:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/join-query-help/m-p/7116679#M1510536</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-02T08:07:37Z</dc:date>
    </item>
    <item>
      <title>Re: join query help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/join-query-help/m-p/7116680#M1510537</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT a1~guid a1~posting_date a1~process_type
       b1~sales_org b1~division b1~dis_channel
       INTO CORRESPONDING FIELDS OF TABLE it_ordel
       FROM ( ( crmd_orderadm_h AS a1 INNER JOIN crmd_link AS c1 ON a1~guid  = c1~guid_hi )
                INNER JOIN crmd_orgman AS b1 ON c1~guid_hi = b1~guid )
       WHERE c1~objtype_hi = '05'
       AND   c1~objtype_set = '21'.
    AND   a1~process_type IN so_prst
       AND   a1~posting_date IN so_podt
       AND   b1~division     IN so_div.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT a1~guid a1~posting_date a1~process_type
       b1~sales_org b1~division b1~dis_channel
       INTO CORRESPONDING FIELDS OF TABLE it_ordel
       FROM ( ( crmd_orderadm_h AS a1 INNER JOIN crmd_link AS c1 ON a1~guid  = c1~guid_hi )
                INNER JOIN crmd_orgman AS b1 ON c1~guid_hi = b1~guid )
       WHERE c1~objtype_hi = '05'
       AND   c1~objtype_set = '21'    ".              delete that period its wrong
    AND   a1~process_type IN so_prst
       AND   a1~posting_date IN so_podt
       AND   b1~division     IN so_div.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Jul 2010 08:32:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/join-query-help/m-p/7116680#M1510537</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-02T08:32:32Z</dc:date>
    </item>
    <item>
      <title>Re: join query help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/join-query-help/m-p/7116681#M1510538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey why do you have &lt;U&gt;&lt;EM&gt;&lt;STRONG&gt;.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/U&gt;  after first AND. is it not giving u sysntax error.&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;Uma Dave&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: UmaDave on Jul 2, 2010 11:23 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Jul 2010 09:23:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/join-query-help/m-p/7116681#M1510538</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-02T09:23:05Z</dc:date>
    </item>
  </channel>
</rss>

