<?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: Select in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/4287929#M1022864</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Mayank,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The internal table &amp;lt;itab&amp;gt; must have a structured line type, and each field that occurs in the condition &amp;lt;cond&amp;gt; must be compatible with the column of the database with which it is compared. Do not use the operators LIKE, BETWEEN, and IN in comparisons using internal table fields. You may not use the ORDER BY clause in the same SELECT statement which has FOR ALL ENTRIES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Srinivas Reddy wrote..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Hi Mayank .,

If NOT t_lagp[] is initial .
SELECT lgnum
tanum " Tranfer order no.
tapos " Transfer order item.
matnr " Material no.
maktx " Material description.
charg " Batch no.
bestq " Stock category.
FROM ltap
INTO TABLE t_ltap
FOR ALL ENTRIES IN t_lagp
WHERE lgnum = t_lagp-lgnum
AND tanum = t_lagp-btanr
AND tapos = t_lagp-btaps
AND bestq IN s_stocat
AND matnr IN s_matnr
AND charg IN s_batno
order by lgnum ascending.
endif .

But Performance point of view better Use same select query with out Order By .

Use Sort statement after the selcet Query .

thankks
Sreenivas&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the select stmt gives and error:&lt;/P&gt;&lt;P&gt;the addition FOR ALL ENTRIES in itab excludes sorting with ORDER BY fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Indu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 Aug 2008 10:55:16 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-05T10:55:16Z</dc:date>
    <item>
      <title>Select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/4287923#M1022858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi People,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please tell me how can i use FOR ALL ENTRIES and ORDER BY in the same select.&lt;/P&gt;&lt;P&gt;pl mind that I do not want to use the Sort option after the select.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 10:32:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/4287923#M1022858</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T10:32:11Z</dc:date>
    </item>
    <item>
      <title>Re: Select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/4287924#M1022859</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 not use ORDER BY Clause With FOR ALL ENTRIES .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Better you Select the Records through ALL Entries and then Sort the internal table By the keys.&lt;/P&gt;&lt;P&gt;Try this way-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT lgnum                         " Warehouse no.
         tanum                         " Tranfer order no.
         tapos                         " Transfer order item.
         matnr                         " Material no.
         maktx                         " Material description.
         charg                         " Batch no.
         bestq                         " Stock category.
    FROM ltap
    INTO TABLE t_ltap
     FOR ALL ENTRIES IN t_lagp
   WHERE lgnum = t_lagp-lgnum
     AND tanum = t_lagp-btanr
     AND tapos = t_lagp-btaps
     AND bestq IN s_stocat
     AND matnr IN s_matnr
     AND charg IN s_batno .

  IF sy-subrc EQ 0.
   SORT t_ltap BY lgnum tanum tapos.
  ELSE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sujit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 10:46:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/4287924#M1022859</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T10:46:53Z</dc:date>
    </item>
    <item>
      <title>Re: Select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/4287925#M1022860</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;Your select stament in which you are using FOR ALL ENTRIES  addition in the same query you cannot use ORDER BY clause&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES : spfli,sflight.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA :&lt;/P&gt;&lt;P&gt;   t_spfli LIKE TABLE OF spfli WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;   t_sflight LIKE TABLE OF sflight WITH HEADER LINE.&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&lt;/P&gt;&lt;P&gt;  carrid&lt;/P&gt;&lt;P&gt;  connid&lt;/P&gt;&lt;P&gt;  cityfrom&lt;/P&gt;&lt;P&gt;  cityto&lt;/P&gt;&lt;P&gt;  INTO TABLE t_spfli&lt;/P&gt;&lt;P&gt;  FROM spfli&lt;/P&gt;&lt;P&gt;  UP TO 30 ROWS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*SORT t_spfli BY carrid.&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&lt;/P&gt;&lt;P&gt;  carrid&lt;/P&gt;&lt;P&gt;  connid&lt;/P&gt;&lt;P&gt;  fldate&lt;/P&gt;&lt;P&gt;  INTO TABLE t_sflight&lt;/P&gt;&lt;P&gt;  FROM sflight&lt;/P&gt;&lt;P&gt;  FOR ALL ENTRIES IN t_spfli&lt;/P&gt;&lt;P&gt;  WHERE carrid EQ t_spfli-carrid&lt;/P&gt;&lt;P&gt;  ORDER BY fldate ASCENDING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*SORT t_sflight BY fldate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check the above code &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In teh Documentation it clearly mentions you as below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;You can use the option FOR ALL ENTRIES to replace nested select loops by operations on internal tables. This can significantly improve the performance for large sets of selected data.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 10:50:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/4287925#M1022860</guid>
      <dc:creator>bpawanchand</dc:creator>
      <dc:date>2008-08-05T10:50:30Z</dc:date>
    </item>
    <item>
      <title>Re: Select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/4287926#M1022861</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't use FOR ALL ENTRIES and ORDER BY simultaneouly as ORDER BY comes with Aggregate function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, &lt;/P&gt;&lt;P&gt;Anirban&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 10:51:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/4287926#M1022861</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T10:51:33Z</dc:date>
    </item>
    <item>
      <title>Re: Select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/4287927#M1022862</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mayank .,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If NOT t_lagp[] is initial .&lt;/P&gt;&lt;P&gt;SELECT lgnum   &lt;/P&gt;&lt;P&gt;           tanum                         " Tranfer order no.&lt;/P&gt;&lt;P&gt;         tapos                         " Transfer order item.&lt;/P&gt;&lt;P&gt;         matnr                         " Material no.&lt;/P&gt;&lt;P&gt;         maktx                         " Material description.&lt;/P&gt;&lt;P&gt;         charg                         " Batch no.&lt;/P&gt;&lt;P&gt;         bestq                         " Stock category.&lt;/P&gt;&lt;P&gt;    FROM ltap&lt;/P&gt;&lt;P&gt;    INTO TABLE t_ltap&lt;/P&gt;&lt;P&gt;     FOR ALL ENTRIES IN t_lagp&lt;/P&gt;&lt;P&gt;   WHERE lgnum = t_lagp-lgnum&lt;/P&gt;&lt;P&gt;     AND tanum = t_lagp-btanr&lt;/P&gt;&lt;P&gt;     AND tapos = t_lagp-btaps&lt;/P&gt;&lt;P&gt;     AND bestq IN s_stocat&lt;/P&gt;&lt;P&gt;     AND matnr IN s_matnr&lt;/P&gt;&lt;P&gt;     AND charg IN s_batno&lt;/P&gt;&lt;P&gt;order by lgnum ascending.&lt;/P&gt;&lt;P&gt;endif .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But Performance point of view better Use same select query with out Order By .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use Sort statement after the selcet Query .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thankks&lt;/P&gt;&lt;P&gt; Sreenivas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 10:51:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/4287927#M1022862</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T10:51:46Z</dc:date>
    </item>
    <item>
      <title>Re: Select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/4287928#M1022863</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mayank,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't think we can have FOR ALL ENTRIES and ORDER BY clauses in one SELECT statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chandra Sekhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 10:54:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/4287928#M1022863</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T10:54:34Z</dc:date>
    </item>
    <item>
      <title>Re: Select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/4287929#M1022864</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Mayank,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The internal table &amp;lt;itab&amp;gt; must have a structured line type, and each field that occurs in the condition &amp;lt;cond&amp;gt; must be compatible with the column of the database with which it is compared. Do not use the operators LIKE, BETWEEN, and IN in comparisons using internal table fields. You may not use the ORDER BY clause in the same SELECT statement which has FOR ALL ENTRIES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Srinivas Reddy wrote..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Hi Mayank .,

