<?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: select-options restrict in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-restrict/m-p/7658466#M1573797</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I agree with Suzie, and the select from t003 do only once at initialization ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Klaus&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Klaus Babl on Feb 24, 2011 7:42 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Feb 2011 06:41:16 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-02-24T06:41:16Z</dc:date>
    <item>
      <title>select-options restrict</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-restrict/m-p/7658460#M1573791</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;dear all,&lt;/P&gt;&lt;P&gt;             Ive searched forums and then posting .i have to restrict document type in a selection screen with only three values.&lt;/P&gt;&lt;P&gt;            VR,RD,DG.&lt;/P&gt;&lt;P&gt;            i have used 'SELECT_OPTIONS_RESTRICT". but unable to understand where should i pass my three values .&lt;/P&gt;&lt;P&gt;please explain and correct me?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Feb 2011 04:38:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-restrict/m-p/7658460#M1573791</guid>
      <dc:creator>narendar_naidu</dc:creator>
      <dc:date>2011-02-24T04:38:53Z</dc:date>
    </item>
    <item>
      <title>Re: select-options restrict</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-restrict/m-p/7658461#M1573792</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use FM &lt;STRONG&gt;F4IF_INT_TABLE_VALUE_REQUEST&lt;/STRONG&gt; and pass those 3 values only.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Feb 2011 04:40:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-restrict/m-p/7658461#M1573792</guid>
      <dc:creator>GauthamV</dc:creator>
      <dc:date>2011-02-24T04:40:48Z</dc:date>
    </item>
    <item>
      <title>Re: select-options restrict</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-restrict/m-p/7658462#M1573793</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;SELECT_OPTIONS_RESTRICT is used to restrict the options available for restricting select-options (ie. EQ, I, BT, LE etc.. ), and not to restrict teh values shown, as far as I understand.&lt;/P&gt;&lt;P&gt;F4IF_INT_TABLE_VALUE_REQUEST can be used for your requirement to display the values in F4. But you should probably also write validation for the fields to restrict manual entry of other values in these fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suzie&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Feb 2011 05:18:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-restrict/m-p/7658462#M1573793</guid>
      <dc:creator>lijisusan_mathews</dc:creator>
      <dc:date>2011-02-24T05:18:05Z</dc:date>
    </item>
    <item>
      <title>Re: select-options restrict</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-restrict/m-p/7658463#M1573794</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for the replies,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;now i have tried using 'F4IF_INT_TABLE_VALUE_REQUEST'. please correct me.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options : s_blart for t003-blart.&lt;/P&gt;&lt;P&gt;*EVENT&lt;/P&gt;&lt;P&gt;select blart from t003 into table t_t003 where blart = 'RV' OR Blart = 'DR' OR BLART = 'DG' .&lt;/P&gt;&lt;P&gt;       if sy-subrc eq 0 and s_blart is not initial.&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               = 'BLART'&lt;/P&gt;&lt;P&gt;         dynpprog               = dyname&lt;/P&gt;&lt;P&gt;         dynpnr                 = dynumb&lt;/P&gt;&lt;P&gt;         dynprofield            = 'S_BLART'&lt;/P&gt;&lt;P&gt;         value_org              = 'S'&lt;/P&gt;&lt;P&gt;        tables&lt;/P&gt;&lt;P&gt;          value_tab              = t_t003.&lt;/P&gt;&lt;P&gt;         endif.&lt;/P&gt;&lt;P&gt;under which event should i use this? and how to code for both s_blart-low and s_blart-high.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Feb 2011 05:46:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-restrict/m-p/7658463#M1573794</guid>
      <dc:creator>narendar_naidu</dc:creator>
      <dc:date>2011-02-24T05:46:06Z</dc:date>
    </item>
    <item>
      <title>Re: select-options restrict</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-restrict/m-p/7658464#M1573795</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 have to write it under :&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;AT SELECTION-SCREEN on value-request for s_blart-low&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;    and under&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;AT SELECTION-SCREEN on value-request for s_blart-high&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;  separately.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suzie&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Feb 2011 05:55:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-restrict/m-p/7658464#M1573795</guid>
      <dc:creator>lijisusan_mathews</dc:creator>
      <dc:date>2011-02-24T05:55:02Z</dc:date>
    </item>
    <item>
      <title>Re: select-options restrict</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-restrict/m-p/7658465#M1573796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;write this under at selection screen on values request for s_blart-low. and s_blart-high.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;they should be 2 different headings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;your selection should be like&lt;/P&gt;&lt;P&gt;select blart &lt;/P&gt;&lt;P&gt;from t003&lt;/P&gt;&lt;P&gt;into table t_t003&lt;/P&gt;&lt;P&gt;where blart in ('RV', 'DR', 'DG')&lt;/P&gt;&lt;P&gt;then pass yopur table in the FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i hope this will work for you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;Lalit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Feb 2011 06:40:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-restrict/m-p/7658465#M1573796</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-24T06:40:56Z</dc:date>
    </item>
    <item>
      <title>Re: select-options restrict</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-restrict/m-p/7658466#M1573797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I agree with Suzie, and the select from t003 do only once at initialization ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Klaus&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Klaus Babl on Feb 24, 2011 7:42 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Feb 2011 06:41:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-restrict/m-p/7658466#M1573797</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-24T06:41:16Z</dc:date>
    </item>
    <item>
      <title>Re: select-options restrict</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-restrict/m-p/7658467#M1573798</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;Try this&lt;/P&gt;&lt;P&gt;first &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&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;**F4 help to fetch Accounting Document Number&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_belnr-low.&lt;/P&gt;&lt;P&gt;  lv_string = 'S_BELNR-LOW'.&lt;/P&gt;&lt;P&gt;**Fatch the Accounting No. List from database table&lt;/P&gt;&lt;P&gt;  PERFORM select_belnr USING lv_string&lt;/P&gt;&lt;P&gt;                       CHANGING i_bkpf.&lt;/P&gt;&lt;P&gt;**Show F4 list&lt;/P&gt;&lt;P&gt;  PERFORM f4_belnr_list USING  lv_string&lt;/P&gt;&lt;P&gt;                        CHANGING s_belnr-low.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_belnr-high.&lt;/P&gt;&lt;P&gt;  lv_string = 'S_BELNR-HIGH'.&lt;/P&gt;&lt;P&gt;**Fatch the Accounting No. List from database table&lt;/P&gt;&lt;P&gt;  PERFORM select_belnr USING lv_string&lt;/P&gt;&lt;P&gt;                       CHANGING i_bkpf.&lt;/P&gt;&lt;P&gt;**Show F4 list&lt;/P&gt;&lt;P&gt;  PERFORM f4_belnr_list USING  lv_string&lt;/P&gt;&lt;P&gt;                     CHANGING s_belnr-high.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM select_belnr  USING lv_string TYPE dfies-fieldname&lt;/P&gt;&lt;P&gt;                   CHANGING p_i_bkpf TYPE t_bkpf.&lt;/P&gt;&lt;P&gt;  RANGES: s_belnr1 FOR bkpf-belnr.&lt;/P&gt;&lt;P&gt;  CLEAR: p_i_bkpf.&lt;/P&gt;&lt;P&gt;  CLEAR s_belnr1[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**Fetch the values entered by user on selection screen&lt;/P&gt;&lt;P&gt;  PERFORM read_selection_screen USING lv_string.&lt;/P&gt;&lt;P&gt;**Read the value&lt;/P&gt;&lt;P&gt;  READ TABLE dynfields WITH KEY fieldname = lv_string.&lt;/P&gt;&lt;P&gt;  IF sy-subrc = 0&lt;/P&gt;&lt;P&gt;  AND dynfields-fieldvalue IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    s_belnr1-low = dynfields-fieldvalue.&lt;/P&gt;&lt;P&gt;    s_belnr1-sign = 'I'.&lt;/P&gt;&lt;P&gt;    s_belnr1-option  ='CP'.&lt;/P&gt;&lt;P&gt;    APPEND s_belnr1.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;**Fetch the data from database table&lt;/P&gt;&lt;P&gt;  SELECT belnr&lt;/P&gt;&lt;P&gt;    FROM bkpf&lt;/P&gt;&lt;P&gt;INTO TABLE p_i_bkpf&lt;/P&gt;&lt;P&gt;    WHERE bukrs GE space&lt;/P&gt;&lt;P&gt;      AND belnr IN s_belnr1&lt;/P&gt;&lt;P&gt;      AND gjahr GE space&lt;/P&gt;&lt;P&gt;      AND blart EQ 'AB'.&lt;/P&gt;&lt;P&gt;**Remove Duplicate Records&lt;/P&gt;&lt;P&gt;  SORT p_i_bkpf BY belnr.&lt;/P&gt;&lt;P&gt;  DELETE ADJACENT DUPLICATES FROM p_i_bkpf.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " SELECT_BELNR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM f4_belnr_list  USING    p_retfield&lt;/P&gt;&lt;P&gt;                    CHANGING p_belnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR: ret_tab.&lt;/P&gt;&lt;P&gt;**Call F4 Help Value-request&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        = p_retfield&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_bkpf&lt;/P&gt;&lt;P&gt;      return_tab      = ret_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;**Read the Value selected by user&lt;/P&gt;&lt;P&gt;  READ TABLE ret_tab INTO w_ret_tab INDEX 1.&lt;/P&gt;&lt;P&gt;  IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;    p_belnr = w_ret_tab-fieldval.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;  CLEAR: i_bkpf,&lt;/P&gt;&lt;P&gt;         ret_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " F4_BELNR_LIST&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM read_selection_screen USING    p_dynfields TYPE dfies-fieldname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR: dynfields.&lt;/P&gt;&lt;P&gt;  REFRESH : dynfields.&lt;/P&gt;&lt;P&gt;**Append field name&lt;/P&gt;&lt;P&gt;  dynfields-fieldname = p_dynfields.&lt;/P&gt;&lt;P&gt;  APPEND dynfields.&lt;/P&gt;&lt;P&gt;**Fetch the field Values&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'DYNP_VALUES_READ'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      dyname     = sy-cprog&lt;/P&gt;&lt;P&gt;      dynumb     = sy-dynnr&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      dynpfields = dynfields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " READ_SELECTION_SCREEN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DECLARATION PART&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF ty_bkpf,&lt;/P&gt;&lt;P&gt;       belnr TYPE bkpf-belnr,&lt;/P&gt;&lt;P&gt;       END OF ty_bkpf.&lt;/P&gt;&lt;P&gt;TYPES: t_bkpf  TYPE TABLE OF ty_bkpf.&lt;/P&gt;&lt;P&gt;Data: i_bkpf      TYPE t_bkpf.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: dynfields TYPE TABLE OF dynpread WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;DATA: ret_tab TYPE STANDARD TABLE OF ddshretval,&lt;/P&gt;&lt;P&gt;      w_ret_tab TYPE ddshretval.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try the aboe code hope this will work for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;lalit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Feb 2011 06:49:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-restrict/m-p/7658467#M1573798</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-24T06:49:23Z</dc:date>
    </item>
    <item>
      <title>Re: select-options restrict</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-restrict/m-p/7658468#M1573799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want to restrict the values then you can use LISTBOX instead of doing lot of coding......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But in this case you need to check the domain of the referred data element must contain only these three values...if not readily available create one...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Feb 2011 12:09:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-restrict/m-p/7658468#M1573799</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-24T12:09:30Z</dc:date>
    </item>
    <item>
      <title>Re: select-options restrict</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-restrict/m-p/7658469#M1573800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should use FM SELECT_OPTIONS_RESTRICT to restrict users to only allow (I)nclude and (EQ)ual. Then validate the values so that only the values you want to allow have actually been entered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you allow the user to enter a high value or patterns, they can get around your validation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Feb 2011 15:14:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-restrict/m-p/7658469#M1573800</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-24T15:14:54Z</dc:date>
    </item>
    <item>
      <title>Re: select-options restrict</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-restrict/m-p/7658470#M1573801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As stated by Satyajit, you could probably create a new domain holding those three values... You will have to still code the validations to ensure that values entered on the Selection screen match the domain values (and additionally code FM SELECT_OPTIONS_RESTRICT If you want to restrict users from not entering other SELECT options)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Feb 2011 16:06:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-restrict/m-p/7658470#M1573801</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-24T16:06:50Z</dc:date>
    </item>
    <item>
      <title>Re: select-options restrict</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-restrict/m-p/7658471#M1573802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are using a parameter as listbox, why do you need validations??????? It's kind of dropdown list......&lt;/P&gt;&lt;P&gt;Otherwise go for VALUE CHECK option of parameter, in this case it will be displayed as normal paramter but can have only the predefined values in domain....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
PARAMETERS: p_test  TYPE vbtyp AS LISTBOX VISIBLE LENGTH 50,
            p_test1 TYPE vbtyp VALUE CHECK.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But the only limitation is the user can enter only one document type at a time.....But...if the requirement is that the user can enter all three values at a time in a select option, then use F4 help and restrict the select-option to accept only EQ in extension....&lt;/P&gt;&lt;P&gt;Also, validations should be in place to check if the user has entered any values apart from the predefined ones.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Feb 2011 07:10:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-restrict/m-p/7658471#M1573802</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-25T07:10:01Z</dc:date>
    </item>
    <item>
      <title>Re: select-options restrict</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-restrict/m-p/7658472#M1573803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for the replies issue resolved&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Dec 2011 22:38:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-restrict/m-p/7658472#M1573803</guid>
      <dc:creator>narendar_naidu</dc:creator>
      <dc:date>2011-12-12T22:38:07Z</dc:date>
    </item>
  </channel>
</rss>

