<?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 Problem with RANGE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-range/m-p/7094827#M1507638</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good morning, people of the forum ... &lt;/P&gt;&lt;P&gt;I have the following question ... &lt;/P&gt;&lt;P&gt;Is there any sentence that tells me if a range is contained within another range of the same type?? &lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 15 Jul 2010 14:59:34 GMT</pubDate>
    <dc:creator>miguelngel_garcsramrez</dc:creator>
    <dc:date>2010-07-15T14:59:34Z</dc:date>
    <item>
      <title>Problem with RANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-range/m-p/7094827#M1507638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good morning, people of the forum ... &lt;/P&gt;&lt;P&gt;I have the following question ... &lt;/P&gt;&lt;P&gt;Is there any sentence that tells me if a range is contained within another range of the same type?? &lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jul 2010 14:59:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-range/m-p/7094827#M1507638</guid>
      <dc:creator>miguelngel_garcsramrez</dc:creator>
      <dc:date>2010-07-15T14:59:34Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with RANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-range/m-p/7094828#M1507639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;well, if the ranges are same you can always check &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;if range1[] = range2[]&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;.. else you will have to loop over one range and read the values from the other range to compare.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jul 2010 15:05:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-range/m-p/7094828#M1507639</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-15T15:05:50Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with RANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-range/m-p/7094829#M1507640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use 'IN' keyword to validate. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg: Range1[] in Range2[]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jul 2010 15:07:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-range/m-p/7094829#M1507640</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-15T15:07:49Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with RANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-range/m-p/7094830#M1507641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think the second answer is more appropriate ... &lt;/P&gt;&lt;P&gt;But I do not think I expressed myself very well ... &lt;/P&gt;&lt;P&gt;What I really want is to know if there is intersection between two ranges of the same type (not necessarily equal). &lt;/P&gt;&lt;P&gt;For example, for two ranges of type DATE, if the first range is from 01/05/2010 to 31/05/2010 and the second range is from 05/15/2010 until 15/06/2010 (in format dd/MM/yyyy), the result should be TRUE, but if the ranges do not intersect, the result should be FALSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this possible??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jul 2010 18:00:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-range/m-p/7094830#M1507641</guid>
      <dc:creator>miguelngel_garcsramrez</dc:creator>
      <dc:date>2010-07-19T18:00:16Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with RANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-range/m-p/7094831#M1507642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well you can try this logic&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at r1.&lt;/P&gt;&lt;P&gt;while r1-low &amp;lt; = r1-high.&lt;/P&gt;&lt;P&gt;if r1-low in r2.&lt;/P&gt;&lt;P&gt;exists.&lt;/P&gt;&lt;P&gt;exit.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;r1-low = r1-low  + 1.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endwhile.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jul 2010 18:10:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-range/m-p/7094831#M1507642</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-07-19T18:10:32Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with RANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-range/m-p/7094832#M1507643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You mean... evaluate each value of r1 in r2???&lt;/P&gt;&lt;P&gt;Yeah... I can do that, but I thought there was a simpler and more abreviated method...&lt;/P&gt;&lt;P&gt;Well, I think I'll take your suggest..&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jul 2010 20:06:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-range/m-p/7094832#M1507643</guid>
      <dc:creator>miguelngel_garcsramrez</dc:creator>
      <dc:date>2010-07-19T20:06:46Z</dc:date>
    </item>
  </channel>
</rss>

