<?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 OPTION in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/3882086#M932941</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;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use Value help for that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : s_plant  FOR zaw_pol_plan-plant. &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 s_plant1-low .&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; i_t001w-value = 'A'.&lt;/P&gt;&lt;P&gt; APPEND i_t001w.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; i_t001w-value = 'B'.&lt;/P&gt;&lt;P&gt; APPEND i_t001w.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; i_t001w-value = ' '.&lt;/P&gt;&lt;P&gt; APPEND i_t001w.&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        = 'WERKS'&lt;/P&gt;&lt;P&gt;              dynpprog        = ws_repid&lt;/P&gt;&lt;P&gt;              dynpnr          = sy-dynnr&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_t001w&lt;/P&gt;&lt;P&gt;              return_tab      = v_return&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;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     s_plant1-low = v_return-fieldval.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls. reward if useful...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 May 2008 05:57:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-28T05:57:31Z</dc:date>
    <item>
      <title>SELECT OPTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/3882082#M932937</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;PRE&gt;&lt;CODE&gt;I have a SELECT-OPTION, say so_value. 

It can have any of the following 3 values:

"A       B      and       SPACE"

How can I assign these values to the select-option variable -so_value?&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Santo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2008 05:46:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/3882082#M932937</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-28T05:46:41Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT OPTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/3882083#M932938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Santo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;chk this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : v_char(1).&lt;/P&gt;&lt;P&gt;select-options : so_value for v_char.&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;so_value-sign = 'I'.&lt;/P&gt;&lt;P&gt;so_value-option = 'EQ'.&lt;/P&gt;&lt;P&gt;so_value-low = 'A'.&lt;/P&gt;&lt;P&gt;append so_value.&lt;/P&gt;&lt;P&gt;clear so_value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so_value-sign = 'I'.&lt;/P&gt;&lt;P&gt;so_value-option = 'EQ'.&lt;/P&gt;&lt;P&gt;so_value-low = 'B'.&lt;/P&gt;&lt;P&gt;append so_value.&lt;/P&gt;&lt;P&gt;clear so_value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so_value-sign = 'I'.&lt;/P&gt;&lt;P&gt;so_value-option = 'EQ'.&lt;/P&gt;&lt;P&gt;so_value-low = ' '.&lt;/P&gt;&lt;P&gt;append so_value.&lt;/P&gt;&lt;P&gt;clear so_value.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2008 05:49:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/3882083#M932938</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-28T05:49:45Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT OPTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/3882084#M932939</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sekar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have one doubt - as we are appending the values, will so_value be able to hold all the 3 values?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Santo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2008 05:54:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/3882084#M932939</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-28T05:54:16Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT OPTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/3882085#M932940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Santo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; yes it will hold the 3 values,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; to check that, just click on the extension box on selection screen next to the select option, it will show the 3 values&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2008 05:56:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/3882085#M932940</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-28T05:56:26Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT OPTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/3882086#M932941</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;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use Value help for that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : s_plant  FOR zaw_pol_plan-plant. &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 s_plant1-low .&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; i_t001w-value = 'A'.&lt;/P&gt;&lt;P&gt; APPEND i_t001w.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; i_t001w-value = 'B'.&lt;/P&gt;&lt;P&gt; APPEND i_t001w.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; i_t001w-value = ' '.&lt;/P&gt;&lt;P&gt; APPEND i_t001w.&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        = 'WERKS'&lt;/P&gt;&lt;P&gt;              dynpprog        = ws_repid&lt;/P&gt;&lt;P&gt;              dynpnr          = sy-dynnr&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_t001w&lt;/P&gt;&lt;P&gt;              return_tab      = v_return&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;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     s_plant1-low = v_return-fieldval.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls. reward if useful...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2008 05:57:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/3882086#M932941</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-28T05:57:31Z</dc:date>
    </item>
  </channel>
</rss>

