<?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: Error in join query in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-join-query/m-p/1016607#M80180</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually the previous answer is the correct one syntactically. If you add spaces after the brackets you will get a syntax error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;correct:&lt;/P&gt;&lt;P&gt;INTO (XSTEUS, XKTSCH, XLTXA1)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 19 Aug 2005 08:15:28 GMT</pubDate>
    <dc:creator>former_member86837</dc:creator>
    <dc:date>2005-08-19T08:15:28Z</dc:date>
    <item>
      <title>Error in join query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-join-query/m-p/1016603#M80176</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I get error in following querY sAying "Unable to interpret XKTSCH".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;report ZTF1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables: AFKO, AFVC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: XSTEUS LIKE AFVC-STEUS,&lt;/P&gt;&lt;P&gt;      XKTSCH LIKE AFVC-KTSCH,&lt;/P&gt;&lt;P&gt;      XLTXA1 LIKE AFVC-LTXA1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT SINGLE AFVC&lt;SUB&gt;STEUS AFVC&lt;/SUB&gt;KTSCH AFVC~LTXA1 FROM&lt;/P&gt;&lt;P&gt;  AFVC INNER JOIN AFKO&lt;/P&gt;&lt;P&gt;    ON AFVC&lt;SUB&gt;AUFPL = AFKO&lt;/SUB&gt;AUFPL  &lt;/P&gt;&lt;P&gt;     INTO XSTEUS XKTSCH XLTXA1&lt;/P&gt;&lt;P&gt;      where AFKO&lt;SUB&gt;AUFNR = '007200000059' and AFVC&lt;/SUB&gt;VORNR = '0010'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE:/ XSTEUS.&lt;/P&gt;&lt;P&gt;WRITE:/ XKTSCH.&lt;/P&gt;&lt;P&gt;WRITE:/ XLTXA1.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Aug 2005 16:22:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-join-query/m-p/1016603#M80176</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-18T16:22:19Z</dc:date>
    </item>
    <item>
      <title>Re: Error in join query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-join-query/m-p/1016604#M80177</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi tushar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just write your varaible in bracket as:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.. INTO ( XSTEUS XKTSCH XLTXA1 ) where ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ashish Jain&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Aug 2005 16:25:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-join-query/m-p/1016604#M80177</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-18T16:25:17Z</dc:date>
    </item>
    <item>
      <title>Re: Error in join query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-join-query/m-p/1016605#M80178</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;try with&lt;/P&gt;&lt;P&gt;INTO (XSTEUS, XKTSCH, XLTXA1)&lt;/P&gt;&lt;P&gt;Best regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Aug 2005 16:25:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-join-query/m-p/1016605#M80178</guid>
      <dc:creator>former_member182371</dc:creator>
      <dc:date>2005-08-18T16:25:45Z</dc:date>
    </item>
    <item>
      <title>Re: Error in join query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-join-query/m-p/1016606#M80179</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, you need to put space after '{' and '}'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;..... INTO ( XSTEUS XKTSCH XLTXA1 ) where....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ashish Jain&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Aug 2005 16:27:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-join-query/m-p/1016606#M80179</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-18T16:27:26Z</dc:date>
    </item>
    <item>
      <title>Re: Error in join query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-join-query/m-p/1016607#M80180</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually the previous answer is the correct one syntactically. If you add spaces after the brackets you will get a syntax error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;correct:&lt;/P&gt;&lt;P&gt;INTO (XSTEUS, XKTSCH, XLTXA1)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Aug 2005 08:15:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-join-query/m-p/1016607#M80180</guid>
      <dc:creator>former_member86837</dc:creator>
      <dc:date>2005-08-19T08:15:28Z</dc:date>
    </item>
  </channel>
</rss>

