<?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: CALL FUNCTION 'SELECT_OPTIONS_RESTRICT' in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-select-options-restrict/m-p/6763264#M1461972</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Solution;&lt;/P&gt;&lt;P&gt;INICIALIZATION.&lt;/P&gt;&lt;P&gt;PERFORM INICIALIZACION_SELECT_OPTION.&lt;/P&gt;&lt;P&gt;FORM INICIALIZACION_SELECT_OPTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: T_OPT_LIST TYPE SSCR_OPT_LIST, "switches controlling each option&lt;/P&gt;&lt;P&gt;        T_ASS_TAB TYPE SSCR_ASS, "select-options to be restricted&lt;/P&gt;&lt;P&gt;        RESTRICT TYPE SSCR_RESTRICT, "structure holding above 2 tables&lt;/P&gt;&lt;P&gt;        TEXTO TYPE STRING,&lt;/P&gt;&lt;P&gt;        L_SUBRC(4) TYPE N.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR T_ASS_TAB.&lt;/P&gt;&lt;P&gt;  T_ASS_TAB-KIND    = 'S'.        "Apply only to the named SELECT-OPTION&lt;/P&gt;&lt;P&gt;  T_ASS_TAB-NAME    = 'S_HKONT'.  "This is name of the SELECT-OPTION&lt;/P&gt;&lt;P&gt;  T_ASS_TAB-SG_MAIN = 'I'.        "I = ONLY Inclusions; * = Both&lt;/P&gt;&lt;P&gt;  T_ASS_TAB-SG_ADDY = SPACE.&lt;/P&gt;&lt;P&gt;  T_ASS_TAB-OP_MAIN = 'WHATEVER'. "This must match opt_list-name&lt;/P&gt;&lt;P&gt;  APPEND T_ASS_TAB TO RESTRICT-ASS_TAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;crear las restricviones del select option en t_opt_list.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CLEAR T_OPT_LIST.&lt;/P&gt;&lt;P&gt;  T_OPT_LIST-NAME       = 'WHATEVER'."This must match ass_tab-op_main&lt;/P&gt;&lt;P&gt;  T_OPT_LIST-OPTIONS-BT = SPACE.     "Do not permit BETWEEN&lt;/P&gt;&lt;P&gt;  T_OPT_LIST-OPTIONS-CP = SPACE.     "       permit MATCHES-PATTERN&lt;/P&gt;&lt;P&gt;  T_OPT_LIST-OPTIONS-EQ = SPACE.     "       Permit EQUALS&lt;/P&gt;&lt;P&gt;  T_OPT_LIST-OPTIONS-GE = SPACE.     "Do not permit GREATER-OR-EQUAL&lt;/P&gt;&lt;P&gt;  T_OPT_LIST-OPTIONS-GT = SPACE.     "Do not permit GREATER-THAN&lt;/P&gt;&lt;P&gt;  T_OPT_LIST-OPTIONS-LE = SPACE.     "Do not permit LESS-OR-EQUAL&lt;/P&gt;&lt;P&gt;  T_OPT_LIST-OPTIONS-LT = SPACE.     "Do not permit LESS-THAN&lt;/P&gt;&lt;P&gt;  T_OPT_LIST-OPTIONS-NB = 'X' .      "Do not permit NOT-BETWEEN&lt;/P&gt;&lt;P&gt;  T_OPT_LIST-OPTIONS-NE = 'X'.       "Do not permit NOT-EQUAL&lt;/P&gt;&lt;P&gt;  T_OPT_LIST-OPTIONS-NP = 'X'.       "Do not permit NO-PATTERN-MATCH&lt;/P&gt;&lt;P&gt;  APPEND T_OPT_LIST TO RESTRICT-OPT_LIST_TAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'SELECT_OPTIONS_RESTRICT'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      RESTRICTION            = RESTRICT&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      TOO_LATE               = 1&lt;/P&gt;&lt;P&gt;      REPEATED               = 2&lt;/P&gt;&lt;P&gt;      SELOPT_WITHOUT_OPTIONS = 3&lt;/P&gt;&lt;P&gt;      SELOPT_WITHOUT_SIGNS   = 4&lt;/P&gt;&lt;P&gt;      INVALID_SIGN           = 5&lt;/P&gt;&lt;P&gt;      EMPTY_OPTION_LIST      = 6&lt;/P&gt;&lt;P&gt;      INVALID_KIND           = 7&lt;/P&gt;&lt;P&gt;      REPEATED_KIND_A        = 8&lt;/P&gt;&lt;P&gt;      OTHERS                 = 9.&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 15 Apr 2010 16:13:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-04-15T16:13:09Z</dc:date>
    <item>
      <title>CALL FUNCTION 'SELECT_OPTIONS_RESTRICT'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-select-options-restrict/m-p/6763256#M1461964</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys , &lt;/P&gt;&lt;P&gt;I would like to restrict a select options. When I push the botton "multiple selection" in my select&lt;/P&gt;&lt;P&gt;options I would like that I can see only 2 tabs 'Exclude individual values' and 'Exclude intervals'. &lt;/P&gt;&lt;P&gt;I tried with the FM 'SELECT_OPTIONS_RESTRICT', but It doesn't work. When I execute sy-subrc = 5&lt;/P&gt;&lt;P&gt;'INVALID_SIGN' and I can't resolve it.&lt;/P&gt;&lt;P&gt;My code is:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECTION-SCREEN: BEGIN OF BLOCK B2 WITH FRAME TITLE TEXT-002.
