<?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: Default sort order in the select statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/default-sort-order-in-the-select-statement/m-p/9284784#M1724425</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Joshva,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are 3 things while writing a Select Statement - &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. The order of the fields to be selected should be in the same order as they are in the database table.&lt;/P&gt;&lt;P&gt;2. The order of fields in the where condition should also be in the same order as in the database table.&lt;/P&gt;&lt;P&gt;3. The order of fields in the internal table you are selecting into, should also be in the same order as in the database table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This internal table ideally should be of standard type while declaring and should be sorted after the select query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So ideally your Select query should be like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES : BEGIN OF TY_TABLE1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FIELD1&amp;nbsp;&amp;nbsp; TYPE TABLE1-FIELD1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FIELD2&amp;nbsp;&amp;nbsp; TYPE TABLE1-FIELD2,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FIELD3&amp;nbsp;&amp;nbsp; TYPE TABLE1-FIELD3,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FIELD4&amp;nbsp;&amp;nbsp; TYPE TABLE1-FIELD4,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; END OF TY_TABLE1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : I_TABLE1 TYPE STANDARD TABLE OF TY_TABLE1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT FIELD1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FIELD2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FIELD3&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FIELD4&lt;/P&gt;&lt;P&gt;FROM TABLE1&lt;/P&gt;&lt;P&gt;INTO TABLE I_TABLE1&lt;/P&gt;&lt;P&gt;WHERE FIELD1 = &lt;/P&gt;&lt;P&gt;AND&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FIELD2 = &lt;/P&gt;&lt;P&gt;AND&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FIELD3 = &lt;/P&gt;&lt;P&gt;AND&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FIELD4 =&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF SY-SUBRC EQ 0.&lt;/P&gt;&lt;P&gt;&amp;nbsp; SORT I_TABLE1 BY FIELD1 FIELD2 FIELD3 FIELD4.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 Mar 2013 09:27:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2013-03-05T09:27:35Z</dc:date>
    <item>
      <title>Default sort order in the select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/default-sort-order-in-the-select-statement/m-p/9284781#M1724422</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Greeting everyone.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I am analysing one of the ABAP programs in our sytem.&lt;/P&gt;&lt;P&gt; It seems to be producing different results in development and production system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I understand that there will be data differences between these two systems. But, the sort order of the results returned by the select statements vary.&lt;/P&gt;&lt;P&gt; When the below SELECT statement is executed, in development system the result is sorted by the database table key FIELD1. But in production system, there is no sorting as far as I can see.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Is there some parameter or database setting that controls this.&lt;/P&gt;&lt;P&gt; How can we get the properly sorted results in our Production system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Below is my select statement and the associated data declarations&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt; TYPES: BEGIN OF ty_table1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; field2 like table1-field2,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; field1 like table1-field1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; field3 like table1-field3,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; field4 like table1-field4,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; END OF ty_table1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: i_table1 TYPE STANDARD TABLE OF ty_table1.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;SELECT field2 field1 field3 field4 &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM table1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; INTO CORRESPONDING FIELDS OF TABLE i_table1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WHERE&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; field2 = '100191'.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;The database table TABLE1, has the fields in order FIELD1-FIELD2-FIELD3-FIELD4. FIELD1 is the only key field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Mar 2013 07:34:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/default-sort-order-in-the-select-statement/m-p/9284781#M1724422</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-03-05T07:34:50Z</dc:date>
    </item>
    <item>
      <title>Re: Default sort order in the select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/default-sort-order-in-the-select-statement/m-p/9284782#M1724423</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Joshva,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you should guarantee equal sort order by abap coding. I would not use it in the SQL-statement, since ORDER BY is decreasing performance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead declare the internal table as sorted with unique key or you sort your internal standard table as desired by FIELD1 ascending or descending.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jonas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Mar 2013 08:44:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/default-sort-order-in-the-select-statement/m-p/9284782#M1724423</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-03-05T08:44:50Z</dc:date>
    </item>
    <item>
      <title>Re: Default sort order in the select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/default-sort-order-in-the-select-statement/m-p/9284783#M1724424</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Joshva,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the order in which the select-statement fetches the data if no order is defined is &lt;STRONG&gt;not predictable&lt;/STRONG&gt;. It is the order on the db which seems to be the order of creation mostly but it can change at any time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is &lt;STRONG&gt;dangerous &lt;/STRONG&gt;because the developer sees any order and thinks it is always like this. But it is not!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So &lt;STRONG&gt;don´t consider any order&lt;/STRONG&gt; if no order defined in your statement!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Mar 2013 09:09:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/default-sort-order-in-the-select-statement/m-p/9284783#M1724424</guid>
      <dc:creator>wol</dc:creator>
      <dc:date>2013-03-05T09:09:38Z</dc:date>
    </item>
    <item>
      <title>Re: Default sort order in the select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/default-sort-order-in-the-select-statement/m-p/9284784#M1724425</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Joshva,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are 3 things while writing a Select Statement - &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. The order of the fields to be selected should be in the same order as they are in the database table.&lt;/P&gt;&lt;P&gt;2. The order of fields in the where condition should also be in the same order as in the database table.&lt;/P&gt;&lt;P&gt;3. The order of fields in the internal table you are selecting into, should also be in the same order as in the database table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This internal table ideally should be of standard type while declaring and should be sorted after the select query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So ideally your Select query should be like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES : BEGIN OF TY_TABLE1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FIELD1&amp;nbsp;&amp;nbsp; TYPE TABLE1-FIELD1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FIELD2&amp;nbsp;&amp;nbsp; TYPE TABLE1-FIELD2,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FIELD3&amp;nbsp;&amp;nbsp; TYPE TABLE1-FIELD3,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FIELD4&amp;nbsp;&amp;nbsp; TYPE TABLE1-FIELD4,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; END OF TY_TABLE1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : I_TABLE1 TYPE STANDARD TABLE OF TY_TABLE1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT FIELD1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FIELD2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FIELD3&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FIELD4&lt;/P&gt;&lt;P&gt;FROM TABLE1&lt;/P&gt;&lt;P&gt;INTO TABLE I_TABLE1&lt;/P&gt;&lt;P&gt;WHERE FIELD1 = &lt;/P&gt;&lt;P&gt;AND&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FIELD2 = &lt;/P&gt;&lt;P&gt;AND&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FIELD3 = &lt;/P&gt;&lt;P&gt;AND&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FIELD4 =&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF SY-SUBRC EQ 0.&lt;/P&gt;&lt;P&gt;&amp;nbsp; SORT I_TABLE1 BY FIELD1 FIELD2 FIELD3 FIELD4.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Mar 2013 09:27:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/default-sort-order-in-the-select-statement/m-p/9284784#M1724425</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-03-05T09:27:35Z</dc:date>
    </item>
    <item>
      <title>Re: Default sort order in the select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/default-sort-order-in-the-select-statement/m-p/9284785#M1724426</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much for your answers.&lt;/P&gt;&lt;P&gt;I will make the changes in ABAP code, to sort the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just wanted to check&amp;nbsp; whether there is any way to control it other than, through the program.&lt;/P&gt;&lt;P&gt;But you have clarified this for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Joshua.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Mar 2013 09:33:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/default-sort-order-in-the-select-statement/m-p/9284785#M1724426</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-03-05T09:33:45Z</dc:date>
    </item>
    <item>
      <title>Re: Default sort order in the select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/default-sort-order-in-the-select-statement/m-p/9284786#M1724427</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes good practices is always to sort explicitly data (either in SELECT or SORT statement or definition of internal table) that will prevent from discrepancies like .&lt;A class="urLnkFunction urVt1" href="https://service.sap.com/sap/support/notes/602138" title="Right mouse click to add this SAP Note to your browser favorites"&gt;&lt;SPAN class="urTxtH1" id="header_data"&gt;Note 602138 - IDoc: Incorrect sequence of segment fields...&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Mar 2013 13:41:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/default-sort-order-in-the-select-statement/m-p/9284786#M1724427</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2013-03-05T13:41:38Z</dc:date>
    </item>
    <item>
      <title>Re: Default sort order in the select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/default-sort-order-in-the-select-statement/m-p/9284787#M1724428</link>
      <description>&lt;P&gt;ORDER BY does not decrease performance. If you want data in a specific order, use ORDER BY in the select -&amp;gt; not with SORT statement afterwards. &lt;/P&gt;</description>
      <pubDate>Thu, 06 Jun 2019 08:50:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/default-sort-order-in-the-select-statement/m-p/9284787#M1724428</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2019-06-06T08:50:53Z</dc:date>
    </item>
  </channel>
</rss>

