<?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 Tables in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/ranges-tables/m-p/3492786#M840027</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 table is similar to select-options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But in select-options system will create the internal table automatically, with ranges we will create the internal table explicilty.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;remember-if any one give correct try habituate giving points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: subas  Bose on Mar 9, 2008 6:53 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 09 Mar 2008 05:46:01 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-09T05:46:01Z</dc:date>
    <item>
      <title>RANGES Tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ranges-tables/m-p/3492785#M840026</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;What are RANGES Tables?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 09 Mar 2008 05:43:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ranges-tables/m-p/3492785#M840026</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-09T05:43:32Z</dc:date>
    </item>
    <item>
      <title>Re: RANGES Tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ranges-tables/m-p/3492786#M840027</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 table is similar to select-options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But in select-options system will create the internal table automatically, with ranges we will create the internal table explicilty.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;remember-if any one give correct try habituate giving points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: subas  Bose on Mar 9, 2008 6:53 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 09 Mar 2008 05:46:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ranges-tables/m-p/3492786#M840027</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-09T05:46:01Z</dc:date>
    </item>
    <item>
      <title>Re: RANGES Tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ranges-tables/m-p/3492787#M840028</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 table is similar to select-options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg:&lt;/P&gt;&lt;P&gt;If u want to create a range table to pass to any BAPI call then&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : int_res_sel	LIKE	bapiresrange            OCCURS 0 WITH HEADER LINE.     " RANGES Table for Resources&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then populate it with value &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when INT_RES_NO has resource nos.Then&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT INT_RES_NO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    INT_RES_SEL-SIGN   = 'I'.&lt;/P&gt;&lt;P&gt;    INT_RES_SEL-OPTION = 'EQ'.&lt;/P&gt;&lt;P&gt;    INT_RES_SEL-LOW    = INT_RES_NO-NAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    APPEND INT_RES_SEL.&lt;/P&gt;&lt;P&gt;    CLEAR : INT_RES_SEL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But in case of select options &lt;/P&gt;&lt;P&gt;the SIGN and OPTION are already filled when u enter the value in the select option.......&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;reward points if its useful..... &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt; ... and mark the post answered.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 09 Mar 2008 06:16:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ranges-tables/m-p/3492787#M840028</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-09T06:16:20Z</dc:date>
    </item>
    <item>
      <title>Re: RANGES Tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ranges-tables/m-p/3492788#M840029</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 use the RANGES statement to create internal tables of the same type as selection tables.&lt;/P&gt;&lt;P&gt;RANGES &amp;lt;rangetab&amp;gt; FOR &amp;lt;f&amp;gt;.&lt;/P&gt;&lt;P&gt;This statement is simply a shortened form of the following statements:&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF &amp;lt;rangetab&amp;gt; OCCURS 0,&lt;/P&gt;&lt;P&gt;SIGN(1),&lt;/P&gt;&lt;P&gt;OPTION(2)&lt;/P&gt;&lt;P&gt;LOW LIKE &amp;lt;f&amp;gt;,&lt;/P&gt;&lt;P&gt;HIGH LIKE &amp;lt;f&amp;gt;,&lt;/P&gt;&lt;P&gt;END OF &amp;lt;rangetab&amp;gt;. &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. &lt;/P&gt;&lt;P&gt;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 &amp;lt;prog&amp;gt; called by the following statement:&lt;/P&gt;&lt;P&gt;SUBMIT &amp;lt;prog&amp;gt; WITH &amp;lt;rangetab&amp;gt; IN &amp;lt;table&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Cheers,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Chandra Sekhar.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 09 Mar 2008 08:35:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ranges-tables/m-p/3492788#M840029</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-09T08:35:57Z</dc:date>
    </item>
  </channel>
</rss>

