<?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: Filter on select-options in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/filter-on-select-options/m-p/5144911#M1192366</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If this is a custom program, you need to change the code which pre-populates the selection list, within &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR &amp;lt;field name&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; for the respective field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 Jan 2009 17:20:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-01-28T17:20:17Z</dc:date>
    <item>
      <title>Filter on select-options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/filter-on-select-options/m-p/5144910#M1192365</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;i have a select-options like "select-options p_mstae for mara-mstae." and, on the selection screen, it displays this list :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;MMSTA  |  MTSTB&lt;/U&gt;&lt;/P&gt;&lt;P&gt; 01           |  Art. fab -creation&lt;/P&gt;&lt;P&gt; 02           |  ...&lt;/P&gt;&lt;P&gt; 03           |  ...&lt;/P&gt;&lt;P&gt; 04           |  ...&lt;/P&gt;&lt;P&gt; 05           |  ...&lt;/P&gt;&lt;P&gt; 06           |  ...&lt;/P&gt;&lt;P&gt; 07           |  ...&lt;/P&gt;&lt;P&gt; ...           |  ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But i want only the lines with the values 01, 02, 04 on the display list of the select-options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way to do that plz ? a way to filter the list ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gabriel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jan 2009 17:14:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/filter-on-select-options/m-p/5144910#M1192365</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-28T17:14:07Z</dc:date>
    </item>
    <item>
      <title>Re: Filter on select-options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/filter-on-select-options/m-p/5144911#M1192366</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If this is a custom program, you need to change the code which pre-populates the selection list, within &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR &amp;lt;field name&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; for the respective field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jan 2009 17:20:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/filter-on-select-options/m-p/5144911#M1192366</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-28T17:20:17Z</dc:date>
    </item>
    <item>
      <title>Re: Filter on select-options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/filter-on-select-options/m-p/5144912#M1192367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use liek dis...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_mstae-low.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT MMSTA MTSTB&lt;/P&gt;&lt;P&gt;              FROM t141&lt;/P&gt;&lt;P&gt;               INTO TABLE it_t141.&lt;/P&gt;&lt;P&gt;               WHERE ur conditions.       "or filter out later&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        = 'MMSTA'&lt;/P&gt;&lt;P&gt;      dynpprog        = sy-cprog&lt;/P&gt;&lt;P&gt;      dynpnr          = sy-dynnr&lt;/P&gt;&lt;P&gt;      dynprofield     = 'P_MSTAE-LOW'&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_t141&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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Repeat the same for 'P_MSTAE-HIGH'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jan 2009 17:34:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/filter-on-select-options/m-p/5144912#M1192367</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-28T17:34:33Z</dc:date>
    </item>
    <item>
      <title>Re: Filter on select-options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/filter-on-select-options/m-p/5144913#M1192368</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your accurate answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gabriel.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jan 2009 09:29:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/filter-on-select-options/m-p/5144913#M1192368</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-29T09:29:40Z</dc:date>
    </item>
  </channel>
</rss>

