<?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>Question Re: select only 2 type in selection screen in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/select-only-2-type-in-selection-screen/qaa-p/1147488#M473811</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;this can be done by two ways.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. validate the parameter via AT SELECTION SCREEN event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;code ;&lt;/P&gt;&lt;P&gt; at selection screen .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if p_var ne '99' or p_var ne '98' .&lt;/P&gt;&lt;P&gt;message 'value should be 99 or 98' type 'E'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. create a list box with 99 and 98  and add to your parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for that you have create a domain and data element in domain give default values as 99 and 98.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;saleem&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 02 Feb 2006 12:15:45 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-02-02T12:15:45Z</dc:date>
    <item>
      <title>select only 2 type in selection screen</title>
      <link>https://community.sap.com/t5/technology-q-a/select-only-2-type-in-selection-screen/qaq-p/1147479</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have a parameter called zzzzz&lt;/P&gt;&lt;P&gt;i want that the user can chosse only '99' and '88'&lt;/P&gt;&lt;P&gt;how i do it?&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2006 10:59:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/select-only-2-type-in-selection-screen/qaq-p/1147479</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-02T10:59:06Z</dc:date>
    </item>
    <item>
      <title>Re: select only 2 type in selection screen</title>
      <link>https://community.sap.com/t5/technology-q-a/select-only-2-type-in-selection-screen/qaa-p/1147480#M473803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u can put F4  help for the field giving those two values&lt;/P&gt;&lt;P&gt;and if the user enters any other value&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;IF PAR NOT IN ('99,'88')&lt;/P&gt;&lt;P&gt;MESSAGE 'NOT VALID VALUE' TYPE 'E'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2006 11:02:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/select-only-2-type-in-selection-screen/qaa-p/1147480#M473803</guid>
      <dc:creator>hymavathi_oruganti</dc:creator>
      <dc:date>2006-02-02T11:02:44Z</dc:date>
    </item>
    <item>
      <title>Re: select only 2 type in selection screen</title>
      <link>https://community.sap.com/t5/technology-q-a/select-only-2-type-in-selection-screen/qaa-p/1147481#M473804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;no in the screen it will show only 88 and 99 like search-help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2006 11:03:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/select-only-2-type-in-selection-screen/qaa-p/1147481#M473804</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-02T11:03:40Z</dc:date>
    </item>
    <item>
      <title>Re: select only 2 type in selection screen</title>
      <link>https://community.sap.com/t5/technology-q-a/select-only-2-type-in-selection-screen/qaa-p/1147482#M473805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;pass the values 99 &amp;amp; 88 in a field in an internal table and use Function module 'F4IF_INT_TABLE_VALUE_REQUEST' to c these values when user presses F4. &lt;/P&gt;&lt;P&gt;to validate, u can issue an error message if he enters something else.&lt;/P&gt;&lt;P&gt;eg.. if ( val &amp;lt;&amp;gt; '99' or val &amp;lt;&amp;gt; '88' ).&lt;/P&gt;&lt;P&gt; message 'value not proper' type 'E'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bikash&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thats exactly what i meant when i said populate values 99 &amp;amp; 88 in an internal table &amp;amp; use FM for F4 help. it ll pop up these 2 values in the box when user clicks F4&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Bikash  Agarwal&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2006 11:05:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/select-only-2-type-in-selection-screen/qaa-p/1147482#M473805</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-02T11:05:07Z</dc:date>
    </item>
    <item>
      <title>Re: select only 2 type in selection screen</title>
      <link>https://community.sap.com/t5/technology-q-a/select-only-2-type-in-selection-screen/qaa-p/1147483#M473806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rani,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Why dont you try this with list box.&lt;/P&gt;&lt;P&gt;  in that only give 88 and 99.He has no other option to select othe ones.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&amp;amp;Regards,&lt;/P&gt;&lt;P&gt;Siri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2006 11:05:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/select-only-2-type-in-selection-screen/qaa-p/1147483#M473806</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-02T11:05:18Z</dc:date>
    </item>
    <item>
      <title>Re: select only 2 type in selection screen</title>
      <link>https://community.sap.com/t5/technology-q-a/select-only-2-type-in-selection-screen/qaa-p/1147484#M473807</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;if you want to show error when the user selects other than 99 &amp;amp; 88 tehn validate in the at selection-screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selecton-screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if p_zzzz not in ( '99' , '88' ).&lt;/P&gt;&lt;P&gt;message e001(zer).&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;otherwise you can use listbox to load 99 &amp;amp; 88 so that user  can select only 99 &amp;amp; 88.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here is sample program for listbox&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOLS: VRM.&lt;/P&gt;&lt;P&gt;DATA: NAME TYPE VRM_ID,&lt;/P&gt;&lt;P&gt;      LIST TYPE VRM_VALUES,&lt;/P&gt;&lt;P&gt;      VALUE LIKE LINE OF LIST.&lt;/P&gt;&lt;P&gt;PARAMETERS PS_PARM(5) type c AS LISTBOX VISIBLE LENGTH 5&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  NAME = 'PS_PARM'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;VALUE-KEY = '99'&lt;/P&gt;&lt;P&gt;    VALUE-TEXT = '99.&lt;/P&gt;&lt;P&gt;    APPEND VALUE TO LIST.&lt;/P&gt;&lt;P&gt;VALUE-KEY = '88'.&lt;/P&gt;&lt;P&gt;    VALUE-TEXT = '88'.&lt;/P&gt;&lt;P&gt;    APPEND VALUE TO LIST.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'VRM_SET_VALUES'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      ID     = NAME&lt;/P&gt;&lt;P&gt;      VALUES = LIST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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;&lt;/P&gt;&lt;P&gt;Message was edited by: Harikishore Sreenivasulu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Harikishore Sreenivasulu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2006 11:06:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/select-only-2-type-in-selection-screen/qaa-p/1147484#M473807</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-02T11:06:52Z</dc:date>
    </item>
    <item>
      <title>Re: select only 2 type in selection screen</title>
      <link>https://community.sap.com/t5/technology-q-a/select-only-2-type-in-selection-screen/qaa-p/1147485#M473808</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;Use the following code .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ankur Bhandari&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly appropriate reward points by clicking the star on the left of reply,if the solution is helpful.&lt;/P&gt;&lt;P&gt;_________________________________________________________&lt;/P&gt;&lt;P&gt;selection-screen.&lt;/P&gt;&lt;P&gt;PARAMETERS: p_idnt TYPE c DEFAULT '88' OBLIGATORY&lt;/P&gt;&lt;P&gt;                         AS LISTBOX VISIBLE LENGTH 12 USER-COMMAND list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_idnt.&lt;/P&gt;&lt;P&gt;*putting the names in the list box for selection&lt;/P&gt;&lt;P&gt;  PERFORM list_box.&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;FORM list_box .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR gw_value.&lt;/P&gt;&lt;P&gt;  gw_value-key  = gc_1.&lt;/P&gt;&lt;P&gt;  gw_value-text = '88'.&lt;/P&gt;&lt;P&gt;  APPEND  gw_value TO gt_id.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  gw_value-key  = gc_2.&lt;/P&gt;&lt;P&gt;  gw_value-text = '99'.&lt;/P&gt;&lt;P&gt;  APPEND  gw_value TO gt_id.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*this function module is used to fill list box&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'VRM_SET_VALUES'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      id     = gv_id&lt;/P&gt;&lt;P&gt;      values = gt_id.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR gw_value.&lt;/P&gt;&lt;P&gt;  REFRESH gt_id.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2006 11:08:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/select-only-2-type-in-selection-screen/qaa-p/1147485#M473808</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-02T11:08:02Z</dc:date>
    </item>
    <item>
      <title>Re: select only 2 type in selection screen</title>
      <link>https://community.sap.com/t5/technology-q-a/select-only-2-type-in-selection-screen/qaa-p/1147486#M473809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;GIVE AN OPTION TO SELECT FROM THE 2 VALUES USING THE FUNCTION MODULE "'F4IF_INT_TABLE_VALUE_REQUEST" AND DO THE VALIDATION TO CHECK IF IT ONE OF THOSE VALUES OR NOT ,THIS WAY THE USER WILL HAVE TO SELECT FROM THE 2 VALUES ONLY .BELOW IS THE CODE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;initialization.&lt;/P&gt;&lt;P&gt;PARAMETERS :   zzzz(20).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : tab type standard table of zstr1 with header line,&lt;/P&gt;&lt;P&gt;       rettab type standard table of  DDSHRETVAL with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tab-name = '98'.&lt;/P&gt;&lt;P&gt;append  tab.&lt;/P&gt;&lt;P&gt;tab-name ='99'.&lt;/P&gt;&lt;P&gt;append  tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*DATA : TAB(20) type c occurs 0 with header line.&lt;/P&gt;&lt;P&gt;*at selection-screen output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen on value-request for zzzz.&lt;/P&gt;&lt;P&gt;&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               = 'NAME'&lt;/P&gt;&lt;P&gt;                           VALUE_ORG              = 'S'&lt;/P&gt;&lt;P&gt;                           CALLBACK_PROGRAM       = sy-cprog&lt;/P&gt;&lt;P&gt;                          TABLES&lt;/P&gt;&lt;P&gt;                            VALUE_TAB              = tab&lt;/P&gt;&lt;P&gt;                           RETURN_TAB             =  rettab.&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;                        ENDIF.&lt;/P&gt;&lt;P&gt;zzzz = rettab-fieldval .&lt;/P&gt;&lt;P&gt;at selection-screen on ZZZZ.&lt;/P&gt;&lt;P&gt;if rettab-fieldval &amp;lt;&amp;gt; 98 AND rettab-fieldval &amp;lt;&amp;gt; 99.&lt;/P&gt;&lt;P&gt;message e001(zmessage1).&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;zzzz = rettab-fieldval .&lt;/P&gt;&lt;P&gt;endif.&amp;lt;i&amp;gt;&amp;lt;/i&amp;gt;&amp;lt;i&amp;gt;&amp;lt;/i&amp;gt;&amp;lt;i&amp;gt;&amp;lt;/i&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2006 11:32:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/select-only-2-type-in-selection-screen/qaa-p/1147486#M473809</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-02T11:32:22Z</dc:date>
    </item>
    <item>
      <title>Re: select only 2 type in selection screen</title>
      <link>https://community.sap.com/t5/technology-q-a/select-only-2-type-in-selection-screen/qaa-p/1147487#M473810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you did not understand me/ i want a box to popup with the values99 88&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2006 12:02:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/select-only-2-type-in-selection-screen/qaa-p/1147487#M473810</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-02T12:02:27Z</dc:date>
    </item>
    <item>
      <title>Re: select only 2 type in selection screen</title>
      <link>https://community.sap.com/t5/technology-q-a/select-only-2-type-in-selection-screen/qaa-p/1147488#M473811</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;this can be done by two ways.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. validate the parameter via AT SELECTION SCREEN event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;code ;&lt;/P&gt;&lt;P&gt; at selection screen .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if p_var ne '99' or p_var ne '98' .&lt;/P&gt;&lt;P&gt;message 'value should be 99 or 98' type 'E'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. create a list box with 99 and 98  and add to your parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for that you have create a domain and data element in domain give default values as 99 and 98.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;saleem&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2006 12:15:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/select-only-2-type-in-selection-screen/qaa-p/1147488#M473811</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-02T12:15:45Z</dc:date>
    </item>
    <item>
      <title>Re: select only 2 type in selection screen</title>
      <link>https://community.sap.com/t5/technology-q-a/select-only-2-type-in-selection-screen/qaa-p/1147489#M473812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use FM POPUP_WITH_TABLE at event at selection-screen on value request . Populate itab with values required &amp;amp; pass this itab for this FM .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2006 12:18:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/select-only-2-type-in-selection-screen/qaa-p/1147489#M473812</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-02T12:18:47Z</dc:date>
    </item>
    <item>
      <title>Re: select only 2 type in selection screen</title>
      <link>https://community.sap.com/t5/technology-q-a/select-only-2-type-in-selection-screen/qaa-p/1147490#M473813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;for that u can use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;f4if_table_value_request or vrm_set_values as suggested above&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2006 12:19:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/select-only-2-type-in-selection-screen/qaa-p/1147490#M473813</guid>
      <dc:creator>hymavathi_oruganti</dc:creator>
      <dc:date>2006-02-02T12:19:11Z</dc:date>
    </item>
    <item>
      <title>Re: select only 2 type in selection screen</title>
      <link>https://community.sap.com/t5/technology-q-a/select-only-2-type-in-selection-screen/qaa-p/1147491#M473814</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use function module with the following values.&lt;/P&gt;&lt;P&gt; POPUP_TO_DECIDE_LIST &lt;/P&gt;&lt;P&gt;TITEL : Decide between&lt;/P&gt;&lt;P&gt;TEXTLINE1: Choose between&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;T_SPOPLI :&lt;/P&gt;&lt;P&gt;1 88&lt;/P&gt;&lt;P&gt;2 99&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ankur Bhandari&lt;/P&gt;&lt;P&gt;p.s&lt;/P&gt;&lt;P&gt;Kindly appropriate reward points by clicking the star on the left of reply,if the solution is helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2006 12:22:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/select-only-2-type-in-selection-screen/qaa-p/1147491#M473814</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-02T12:22:50Z</dc:date>
    </item>
  </channel>
</rss>

