<?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: Selection-screen - add default value to multiple selection in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-add-default-value-to-multiple-selection/m-p/3816851#M918040</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;By default, selection optoins are RANGES, therefore to fill these before display, in the INITIALIZATION section&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  CLEAR: so_field, so_field[].
  so_field = 'IEQvalue'. append so_field.
  so_field = 'IEQvalue2'. append so_field.
  so_field = 'IEQvalue3'. append so_field.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want ranges&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  CLEAR: so_field, so_field[].
  so_field = 'IBT'. so_field-low = 'lowvalue'. so_field-high = 'highvalue' append so_field.
*
*
*  ETC
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Paul Chapman on May 15, 2008 9:30 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 15 May 2008 13:30:01 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-15T13:30:01Z</dc:date>
    <item>
      <title>Selection-screen - add default value to multiple selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-add-default-value-to-multiple-selection/m-p/3816850#M918039</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;How I can add a default value for multiple selection, on a Select-options?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Brian Gonsales&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2008 13:26:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-add-default-value-to-multiple-selection/m-p/3816850#M918039</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-15T13:26:46Z</dc:date>
    </item>
    <item>
      <title>Re: Selection-screen - add default value to multiple selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-add-default-value-to-multiple-selection/m-p/3816851#M918040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;By default, selection optoins are RANGES, therefore to fill these before display, in the INITIALIZATION section&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  CLEAR: so_field, so_field[].
  so_field = 'IEQvalue'. append so_field.
  so_field = 'IEQvalue2'. append so_field.
  so_field = 'IEQvalue3'. append so_field.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want ranges&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  CLEAR: so_field, so_field[].
  so_field = 'IBT'. so_field-low = 'lowvalue'. so_field-high = 'highvalue' append so_field.
*
*
*  ETC
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Paul Chapman on May 15, 2008 9:30 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2008 13:30:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-add-default-value-to-multiple-selection/m-p/3816851#M918040</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-15T13:30:01Z</dc:date>
    </item>
    <item>
      <title>Re: Selection-screen - add default value to multiple selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-add-default-value-to-multiple-selection/m-p/3816852#M918041</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 mean to upload a default value in selection-screen:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TABLES T001.

SELECT-OPTIONS S_BUKRS FOR T001-BUKRS DEFAULT 'ZZZZ'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TABLES T001.

SELECT-OPTIONS S_BUKRS FOR T001-BUKRS.

INITIALIZATION.

  S_BUKRS(3) = 'IEQ'.
  S_BUKRS-LOW = 'ZZZZ'.
  APPEND S_BUKRS.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2008 13:37:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-add-default-value-to-multiple-selection/m-p/3816852#M918041</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-15T13:37:31Z</dc:date>
    </item>
  </channel>
</rss>

