<?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 sorting in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sorting/m-p/988296#M73506</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was wondering if I could implement sorting in a classical list.&lt;/P&gt;&lt;P&gt;Let's take the following example:&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;select * from mara into corresponding fields of table itab&lt;/P&gt;&lt;P&gt;where ...&lt;/P&gt;&lt;P&gt;loop at itab .&lt;/P&gt;&lt;P&gt;write: \ itab-1, itab-2, itab-3.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;Can I sort the resulting list by itab-1 ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 16 Aug 2005 07:55:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-08-16T07:55:09Z</dc:date>
    <item>
      <title>sorting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sorting/m-p/988296#M73506</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was wondering if I could implement sorting in a classical list.&lt;/P&gt;&lt;P&gt;Let's take the following example:&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;select * from mara into corresponding fields of table itab&lt;/P&gt;&lt;P&gt;where ...&lt;/P&gt;&lt;P&gt;loop at itab .&lt;/P&gt;&lt;P&gt;write: \ itab-1, itab-2, itab-3.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;Can I sort the resulting list by itab-1 ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2005 07:55:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sorting/m-p/988296#M73506</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-16T07:55:09Z</dc:date>
    </item>
    <item>
      <title>Re: sorting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sorting/m-p/988297#M73507</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;select * from mara into corresponding fields of table itab&lt;/P&gt;&lt;P&gt;where ...&lt;/P&gt;&lt;P&gt;***&lt;STRONG&gt;insert thsi line&lt;/STRONG&gt;****&lt;/P&gt;&lt;P&gt;sort itab by 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab .&lt;/P&gt;&lt;P&gt;write: \ itab-1, itab-2, itab-3.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Mano&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2005 08:01:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sorting/m-p/988297#M73507</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-16T08:01:43Z</dc:date>
    </item>
    <item>
      <title>Re: sorting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sorting/m-p/988298#M73508</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not that kind of sorting...&lt;/P&gt;&lt;P&gt;I meant interactive sorting. Like sorting in code by itab-1 and after the report is displayed sorting by itab-2 or otab-3 and so on.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2005 08:04:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sorting/m-p/988298#M73508</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-16T08:04:05Z</dc:date>
    </item>
    <item>
      <title>Re: sorting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sorting/m-p/988299#M73509</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 use the order by clause&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See also &lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/9a/dd3dfac5854cb7bb71bc11e085b9d0/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/9a/dd3dfac5854cb7bb71bc11e085b9d0/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2005 08:05:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sorting/m-p/988299#M73509</guid>
      <dc:creator>eddy_declercq</dc:creator>
      <dc:date>2005-08-16T08:05:03Z</dc:date>
    </item>
    <item>
      <title>Re: sorting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sorting/m-p/988300#M73510</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi George,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You cannot sort the output in the classical list. But this is possible in ALV. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want the sort function in classical list then you have to have a field in the selection screen through which the user can select the sort field and in the program you can sort the internal table based on this field before the output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2005 08:05:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sorting/m-p/988300#M73510</guid>
      <dc:creator>Vinod_Chandran</dc:creator>
      <dc:date>2005-08-16T08:05:42Z</dc:date>
    </item>
    <item>
      <title>Re: sorting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sorting/m-p/988301#M73511</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this link, might help u&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="360495"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2005 08:16:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sorting/m-p/988301#M73511</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-16T08:16:49Z</dc:date>
    </item>
    <item>
      <title>Re: sorting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sorting/m-p/988302#M73512</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, though SORT can concatenate the dynamic string like the WHERE, but it's a little difference. Every string between parentheses means a field name, example like following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;it is ok&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;str1 = 'field1'.&lt;/P&gt;&lt;P&gt;str1 = 'field2'.&lt;/P&gt;&lt;P&gt;sort itab by (str1) ascending (str2) descending.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;it will failed&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;str1 = 'field1 ascending field2 descending'.&lt;/P&gt;&lt;P&gt;sort itab by str1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can achieve it in two way:&lt;/P&gt;&lt;P&gt;first, dynamically sort in the select statement, code like following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
types:begin of typ_sort,
        field  type  char30,
      end of typ_sort.
data: it_sort     type standard table of typ_sort.
data: lc_sort     like line of it_sort.

lc_sort = 'CARRID DESCENDING'.
append lc_sort to it_sort.
lc_sort = 'CONNID'.
append lc_sort to it_sort.

select *
  from sflight
  into table it_sflight
  order by (it_sort).
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Second, you can sort internal table dynamically too, reference the code in the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp; Report ZDANY_DYN_SORT
*&amp;amp;---------------------------------------------------------------------*
REPORT z_dany_dyn_sort.
* s_field* - field name for sorting ( F1,F2,F3,F4,F5 or space )
* s_ord* - ASC or DES ( ascending or descending)
					