SELECT-OPTIONS: S_BUDAT FOR BKPF-BUDAT,
                S_BELNR FOR BKPF-BELNR,
                S_HKONT FOR BSEG-HKONT, &amp;lt;----*restric this*
                S_BLART FOR BKPF-BLART,
                S_BSTAT FOR BKPF-BSTAT.
SELECTION-SCREEN: END OF BLOCK B2.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CLEAR T_OPT_LIST.
 T_OPT_LIST-NAME = 'S_HKONT'.
 T_OPT_LIST-OPTIONS-EQ    = 'X'.
 T_OPT_LIST-OPTIONS-GE    = 'X'.
APPEND T_OPT_LIST TO RESTRICT-OPT_LIST_TAB.
  CLEAR T_ASS_TAB.
  T_ASS_TAB-KIND = 'A'. "Apply only to the named     SELECT-OPTION
  T_ASS_TAB-NAME = 'S_HKONT'. "This is name of the SELECT-OPTION
  T_ASS_TAB-SG_MAIN = 'I'.
  T_ASS_TAB-OP_MAIN = 'S_HKONT'. "This must match opt_list-name
  APPEND T_ASS_TAB TO RESTRICT-ASS_TAB.&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'SELECT_OPTIONS_RESTRICT'
    EXPORTING
      RESTRICTION            = RESTRICT
    EXCEPTIONS
      TOO_LATE               = 1
      REPEATED               = 2
      SELOPT_WITHOUT_OPTIONS = 3
      SELOPT_WITHOUT_SIGNS   = 4
      INVALID_SIGN           = 5
      EMPTY_OPTION_LIST      = 6
      INVALID_KIND           = 7
      REPEATED_KIND_A        = 8
      OTHERS                 = 9.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Best Regards.&lt;/P&gt;&lt;P&gt;&lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Ana Marí on Apr 12, 2010 12:13 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Apr 2010 10:13:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-select-options-restrict/m-p/6763256#M1461964</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-12T10:13:07Z</dc:date>
    </item>
    <item>
      <title>Re: CALL FUNCTION 'SELECT_OPTIONS_RESTRICT'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-select-options-restrict/m-p/6763257#M1461965</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;PRE&gt;&lt;CODE&gt;CLEAR T_ASS_TAB.
  T_ASS_TAB-KIND = 'S'.                 " Apply only to the named     SELECT-OPTION  "Changed from A to S"
  T_ASS_TAB-NAME = 'S_HKONT'. "This is name of the SELECT-OPTION
  T_ASS_TAB-SG_MAIN = 'I'.  
  T_ASS_TAB-SG_ADDY = SPACE   "New Added"
  T_ASS_TAB-OP_MAIN = 'S_HKONT'. "This must match opt_list-name
  APPEND T_ASS_TAB TO RESTRICT-ASS_TAB.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vinod&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Vinod Kumar on Apr 12, 2010 3:57 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Apr 2010 10:26:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-select-options-restrict/m-p/6763257#M1461965</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-12T10:26:22Z</dc:date>
    </item>
    <item>
      <title>Re: CALL FUNCTION 'SELECT_OPTIONS_RESTRICT'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-select-options-restrict/m-p/6763258#M1461966</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hy Vinod, &lt;/P&gt;&lt;P&gt;I put the code into a perform and now sy-subrc it's ok . &lt;/P&gt;&lt;P&gt;Thanks for your answer. &lt;/P&gt;&lt;P&gt;You know about the field  T_ASS_TAB-SG_MAIN = 'I'.        "I = ONLY Inclusions; * = Both.&lt;/P&gt;&lt;P&gt;If I put 'I' , I only see the tabs 'Individual values' and 'Interval values' , Are there any option that exclude? ( so I only want see 'Exclude Individual value' &lt;/P&gt;&lt;P&gt;and 'Exclude intervals').&lt;/P&gt;&lt;P&gt;Thanks a lot.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Apr 2010 10:32:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-select-options-restrict/m-p/6763258#M1461966</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-12T10:32:41Z</dc:date>
    </item>
    <item>
      <title>Re: CALL FUNCTION 'SELECT_OPTIONS_RESTRICT'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-select-options-restrict/m-p/6763259#M1461967</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes you can use E as well to exclude the values&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;S.Janagar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Apr 2010 10:34:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-select-options-restrict/m-p/6763259#M1461967</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-12T10:34:31Z</dc:date>
    </item>
    <item>
      <title>Re: CALL FUNCTION 'SELECT_OPTIONS_RESTRICT'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-select-options-restrict/m-p/6763260#M1461968</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´ll have to activate this options&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NB&lt;/P&gt;&lt;P&gt;NE&lt;/P&gt;&lt;P&gt;NP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in t_opt_list instead of EQ and GE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Apr 2010 10:40:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-select-options-restrict/m-p/6763260#M1461968</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-12T10:40:54Z</dc:date>
    </item>
    <item>
      <title>Re: CALL FUNCTION 'SELECT_OPTIONS_RESTRICT'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-select-options-restrict/m-p/6763261#M1461969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ana,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use E : "Exclude specified values"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Apr 2010 10:40:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-select-options-restrict/m-p/6763261#M1461969</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-12T10:40:54Z</dc:date>
    </item>
    <item>
      <title>Re: CALL FUNCTION 'SELECT_OPTIONS_RESTRICT'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-select-options-restrict/m-p/6763262#M1461970</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;E is not recognized by SAP. Possible values are I or space.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Apr 2010 10:42:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-select-options-restrict/m-p/6763262#M1461970</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-12T10:42:43Z</dc:date>
    </item>
    <item>
      <title>Re: CALL FUNCTION 'SELECT_OPTIONS_RESTRICT'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-select-options-restrict/m-p/6763263#M1461971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes jorge, you are right, If we pass 'E' it system doesn't do any thing, it simply shows the normal options. I&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Type group "SSCR" also mentioned the possible values for "sg_main" as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;sg_main like rsrestrict-sign, " (only) I, SPACE = both&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Apr 2010 10:52:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-select-options-restrict/m-p/6763263#M1461971</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-12T10:52:57Z</dc:date>
    </item>
    <item>
      <title>Re: CALL FUNCTION 'SELECT_OPTIONS_RESTRICT'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-select-options-restrict/m-p/6763264#M1461972</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Solution;&lt;/P&gt;&lt;P&gt;INICIALIZATION.&lt;/P&gt;&lt;P&gt;PERFORM INICIALIZACION_SELECT_OPTION.&lt;/P&gt;&lt;P&gt;FORM INICIALIZACION_SELECT_OPTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: T_OPT_LIST TYPE SSCR_OPT_LIST, "switches controlling each option&lt;/P&gt;&lt;P&gt;        T_ASS_TAB TYPE SSCR_ASS, "select-options to be restricted&lt;/P&gt;&lt;P&gt;        RESTRICT TYPE SSCR_RESTRICT, "structure holding above 2 tables&lt;/P&gt;&lt;P&gt;        TEXTO TYPE STRING,&lt;/P&gt;&lt;P&gt;        L_SUBRC(4) TYPE N.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR T_ASS_TAB.&lt;/P&gt;&lt;P&gt;  T_ASS_TAB-KIND    = 'S'.        "Apply only to the named SELECT-OPTION&lt;/P&gt;&lt;P&gt;  T_ASS_TAB-NAME    = 'S_HKONT'.  "This is name of the SELECT-OPTION&lt;/P&gt;&lt;P&gt;  T_ASS_TAB-SG_MAIN = 'I'.        "I = ONLY Inclusions; * = Both&lt;/P&gt;&lt;P&gt;  T_ASS_TAB-SG_ADDY = SPACE.&lt;/P&gt;&lt;P&gt;  T_ASS_TAB-OP_MAIN = 'WHATEVER'. "This must match opt_list-name&lt;/P&gt;&lt;P&gt;  APPEND T_ASS_TAB TO RESTRICT-ASS_TAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;crear las restricviones del select option en t_opt_list.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CLEAR T_OPT_LIST.&lt;/P&gt;&lt;P&gt;  T_OPT_LIST-NAME       = 'WHATEVER'."This must match ass_tab-op_main&lt;/P&gt;&lt;P&gt;  T_OPT_LIST-OPTIONS-BT = SPACE.     "Do not permit BETWEEN&lt;/P&gt;&lt;P&gt;  T_OPT_LIST-OPTIONS-CP = SPACE.     "       permit MATCHES-PATTERN&lt;/P&gt;&lt;P&gt;  T_OPT_LIST-OPTIONS-EQ = SPACE.     "       Permit EQUALS&lt;/P&gt;&lt;P&gt;  T_OPT_LIST-OPTIONS-GE = SPACE.     "Do not permit GREATER-OR-EQUAL&lt;/P&gt;&lt;P&gt;  T_OPT_LIST-OPTIONS-GT = SPACE.     "Do not permit GREATER-THAN&lt;/P&gt;&lt;P&gt;  T_OPT_LIST-OPTIONS-LE = SPACE.     "Do not permit LESS-OR-EQUAL&lt;/P&gt;&lt;P&gt;  T_OPT_LIST-OPTIONS-LT = SPACE.     "Do not permit LESS-THAN&lt;/P&gt;&lt;P&gt;  T_OPT_LIST-OPTIONS-NB = 'X' .      "Do not permit NOT-BETWEEN&lt;/P&gt;&lt;P&gt;  T_OPT_LIST-OPTIONS-NE = 'X'.       "Do not permit NOT-EQUAL&lt;/P&gt;&lt;P&gt;  T_OPT_LIST-OPTIONS-NP = 'X'.       "Do not permit NO-PATTERN-MATCH&lt;/P&gt;&lt;P&gt;  APPEND T_OPT_LIST TO RESTRICT-OPT_LIST_TAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'SELECT_OPTIONS_RESTRICT'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      RESTRICTION            = RESTRICT&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      TOO_LATE               = 1&lt;/P&gt;&lt;P&gt;      REPEATED               = 2&lt;/P&gt;&lt;P&gt;      SELOPT_WITHOUT_OPTIONS = 3&lt;/P&gt;&lt;P&gt;      SELOPT_WITHOUT_SIGNS   = 4&lt;/P&gt;&lt;P&gt;      INVALID_SIGN           = 5&lt;/P&gt;&lt;P&gt;      EMPTY_OPTION_LIST      = 6&lt;/P&gt;&lt;P&gt;      INVALID_KIND           = 7&lt;/P&gt;&lt;P&gt;      REPEATED_KIND_A        = 8&lt;/P&gt;&lt;P&gt;      OTHERS                 = 9.&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Apr 2010 16:13:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-select-options-restrict/m-p/6763264#M1461972</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-15T16:13:09Z</dc:date>
    </item>
  </channel>
</rss>

