<?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: Dynamic Relational operator in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-relational-operator/m-p/5086341#M1180964</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Naren,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the reply. But i think i did not understant my problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to do different operations for EQ, NE, LT, GT, LE, GE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;meaning if the value in VAR3 is GT then one set of things and if the value in VAR3 is LT then other set of things and so on...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know if you follow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sharat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 27 Jan 2009 19:59:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-01-27T19:59:14Z</dc:date>
    <item>
      <title>Dynamic Relational operator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-relational-operator/m-p/5086338#M1180961</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;&lt;/P&gt;&lt;P&gt;I am Trying for.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;IF VAR1 (Dynamic Relational operator) VAR2.

statement_block1

ENDIF&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Meaning Comparison Operators for All Data Types EQ, NE, LT, GT, LE, GE should populate dynamically. Any Ideas!???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sharat Chandra&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BTW i tryed..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FIELD-SYMBOLS &amp;lt;fs&amp;gt; TYPE ANY.

Move GT to var3

MOVE var3 to &amp;lt;fs&amp;gt;.

IF var1 &amp;lt;FS&amp;gt; var2.
statement_block1
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but it did not woked. Error "Relational operator "&amp;lt;FS&amp;gt;" is not supported."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Sharat Chandra on Jan 27, 2009 1:30 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jan 2009 19:29:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-relational-operator/m-p/5086338#M1180961</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-27T19:29:49Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Relational operator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-relational-operator/m-p/5086339#M1180962</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No direct way that I know of. But you might look at GENERATE SUBROUTINE POOL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jan 2009 19:39:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-relational-operator/m-p/5086339#M1180962</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-27T19:39:13Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Relational operator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-relational-operator/m-p/5086340#M1180963</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;Try this..create a range type with the type of VAR1.and then use the option to mention EQ, NE..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ex..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: T_RANGE TYPE RANGE OF CHAR10,
          S_RANGE LIKE LINE OF T_RANGE.

S_RANGE-SIGN      = 'I'.
S_RANGE-OPTION  = 'EQ'.       " Change your option accordingly.
S_RANGE-LOW       = VAR2.     " 'The value in the variable that you want to compare.
APPEND S_RANGE TO T_RANGE.

* Now compare VAR1 with VAR2.
IF var1 IN t_range.
  WRITE: / 'True'.
ELSE.
  WRITE: / 'False'.
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jan 2009 19:47:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-relational-operator/m-p/5086340#M1180963</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-27T19:47:22Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Relational operator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-relational-operator/m-p/5086341#M1180964</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Naren,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the reply. But i think i did not understant my problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to do different operations for EQ, NE, LT, GT, LE, GE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;meaning if the value in VAR3 is GT then one set of things and if the value in VAR3 is LT then other set of things and so on...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know if you follow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sharat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jan 2009 19:59:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-relational-operator/m-p/5086341#M1180964</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-27T19:59:14Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Relational operator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-relational-operator/m-p/5086342#M1180965</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;In the example mentioned above..change the option to the operator which you want..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;S_RANGE-OPTION  = 'EQ'. "For equal to&lt;/P&gt;&lt;P&gt;S_RANGE-OPTION  = 'NE'. "For Not equal to..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope I am clear..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jan 2009 20:11:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-relational-operator/m-p/5086342#M1180965</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-27T20:11:46Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Relational operator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-relational-operator/m-p/5086343#M1180966</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is the way I could imagine of using the logic..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FIELD-SYMBOLS: &amp;lt;fs&amp;gt; TYPE ANY.

ASSIGN 'LE' TO &amp;lt;fs&amp;gt;.
PERFORM fr_find USING 1  3.

ASSIGN 'GT' TO &amp;lt;fs&amp;gt;.
PERFORM fr_find USING 1  3.

ASSIGN 'LT' TO &amp;lt;fs&amp;gt;.
PERFORM fr_find USING 1  3.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FORM fr_find  USING p_p1 p_p2.

  DATA: t_range TYPE RANGE OF char10,
        s_range LIKE LINE OF t_range.

  s_range-sign      = 'I'.
  s_range-option    = &amp;lt;fs&amp;gt;.
  s_range-low       = p_p2.
  APPEND s_range TO t_range.

  IF p_p1 IN t_range.
    WRITE:/ 'winner', &amp;lt;fs&amp;gt;.
  ENDIF.
ENDFORM.                    " FR_FIND&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: J@Y on Jan 27, 2009 3:48 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jan 2009 20:28:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-relational-operator/m-p/5086343#M1180966</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2009-01-27T20:28:43Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Relational operator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-relational-operator/m-p/5086344#M1180967</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Guys, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I already did this to solve the problem temporarily... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FIELD-SYMBOLS &amp;lt;FS&amp;gt; TYPE ANY. 
          ASSIGN VAR3 TO &amp;lt;FS&amp;gt;. 

          CASE &amp;lt;FS&amp;gt; . 
            WHEN 'EQ'. 
              IF var1 EQ var2. 
                PERFORM things_i_want. 
              ENDIF. 
            WHEN 'NE'. 
              IF var1 EQ var2. 
                PERFORM things_i_want. 
              ENDIF. 
            WHEN 'LT'. 
              IF var1 EQ var2. 
                PERFORM things_i_want. 
              ENDIF. 
            WHEN 'GT'. 
              IF var1 EQ var2. 
                PERFORM things_i_want. 
              ENDIF. 
            WHEN 'LE'. 
              IF var1 EQ var2. 
                PERFORM things_i_want. 
              ENDIF. 
            WHEN 'GE'. 
              IF var1 EQ var2. 
                PERFORM things_i_want. 
              ENDIF. 
            WHEN OTHERS. 
          ENDCASE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was trying to do it in a more fun way. Please let me know if there is dynamic way....somthing with OOPS or so..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sharat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jan 2009 20:37:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-relational-operator/m-p/5086344#M1180967</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-27T20:37:44Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Relational operator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-relational-operator/m-p/5086345#M1180968</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;changed your code to do it dynamically..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: T_RANGE TYPE RANGE OF CHAR10,
          S_RANGE LIKE LINE OF T_RANGE.

