<?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: Diff. between 2 select statements in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-2-select-statements/m-p/1375291#M184050</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;In SELECT SINGLE u need to specify the all the key fields inorder to uniquely identify the records.&lt;/P&gt;&lt;P&gt;But SELECT UP TO 1 ROWS will fetch the first entry from your table regardless of the key fields...Also check the ABAP FAQs Section in SDN....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Abdul Hakim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 08 May 2006 06:39:49 GMT</pubDate>
    <dc:creator>abdul_hakim</dc:creator>
    <dc:date>2006-05-08T06:39:49Z</dc:date>
    <item>
      <title>Diff. between 2 select statements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-2-select-statements/m-p/1375290#M184049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;Can anybody tell me the difference between SELECT SINGLE and SELECT UP TO 1 ROWS statements. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 May 2006 06:37:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-2-select-statements/m-p/1375290#M184049</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-08T06:37:51Z</dc:date>
    </item>
    <item>
      <title>Re: Diff. between 2 select statements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-2-select-statements/m-p/1375291#M184050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;In SELECT SINGLE u need to specify the all the key fields inorder to uniquely identify the records.&lt;/P&gt;&lt;P&gt;But SELECT UP TO 1 ROWS will fetch the first entry from your table regardless of the key fields...Also check the ABAP FAQs Section in SDN....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Abdul Hakim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 May 2006 06:39:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-2-select-statements/m-p/1375291#M184050</guid>
      <dc:creator>abdul_hakim</dc:creator>
      <dc:date>2006-05-08T06:39:49Z</dc:date>
    </item>
    <item>
      <title>Re: Diff. between 2 select statements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-2-select-statements/m-p/1375292#M184051</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;when ur using select single the where condition should have all the key fields of the table here .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select up to 1 rows can be used if keyfields of table are not used in where condition to resolve performance issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 May 2006 06:40:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-2-select-statements/m-p/1375292#M184051</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-08T06:40:20Z</dc:date>
    </item>
    <item>
      <title>Re: Diff. between 2 select statements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-2-select-statements/m-p/1375293#M184052</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;According to SAP Performance course the SELECT UP TO 1 ROWS is faster than SELECT SINGLE because you are not using all the primary key fields. &lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;select single is a construct designed to read database records with primary key. In the absence of the primary key, it might end up doing a sequential search, whereas the select up to 1 rows may assume that there is no primary key supplied and will try to find most suitable index. &lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;The best way to find out is through sql trace or runtime analysis. &lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;Use "select up to 1 rows" only if you are sure that all the records returned will have the same value for the field(s) you are interested in. If not, you will be reading only the first record which matches the criteria, but may be the second or the third record has the value you are looking for. &lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;The System test result showed that the variant Single * takes less time than Up to 1 rows as there is an additional level for COUNT STOP KEY for SELECT ENDSELECT UP TO 1 ROWS. &lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;The 'SELECT SINGLE' statement selects the first row in the database that it finds that fulfils the 'WHERE' clause If this results in multiple records then only the first one will be returned and therefore may not be unique. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mainly:  to read data from &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The 'SELECT .... UP TO 1 ROWS' statement is subtly different. The database selects all of the relevant records that are defined by the WHERE clause, applies any aggregate, ordering or grouping functions to them and then returns the first record of the result set. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mainly: to check if entries exist. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can refer to the below link..&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/difference-between-select-single-and-select-upto-one-rows.htm" target="test_blank"&gt;http://www.sap-img.com/abap/difference-between-select-single-and-select-upto-one-rows.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 May 2006 06:40:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-2-select-statements/m-p/1375293#M184052</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-08T06:40:29Z</dc:date>
    </item>
    <item>
      <title>Re: Diff. between 2 select statements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-2-select-statements/m-p/1375294#M184053</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suresh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select Single : Will return with the first occurence of the record matching the where clause.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select upto 1 row : Will select all the records matching the where clause but will return the first entry out of the matching set ofr records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Performance wise the SELECT SINGLE is better.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Please mark helpful answer.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit Mishra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 May 2006 06:44:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-2-select-statements/m-p/1375294#M184053</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-08T06:44:45Z</dc:date>
    </item>
    <item>
      <title>Re: Diff. between 2 select statements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-2-select-statements/m-p/1375295#M184054</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;  When you say SELECT SINGLE, it means that you are expecting only one row to be present in the database for the condition you're going to specify in the WHERE clause. so that means, you will have to specify the primary key in your WHERE clause. Otherwise you get a warning.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT UP TO 1 ROWS is used in cases where you just want to make sure that there is at least one entry in the database table which satisfies your WHERE clause. Generally, it is meant to be used for existence-check. You may not want to really use the values returned by the SELECT statement in this case (thought this may not necessarily be so).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;latheesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 May 2006 06:45:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-2-select-statements/m-p/1375295#M184054</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-08T06:45:36Z</dc:date>
    </item>
    <item>
      <title>Re: Diff. between 2 select statements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-2-select-statements/m-p/1375296#M184055</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai Suresh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. SELECT [SINGLE [FOR UPDATE] | DISTINCT] * &lt;/P&gt;&lt;P&gt;2. SELECT [SINGLE [FOR UPDATE] | DISTINCT] s1 ... sn &lt;/P&gt;&lt;P&gt;3. SELECT [SINGLE [FOR UPDATE] | DISTINCT] (itab) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) SELECT [SINGLE [FOR UPDATE] | DISTINCT] * &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect&lt;/P&gt;&lt;P&gt;In the result set, the columns correspond exactly in terms of order, ABAP/4 Dictionary type and length to the fields of the database table (or view ) specified in the FROM clause . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;Output all flight connections from Frankfurt to New York: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES SPFLI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM SPFLI&lt;/P&gt;&lt;P&gt;         WHERE&lt;/P&gt;&lt;P&gt;           CITYFROM = 'FRANKFURT' AND&lt;/P&gt;&lt;P&gt;           CITYTO   = 'NEW YORK'.&lt;/P&gt;&lt;P&gt;  WRITE: / SPFLI-CARRID, SPFLI-CONNID.&lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;Output all free seats on the Lufthansa flight 0400 on 28.02.1995: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES SFLIGHT.&lt;/P&gt;&lt;P&gt;DATA   SEATSFREE TYPE I.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT SINGLE * FROM SFLIGHT&lt;/P&gt;&lt;P&gt;                WHERE&lt;/P&gt;&lt;P&gt;                  CARRID   = 'LH '      AND&lt;/P&gt;&lt;P&gt;                  CONNID   = '0400'     AND&lt;/P&gt;&lt;P&gt;                  FLDATE   = '19950228'.&lt;/P&gt;&lt;P&gt;SEATSFREE = SFLIGHT-SEATSMAX - SFLIGHT-SEATSOCC.&lt;/P&gt;&lt;P&gt;WRITE: / SFLIGHT-CARRID, SFLIGHT-CONNID,&lt;/P&gt;&lt;P&gt;         SFLIGHT-FLDATE, SEATSFREE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) SELECT [SINGLE [FOR UPDATE] | DISTINCT] s1 ... sn &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect&lt;/P&gt;&lt;P&gt;The order, ABAP/4 Dictionary type and length of the columns of the result set are explicitly defined by the list s1 ... sn . Each si has the form &lt;/P&gt;&lt;P&gt;ai or ai AS bi . &lt;/P&gt;&lt;P&gt;Here, ai stands either for &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a field f of the database table or &lt;/P&gt;&lt;P&gt;a aggregate print. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Examples&lt;/P&gt;&lt;P&gt;Output all flight destinations for Lufthansa flights from Frankfurt: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES SPFLI.&lt;/P&gt;&lt;P&gt;DATA   TARGET LIKE SPFLI-CITYTO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT DISTINCT CITYTO&lt;/P&gt;&lt;P&gt;       INTO TARGET FROM SPFLI&lt;/P&gt;&lt;P&gt;       WHERE&lt;/P&gt;&lt;P&gt;         CARRID   = 'LH '       AND&lt;/P&gt;&lt;P&gt;         CITYFROM = 'FRANKFURT'.&lt;/P&gt;&lt;P&gt;  WRITE: / TARGET.&lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Output the number of airline carriers which fly to New York: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES SPFLI.&lt;/P&gt;&lt;P&gt;DATA   COUNT TYPE I.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT COUNT( DISTINCT CARRID )&lt;/P&gt;&lt;P&gt;       INTO COUNT FROM SPFLI&lt;/P&gt;&lt;P&gt;       WHERE&lt;/P&gt;&lt;P&gt;         CITYTO = 'NEW YORK'.&lt;/P&gt;&lt;P&gt;WRITE: / COUNT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Output the number of passengers, the total weight and the average weight of luggage for all Lufthansa flights on 28.02.1995: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES SBOOK.&lt;/P&gt;&lt;P&gt;DATA:  COUNT TYPE I, SUM TYPE P DECIMALS 2, AVG TYPE F.&lt;/P&gt;&lt;P&gt;DATA:  CONNID LIKE SBOOK-CONNID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT CONNID COUNT( * ) SUM( LUGGWEIGHT ) AVG( LUGGWEIGHT )&lt;/P&gt;&lt;P&gt;       INTO (CONNID, COUNT, SUM, AVG)&lt;/P&gt;&lt;P&gt;       FROM SBOOK&lt;/P&gt;&lt;P&gt;       WHERE&lt;/P&gt;&lt;P&gt;         CARRID   = 'LH '      AND&lt;/P&gt;&lt;P&gt;         FLDATE   = '19950228'&lt;/P&gt;&lt;P&gt;       GROUP BY CONNID.&lt;/P&gt;&lt;P&gt;  WRITE: / CONNID, COUNT, SUM, AVG.&lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) SELECT [SINGLE [FOR UPDATE] | DISTINCT] (itab) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect&lt;/P&gt;&lt;P&gt;Works like SELECT [SINGLE [FOR UPDATE] | DISTINCT] s1 ... sn if the internal table itab contains the list s1 ... sn as ABAP/4 source code, and like SELECT [SINGLE [FOR UPDATE] | DISTINCT] * , if itab is empty. The internal table itab can only have one field which must be of type C and cannot be more than 72 characters long. itab must appear in parentheses and there should be no blanks between the parentheses and the table name. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note&lt;/P&gt;&lt;P&gt;With this variant, the same restrictions apply as for SELECT [SINGLE [FOR UPDATE] | DISTINCT] s1 ... sn . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;Output all Lufthansa flight routes: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: SPFLI.&lt;/P&gt;&lt;P&gt;DATA:   FTAB(72) OCCURS 5 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REFRESH FTAB.&lt;/P&gt;&lt;P&gt;FTAB = 'CITYFROM'. APPEND FTAB.&lt;/P&gt;&lt;P&gt;FTAB = 'CITYTO'.   APPEND FTAB.&lt;/P&gt;&lt;P&gt;SELECT DISTINCT (FTAB)&lt;/P&gt;&lt;P&gt;       INTO CORRESPONDING FIELDS OF SPFLI&lt;/P&gt;&lt;P&gt;       FROM SPFLI&lt;/P&gt;&lt;P&gt;       WHERE&lt;/P&gt;&lt;P&gt;         CARRID   = 'LH'.&lt;/P&gt;&lt;P&gt;  WRITE: / SPFLI-CITYFROM, SPFLI-CITYTO.&lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT UP TO 1 ROWS  Means&lt;/P&gt;&lt;P&gt;It will fetch the first row depends on the where condition &lt;/P&gt;&lt;P&gt;and the rest of the rows omitted&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT Single  Means&lt;/P&gt;&lt;P&gt;It will fetch exact row depends on the where condition &lt;/P&gt;&lt;P&gt;and the rest of the rows omitted&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this will increase the performance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Sreenivasulu P&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Sreenivasulu Ponnadi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 May 2006 06:46:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-2-select-statements/m-p/1375296#M184055</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-08T06:46:23Z</dc:date>
    </item>
    <item>
      <title>Re: Diff. between 2 select statements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-2-select-statements/m-p/1375297#M184056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Amit,&lt;/P&gt;&lt;P&gt;U say SELECT SINGLE is faster than SELECT... UP TO 1 ROWS, but Shravanthi say the other way. im bit confused.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;anyhow thanks to all of u...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 May 2006 06:52:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-2-select-statements/m-p/1375297#M184056</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-08T06:52:35Z</dc:date>
    </item>
    <item>
      <title>Re: Diff. between 2 select statements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-2-select-statements/m-p/1375298#M184057</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi suresh,&lt;/P&gt;&lt;P&gt;you can check the below link for your clarification..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/sdn/developerareas/abap?rid=/library/uuid/840ad679-0601-0010-cd8e-9989fd650822" target="test_blank"&gt;https://www.sdn.sap.com/irj/sdn/developerareas/abap?rid=/library/uuid/840ad679-0601-0010-cd8e-9989fd650822&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Abdul Hakim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 May 2006 07:07:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-2-select-statements/m-p/1375298#M184057</guid>
      <dc:creator>abdul_hakim</dc:creator>
      <dc:date>2006-05-08T07:07:14Z</dc:date>
    </item>
  </channel>
</rss>

