<?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 syntax error! in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/3683354#M886927</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 got the synatx error for the following code!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select&lt;/P&gt;&lt;P&gt;           vbak~vbeln&lt;/P&gt;&lt;P&gt;           vbak~submi&lt;/P&gt;&lt;P&gt;           vbak~bstdk&lt;/P&gt;&lt;P&gt;           vbak~bstnk&lt;/P&gt;&lt;P&gt;           vbap~vgpos&lt;/P&gt;&lt;P&gt;    from  vbak inner join vbap on vbak&lt;SUB&gt;vbeln = vbap&lt;/SUB&gt;vbeln&lt;/P&gt;&lt;P&gt;    into table lt_vbak&lt;/P&gt;&lt;P&gt;    for all entries in lt_lips&lt;/P&gt;&lt;P&gt;    where  vbeln = lt_lips-vgbel&lt;/P&gt;&lt;P&gt;    and    vgpos = lt_lips-vgpos.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and i had declared internal table lt_vbak with the five fields as i had mentioned!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;whats wrong with this code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 11 Apr 2008 06:26:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-11T06:26:36Z</dc:date>
    <item>
      <title>syntax error!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/3683354#M886927</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 got the synatx error for the following code!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select&lt;/P&gt;&lt;P&gt;           vbak~vbeln&lt;/P&gt;&lt;P&gt;           vbak~submi&lt;/P&gt;&lt;P&gt;           vbak~bstdk&lt;/P&gt;&lt;P&gt;           vbak~bstnk&lt;/P&gt;&lt;P&gt;           vbap~vgpos&lt;/P&gt;&lt;P&gt;    from  vbak inner join vbap on vbak&lt;SUB&gt;vbeln = vbap&lt;/SUB&gt;vbeln&lt;/P&gt;&lt;P&gt;    into table lt_vbak&lt;/P&gt;&lt;P&gt;    for all entries in lt_lips&lt;/P&gt;&lt;P&gt;    where  vbeln = lt_lips-vgbel&lt;/P&gt;&lt;P&gt;    and    vgpos = lt_lips-vgpos.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and i had declared internal table lt_vbak with the five fields as i had mentioned!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;whats wrong with this code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Apr 2008 06:26:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/3683354#M886927</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-11T06:26:36Z</dc:date>
    </item>
    <item>
      <title>Re: syntax error!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/3683355#M886928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What did the syntax error message say?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Apr 2008 06:32:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/3683355#M886928</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2008-04-11T06:32:05Z</dc:date>
    </item>
    <item>
      <title>Re: syntax error!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/3683356#M886929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When u use inner joins u need to specify the table in the where condition if the field exists in the both the tables. So put like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select&lt;/P&gt;&lt;P&gt;vbak~vbeln&lt;/P&gt;&lt;P&gt;vbak~submi&lt;/P&gt;&lt;P&gt;vbak~bstdk&lt;/P&gt;&lt;P&gt;vbak~bstnk&lt;/P&gt;&lt;P&gt;vbap~vgpos&lt;/P&gt;&lt;P&gt;from vbak inner join vbap on vbak&lt;SUB&gt;vbeln = vbap&lt;/SUB&gt;vbeln&lt;/P&gt;&lt;P&gt;into table lt_vbak&lt;/P&gt;&lt;P&gt;for all entries in lt_lips&lt;/P&gt;&lt;P&gt;where vbak~vbeln = lt_lips-vgbel&lt;/P&gt;&lt;P&gt;and vbap~vgpos = lt_lips-vgpos.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Anon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Apr 2008 06:34:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/3683356#M886929</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-11T06:34:02Z</dc:date>
    </item>
    <item>
      <title>Re: syntax error!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/3683357#M886930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;when you use inner join betweeen 2 tables, then in the where condition you need to specify from which table you want to retrieve the fields..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Apr 2008 06:42:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/3683357#M886930</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-11T06:42:21Z</dc:date>
    </item>
  </channel>
</rss>

