<?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: compare two ranges in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/compare-two-ranges/m-p/2303469#M503682</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;see this subroutine&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="------------------" /&gt;  -&lt;HR originaltext="---------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  f_authchk_ekorg&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; Authority check and Validation for Purchasing org&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     --&amp;gt;FP_S_EKORG  Purchasing Org&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     &amp;lt;--FP_RA_EKORG Range for Purchasing Org&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM f_authchk_ekorg  USING    fp_s_ekorg    TYPE ty_ra_ekorg&lt;/P&gt;&lt;P&gt;                      CHANGING fp_ra_ekorg   TYPE ty_ra_ekorg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Local constants&lt;/P&gt;&lt;P&gt;  CONSTANTS : l_c_obj TYPE xuobject VALUE '1234',&lt;/P&gt;&lt;P&gt;              l_c_ekorg TYPE char5 VALUE 'EKORG',&lt;/P&gt;&lt;P&gt;              l_c_eq  TYPE char2 VALUE 'EQ',&lt;/P&gt;&lt;P&gt;              l_c_i   TYPE char1 VALUE 'I'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Local types&lt;/P&gt;&lt;P&gt;  TYPES: BEGIN OF l_ty_ekorg,&lt;/P&gt;&lt;P&gt;         ekorg TYPE ekorg,&lt;/P&gt;&lt;P&gt;         END OF l_ty_ekorg.&lt;/P&gt;&lt;P&gt;*Local range&lt;/P&gt;&lt;P&gt;  DATA: l_ra_wa_ekorg LIKE LINE OF fp_ra_ekorg. "you need to declare like this&lt;/P&gt;&lt;P&gt;*Local internal table&lt;/P&gt;&lt;P&gt;  DATA: l_it_ekorg TYPE STANDARD TABLE OF l_ty_ekorg.&lt;/P&gt;&lt;P&gt;*field symbols&lt;/P&gt;&lt;P&gt;  FIELD-SYMBOLS : &amp;lt;l_fs_ekorg&amp;gt; TYPE l_ty_ekorg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT ekorg                    "Purchasing organisation&lt;/P&gt;&lt;P&gt;         FROM t024e&lt;/P&gt;&lt;P&gt;         INTO TABLE l_it_ekorg        "this is define as local internal table see above&lt;/P&gt;&lt;P&gt;         WHERE ekorg IN fp_s_ekorg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    MESSAGE e024.      "Invalid Purchasing ORG.&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;*looping purchase org range for authority check&lt;/P&gt;&lt;P&gt;    LOOP AT l_it_ekorg ASSIGNING &amp;lt;l_fs_ekorg&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      AUTHORITY-CHECK OBJECT l_c_obj&lt;/P&gt;&lt;P&gt;                  ID c_actvt   FIELD c_03&lt;/P&gt;&lt;P&gt;                  ID l_c_ekorg FIELD &amp;lt;l_fs_ekorg&amp;gt;-ekorg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;        l_ra_wa_ekorg-sign = l_c_i.&lt;/P&gt;&lt;P&gt;        l_ra_wa_ekorg-option = l_c_eq.&lt;/P&gt;&lt;P&gt;        l_ra_wa_ekorg-low = &amp;lt;l_fs_ekorg&amp;gt;-ekorg.&lt;/P&gt;&lt;P&gt;        APPEND l_ra_wa_ekorg TO fp_ra_ekorg.&lt;/P&gt;&lt;P&gt;        CLEAR l_ra_wa_ekorg.&lt;/P&gt;&lt;P&gt;      ENDIF.&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;    IF fp_ra_ekorg IS INITIAL.&lt;/P&gt;&lt;P&gt;      MESSAGE e122.  "No authorization for range of Purchase Org&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " f_authchk_ekorg&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rewards if useful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;nazeer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 22 May 2007 04:51:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-22T04:51:56Z</dc:date>
    <item>
      <title>compare two ranges</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/compare-two-ranges/m-p/2303466#M503679</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;I am stuck at comparing two ranges. Basically I am validating a select-option field with a range. I am not clear how to do it. Can somebody help me in this regard?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 04:42:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/compare-two-ranges/m-p/2303466#M503679</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T04:42:32Z</dc:date>
    </item>
    <item>
      <title>Re: compare two ranges</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/compare-two-ranges/m-p/2303467#M503680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;write down logic :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;s_matnr is select-option.&lt;/P&gt;&lt;P&gt;r_matnr is range&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at s_matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;read r_matnr &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-subrc ne 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 04:49:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/compare-two-ranges/m-p/2303467#M503680</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T04:49:15Z</dc:date>
    </item>
    <item>
      <title>Re: compare two ranges</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/compare-two-ranges/m-p/2303468#M503681</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;chk this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;select options : s_matnr for mara-matnr.

