<?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: ranges in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/ranges/m-p/4278634#M1020761</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi VARUN RAJULE,&lt;/P&gt;&lt;P&gt;  Ranges are similar to select options you can use that ranges variable while fetching the data and like that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see the following example code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;select * 
  from mseg 
  into table it_itab 
 where bwart in r2_bwart.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am providing the F1 help of SAP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Syntax *&lt;/P&gt;&lt;P&gt;RANGES rtab FOR dobj [OCCURS n]. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;Obsolete declaration of a Ranges-table. This statement (not allowed in classes) is a short form of the following statement sequence which is also not allowed in classes: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: BEGIN OF rtab OCCURS {10|n}, 
        sign   TYPE c LENGTH 1, 
        option TYPE c LENGTH 2, 
        low    LIKE dobj, 
        high   LIKE dobj, 
      END OF rtab.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An internal table rtab with the structure of a selection table and a header line is declared. Without the addition OCCURS, the initial memory requirement (see DATA - ranges-tables) of the ranges-table is set to ten rows. With the addition OCCURS, you can specify a numeric literal or a numeric constant n to determine a different initial memory requirement. &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;Note&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;It is not allowed to declare internal tables with header lines. Due to this, the statement RANGES is not allowed in header lines. To declare a ranges-table in classes, you can use the addition TYPE|LIKE RANGE OF (see TYPES - ranges-table type and DATA - ranges-tables). &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;STRONG&gt;Mahi&lt;/STRONG&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 Aug 2008 06:30:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-05T06:30:52Z</dc:date>
    <item>
      <title>ranges</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ranges/m-p/4278632#M1020759</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is use of  rages statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ranges :r1_bwart for mseg-bwart,  " For Accepted Qty&lt;/P&gt;&lt;P&gt;        r2_bwart for mseg-bwart.  " For Issued Qty&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;  r2_bwart-sign = 'I'.&lt;/P&gt;&lt;P&gt;  r2_bwart-option = 'EQ'.&lt;/P&gt;&lt;P&gt;  r2_bwart-low = '261'.&lt;/P&gt;&lt;P&gt;*r2_bwart-high&lt;/P&gt;&lt;P&gt;  append r2_bwart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  r2_bwart-sign = 'I'.&lt;/P&gt;&lt;P&gt;  r2_bwart-option = 'EQ'.&lt;/P&gt;&lt;P&gt;  r2_bwart-low = '102'.&lt;/P&gt;&lt;P&gt;*r2_bwart-high&lt;/P&gt;&lt;P&gt;  append r2_bwart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what it means. plz help me out.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 06:26:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ranges/m-p/4278632#M1020759</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T06:26:21Z</dc:date>
    </item>
    <item>
      <title>Re: ranges</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ranges/m-p/4278633#M1020760</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;ranges are almost similar to select options which r used in older versions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 06:29:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ranges/m-p/4278633#M1020760</guid>
      <dc:creator>GauthamV</dc:creator>
      <dc:date>2008-08-05T06:29:27Z</dc:date>
    </item>
    <item>
      <title>Re: ranges</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ranges/m-p/4278634#M1020761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi VARUN RAJULE,&lt;/P&gt;&lt;P&gt;  Ranges are similar to select options you can use that ranges variable while fetching the data and like that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see the following example code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;select * 
  from mseg 
  into table it_itab 
 where bwart in r2_bwart.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am providing the F1 help of SAP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Syntax *&lt;/P&gt;&lt;P&gt;RANGES rtab FOR dobj [OCCURS n]. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;Obsolete declaration of a Ranges-table. This statement (not allowed in classes) is a short form of the following statement sequence which is also not allowed in classes: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: BEGIN OF rtab OCCURS {10|n}, 
        sign   TYPE c LENGTH 1, 
        option TYPE c LENGTH 2, 
        low    LIKE dobj, 
        high   LIKE dobj, 
      END OF rtab.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An internal table rtab with the structure of a selection table and a header line is declared. Without the addition OCCURS, the initial memory requirement (see DATA - ranges-tables) of the ranges-table is set to ten rows. With the addition OCCURS, you can specify a numeric literal or a numeric constant n to determine a different initial memory requirement. &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;Note&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;It is not allowed to declare internal tables with header lines. Due to this, the statement RANGES is not allowed in header lines. To declare a ranges-table in classes, you can use the addition TYPE|LIKE RANGE OF (see TYPES - ranges-table type and DATA - ranges-tables). &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;STRONG&gt;Mahi&lt;/STRONG&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 06:30:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ranges/m-p/4278634#M1020761</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T06:30:52Z</dc:date>
    </item>
    <item>
      <title>Re: ranges</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ranges/m-p/4278635#M1020762</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;It is nothing but, same as &lt;STRONG&gt;Select-option&lt;/STRONG&gt; in older version&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnks &amp;amp; rgds,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;raghul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 06:32:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ranges/m-p/4278635#M1020762</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T06:32:40Z</dc:date>
    </item>
    <item>
      <title>Re: ranges</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ranges/m-p/4278636#M1020763</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;A href="http://www.sap-img.com/abap/difference-between-select-options-ranges.htm" target="test_blank"&gt;http://www.sap-img.com/abap/difference-between-select-options-ranges.htm&lt;/A&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 06:32:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ranges/m-p/4278636#M1020763</guid>
      <dc:creator>bpawanchand</dc:creator>
      <dc:date>2008-08-05T06:32:41Z</dc:date>
    </item>
    <item>
      <title>Re: ranges</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ranges/m-p/4278637#M1020764</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;Ranges are like Select-options , it is used to store range value.&lt;/P&gt;&lt;P&gt;It Declare an internal table whose line type are SIGN, OPTION, LOW and HIGH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the details here-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_webas620/helpdata/en/9f/dba71f35c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_webas620/helpdata/en/9f/dba71f35c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 06:33:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ranges/m-p/4278637#M1020764</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T06:33:02Z</dc:date>
    </item>
    <item>
      <title>Re: ranges</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ranges/m-p/4278638#M1020765</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;A href="http://www.abapguide.com/" target="test_blank"&gt;http://www.abapguide.com/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/tips/tips_range.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/tips/tips_range.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sravanthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 06:33:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ranges/m-p/4278638#M1020765</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T06:33:36Z</dc:date>
    </item>
    <item>
      <title>Re: ranges</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ranges/m-p/4278639#M1020766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;STRONG&gt;Varun&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here both SELECT-OPTIONS &amp;amp; RANGES works for the same purpose. &lt;/P&gt;&lt;P&gt;They both are used for the range selection from selection screen. &lt;/P&gt;&lt;P&gt;The main diff. between them is, while we use SELECT-OPTIONS system implicitly creates the select options internal table which contains the fields of SIGN,OPTION,LOW &amp;amp; HIGH. But in case of RANGES, this internal table should be defined explicitly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;    lfs_kschl LIKE LINE OF r_kschl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  lfs_kschl-low    = c_kschl_zf11.&lt;/P&gt;&lt;P&gt;  lfs_kschl-option = 'EQ'.&lt;/P&gt;&lt;P&gt;  lfs_kschl-sign   = 'I'.&lt;/P&gt;&lt;P&gt;  APPEND lfs_kschl TO r_kschl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  lfs_kschl-low    = c_kschl_zf12.&lt;/P&gt;&lt;P&gt;  lfs_kschl-option = 'EQ'.&lt;/P&gt;&lt;P&gt;  lfs_kschl-sign   = 'I'.&lt;/P&gt;&lt;P&gt;  APPEND lfs_kschl TO r_kschl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  lfs_kschl-low    = c_kschl_zf13.&lt;/P&gt;&lt;P&gt;  lfs_kschl-option = 'EQ'.&lt;/P&gt;&lt;P&gt;  lfs_kschl-sign   = 'I'.&lt;/P&gt;&lt;P&gt;  APPEND lfs_kschl TO r_kschl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  lfs_kschl-low    = c_kschl_zf14.&lt;/P&gt;&lt;P&gt;  lfs_kschl-option = 'EQ'.&lt;/P&gt;&lt;P&gt;  lfs_kschl-sign   = 'I'.&lt;/P&gt;&lt;P&gt;  APPEND lfs_kschl TO r_kschl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Eshwar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 06:34:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ranges/m-p/4278639#M1020766</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T06:34:16Z</dc:date>
    </item>
    <item>
      <title>Re: ranges</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ranges/m-p/4278640#M1020767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ranges and select-options are the same both are used for range selection, only difference is the internal table of select-options that is SIGN, OPTION, LOW &amp;amp; HIGH is created implicitly while for ranges you have to defined it explicitly.&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 06:34:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ranges/m-p/4278640#M1020767</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T06:34:30Z</dc:date>
    </item>
    <item>
      <title>Re: ranges</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ranges/m-p/4278641#M1020768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Varun,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As Select-option creats internal table self but case of RANGES, this internal table should be defined explicitly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like as you did in your piece of code.that is the difference.and also we can not use ranges for the selection screen purpose as in case of select-options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also:&lt;/P&gt;&lt;P&gt;Refer&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/ranges.htm" target="test_blank"&gt;http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/ranges.htm&lt;/A&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 06:35:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ranges/m-p/4278641#M1020768</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T06:35:23Z</dc:date>
    </item>
    <item>
      <title>Re: ranges</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ranges/m-p/4278642#M1020769</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;1. SELECT-OPTIONS: To declare an internal table that is also linked to input fields on a&lt;/P&gt;&lt;P&gt;selection screen&lt;/P&gt;&lt;P&gt;2. RANGES: To declare an internal table with the same structure as in SELECT-OPTIONS, but without linking it to a selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, RANGES statement to create internal tables that have the structure of selection tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Internal tables created with RANGES have the same structure as selection tables, but they do not have the same functionality. Selection tables created with RANGES are not components of the selection screen. As a result, no relevant input fields are generated. Also, you cannot use a RANGES table as a data interface in program called by the following statement:&lt;/P&gt;&lt;P&gt;SUBMIT prog WITH rangetab IN table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, you can use RANGES to create the table &amp;lt;table&amp;gt; in the calling program. The main function of RANGES tables is to pass data to the actual selection tables without displaying the&lt;/P&gt;&lt;P&gt;selection screen when executable programs are called.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Although you can use RANGES tables like actual selection tables in the WHERE clause of Open SQL statements and in combination with the IN operator in logical expressions, they are not linked to a database table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;select * 
  from mara 
  into table itab 
  where matnr IN r_matnr&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this clarifies the doubt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanx,&lt;/P&gt;&lt;P&gt;dhanashri.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Dhanashri Pawar on Aug 5, 2008 8:39 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 06:37:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ranges/m-p/4278642#M1020769</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T06:37:56Z</dc:date>
    </item>
    <item>
      <title>Re: ranges</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ranges/m-p/4278643#M1020770</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;ranges is same as select-option. But it is not visible in selection screen. think a scenario like if u want to fetch matnr between 100 to 200 and u dont want to display it in selection screen than u need to go for range. as in ur code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;r2_bwart-sign = 'I'.&lt;/P&gt;&lt;P&gt;r2_bwart-option = 'EQ'.&lt;/P&gt;&lt;P&gt;r2_bwart-low = '261'.&lt;/P&gt;&lt;P&gt;*r2_bwart-high&lt;/P&gt;&lt;P&gt;append r2_bwart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;r2_bwart-sign = 'I'.&lt;/P&gt;&lt;P&gt;r2_bwart-option = 'EQ'.&lt;/P&gt;&lt;P&gt;r2_bwart-low = '102'.&lt;/P&gt;&lt;P&gt;*r2_bwart-high&lt;/P&gt;&lt;P&gt;append r2_bwart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;your selection for bwart field is for value 102 to 261 only. This will not come in ur selection-screen.&lt;/P&gt;&lt;P&gt;hope this will help u.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 06:44:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ranges/m-p/4278643#M1020770</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T06:44:07Z</dc:date>
    </item>
    <item>
      <title>Re: ranges</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ranges/m-p/4278644#M1020771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Both range and select options are same except that ranges are not visible to accept input data from user. We need to input data at run time. Both create internal table of the same type.&lt;/P&gt;&lt;P&gt;Select-options is a advanced version of ranges where we have selection screen for multiple data selection.&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;&lt;/P&gt;&lt;P&gt;rajesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 06:52:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ranges/m-p/4278644#M1020771</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T06:52:02Z</dc:date>
    </item>
  </channel>
</rss>