If NOT t_lagp[] is initial .
SELECT lgnum
tanum " Tranfer order no.
tapos " Transfer order item.
matnr " Material no.
maktx " Material description.
charg " Batch no.
bestq " Stock category.
FROM ltap
INTO TABLE t_ltap
FOR ALL ENTRIES IN t_lagp
WHERE lgnum = t_lagp-lgnum
AND tanum = t_lagp-btanr
AND tapos = t_lagp-btaps
AND bestq IN s_stocat
AND matnr IN s_matnr
AND charg IN s_batno
order by lgnum ascending.
endif .

But Performance point of view better Use same select query with out Order By .

Use Sort statement after the selcet Query .

thankks
Sreenivas&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the select stmt gives and error:&lt;/P&gt;&lt;P&gt;the addition FOR ALL ENTRIES in itab excludes sorting with ORDER BY fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Indu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 10:55:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/4287929#M1022864</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T10:55:16Z</dc:date>
    </item>
    <item>
      <title>Re: Select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/4287930#M1022865</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;&lt;/P&gt;&lt;P&gt;If the addition For All Entries is used in the WHERE condition, ORDER BY can only be used with the addition Primary key. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this code &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;tables: sflight, sbook.

DATA BEGIN OF gt_list OCCURS 0 .
        INCLUDE STRUCTURE sflight .
