<?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: Reading a sorted table in Sequence in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-sorted-table-in-sequence/m-p/4829895#M1130028</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   The problem i am facing is that sequence of field1 is not same always:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;field1 field2&lt;/P&gt;&lt;P&gt;10 100&lt;/P&gt;&lt;P&gt;20 100&lt;/P&gt;&lt;P&gt;30 100&lt;/P&gt;&lt;P&gt;10 200&lt;/P&gt;&lt;P&gt;20 200&lt;/P&gt;&lt;P&gt;30 200&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now while reading the table using the key 2 as 100 or 200 the value of field1 is not in sequence.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its coming as 10, 20 , 30 or 20, 10, 30&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want a stable sequence.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Rupali Ray&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 04 Dec 2008 12:18:32 GMT</pubDate>
    <dc:creator>rupali_ray</dc:creator>
    <dc:date>2008-12-04T12:18:32Z</dc:date>
    <item>
      <title>Reading a sorted table in Sequence</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-sorted-table-in-sequence/m-p/4829883#M1130016</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   I have a sorted table and want to read it in a sequence.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Say for example:&lt;/P&gt;&lt;P&gt;Table: sort by secondary key field2, non unique&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field1      Field2&lt;/P&gt;&lt;P&gt;10             100&lt;/P&gt;&lt;P&gt;20             100&lt;/P&gt;&lt;P&gt;30             100&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, when i read the table with the secondray key, field2, I wnat that it should always return the data in same sequence i. e. 100, 200, 300&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But currently when the sequence is not maintained liek it can be 100, 200, 300 or 200, 100, 300&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it posisble that I get the same sequence every time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Rupali Ray&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Dec 2008 05:19:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-sorted-table-in-sequence/m-p/4829883#M1130016</guid>
      <dc:creator>rupali_ray</dc:creator>
      <dc:date>2008-12-04T05:19:33Z</dc:date>
    </item>
    <item>
      <title>Re: Reading a sorted table in Sequence</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-sorted-table-in-sequence/m-p/4829884#M1130017</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If it is a sorted table, u will always get data in same sequence what ever is the state of ur program.&lt;/P&gt;&lt;P&gt;System will take care that sorting sequence is always maintained.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Dec 2008 05:23:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-sorted-table-in-sequence/m-p/4829884#M1130017</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-04T05:23:48Z</dc:date>
    </item>
    <item>
      <title>Re: Reading a sorted table in Sequence</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-sorted-table-in-sequence/m-p/4829885#M1130018</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want to sort according to field2 than change the columns position in your internal table than you will always get 100 200 300 all the time.&lt;/P&gt;&lt;P&gt;like field2    field1 .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Dec 2008 05:31:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-sorted-table-in-sequence/m-p/4829885#M1130018</guid>
      <dc:creator>Sonal_J</dc:creator>
      <dc:date>2008-12-04T05:31:02Z</dc:date>
    </item>
    <item>
      <title>Re: Reading a sorted table in Sequence</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-sorted-table-in-sequence/m-p/4829886#M1130019</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   Correction in the question:&lt;/P&gt;&lt;P&gt;Say for example:&lt;/P&gt;&lt;P&gt;Table: sort by secondary key field2, non unique&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field1 Field2&lt;/P&gt;&lt;P&gt;10 100&lt;/P&gt;&lt;P&gt;20 100&lt;/P&gt;&lt;P&gt;30 100&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, when i read the table with the secondray key, field2 as 100, I want that it should always return the data in same sequence i. e. 10, 20, 30&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But currently the sequence is not maintained like it can be 10, 20, 30 or 20, 10, 30&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it posisble that I get the same sequence every time.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Dec 2008 09:19:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-sorted-table-in-sequence/m-p/4829886#M1130019</guid>
      <dc:creator>rupali_ray</dc:creator>
      <dc:date>2008-12-04T09:19:10Z</dc:date>
    </item>
    <item>
      <title>Re: Reading a sorted table in Sequence</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-sorted-table-in-sequence/m-p/4829887#M1130020</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rupali,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Take the help of KEY word STABLE SORT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for more info please go through the KEY word docu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ramchander Rao.K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Dec 2008 09:24:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-sorted-table-in-sequence/m-p/4829887#M1130020</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-04T09:24:07Z</dc:date>
    </item>
    <item>
      <title>Re: Reading a sorted table in Sequence</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-sorted-table-in-sequence/m-p/4829888#M1130021</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;you can then sort it by both the keys!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;first sort it by Field2 then field1 as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sort &amp;lt;int_tab&amp;gt; by field2 field1....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it will be in the desired seq.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Neha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Dec 2008 10:09:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-sorted-table-in-sequence/m-p/4829888#M1130021</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-04T10:09:49Z</dc:date>
    </item>
    <item>
      <title>Re: Reading a sorted table in Sequence</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-sorted-table-in-sequence/m-p/4829889#M1130022</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;stable sort is (in general) used for something different:&lt;/P&gt;&lt;P&gt;If you do a sort on a set of elements and some of these elements are equal regarding the sort function then the elements appear after the sort in the same order as before.&lt;/P&gt;&lt;P&gt;E.g.:&lt;/P&gt;&lt;P&gt;Set of tupels {(3,3), (3,1), (1,1), (2,2)}&lt;/P&gt;&lt;P&gt;Sort function: Sort tuples ascending regarding only the first element&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Result (stable):&lt;/P&gt;&lt;P&gt;{(1,1), (2,2), (3,3), (3,1)}&lt;/P&gt;&lt;P&gt;Tupels (3,1) and (3,3) are equal regarding the first element.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the case Rupali describes, there is no sort statement but a secondary key. I guess (I am not sure), that the secondary key index is not built with respect to a stable sort order based on the order of the primary key.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;  Torsten&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Dec 2008 10:23:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-sorted-table-in-sequence/m-p/4829889#M1130022</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-04T10:23:42Z</dc:date>
    </item>
    <item>
      <title>Re: Reading a sorted table in Sequence</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-sorted-table-in-sequence/m-p/4829890#M1130023</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 really didn't realize that, Thanks for reminding me the basics.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ramchander Rao.K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Dec 2008 10:30:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-sorted-table-in-sequence/m-p/4829890#M1130023</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-04T10:30:37Z</dc:date>
    </item>
    <item>
      <title>Re: Reading a sorted table in Sequence</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-sorted-table-in-sequence/m-p/4829891#M1130024</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You're welcome!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Dec 2008 10:38:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-sorted-table-in-sequence/m-p/4829891#M1130024</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-04T10:38:41Z</dc:date>
    </item>
    <item>
      <title>Re: Reading a sorted table in Sequence</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-sorted-table-in-sequence/m-p/4829892#M1130025</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;   My issue is still not solved. The table is already sorted, so no point in using sort stable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone please let me know how can the issue be solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Rupali Ray&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Dec 2008 11:54:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-sorted-table-in-sequence/m-p/4829892#M1130025</guid>
      <dc:creator>rupali_ray</dc:creator>
      <dc:date>2008-12-04T11:54:39Z</dc:date>
    </item>
    <item>
      <title>Re: Reading a sorted table in Sequence</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-sorted-table-in-sequence/m-p/4829893#M1130026</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;When you sort the table sort that table using the two fields that to in ascending order..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this will make the internal table records in sequence like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;field1         field2&lt;/P&gt;&lt;P&gt;10            100&lt;/P&gt;&lt;P&gt;20            100&lt;/P&gt;&lt;P&gt;30             100&lt;/P&gt;&lt;P&gt;10             200&lt;/P&gt;&lt;P&gt;20             200&lt;/P&gt;&lt;P&gt;30              200&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now whilw reading the table using the key 2 as 100 or 200 the value of field1 will be in sequence as desired.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ie....             field1          field2&lt;/P&gt;&lt;P&gt;                    10              100&lt;/P&gt;&lt;P&gt;                     20             100&lt;/P&gt;&lt;P&gt;                    30               100&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rohan.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rohan on Dec 4, 2008 1:02 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Dec 2008 12:02:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-sorted-table-in-sequence/m-p/4829893#M1130026</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-04T12:02:07Z</dc:date>
    </item>
    <item>
      <title>Re: Reading a sorted table in Sequence</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-sorted-table-in-sequence/m-p/4829894#M1130027</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rupali,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;              As suggested by Ramchander, try the following stmnt, it should work as u want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SORT ITAB STABLE BY FIELD2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope will solve your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pankaj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Dec 2008 12:16:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-sorted-table-in-sequence/m-p/4829894#M1130027</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-04T12:16:35Z</dc:date>
    </item>
    <item>
      <title>Re: Reading a sorted table in Sequence</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-sorted-table-in-sequence/m-p/4829895#M1130028</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   The problem i am facing is that sequence of field1 is not same always:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;field1 field2&lt;/P&gt;&lt;P&gt;10 100&lt;/P&gt;&lt;P&gt;20 100&lt;/P&gt;&lt;P&gt;30 100&lt;/P&gt;&lt;P&gt;10 200&lt;/P&gt;&lt;P&gt;20 200&lt;/P&gt;&lt;P&gt;30 200&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now while reading the table using the key 2 as 100 or 200 the value of field1 is not in sequence.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its coming as 10, 20 , 30 or 20, 10, 30&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want a stable sequence.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Rupali Ray&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Dec 2008 12:18:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-sorted-table-in-sequence/m-p/4829895#M1130028</guid>
      <dc:creator>rupali_ray</dc:creator>
      <dc:date>2008-12-04T12:18:32Z</dc:date>
    </item>
    <item>
      <title>Re: Reading a sorted table in Sequence</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-sorted-table-in-sequence/m-p/4829896#M1130029</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;iTAB is already sorted. while creating the table, i had decalred it as sorted table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why should i sort again the sorted table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Rupali Ray&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Dec 2008 12:20:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-sorted-table-in-sequence/m-p/4829896#M1130029</guid>
      <dc:creator>rupali_ray</dc:creator>
      <dc:date>2008-12-04T12:20:07Z</dc:date>
    </item>
    <item>
      <title>Re: Reading a sorted table in Sequence</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-sorted-table-in-sequence/m-p/4829897#M1130030</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;Ok then dont stick on the sorted table ...while declaring the table make that as standard table and then after filling up that table sort it,as i said earlier...this will solve ur problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rohan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Dec 2008 12:31:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-sorted-table-in-sequence/m-p/4829897#M1130030</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-04T12:31:03Z</dc:date>
    </item>
    <item>
      <title>Re: Reading a sorted table in Sequence</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-sorted-table-in-sequence/m-p/4829898#M1130031</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;field1 field2&lt;/P&gt;&lt;P&gt;10 100&lt;/P&gt;&lt;P&gt;20 100&lt;/P&gt;&lt;P&gt;30 100&lt;/P&gt;&lt;P&gt;10 200&lt;/P&gt;&lt;P&gt;20 200&lt;/P&gt;&lt;P&gt;30 200&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if possible move the itab to itab_temp&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;delete adjacent duplicates from itab_temp &lt;STRONG&gt;comparing field2.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Dec 2008 12:36:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-sorted-table-in-sequence/m-p/4829898#M1130031</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-04T12:36:06Z</dc:date>
    </item>
    <item>
      <title>Re: Reading a sorted table in Sequence</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-sorted-table-in-sequence/m-p/4829899#M1130032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then include the first column also in sort criterion while defining it as a sort table, e.g.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES ITAB TYPE SORTED TABLE OF mara WITH KEY matnr ernam.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then it will also work for u.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pankaj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Dec 2008 12:37:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-sorted-table-in-sequence/m-p/4829899#M1130032</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-04T12:37:53Z</dc:date>
    </item>
  </channel>
</rss>

