<?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: loop at select options in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-select-options/m-p/10626781#M1864047</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you have any select on vbak already use the output of the same if not, then as everyone has suggested only option is to fetch from vbak and use.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 22 Sep 2014 15:12:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2014-09-22T15:12:56Z</dc:date>
    <item>
      <title>loop at select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-select-options/m-p/10626769#M1864035</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;Based on the earlier discussions I have tried the suggested solutions. But nothing works for my case. Kindly help. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am declaring select options as follows. &lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;SELECT-OPTIONS&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;:&amp;nbsp; s_no for&amp;nbsp; vbak&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;vbeln.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;LOOP &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;AT &lt;/SPAN&gt;s_no &lt;SPAN class="L0S52"&gt;INTO &lt;/SPAN&gt;wa_s_no&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&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;&lt;SPAN class="L0S31"&gt;ENDLOOP.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suppose if I give the document number in the range like this 9200101150 to 9200101155.&lt;/P&gt;&lt;P&gt;I need to get all the documents in place.&lt;SPAN style="font-size: 10pt;"&gt; VBELN is of the type char. So I cannot increment also. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Please suggest any ways. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2014 08:59:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-select-options/m-p/10626769#M1864035</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-09-22T08:59:04Z</dc:date>
    </item>
    <item>
      <title>Re: loop at select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-select-options/m-p/10626770#M1864036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Get it from DB VBAK like below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select * into table lt_vbak&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from vbak&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; where vbeln in s_no.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2014 09:03:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-select-options/m-p/10626770#M1864036</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-09-22T09:03:14Z</dc:date>
    </item>
    <item>
      <title>Re: loop at select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-select-options/m-p/10626771#M1864037</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;This work for the rest of us:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: r_vbeln TYPE RANGE OF vbak-vbeln."&lt;SPAN style="text-decoration: underline;"&gt;Same as SELECT-OPTIONS&lt;/SPAN&gt;:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; DATA: it_vbak TYPE TABLE OF vbak .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; SELECT * INTO TABLE it_vbak&lt;BR /&gt;&amp;nbsp; FROM vbak&lt;BR /&gt;&amp;nbsp; WHERE&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; vbeln IN r_vbeln .&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;What is different in your case ?&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2014 09:09:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-select-options/m-p/10626771#M1864037</guid>
      <dc:creator>rosenberg_eitan</dc:creator>
      <dc:date>2014-09-22T09:09:44Z</dc:date>
    </item>
    <item>
      <title>Re: loop at select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-select-options/m-p/10626772#M1864038</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the problem ?&lt;/P&gt;&lt;P&gt;Why you want/need to loop over your select-options ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like Niyaz said, you can use the select-options in your select without doing anything,so why are you looping ? What is it you want to achieve ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2014 09:09:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-select-options/m-p/10626772#M1864038</guid>
      <dc:creator>PeterJonker</dc:creator>
      <dc:date>2014-09-22T09:09:52Z</dc:date>
    </item>
    <item>
      <title>Re: loop at select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-select-options/m-p/10626773#M1864039</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;About the increment:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/546104" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2014 09:16:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-select-options/m-p/10626773#M1864039</guid>
      <dc:creator>rosenberg_eitan</dc:creator>
      <dc:date>2014-09-22T09:16:18Z</dc:date>
    </item>
    <item>
      <title>Re: loop at select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-select-options/m-p/10626774#M1864040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you elaborate on actual requirement, some preliminary remarks :&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;You can use the range in a "WHERE vbeln IN s_no." to get information from database, e.g. table VBAK&lt;/LI&gt;&lt;LI&gt;You can add 1 to such fields, here VBELN usually contains only numbers, so implicit conversion to and from number should be successful, but you can (should) of course add some TRY/CATCH/ENDTRY &lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Converting such a range to a list of value can generate some problems, e.g. dump if you generate a too wide range for a SQL statement, performance problem if you use a FOR ALL ENTRIES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So why (and what) do you ask this ?&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>Mon, 22 Sep 2014 10:00:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-select-options/m-p/10626774#M1864040</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2014-09-22T10:00:36Z</dc:date>
    </item>
    <item>
      <title>Re: loop at select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-select-options/m-p/10626775#M1864041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Based on the requirement i cannot take this S_no directly from VBAK. I need to append these document numbers with VBFA records and then i have to get it from VBAK. SO I need to loop at s_no. VBAK-VBELN is of char type and so I cannot increment it. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2014 12:06:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-select-options/m-p/10626775#M1864041</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-09-22T12:06:29Z</dc:date>
    </item>
    <item>
      <title>Re: loop at select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-select-options/m-p/10626776#M1864042</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi &lt;SPAN class="j-post-author"&gt;&lt;STRONG&gt;&lt;A _jive_internal="true" class="jiveTT-hover-user jive-username-link" data-avatarid="-1" data-externalid="" data-presence="null" data-userid="637804" data-username="rsghooli" href="https://answers.sap.com/people/rsghooli"&gt;Raghavendra Ghooli&lt;/A&gt;&lt;/STRONG&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="j-post-author"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="j-post-author"&gt;befor you can loop through the vbeln given in your select-option, you have to add an additional step and select them manually from Database. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="j-post-author"&gt;Because as you already figured you can give ranges and will just have 2 numbers in your select-option. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="j-post-author"&gt;So do a simply select -&amp;nbsp; as by examples above already provided - and you will get a table suited with all the vbeln.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="j-post-author"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="j-post-author"&gt;regards&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="j-post-author"&gt;Stefan Seeburger&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2014 12:11:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-select-options/m-p/10626776#M1864042</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-09-22T12:11:41Z</dc:date>
    </item>
    <item>
      <title>Re: loop at select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-select-options/m-p/10626777#M1864043</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;Hi,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;Hope&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;it help full.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt; Select-options: s_no for vbak-vbeln.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;if s_no-high is initial.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;move s_no-low to s_no-high.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;endif.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;Select * from vbak&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;where vbeln between s_no-low and s_no-high.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;Endselect.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;Venkat.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2014 12:58:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-select-options/m-p/10626777#M1864043</guid>
      <dc:creator>VenkatRamesh_V</dc:creator>
      <dc:date>2014-09-22T12:58:32Z</dc:date>
    </item>
    <item>
      <title>Re: loop at select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-select-options/m-p/10626778#M1864044</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dont loop the selection screen parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First create internal table and work area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TABLES : VBAK.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DATA: lt_tab type table of VBAK,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; wa_tab type VBAK.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then,select all entries from Database by the range given in S_NO .&lt;/P&gt;&lt;P&gt;for this follow this code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SELECT * FROM&amp;nbsp; vbak&amp;nbsp; INTO TABLE lt_tab WHERE&amp;nbsp; vbeln&amp;nbsp; IN&amp;nbsp; s_no.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then loop this internal table(lt_tab) into work area(wa_tab).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;inside the loop just type all the fileds you need to display using &lt;STRONG&gt;WRITE&lt;/STRONG&gt; statment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOOP AT LT_TAB INTO wa_tab.&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;.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ENDLOOP.&lt;/STRONG&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;&lt;/P&gt;&lt;P&gt;Ganesa Moorthy S.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2014 13:00:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-select-options/m-p/10626778#M1864044</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-09-22T13:00:33Z</dc:date>
    </item>
    <item>
      <title>Re: loop at select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-select-options/m-p/10626779#M1864045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Guys, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your all suggestions. &lt;/P&gt;&lt;P&gt;My requirement is to initially query VBFA table. Now append S_no data to this selected VBFA.&lt;/P&gt;&lt;P&gt;After this we have filters and some other logic. At the end of this, based on this selected VBELN I have to query VBAK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suppose if I have 100s of documents in s_no, I am looping at it and selecting the data from VBAK. Why looping means we have some other requirements and logic. This is working fine and even performance wise it is agreed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now suppose if document range is given then it is taking only one loop and I am not able to get all the documents which are there in between. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2014 14:26:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-select-options/m-p/10626779#M1864045</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-09-22T14:26:33Z</dc:date>
    </item>
    <item>
      <title>Re: loop at select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-select-options/m-p/10626780#M1864046</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;as mentioned above, dont work with select-option directly. preselect your numbers to an internal table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Stefan Seeburger&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2014 14:53:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-select-options/m-p/10626780#M1864046</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-09-22T14:53:28Z</dc:date>
    </item>
    <item>
      <title>Re: loop at select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-select-options/m-p/10626781#M1864047</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you have any select on vbak already use the output of the same if not, then as everyone has suggested only option is to fetch from vbak and use.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2014 15:12:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-select-options/m-p/10626781#M1864047</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-09-22T15:12:56Z</dc:date>
    </item>
    <item>
      <title>Re: loop at select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-select-options/m-p/10626782#M1864048</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This was related to performance also. I wanted to avoid multiple selects for a single table. As loop at s_no is not possible, selecting from same table multiple times. Let me wait for the review result. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you all.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Sep 2014 03:24:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-select-options/m-p/10626782#M1864048</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-09-24T03:24:48Z</dc:date>
    </item>
  </channel>
</rss>