DATA END OF gt_list .

DATA BEGIN OF gt_display OCCURS 0 .
        INCLUDE STRUCTURE sbook .
DATA END OF gt_display .



SELECT *
      INTO TABLE gt_list
      FROM sflight .


 SELECT *
      INTO TABLE gt_display
      from sbook
      for all entries in gt_list
      where carrid = gt_list-carrid
      order by primary key.



      loop at gt_display.

      write :/ gt_display-carrid.

     endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Snehi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: snehi chouhan on Aug 5, 2008 12:56 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 10:56:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/4287930#M1022865</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T10:56:03Z</dc:date>
    </item>
    <item>
      <title>Re: Select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/4287931#M1022866</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;u can do like this :&lt;/P&gt;&lt;P&gt;if Itab1 not initial.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Select&lt;/STRONG&gt; Field1 field 2 &lt;STRONG&gt;from Table into&lt;/STRONG&gt; Itab &lt;STRONG&gt;for all entries in&lt;/STRONG&gt; Itab1 &lt;STRONG&gt;order by&lt;/STRONG&gt; field 1.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here u r fetching field1 and field 2 from ur database table TABLE and  storing in Itab, which u have created in ur report.&lt;/P&gt;&lt;P&gt;All this entries are fetched according to the entries un some othere internal table Itab1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let me know if u still have some issues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward the point if u find this useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 10:56:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/4287931#M1022866</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T10:56:38Z</dc:date>
    </item>
    <item>
      <title>Re: Select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/4287932#M1022867</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you have to specify PRIMARY KEY addition in ORDER BY else you cannot use ORDER BY in FOR ALL ENTIRES, it will give you a error, then in this case you have to sort the table after select.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With luck,&lt;/P&gt;&lt;P&gt;Pritam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 10:58:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/4287932#M1022867</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T10:58:26Z</dc:date>
    </item>
    <item>
      <title>Re: Select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/4287933#M1022868</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mayank,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;am sorry to say that you got some misleads in some above replies.&lt;/P&gt;&lt;P&gt;ofcource we can use ORDER BY with FOR ALL ENTRIES.&lt;/P&gt;&lt;P&gt;but there is certaion condition for that:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;statement with a SELECTstatement with FOR ALL ENTRIES, the addition ORDER BY can only be used with the addition PRIMARY KEY.&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Amit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 11:00:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/4287933#M1022868</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T11:00:50Z</dc:date>
    </item>
    <item>
      <title>Re: Select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/4287934#M1022869</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;if you are using FOR ALL ENTRIES then order by can only be used the addition 'PRIMARY KEY'. so that you should exculde the order by in your select query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Boobalan S&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 11:02:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select/m-p/4287934#M1022869</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T11:02:06Z</dc:date>
    </item>
  </channel>
</rss>

