<?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: pls explain this steps in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/pls-explain-this-steps/m-p/2967849#M700405</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes i know its basic ....i was reading abt how not to use select statement ...it came in this so i happen to ask a doubt....any way thanks for your help...&lt;/P&gt;&lt;P&gt;                                                                                santo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 24 Oct 2007 04:12:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-24T04:12:49Z</dc:date>
    <item>
      <title>pls explain this steps</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pls-explain-this-steps/m-p/2967847#M700403</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SELECT SINGLE SUM( seatsocc )&lt;/P&gt;&lt;P&gt;FROM sflight INTO sum&lt;/P&gt;&lt;P&gt;WHERE fldate LIKE '2001%'.&lt;/P&gt;&lt;P&gt;WRITE: / sum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just explain what is being done in this program thankyou ....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Oct 2007 14:59:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pls-explain-this-steps/m-p/2967847#M700403</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-23T14:59:59Z</dc:date>
    </item>
    <item>
      <title>Re: pls explain this steps</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pls-explain-this-steps/m-p/2967848#M700404</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it is not really a performance topic, but absolute basic ABAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It selects from the table sflight all flightdates starting with 2001 and &lt;/P&gt;&lt;P&gt;sums up the seatoccupation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The SINGLE is not necessary (maybe not even correct).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Siegfried&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Oct 2007 16:29:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pls-explain-this-steps/m-p/2967848#M700404</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-23T16:29:50Z</dc:date>
    </item>
    <item>
      <title>Re: pls explain this steps</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pls-explain-this-steps/m-p/2967849#M700405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes i know its basic ....i was reading abt how not to use select statement ...it came in this so i happen to ask a doubt....any way thanks for your help...&lt;/P&gt;&lt;P&gt;                                                                                santo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Oct 2007 04:12:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pls-explain-this-steps/m-p/2967849#M700405</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-24T04:12:49Z</dc:date>
    </item>
    <item>
      <title>Re: pls explain this steps</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pls-explain-this-steps/m-p/2967850#M700406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SELECT SINGLE SUM( seatsocc )&lt;/P&gt;&lt;P&gt;FROM sflight INTO sum&lt;/P&gt;&lt;P&gt;WHERE fldate LIKE '2001%'.&lt;/P&gt;&lt;P&gt;WRITE: / sum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Santosh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Performance-wise, in this SQL statement, instead of using the LIKE operator, it would be faster to use BETWEEN '20010101' and '20011231'. The LIKE operator, although is robust enough for pattern matching, is generally DB intensive when you use it for non-character type data, like Date, Time, etc. As you can see, in this case the field FLDATE will be a limitation for using the LIKE operator.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also as the previous suggestion goes, there is a logical bug in using the SINGLE addition to the SQL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chaps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Oct 2007 22:04:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pls-explain-this-steps/m-p/2967850#M700406</guid>
      <dc:creator>ci985642</dc:creator>
      <dc:date>2007-10-24T22:04:22Z</dc:date>
    </item>
  </channel>
</rss>

