<?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: using ranges statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-ranges-statement/m-p/6102399#M1360646</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks i can understand that but i need to explore more on the select statement may be i give u my proper select statement with addition of ranges then probably Thomas or you can suggest me the solution for the same and the index is already there used for some other purpose i am just using it and i canot delete that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Arora&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 10 Sep 2009 07:15:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-09-10T07:15:49Z</dc:date>
    <item>
      <title>using ranges statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-ranges-statement/m-p/6102379#M1360626</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 want to use ranges for a field condition in where clause&lt;/P&gt;&lt;P&gt;Please let me know the impact&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the scenerio is the table on on whom select is done has indexes on several fields and one of the field is not in the where clause of the select which is giving performance problem hence the index is not hit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so can we declare a range statment and use in the where clause?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls suggest how to use and create it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for eg i want to use ranges for below statement in where clause&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT *     FROM vbak&lt;/P&gt;&lt;P&gt;         INTO CORRESPONDING FIELDS OF iIt_itab&lt;/P&gt;&lt;P&gt;         WHERE kunnr  =  lv_kunnr  AND&lt;/P&gt;&lt;P&gt;               vkorg  =  lv_vkorg        AND&lt;/P&gt;&lt;P&gt;               vtweg  =  lvvtweg .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now i want to insert a statement for ranges in where clause for a field eglike below&lt;/P&gt;&lt;P&gt;SELECT *     FROM vbak&lt;/P&gt;&lt;P&gt;         INTO CORRESPONDING FIELDS OF iIt_itab&lt;/P&gt;&lt;P&gt;         WHERE kunnr  =  lv_kunnr  AND&lt;/P&gt;&lt;P&gt;               vkorg  =  lv_vkorg        AND&lt;/P&gt;&lt;P&gt;               vtweg  =  lvvtweg &lt;/P&gt;&lt;P&gt;              autart  =  ...in ranges....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so how to code for this ranges statement request to pls suggest specifically to my requirement&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;Nishant&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;Moderator message - Moved to the correct forum&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rob Burbank on Sep 9, 2009 10:14 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2009 13:50:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-ranges-statement/m-p/6102379#M1360626</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-09T13:50:47Z</dc:date>
    </item>
    <item>
      <title>Re: using ranges statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-ranges-statement/m-p/6102380#M1360627</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: r_auart type range of vbak-auart.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Note - you have misspelled auart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2009 14:13:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-ranges-statement/m-p/6102380#M1360627</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-09T14:13:45Z</dc:date>
    </item>
    <item>
      <title>Re: using ranges statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-ranges-statement/m-p/6102381#M1360628</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i tried to implement the same&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT *     FROM vbak&lt;/P&gt;&lt;P&gt;         INTO CORRESPONDING FIELDS OF It_tab&lt;/P&gt;&lt;P&gt;         WHERE vkorg  =  lv_vkorg        AND&lt;/P&gt;&lt;P&gt;                   Auart  =  r_auart        AND   "added line&lt;/P&gt;&lt;P&gt;                   kunnr  = lv_kunnr  AND&lt;/P&gt;&lt;P&gt;                  vtweg  =  lvvtweg        AND&lt;/P&gt;&lt;P&gt;                   spart  = lv_spart ANd&lt;/P&gt;&lt;P&gt;                  vbtyp   = vbtyp_auftr&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i added auart condition for ranges but it  gives error..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;r_auart cannot be a table , a reference , a string or contain any of thse object&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls suggest&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Nishant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2009 15:21:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-ranges-statement/m-p/6102381#M1360628</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-09T15:21:14Z</dc:date>
    </item>
    <item>
      <title>Re: using ranges statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-ranges-statement/m-p/6102382#M1360629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Change&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Auart = r_auart&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;With&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Auart IN r_auart&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2009 15:23:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-ranges-statement/m-p/6102382#M1360629</guid>
      <dc:creator>amit_khare</dc:creator>
      <dc:date>2009-09-09T15:23:32Z</dc:date>
    </item>
    <item>
      <title>Re: using ranges statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-ranges-statement/m-p/6102383#M1360630</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You're having some pretty basic problems. You have to use  "IN" with a range, not "=".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please try to find the problem yourself before asking the forum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2009 15:24:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-ranges-statement/m-p/6102383#M1360630</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-09T15:24:11Z</dc:date>
    </item>
    <item>
      <title>Re: using ranges statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-ranges-statement/m-p/6102384#M1360631</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;Declare a range table as below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : ra_AUART TYPE RANGE OF AUART INITIAL SIZE 0,&lt;/P&gt;&lt;P&gt;            wa_AUART like line of ra_AUART.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and fill the range table as below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    wa_AUART-sign   = 'I'.&lt;/P&gt;&lt;P&gt;    wa_AUART-option = 'EQ'i.&lt;/P&gt;&lt;P&gt;    wa_AUART-low    = ' '. "value&lt;/P&gt;&lt;P&gt;    APPEND wa_AUART TO ra_AUART.&lt;/P&gt;&lt;P&gt;    CLEAR wa_autyp.&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;the range table acts as select option and in select statement use IN ra_AUART.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Surendar Reddy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2009 15:28:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-ranges-statement/m-p/6102384#M1360631</guid>
      <dc:creator>suredarreddy_pulimamidi</dc:creator>
      <dc:date>2009-09-09T15:28:49Z</dc:date>
    </item>
    <item>
      <title>Re: using ranges statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-ranges-statement/m-p/6102385#M1360632</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes rob my mistake..by mistake i took equal sign&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks but can you please give me more details on range statement how does it work...and its implication&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;basically my main aim here is that with addiing auart now vbak secondry index will be hit which has vkorg auart and kunnr&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so that will result in performance improvement for the select i wrot as this select is taking lot time to execute as no index is hit hence i did this any suggestion for the same or any other method to improve the performance of this select&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;arora&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2009 15:29:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-ranges-statement/m-p/6102385#M1360632</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-09T15:29:55Z</dc:date>
    </item>
    <item>
      <title>Re: using ranges statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-ranges-statement/m-p/6102386#M1360633</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why do you think adding AUART to the WHERE will help you use an index. It's not in any of the delivered indexes. Ot do you have a Z index?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2009 15:35:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-ranges-statement/m-p/6102386#M1360633</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-09T15:35:53Z</dc:date>
    </item>
    <item>
      <title>Re: using ranges statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-ranges-statement/m-p/6102387#M1360634</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;The RANGES is the same to the SELECT-OPTIONS only it needs to manage programmatically (the select-option is filled in the selection-screen).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So u can have:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TABLES VBAK.