PARAMETERS: s_field1(6) DEFAULT 'FIELD1', s_ord1(3) DEFAULT 'ASC',
            s_field2(6) DEFAULT 'FIELD2', s_ord2(3) DEFAULT 'DES',
            s_field3(6) DEFAULT 'FIELD3', s_ord3(3) DEFAULT 'ASC',
            s_field4(6) DEFAULT 'FIELD4', s_ord4(3) DEFAULT 'DES',
            s_field5(6) DEFAULT 'FIELD5', s_ord5(3) DEFAULT 'ASC'.
					
TYPES: BEGIN OF ltt_fields,
       field1(6),
       field2(6),
       field3(6),
       field4(6),
       field5(6),
END OF ltt_fields.
					
DATA: l_field_asc1(6),
      l_field_asc2(6),
      l_field_asc3(6),
      l_field_asc4(6),
      l_field_asc5(6),
      l_field_des1(6),
      l_field_des2(6),
      l_field_des3(6),
      l_field_des4(6),
      l_field_des5(6),
      lt_fields TYPE TABLE OF ltt_fields,
      ls_fields TYPE ltt_fields,
      l_flag_invalid_field,
      l_flag_not_asc_des.
					
FIELD-SYMBOLS &amp;lt;fs&amp;gt; TYPE ANY.
					
INITIALIZATION.
					
* Just to fill an internal tables for testing
 DO 3 TIMES.
  ls_fields-field1 = sy-index.
  DO 3 TIMES.
    ls_fields-field2 = sy-index.
    DO 3 TIMES.
      ls_fields-field3 = sy-index.
      DO 3 TIMES.
        ls_fields-field4 = sy-index.
        DO 3 TIMES.
          ls_fields-field5 = sy-index.
          APPEND ls_fields TO lt_fields.
        ENDDO.
      ENDDO.
    ENDDO.
  ENDDO.
ENDDO.
					
START-OF-SELECTION.
					
* The order must be "ASC" or "DES" or space, any other value is rejected
l_flag_not_asc_des = 'X'.
CHECK ( s_ord1 = 'ASC' OR s_ord1 = 'DES' OR s_ord1 IS INITIAL ) AND
      ( s_ord2 = 'ASC' OR s_ord2 = 'DES' OR s_ord2 IS INITIAL ) AND
      ( s_ord3 = 'ASC' OR s_ord3 = 'DES' OR s_ord3 IS INITIAL ) AND
      ( s_ord4 = 'ASC' OR s_ord4 = 'DES' OR s_ord4 IS INITIAL ) AND
      ( s_ord5 = 'ASC' OR s_ord5 = 'DES' OR s_ord5 IS INITIAL ).
CLEAR l_flag_not_asc_des.
					
* the field name must be = "FIELD1, 2, 3, 4 or 5", any other value is rejected
l_flag_invalid_field = 'X'.
CHECK 'FIELD1FIELD2FIELD3FIELD4FIELD5' CS s_field1 AND
      'FIELD1FIELD2FIELD3FIELD4FIELD5' CS s_field2 AND
      'FIELD1FIELD2FIELD3FIELD4FIELD5' CS s_field3 AND
      'FIELD1FIELD2FIELD3FIELD4FIELD5' CS s_field4 AND
      'FIELD1FIELD2FIELD3FIELD4FIELD5' CS s_field5.
CLEAR l_flag_invalid_field.
					
					
* for a certain field, if the user ask descending order, the name of this field is 
* moved in l_field_des1 AND it's important that l_field_asc1 remain empty.
IF s_field1 IS NOT INITIAL.
  IF s_ord1 = 'ASC'.
     l_field_asc1 = s_field1.
  ELSE.
     l_field_des1 = s_field1.
  ENDIF.
ENDIF.
					
IF s_field2 IS NOT INITIAL.
  IF s_ord2 = 'ASC'.
    l_field_asc2 = s_field2.
  ELSE.
    l_field_des2 = s_field2.
  ENDIF.
ENDIF.
					
IF s_field3 IS NOT INITIAL.
  IF s_ord3 = 'ASC'.
    l_field_asc3 = s_field3.
  ELSE.
    l_field_des3 = s_field3.
  ENDIF.
ENDIF.
					
IF s_field4 IS NOT INITIAL.
  IF s_ord4 = 'ASC'.
    l_field_asc4 = s_field4.
  ELSE.
    l_field_des4 = s_field4.
  ENDIF.
ENDIF.
					
IF s_field5 IS NOT INITIAL.
  IF s_ord5 = 'ASC'.
    l_field_asc5 = s_field5.
  ELSE.
    l_field_des5 = s_field5.
  ENDIF.
