<?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: selects inside a loop or read inside a loop in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selects-inside-a-loop-or-read-inside-a-loop/m-p/3340055#M800652</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kiran,&lt;/P&gt;&lt;P&gt;Read with Binary search will certainly improve the performance and the table has to be sorted by the corresponding field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It actually splits the entries in to two halves and then starts searching if the required data is found in the first half then it does not go for the second half there by increasing the performance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sai&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 01 Feb 2008 05:50:21 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-01T05:50:21Z</dc:date>
    <item>
      <title>selects inside a loop or read inside a loop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selects-inside-a-loop-or-read-inside-a-loop/m-p/3340050#M800647</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Folks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a loop having 23 select statements in it.Will replacing some of these select statements with READ statement will enhance the performance?&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;K.Kiran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Feb 2008 05:39:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selects-inside-a-loop-or-read-inside-a-loop/m-p/3340050#M800647</guid>
      <dc:creator>kiran_k8</dc:creator>
      <dc:date>2008-02-01T05:39:51Z</dc:date>
    </item>
    <item>
      <title>Re: selects inside a loop or read inside a loop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selects-inside-a-loop-or-read-inside-a-loop/m-p/3340051#M800648</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;read works like select single.&lt;/P&gt;&lt;P&gt;if you have some select single statements then replacing them by read within loop  will improve performance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;kushagra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Feb 2008 05:43:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selects-inside-a-loop-or-read-inside-a-loop/m-p/3340051#M800648</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-01T05:43:15Z</dc:date>
    </item>
    <item>
      <title>Re: selects inside a loop or read inside a loop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selects-inside-a-loop-or-read-inside-a-loop/m-p/3340052#M800649</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes it will if you use the read with binary search addition&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you need to &lt;STRONG&gt;sort&lt;/STRONG&gt; the table before read .... binary search.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Feb 2008 05:43:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selects-inside-a-loop-or-read-inside-a-loop/m-p/3340052#M800649</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2008-02-01T05:43:34Z</dc:date>
    </item>
    <item>
      <title>Re: selects inside a loop or read inside a loop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selects-inside-a-loop-or-read-inside-a-loop/m-p/3340053#M800650</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Instead  of 23 select statments preferably what you can do is to take the same number of variable and the move the variables to a new internal table where the performance of the report will increase.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Feb 2008 05:44:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selects-inside-a-loop-or-read-inside-a-loop/m-p/3340053#M800650</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-01T05:44:36Z</dc:date>
    </item>
    <item>
      <title>Re: selects inside a loop or read inside a loop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selects-inside-a-loop-or-read-inside-a-loop/m-p/3340054#M800651</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi kiran, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;surely , it will increase ur performance . Bcoz , u r avoiding database fetch each time in ur loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do that and test ur speed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regrds&lt;/P&gt;&lt;P&gt;Karthik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Feb 2008 05:45:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selects-inside-a-loop-or-read-inside-a-loop/m-p/3340054#M800651</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-01T05:45:07Z</dc:date>
    </item>
    <item>
      <title>Re: selects inside a loop or read inside a loop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selects-inside-a-loop-or-read-inside-a-loop/m-p/3340055#M800652</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kiran,&lt;/P&gt;&lt;P&gt;Read with Binary search will certainly improve the performance and the table has to be sorted by the corresponding field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It actually splits the entries in to two halves and then starts searching if the required data is found in the first half then it does not go for the second half there by increasing the performance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sai&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Feb 2008 05:50:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selects-inside-a-loop-or-read-inside-a-loop/m-p/3340055#M800652</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-01T05:50:21Z</dc:date>
    </item>
    <item>
      <title>Re: selects inside a loop or read inside a loop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selects-inside-a-loop-or-read-inside-a-loop/m-p/3340056#M800653</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is definitely going to improve the performance of the report as the number of database hits will be reduced.&lt;/P&gt;&lt;P&gt;You can have different internal tables. You can use FOR ALL ENTRIES to fetch data and read those internal tables inside your loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Arindam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Feb 2008 05:55:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selects-inside-a-loop-or-read-inside-a-loop/m-p/3340056#M800653</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-01T05:55:00Z</dc:date>
    </item>
    <item>
      <title>Re: selects inside a loop or read inside a loop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selects-inside-a-loop-or-read-inside-a-loop/m-p/3340057#M800654</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Read is like select single,&lt;/P&gt;&lt;P&gt;you need to sort the table first using key fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use 'key' to check the data to be read.&lt;/P&gt;&lt;P&gt;check sy-subrc after read.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Better YOU use SUB Quarries.&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;GAURAV J.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: GAURAV on Feb 1, 2008 7:17 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: GAURAV on Feb 1, 2008 7:35 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Feb 2008 06:16:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selects-inside-a-loop-or-read-inside-a-loop/m-p/3340057#M800654</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-01T06:16:50Z</dc:date>
    </item>
    <item>
      <title>Re: selects inside a loop or read inside a loop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selects-inside-a-loop-or-read-inside-a-loop/m-p/3340058#M800655</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;Yes. You are true. Peformance will surely increase, if you write SELECT statement out side the loops and use only READ statement inside the loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. While READ you can use Binary search Extension (if the table is already sorted).&lt;/P&gt;&lt;P&gt;2. If possible use for all entries clause in Select statement to fetch the data.&lt;/P&gt;&lt;P&gt;3. Use select single, if you know that only one record with the key avialable in database table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this should Help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best Regards,&lt;/P&gt;&lt;P&gt;Sreedhar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Feb 2008 06:40:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selects-inside-a-loop-or-read-inside-a-loop/m-p/3340058#M800655</guid>
      <dc:creator>former_member377374</dc:creator>
      <dc:date>2008-02-01T06:40:50Z</dc:date>
    </item>
    <item>
      <title>Re: selects inside a loop or read inside a loop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selects-inside-a-loop-or-read-inside-a-loop/m-p/3340059#M800656</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello kiran,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;better not use select statement in the looop u can sue read statement,&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;Santhosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Feb 2008 06:58:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selects-inside-a-loop-or-read-inside-a-loop/m-p/3340059#M800656</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-01T06:58:14Z</dc:date>
    </item>
    <item>
      <title>Re: selects inside a loop or read inside a loop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selects-inside-a-loop-or-read-inside-a-loop/m-p/3340060#M800657</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if you have a single record then use read statement, if you have multiple records then we have to use loop inside loop.&lt;/P&gt;&lt;P&gt;to use read statement we need to sort the internal table firest.&lt;/P&gt;&lt;P&gt;while using the read statement place binary searc at the end of read statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Feb 2008 07:17:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selects-inside-a-loop-or-read-inside-a-loop/m-p/3340060#M800657</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-01T07:17:28Z</dc:date>
    </item>
    <item>
      <title>Re: selects inside a loop or read inside a loop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selects-inside-a-loop-or-read-inside-a-loop/m-p/3340061#M800658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;READ should be used for interanal tables only&lt;/P&gt;&lt;P&gt;SELECT should be used for dabtabase tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pl check from where u r retrieving the information and then replace it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Madhavi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Feb 2008 07:21:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selects-inside-a-loop-or-read-inside-a-loop/m-p/3340061#M800658</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-01T07:21:52Z</dc:date>
    </item>
    <item>
      <title>Re: selects inside a loop or read inside a loop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selects-inside-a-loop-or-read-inside-a-loop/m-p/3340062#M800659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   I just want to know, how much time will be taken if we use a select statement in loop and read statement in loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2009 10:47:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selects-inside-a-loop-or-read-inside-a-loop/m-p/3340062#M800659</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-29T10:47:32Z</dc:date>
    </item>
    <item>
      <title>Re: selects inside a loop or read inside a loop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selects-inside-a-loop-or-read-inside-a-loop/m-p/3340063#M800660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Read will retrieve the data from Application Server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select will retrieve the data from Database table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The performance suggestion is, do not use order by clause in Select statement. Instead of that use SORT statement. This will do the sort being at Application Server.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2009 11:01:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selects-inside-a-loop-or-read-inside-a-loop/m-p/3340063#M800660</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-29T11:01:21Z</dc:date>
    </item>
    <item>
      <title>Re: selects inside a loop or read inside a loop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selects-inside-a-loop-or-read-inside-a-loop/m-p/3340064#M800661</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;&lt;/P&gt;&lt;P&gt;I m reading a table inside a loop. But its not giving the correct result. In every case sy-subrc after read is not equal to zero. Plz provide the solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; LOOP AT gt_lfa1_y INTO gwa_lfa1_y.&lt;/P&gt;&lt;P&gt;    READ TABLE gt_vendor INTO gwa_vendor WITH KEY&lt;/P&gt;&lt;P&gt;                      lifnr = gwa_lfa1_y-lifnr BINARY SEARCH.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;If No Entries Found&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;      lv_sytabix = sy-tabix.&lt;/P&gt;&lt;P&gt;      DELETE gt_lfa1_y index lv_sytabix.&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;If Plant Is not Empty&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      IF gwa_lfa1_y-werks NE space.&lt;/P&gt;&lt;P&gt;        MOVE gwa_lfa1_y-lifnr TO gwa_vendor-lifnr.&lt;/P&gt;&lt;P&gt;        MOVE gwa_lfa1_y-name1 TO gwa_vendor-name1.&lt;/P&gt;&lt;P&gt;        MOVE gwa_lfa1_y-ktokk TO gwa_vendor-ktokk.&lt;/P&gt;&lt;P&gt;        MOVE c_use            TO gwa_vendor-source.&lt;/P&gt;&lt;P&gt;        MOVE sy-datum         TO gwa_vendor-erdat.&lt;/P&gt;&lt;P&gt;        MOVE sy-uname         TO gwa_vendor-ernam.&lt;/P&gt;&lt;P&gt;        APPEND gwa_vendor TO gt_vendor.&lt;/P&gt;&lt;P&gt;      ELSE.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;If Plant Is Empty Then Read Table LFB1&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        READ TABLE gt_lfb1 INTO gwa_lfb1 WITH KEY&lt;/P&gt;&lt;P&gt;                        lifnr = gwa_lfa1_y-lifnr BINARY SEARCH.&lt;/P&gt;&lt;P&gt;        IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;          MOVE gwa_lfa1_y-lifnr TO gwa_vendor-lifnr.&lt;/P&gt;&lt;P&gt;          MOVE gwa_lfa1_y-name1 TO gwa_vendor-name1.&lt;/P&gt;&lt;P&gt;          MOVE gwa_lfa1_y-ktokk TO gwa_vendor-ktokk.&lt;/P&gt;&lt;P&gt;          MOVE c_use            TO gwa_vendor-source.&lt;/P&gt;&lt;P&gt;          MOVE sy-datum         TO gwa_vendor-erdat.&lt;/P&gt;&lt;P&gt;          MOVE sy-uname         TO gwa_vendor-ernam.&lt;/P&gt;&lt;P&gt;          APPEND gwa_vendor TO gt_vendor.&lt;/P&gt;&lt;P&gt;        ELSE.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;If No Records Read From Table LFB1, Read Table LFM1&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          READ TABLE gt_lfm1 INTO gwa_lfm1 WITH KEY&lt;/P&gt;&lt;P&gt;                          lifnr = gwa_lfa1_y-lifnr BINARY SEARCH.&lt;/P&gt;&lt;P&gt;          IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;            MOVE gwa_lfa1_y-lifnr TO gwa_vendor-lifnr.&lt;/P&gt;&lt;P&gt;            MOVE gwa_lfa1_y-name1 TO gwa_vendor-name1.&lt;/P&gt;&lt;P&gt;            MOVE gwa_lfa1_y-ktokk TO gwa_vendor-ktokk.&lt;/P&gt;&lt;P&gt;            MOVE c_use            TO gwa_vendor-source.&lt;/P&gt;&lt;P&gt;            MOVE sy-datum         TO gwa_vendor-erdat.&lt;/P&gt;&lt;P&gt;            MOVE sy-uname         TO gwa_vendor-ernam.&lt;/P&gt;&lt;P&gt;            APPEND gwa_vendor TO gt_vendor.&lt;/P&gt;&lt;P&gt;          ENDIF.&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;    CLEAR: gwa_lfa1_y,&lt;/P&gt;&lt;P&gt;           gwa_lfb1,&lt;/P&gt;&lt;P&gt;           gwa_lfm1,&lt;/P&gt;&lt;P&gt;           gwa_vendor.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Jul 2009 13:01:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selects-inside-a-loop-or-read-inside-a-loop/m-p/3340064#M800661</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-25T13:01:29Z</dc:date>
    </item>
  </channel>
</rss>