SELECT-OPTIONS: S_AUART FOR VBAK-AUART.

SELECT * FROM VBAK  AUART IN S_VABK....&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;RANGES: R_AUART FOR VBAK-AUART.

SELECT * FROM VBAK  AUART IN R_VABK....&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2009 15:39:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-ranges-statement/m-p/6102387#M1360634</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-09T15:39:56Z</dc:date>
    </item>
    <item>
      <title>Re: using ranges statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-ranges-statement/m-p/6102388#M1360635</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; The RANGES is the same to the SELECT-OPTIONS only it needs to manage programmatically (the select-option is filled in the &amp;gt;selection-screen).&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Actually - that's not entirely correct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS support CHECK, while ranges do not (at least in 4.7). There may bve other differences as well. Give it a try.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2009 15:45:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-ranges-statement/m-p/6102388#M1360635</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-09T15:45:27Z</dc:date>
    </item>
    <item>
      <title>Re: using ranges statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-ranges-statement/m-p/6102389#M1360636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes Rob there is a zindex using vkorg auart and kunnr on the table&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2009 15:50:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-ranges-statement/m-p/6102389#M1360636</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-09T15:50:51Z</dc:date>
    </item>
    <item>
      <title>Re: using ranges statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-ranges-statement/m-p/6102390#M1360637</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 RoB&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'll try to be more precise, in this post we're talking about the range for a SELECT, aren't we? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF it's so I believe a range and the select-option are the same, anyway I didn't want to speak about the RANGE in generally, but for SELECT only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2009 15:53:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-ranges-statement/m-p/6102390#M1360637</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-09T15:53:30Z</dc:date>
    </item>
    <item>
      <title>Re: using ranges statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-ranges-statement/m-p/6102391#M1360638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So it should be OK now. Just having KUNNR in the index should make it pretty selective - and that's what matters. You can use transaction ST05 to analyze this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2009 15:55:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-ranges-statement/m-p/6102391#M1360638</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-09T15:55:13Z</dc:date>
    </item>
    <item>
      <title>Re: using ranges statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-ranges-statement/m-p/6102392#M1360639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Hi&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Ok RoB&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Yes Max - I was just being picky &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2009 15:56:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-ranges-statement/m-p/6102392#M1360639</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-09T15:56:32Z</dc:date>
    </item>
    <item>
      <title>Re: using ranges statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-ranges-statement/m-p/6102393#M1360640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi MAx&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;actually my purpose of using range was to improve the performance &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Arora&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2009 15:58:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-ranges-statement/m-p/6102393#M1360640</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-09T15:58:30Z</dc:date>
    </item>
    <item>
      <title>Re: using ranges statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-ranges-statement/m-p/6102394#M1360641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Rob&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will udapte on the same once i test it in st05 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Arora&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2009 15:59:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-ranges-statement/m-p/6102394#M1360641</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-09T15:59:37Z</dc:date>
    </item>
    <item>
      <title>Re: using ranges statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-ranges-statement/m-p/6102395#M1360642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use table VAKPA for quickly accessing sales documents by partner number, together with a join on VBAK to get remaining information.&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2009 16:06:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-ranges-statement/m-p/6102395#M1360642</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2009-09-09T16:06:20Z</dc:date>
    </item>
    <item>
      <title>Re: using ranges statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-ranges-statement/m-p/6102396#M1360643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Thomas&lt;/P&gt;&lt;P&gt;I will discuss on this with you tomorrow let me check first how much the improvement we get by the first range statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then i can give you exact statement of the select for you to be able to give ur valuable suggestion for improving further on the performance....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Nishant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2009 16:10:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-ranges-statement/m-p/6102396#M1360643</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-09T16:10:47Z</dc:date>
    </item>
    <item>
      <title>Re: using ranges statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-ranges-statement/m-p/6102397#M1360644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Arora&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You must take care of this one too &lt;SPAN __jive_macro_name="thread" id="11318"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Same Limitations for Select-Option Because bot work same way &lt;SPAN __jive_macro_name="thread" id="218779"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and if you Values in Ranges are more than you will have to use &lt;STRONG&gt;FOR ALL ENTRIES&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Faisal Altaf on Sep 9, 2009 9:14 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2009 16:12:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-ranges-statement/m-p/6102397#M1360644</guid>
      <dc:creator>faisalatsap</dc:creator>
      <dc:date>2009-09-09T16:12:38Z</dc:date>
    </item>
    <item>
      <title>Re: using ranges statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-ranges-statement/m-p/6102398#M1360645</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; I will discuss on this with you tomorrow let me check first how much the improvement we get by the first range statement&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Thomas has given you the best solution. I wouldn't bother to to pursue the original way. If you have created the index for this particular SELECT, you can get rid of it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2009 16:19:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-ranges-statement/m-p/6102398#M1360645</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-09T16:19:30Z</dc:date>
    </item>
  </channel>
</rss>

