<?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: On-Value Request Event in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/on-value-request-event/m-p/1398529#M192851</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;here u'll have to declare two at selection-screen on value request for both low as well as high values and u can access the value of low while select query for high but can't do the one u mentioned in ur code....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;example enclosed:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: progname LIKE sy-repid,&lt;/P&gt;&lt;P&gt;      dynnum   LIKE sy-dynnr,&lt;/P&gt;&lt;P&gt;      dynpro_values TYPE TABLE OF dynpread.&lt;/P&gt;&lt;P&gt;DATA : return_tab  LIKE ddshretval OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;progname = sy-repid.&lt;/P&gt;&lt;P&gt;dynnum   = sy-dynnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT  * FROM hrp1000 INTO CORRESPONDING FIELDS OF TABLE it_org   FOR ALL ENTRIES IN it_objid&lt;/P&gt;&lt;P&gt;WHERE objid = it_objid-objid &lt;/P&gt;&lt;P&gt;AND  plvar = '01' AND otype = 'O' .&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SORT it_org BY objid ASCENDING.&lt;/P&gt;&lt;P&gt;  DELETE ADJACENT DUPLICATES FROM it_org COMPARING objid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SORT it_orgunits BY mc_stext.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      retfield               = 'ORGUNIT'&lt;/P&gt;&lt;P&gt;     dynpprog               = progname&lt;/P&gt;&lt;P&gt;     dynpnr                 = dynnum&lt;/P&gt;&lt;P&gt;     dynprofield            = 'ORGUNIT'&lt;/P&gt;&lt;P&gt;     value_org              = 'S'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      value_tab              = it_org&lt;/P&gt;&lt;P&gt;     return_tab             = return_tab&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   parameter_error        = 1&lt;/P&gt;&lt;P&gt;   no_values_found        = 2&lt;/P&gt;&lt;P&gt;   OTHERS                 = 3            .&lt;/P&gt;&lt;P&gt;  IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;    READ TABLE it_org INDEX sy-tabix.&lt;/P&gt;&lt;P&gt;    IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;      orgunit = it_org-objid.&lt;/P&gt;&lt;P&gt;    ENDIF.&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;Reward Points if it helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gunjan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 18 Jun 2006 05:28:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-18T05:28:40Z</dc:date>
    <item>
      <title>On-Value Request Event</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/on-value-request-event/m-p/1398527#M192849</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 have used 'ON VALUE-REQUEST' event for a variable S_CNTRY in the select-options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: S_CNTRY FOR ADRC-REGION OBLIGATORY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR S_CNTRY-LOW.&lt;/P&gt;&lt;P&gt;  PERFORM SEARCH_HELP_REGION CHANGING S_CNTRY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR S_CNTRY-HIGH.&lt;/P&gt;&lt;P&gt;  PERFORM SEARCH_HELP_REGION CHANGING S_CNTRY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is the above declaration Ok ? Can I declare in one statement rather than using two separate as 'LOW' and 'HIGH' reapectively.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Further to this , if I want to write a select statement which will take the values of S_CNTRY from 'S_CNTRY-LOW' to 'S_CNTRY-HIGH' , how shall I do that ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT X Y Z FROM Z-TAB INTO&lt;/P&gt;&lt;P&gt;ITAB WHERE VAR IN ('S_CNTRY-LOW' TO 'S_CNTRY-HIGH').&lt;/P&gt;&lt;P&gt;Is it fine ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly help....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx...&lt;/P&gt;&lt;P&gt;Paul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 18 Jun 2006 05:22:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/on-value-request-event/m-p/1398527#M192849</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-18T05:22:16Z</dc:date>
    </item>
    <item>
      <title>Re: On-Value Request Event</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/on-value-request-event/m-p/1398528#M192850</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 could use the below code....&lt;/P&gt;&lt;P&gt;No need to specify for LOW and HIGH separately...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR S_CNTRY.&lt;/P&gt;&lt;P&gt;PERFORM SEARCH_HELP_REGION CHANGING S_CNTRY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT X Y Z FROM Z-TAB INTO TABLE&lt;/P&gt;&lt;P&gt;ITAB WHERE VAR IN S_CNTRY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Abdul Hakim&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark all useful answers..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 18 Jun 2006 05:24:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/on-value-request-event/m-p/1398528#M192850</guid>
      <dc:creator>abdul_hakim</dc:creator>
      <dc:date>2006-06-18T05:24:44Z</dc:date>
    </item>
    <item>
      <title>Re: On-Value Request Event</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/on-value-request-event/m-p/1398529#M192851</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;here u'll have to declare two at selection-screen on value request for both low as well as high values and u can access the value of low while select query for high but can't do the one u mentioned in ur code....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;example enclosed:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: progname LIKE sy-repid,&lt;/P&gt;&lt;P&gt;      dynnum   LIKE sy-dynnr,&lt;/P&gt;&lt;P&gt;      dynpro_values TYPE TABLE OF dynpread.&lt;/P&gt;&lt;P&gt;DATA : return_tab  LIKE ddshretval OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;progname = sy-repid.&lt;/P&gt;&lt;P&gt;dynnum   = sy-dynnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT  * FROM hrp1000 INTO CORRESPONDING FIELDS OF TABLE it_org   FOR ALL ENTRIES IN it_objid&lt;/P&gt;&lt;P&gt;WHERE objid = it_objid-objid &lt;/P&gt;&lt;P&gt;AND  plvar = '01' AND otype = 'O' .&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SORT it_org BY objid ASCENDING.&lt;/P&gt;&lt;P&gt;  DELETE ADJACENT DUPLICATES FROM it_org COMPARING objid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SORT it_orgunits BY mc_stext.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      retfield               = 'ORGUNIT'&lt;/P&gt;&lt;P&gt;     dynpprog               = progname&lt;/P&gt;&lt;P&gt;     dynpnr                 = dynnum&lt;/P&gt;&lt;P&gt;     dynprofield            = 'ORGUNIT'&lt;/P&gt;&lt;P&gt;     value_org              = 'S'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      value_tab              = it_org&lt;/P&gt;&lt;P&gt;     return_tab             = return_tab&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   parameter_error        = 1&lt;/P&gt;&lt;P&gt;   no_values_found        = 2&lt;/P&gt;&lt;P&gt;   OTHERS                 = 3            .&lt;/P&gt;&lt;P&gt;  IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;    READ TABLE it_org INDEX sy-tabix.&lt;/P&gt;&lt;P&gt;    IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;      orgunit = it_org-objid.&lt;/P&gt;&lt;P&gt;    ENDIF.&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;Reward Points if it helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gunjan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 18 Jun 2006 05:28:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/on-value-request-event/m-p/1398529#M192851</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-18T05:28:40Z</dc:date>
    </item>
    <item>
      <title>Re: On-Value Request Event</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/on-value-request-event/m-p/1398530#M192852</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For Select-Options , it uses the values  S_CNTRY-LOW and  S_CNTRY-HIGH , else it is not getting compiled. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So how do I declare the values in the &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT X Y Z FROM Z-TAB INTO TABLE&lt;/P&gt;&lt;P&gt;ITAB WHERE VAR IN S_CNTRY&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where I need to select the values which are from S_CNTRY-LOW to S_CNTRY-HIGH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 18 Jun 2006 05:33:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/on-value-request-event/m-p/1398530#M192852</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-18T05:33:18Z</dc:date>
    </item>
    <item>
      <title>Re: On-Value Request Event</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/on-value-request-event/m-p/1398531#M192853</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Paul,&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;1&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;The way U have done is Excellent.You dont need to declare one .This is right way.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;2&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;Have a look at the below Sample further to get values into ur S_CNTRY-LOW,S_CNTRY-HIGH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT zvenkat_head MESSAGE-ID zmsg .&lt;/P&gt;&lt;P&gt;TABLES:ekko.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS :s_bsart  FOR ekko-bsart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_bsart-low.&lt;/P&gt;&lt;P&gt;  PERFORM f4_values_restricted USING s_bsart-low.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_bsart-high.&lt;/P&gt;&lt;P&gt;  PERFORM f4_values_restricted USING s_bsart-high.&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;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  f4_values_restricted&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;P&gt;FORM f4_values_restricted USING bsart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: BEGIN OF i_t161 OCCURS 0,&lt;/P&gt;&lt;P&gt;          bstyp TYPE t161-bstyp,&lt;/P&gt;&lt;P&gt;          bsart TYPE t161-bsart,&lt;/P&gt;&lt;P&gt;          batxt TYPE t161t-batxt,&lt;/P&gt;&lt;P&gt;        END OF i_t161.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR i_t161[].&lt;/P&gt;&lt;P&gt;  CLEAR i_t161.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: w_progname LIKE sy-repid,&lt;/P&gt;&lt;P&gt;        w_scr_num LIKE sy-dynnr .&lt;/P&gt;&lt;P&gt;  DATA: return_values LIKE ddshretval OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;  DATA: itab_dynpfields LIKE dynpread OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;        t_dynpfields LIKE dynpread.&lt;/P&gt;&lt;P&gt;  DATA: t_dyname LIKE d020s-prog,&lt;/P&gt;&lt;P&gt;        t_dynumb LIKE d020s-dnum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT a&lt;SUB&gt;bstyp a&lt;/SUB&gt;bsart b~batxt&lt;/P&gt;&lt;P&gt;   FROM t161 AS a INNER JOIN t161t AS b ON a&lt;SUB&gt;bstyp = b&lt;/SUB&gt;bstyp&lt;/P&gt;&lt;P&gt;                                      AND  a&lt;SUB&gt;bsart = b&lt;/SUB&gt;bsart&lt;/P&gt;&lt;P&gt;   INTO TABLE i_t161&lt;/P&gt;&lt;P&gt;   WHERE a~bstyp = 'F'&lt;/P&gt;&lt;P&gt;     AND b~spras = sy-langu.&lt;/P&gt;&lt;P&gt;  IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL FUNCTION &amp;lt;b&amp;gt;'F4IF_INT_TABLE_VALUE_REQUEST'&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        retfield        = 'BSART'&lt;/P&gt;&lt;P&gt;        dynpprog        = w_progname&lt;/P&gt;&lt;P&gt;        dynpnr          = w_scr_num&lt;/P&gt;&lt;P&gt;        dynprofield     = 'EKPO-BSART'&lt;/P&gt;&lt;P&gt;        value_org       = 'S'&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        value_tab       = i_t161&lt;/P&gt;&lt;P&gt;        return_tab      = return_values&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        parameter_error = 1&lt;/P&gt;&lt;P&gt;        no_values_found = 2&lt;/P&gt;&lt;P&gt;        OTHERS          = 3.&lt;/P&gt;&lt;P&gt;    IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno&lt;/P&gt;&lt;P&gt;        WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&lt;/P&gt;&lt;P&gt;    ELSE .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      bsart = return_values-fieldval.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " f4_values_restricted&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think that it helps u.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Thanks,&lt;/P&gt;&lt;P&gt;Venkat.O&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jun 2006 07:26:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/on-value-request-event/m-p/1398531#M192853</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2006-06-19T07:26:36Z</dc:date>
    </item>
    <item>
      <title>Re: On-Value Request Event</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/on-value-request-event/m-p/1398532#M192854</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) You have to put on Value request separately for the 2 fields i.e. LOW &amp;amp; HIGH &lt;/P&gt;&lt;P&gt;2) Well when you input both low &amp;amp; high values it becomes a range of that value so if you write .... &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;IN S_CNTRY&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; it will automatically take it into effect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope thsi helps&lt;/P&gt;&lt;P&gt;Anirban&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jun 2006 07:42:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/on-value-request-event/m-p/1398532#M192854</guid>
      <dc:creator>former_member480923</dc:creator>
      <dc:date>2006-06-19T07:42:24Z</dc:date>
    </item>
    <item>
      <title>Re: On-Value Request Event</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/on-value-request-event/m-p/1398533#M192855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  You do not need to use high and low.The range that you have created will take care of all these things.At both the places you just need to pass the range S_CNTRY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mukesh Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jun 2006 07:45:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/on-value-request-event/m-p/1398533#M192855</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-19T07:45:31Z</dc:date>
    </item>
  </channel>
</rss>

