<?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 SELECT STATEMENT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-select-statement/m-p/1814586#M348948</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ravi,&lt;/P&gt;&lt;P&gt;   use need to use the table name as qualifier, here is the corrected code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tablEs: sbook.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: count type i,&lt;/P&gt;&lt;P&gt;      sum_weight type i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select carrid connid count( * ) SUM( LUGGWEIGHT )&lt;/P&gt;&lt;P&gt;FROM SBOOK&lt;/P&gt;&lt;P&gt;INTO (SBOOK-CARRID, SBOOK-CONNID, COUNT, SUM_WEIGHT)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHERE CARRID = 'LH'&lt;/P&gt;&lt;P&gt;GROUP BY CARRID CONNID&lt;/P&gt;&lt;P&gt;HAVING SUM( LUGGWEIGHT ) &amp;gt; 25.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE:/ SBOOK-CARRID, SBOOK-CONNID, COUNT, SUM_WEIGHT.&lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Srini&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 04 Jan 2007 12:41:20 GMT</pubDate>
    <dc:creator>srinivas_akiri</dc:creator>
    <dc:date>2007-01-04T12:41:20Z</dc:date>
    <item>
      <title>REGARDING SELECT STATEMENT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-select-statement/m-p/1814584#M348946</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI champions,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                    i m facing problem in this select statement........its giving error...plz help me.&lt;/P&gt;&lt;P&gt;here im giving the complete scenario....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZW.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tablEs:sbook.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select carrid connid count( * ) SUM( LUGGWEIGHT ) INTO     (CARRID,CONNID,COUNT,SUM_WEIGHT) FROM SBOOK WHERE CARRID = 'LH' GROUP BY CARRID CONNID HAVING SUM( LUGGWEIGHT ) &amp;gt; 25.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE:/ CARRID,CONNID,COUNT,SUM_WEIGHT.&lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jan 2007 12:00:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-select-statement/m-p/1814584#M348946</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-04T12:00:19Z</dc:date>
    </item>
    <item>
      <title>Re: REGARDING SELECT STATEMENT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-select-statement/m-p/1814585#M348947</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Ravi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you also please give the text of the error ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Avisesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jan 2007 12:21:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-select-statement/m-p/1814585#M348947</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-04T12:21:45Z</dc:date>
    </item>
    <item>
      <title>Re: REGARDING SELECT STATEMENT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-select-statement/m-p/1814586#M348948</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ravi,&lt;/P&gt;&lt;P&gt;   use need to use the table name as qualifier, here is the corrected code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tablEs: sbook.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: count type i,&lt;/P&gt;&lt;P&gt;      sum_weight type i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select carrid connid count( * ) SUM( LUGGWEIGHT )&lt;/P&gt;&lt;P&gt;FROM SBOOK&lt;/P&gt;&lt;P&gt;INTO (SBOOK-CARRID, SBOOK-CONNID, COUNT, SUM_WEIGHT)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHERE CARRID = 'LH'&lt;/P&gt;&lt;P&gt;GROUP BY CARRID CONNID&lt;/P&gt;&lt;P&gt;HAVING SUM( LUGGWEIGHT ) &amp;gt; 25.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE:/ SBOOK-CARRID, SBOOK-CONNID, COUNT, SUM_WEIGHT.&lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Srini&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jan 2007 12:41:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-select-statement/m-p/1814586#M348948</guid>
      <dc:creator>srinivas_akiri</dc:creator>
      <dc:date>2007-01-04T12:41:20Z</dc:date>
    </item>
  </channel>
</rss>