ENDIF.
					
* EACH field is used twice in the sort with different name for ascending and descending. 1 of the 
* 2 fields will be empty and the sort will ignore it.
SORT lt_fields BY (l_field_asc1) ASCENDING (l_field_des1) DESCENDING
                  (l_field_asc2) ASCENDING (l_field_des2) DESCENDING
                  (l_field_asc3) ASCENDING (l_field_des3) DESCENDING
                  (l_field_asc4) ASCENDING (l_field_des4) DESCENDING
                  (l_field_asc5) ASCENDING (l_field_des5) DESCENDING.
					
* Display the results
EDITOR-CALL FOR lt_fields.
					
					
END-OF-SELECTION.
* if parameters was not entered correctly
 IF l_flag_not_asc_des = 'X'.
   WRITE: / 'Only ASC for ascending or DES for DESCENDING are allowed for fields S_ORDn'.
 ELSEIF l_flag_invalid_field = 'X'.
   WRITE: / 'S_FIELDn must be = FIELD1, FIELD2, FIELD3, FIELD4 or FIELD5.'.
ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it will be helpful.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By the way, vinod mentioned the ALV sort, I'm interesting in how SAP achieve the dynamical sort in ALV, let me have a research.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2005 08:24:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sorting/m-p/988302#M73512</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-16T08:24:04Z</dc:date>
    </item>
    <item>
      <title>Re: sorting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sorting/m-p/988303#M73513</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;use fm RKE_SORT_ELEMENTS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andreas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2005 08:27:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sorting/m-p/988303#M73513</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2005-08-16T08:27:33Z</dc:date>
    </item>
    <item>
      <title>Re: sorting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sorting/m-p/988304#M73514</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, everybody&lt;/P&gt;&lt;P&gt;Just researched in the ALV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually, the sap solve dynamical sort issue in ALV using the second way I mention.&lt;/P&gt;&lt;P&gt;FM LVC_KKB_OUTTAB_SORT will be called in the ALV sort.&lt;/P&gt;&lt;P&gt;And in its code, you can see a long sort statement, which list scores of fields in it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fill the T_OUTTAB with origin itab, IT_SORT with sort fields, then we will get the new sorted table T_OUTTAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think we can directly call LVC_KKB_OUTTAB_SORT or LVC_SORT_APPLY(LVC_SORT_APPLY envelop LVC_KKB_OUTTAB_SORT, and we are more familiar with its interface), if we don't want to write the code repeatly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it will be helpful.&lt;/P&gt;&lt;P&gt;Thanks a lot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2005 08:51:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sorting/m-p/988304#M73514</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-16T08:51:43Z</dc:date>
    </item>
    <item>
      <title>Re: sorting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sorting/m-p/988305#M73515</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Of course you can sort a classical list interactively.  You would just be re-writing the list each time.  Each time you sort you must decrement the list index by 1, it is a SY- value.   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2005 10:48:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sorting/m-p/988305#M73515</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-08-16T10:48:50Z</dc:date>
    </item>
    <item>
      <title>Re: sorting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sorting/m-p/988306#M73516</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi George,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in my opinion, this example is the easiest way do this. The command &amp;lt;b&amp;gt;GET CURSOR FIELD fieldname&amp;lt;/b&amp;gt; get the name of the sort-field. This example need a GUI status with a sort-button and the ucode 'SRTD'.&lt;/P&gt;&lt;P&gt;Just click to the sort column in the list and then click the sort-button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have no MARA on my testdrive, so I took the SFLIGHT for this example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT  z_classic_sort_example.

DATA: wa_sflight TYPE sflight,
      it_sflight LIKE TABLE OF wa_sflight,
      fieldname  TYPE fieldname.

START-OF-SELECTION.

  set pf-status 'STANDARD_WITH_SORT'.
  SELECT * FROM sflight INTO TABLE it_sflight.
  PERFORM display_flights.

AT USER-COMMAND.
  CASE sy-ucomm.
    WHEN 'SRTD'.
      GET CURSOR FIELD fieldname.
      fieldname = fieldname+11.
      SORT it_sflight BY (fieldname).
      PERFORM display_flights.
      sy-lsind = sy-lsind - 1.
  ENDCASE.


FORM display_flights.
  LOOP AT it_sflight INTO wa_sflight.
    WRITE: /1 wa_sflight-carrid,
              wa_sflight-connid,
              wa_sflight-fldate,
              wa_sflight-price.
    CLEAR wa_sflight.
  ENDLOOP.
ENDFORM.                    "display_flights&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bye,&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2005 20:20:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sorting/m-p/988306#M73516</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-16T20:20:29Z</dc:date>
    </item>
  </channel>
</rss>