FIELD-SYMBOLS &amp;lt;FS&amp;gt; TYPE ANY. 
          ASSIGN VAR3 TO &amp;lt;FS&amp;gt;. 
 
          IF SY-SUBRC = 0 AND NOT &amp;lt;FS&amp;gt; IS INITIAL.
               S_RANGE-SIGN      = 'I'.
               S_RANGE-OPTION  = &amp;lt;FS&amp;gt;.       
               S_RANGE-LOW       = VAR2. 
              APPEND S_RANGE TO T_RANGE.

* Now compare VAR1 with VAR2.
             IF var1 IN t_range.
                PERFORM things_i_want. 
            ENDIF.
          ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jan 2009 20:43:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-relational-operator/m-p/5086345#M1180968</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-27T20:43:34Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Relational operator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-relational-operator/m-p/5086346#M1180969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sure it will work....any other suggestions plz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jan 2009 20:46:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-relational-operator/m-p/5086346#M1180969</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-27T20:46:39Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Relational operator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-relational-operator/m-p/5086347#M1180970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sharat, your temporary solution using CASE won't work as written, since you are doing an EQ comparision on the IF inside each WHEN block, even though you are testing for different relational operators.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Wouldn't the actual relational comparison have to match?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You also said that you wanted to do different things for each one, but you have the same form being called in each PERFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Wouldn't each perform have to have a different target of the PERFORM in order for you do do something different for each possibility, which is a requirement that you stated?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You stated in one of your replies:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;I am trying to do different operations for EQ, NE, LT, GT, LE, GE.&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;None of the RANGE solutions provide that capability, since they all do the same PERFORM to the same target routine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The CASE solutoin that you provided can be readily corrected to do this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, there is no reason to define the Field Symbol in any of these solutions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;* FIELD-SYMBOLS &amp;lt;FS&amp;gt; TYPE ANY.    This is not needed, just use VAR 3 directly
* ASSIGN VAR3 TO &amp;lt;FS&amp;gt;. 
 
          CASE VAR3 .    " no need for this to be a field symbol
            WHEN 'EQ'. 
              IF var1 EQ var2. 
                PERFORM things_i_want_for_EQ.
              ENDIF. 
            WHEN 'NE'. 
* Your original example had EQ for all of the IF statements
* inside all of the WHEN blocks
* The operand on the IF should match the WHEN value
              IF var1 NE var2.       " changed to NE
                PERFORM things_i_want_for_NE.
              ENDIF. 
            WHEN 'LT'. 
              IF var1 LT var2.     " changed to LT
                PERFORM things_i_want_for_LT. 
              ENDIF. 
            WHEN 'GT'. 
              IF var1 GT var2.             " changed to  GT
                PERFORM things_i_want_for_GT. 
              ENDIF. 
            WHEN 'LE'. 
              IF var1 LE var2.     " changed to  LE
                PERFORM things_i_want_for_LE. 
              ENDIF. 
            WHEN 'GE'. 
              IF var1 GE var2.      " changed to  GE
                PERFORM things_i_want_for_GE. 
              ENDIF. 
            WHEN OTHERS. 
* should you have some exception code here?
          ENDCASE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your CASE solution is preferable to some of the other solutions (if you correct it as noted above) since this provides better transparency, ease of maintenance, and allows the code to be statically checked more readily.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By using the CASE solution as corrected above, things like the Extended Program Check and Code Inspector can validate the Performs have valid targets (as opposed to using something like a macro to get different targets).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The RANGE solutions above do NOT fulfill your requested requirement that you do something different for each relational operator.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You would still have to use a CASE operator inside the RANGE solution to do that, which defeats the purpose; or worse, you could try to finagle something with a macro, but I would not recommend it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Trying for the most compact solution will just make it more difficult for anyone who has to maintain the code later.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Brian&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Brian Sammond on Jan 27, 2009 5:28 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Add clarication of macro use with regard to static checks, and with regard to IF statement inside WHEN block&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jan 2009 22:25:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-relational-operator/m-p/5086347#M1180970</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-27T22:25:21Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Relational operator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-relational-operator/m-p/5086348#M1180971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Brian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the reply and time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;first off all, yes you are right Field symbol is not required.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And sorry i was using, The operand on the IF should match the WHEN value...its just copy paste error you know &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt; in forum posting not in my code...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I agree with all your comments.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Sharat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jan 2009 00:00:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-relational-operator/m-p/5086348#M1180971</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-28T00:00:38Z</dc:date>
    </item>
  </channel>
</rss>