Ranges : r_one for mara-matnr.
Data : wa_ran like line of r_one.
 
wa_ran-sign = 'I'.
wa_ran-option = 'EQ'.
wa_ran-low  = '0018'.
append wa_ran to r_one.

wa_ran-sign = 'I'.
wa_ran-option = 'EQ'.
wa_ran-low  = '0025'.
append wa_ran to r_one.

 
if s_matnr IN r_one.

*data avialble in range.

endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Reshma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 04:51:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/compare-two-ranges/m-p/2303468#M503681</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T04:51:08Z</dc:date>
    </item>
    <item>
      <title>Re: compare two ranges</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/compare-two-ranges/m-p/2303469#M503682</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;see this subroutine&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="------------------" /&gt;  -&lt;HR originaltext="---------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  f_authchk_ekorg&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; Authority check and Validation for Purchasing org&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     --&amp;gt;FP_S_EKORG  Purchasing Org&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     &amp;lt;--FP_RA_EKORG Range for Purchasing Org&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM f_authchk_ekorg  USING    fp_s_ekorg    TYPE ty_ra_ekorg&lt;/P&gt;&lt;P&gt;                      CHANGING fp_ra_ekorg   TYPE ty_ra_ekorg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Local constants&lt;/P&gt;&lt;P&gt;  CONSTANTS : l_c_obj TYPE xuobject VALUE '1234',&lt;/P&gt;&lt;P&gt;              l_c_ekorg TYPE char5 VALUE 'EKORG',&lt;/P&gt;&lt;P&gt;              l_c_eq  TYPE char2 VALUE 'EQ',&lt;/P&gt;&lt;P&gt;              l_c_i   TYPE char1 VALUE 'I'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Local types&lt;/P&gt;&lt;P&gt;  TYPES: BEGIN OF l_ty_ekorg,&lt;/P&gt;&lt;P&gt;         ekorg TYPE ekorg,&lt;/P&gt;&lt;P&gt;         END OF l_ty_ekorg.&lt;/P&gt;&lt;P&gt;*Local range&lt;/P&gt;&lt;P&gt;  DATA: l_ra_wa_ekorg LIKE LINE OF fp_ra_ekorg. "you need to declare like this&lt;/P&gt;&lt;P&gt;*Local internal table&lt;/P&gt;&lt;P&gt;  DATA: l_it_ekorg TYPE STANDARD TABLE OF l_ty_ekorg.&lt;/P&gt;&lt;P&gt;*field symbols&lt;/P&gt;&lt;P&gt;  FIELD-SYMBOLS : &amp;lt;l_fs_ekorg&amp;gt; TYPE l_ty_ekorg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT ekorg                    "Purchasing organisation&lt;/P&gt;&lt;P&gt;         FROM t024e&lt;/P&gt;&lt;P&gt;         INTO TABLE l_it_ekorg        "this is define as local internal table see above&lt;/P&gt;&lt;P&gt;         WHERE ekorg IN fp_s_ekorg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    MESSAGE e024.      "Invalid Purchasing ORG.&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;*looping purchase org range for authority check&lt;/P&gt;&lt;P&gt;    LOOP AT l_it_ekorg ASSIGNING &amp;lt;l_fs_ekorg&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      AUTHORITY-CHECK OBJECT l_c_obj&lt;/P&gt;&lt;P&gt;                  ID c_actvt   FIELD c_03&lt;/P&gt;&lt;P&gt;                  ID l_c_ekorg FIELD &amp;lt;l_fs_ekorg&amp;gt;-ekorg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;        l_ra_wa_ekorg-sign = l_c_i.&lt;/P&gt;&lt;P&gt;        l_ra_wa_ekorg-option = l_c_eq.&lt;/P&gt;&lt;P&gt;        l_ra_wa_ekorg-low = &amp;lt;l_fs_ekorg&amp;gt;-ekorg.&lt;/P&gt;&lt;P&gt;        APPEND l_ra_wa_ekorg TO fp_ra_ekorg.&lt;/P&gt;&lt;P&gt;        CLEAR l_ra_wa_ekorg.&lt;/P&gt;&lt;P&gt;      ENDIF.&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;    IF fp_ra_ekorg IS INITIAL.&lt;/P&gt;&lt;P&gt;      MESSAGE e122.  "No authorization for range of Purchase Org&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " f_authchk_ekorg&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rewards if useful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;nazeer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 04:51:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/compare-two-ranges/m-p/2303469#M503682</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T04:51:56Z</dc:date>
    </item>
    <item>
      <title>Re: compare two ranges</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/compare-two-ranges/m-p/2303470#M503683</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;@ Nazeer: I have done in the same way  but I dont think it is the standard solution for this problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;@Reshma: The solution u gave is not working. This is first thing anyone would do.. but dats not working...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 04:59:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/compare-two-ranges/m-p/2303470#M503683</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T04:59:43Z</dc:date>
    </item>
    <item>
      <title>Re: compare two ranges</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/compare-two-ranges/m-p/2303471#M503684</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;do not compare in operator dircetly in if condition...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 05:01:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/compare-two-ranges/m-p/2303471#M503684</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T05:01:23Z</dc:date>
    </item>
    <item>
      <title>Re: compare two ranges</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/compare-two-ranges/m-p/2303472#M503685</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;@ Seshu: Looping at s_matnr will not help... since we dont know how is s_matnr populated..&lt;/P&gt;&lt;P&gt;it can be populated in many ways... low , high, sign, option... there can be different combinations...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 05:06:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/compare-two-ranges/m-p/2303472#M503685</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T05:06:36Z</dc:date>
    </item>
    <item>
      <title>Re: compare two ranges</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/compare-two-ranges/m-p/2303473#M503686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options : s_matnr for mara-matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ranges : r_one for mara-matnr.&lt;/P&gt;&lt;P&gt;Data : wa_ran like line of r_one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_ran-sign = 'I'.&lt;/P&gt;&lt;P&gt;wa_ran-option = 'EQ'.&lt;/P&gt;&lt;P&gt;wa_ran-low  = '000000000000000018'.&lt;/P&gt;&lt;P&gt;append wa_ran to r_one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_ran-sign = 'I'.&lt;/P&gt;&lt;P&gt;wa_ran-option = 'EQ'.&lt;/P&gt;&lt;P&gt;wa_ran-low  = '000000000000000025'.&lt;/P&gt;&lt;P&gt;append wa_ran to r_one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at r_one.&lt;/P&gt;&lt;P&gt;   IF NOT s_matnr IS initial.&lt;/P&gt;&lt;P&gt;    IF r_one-option EQ 'EQ'.&lt;/P&gt;&lt;P&gt;IF    s_matnr-low  EQ r_one-low&lt;/P&gt;&lt;P&gt; OR s_matnr-high EQ r_one-low.&lt;/P&gt;&lt;P&gt;*data available in range.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points to all answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;SaiRam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 05:49:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/compare-two-ranges/m-p/2303473#M503686</guid>
      <dc:creator>former_member196280</dc:creator>
      <dc:date>2007-05-22T05:49:28Z</dc:date>
    </item>
  </channel>
</rss>

