<?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 high value - Non editable in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-high-value-non-editable/m-p/526201#M19101</link>
    <description>&lt;P&gt;&lt;A href="https://help.sap.com/http.svc/rc/abapdocu_752_index_htm/7.52/en-US/index.htm?file=abapselect-options_screen.htm" target="_blank"&gt;SELECT-OPTIONS NO INTERVALS&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 14 Oct 2017 09:47:55 GMT</pubDate>
    <dc:creator>retired_member</dc:creator>
    <dc:date>2017-10-14T09:47:55Z</dc:date>
    <item>
      <title>Select option high value - Non editable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-high-value-non-editable/m-p/526192#M19092</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;
  &lt;P&gt;please tell me how to set non-editable only for select option high value. &lt;/P&gt;
  &lt;P&gt;Is it possible?&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/79351-ask.png" /&gt;&lt;/P&gt;
  &lt;P&gt;Thanks in Advance.&lt;/P&gt;</description>
      <pubDate>Sat, 14 Oct 2017 06:42:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-high-value-non-editable/m-p/526192#M19092</guid>
      <dc:creator>former_member309899</dc:creator>
      <dc:date>2017-10-14T06:42:11Z</dc:date>
    </item>
    <item>
      <title>Re: Select option high value - Non editable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-high-value-non-editable/m-p/526193#M19093</link>
      <description>&lt;P&gt;I doubt it's possible, since a select option is far more than just a range from &lt;STRONG&gt;low &lt;/STRONG&gt;to &lt;STRONG&gt;high&lt;/STRONG&gt;. For example, if the &lt;STRONG&gt;low &lt;/STRONG&gt;is *, then a &lt;STRONG&gt;high &lt;/STRONG&gt;value makes no sense.&lt;/P&gt;
  &lt;P&gt;Since this is a date range, you don't want the full functionality of a select-option anyway. Create a &lt;STRONG&gt;low &lt;/STRONG&gt;parameter and a &lt;STRONG&gt;high &lt;/STRONG&gt;parameter (display only), and use SELECTION-SCREEN BEGIN OF LINE... so their on the same line.&lt;/P&gt;
  &lt;P&gt;See my blog here: &lt;A href="https://blogs.sap.com/2014/02/07/dates-and-select-options/" target="test_blank"&gt;https://blogs.sap.com/2014/02/07/dates-and-select-options/&lt;/A&gt; for why select options with dates are, in my opinion, an error.&lt;/P&gt;</description>
      <pubDate>Sat, 14 Oct 2017 07:00:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-high-value-non-editable/m-p/526193#M19093</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2017-10-14T07:00:27Z</dc:date>
    </item>
    <item>
      <title>Re: Select option high value - Non editable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-high-value-non-editable/m-p/526194#M19094</link>
      <description>&lt;P&gt;you can try Like below&lt;/P&gt;
  &lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;BR /&gt; &lt;BR /&gt; LOOP AT SCREEN.&lt;BR /&gt; IF screen-name = 'S_VBELN-HIGH'.&lt;BR /&gt; screen-input = 0.&lt;BR /&gt; MODIFY SCREEN.&lt;BR /&gt; ENDIF.&lt;BR /&gt; ENDLOOP.&lt;/P&gt;</description>
      <pubDate>Sat, 14 Oct 2017 07:02:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-high-value-non-editable/m-p/526194#M19094</guid>
      <dc:creator>former_member196331</dc:creator>
      <dc:date>2017-10-14T07:02:58Z</dc:date>
    </item>
    <item>
      <title>Re: Select option high value - Non editable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-high-value-non-editable/m-p/526195#M19095</link>
      <description>&lt;P&gt;Hi, thanks.&lt;/P&gt;
  &lt;P&gt;its working. and one more, before set non-editable i need to set some value on that. &lt;/P&gt;</description>
      <pubDate>Sat, 14 Oct 2017 07:16:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-high-value-non-editable/m-p/526195#M19095</guid>
      <dc:creator>former_member309899</dc:creator>
      <dc:date>2017-10-14T07:16:38Z</dc:date>
    </item>
    <item>
      <title>Re: Select option high value - Non editable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-high-value-non-editable/m-p/526196#M19096</link>
      <description>&lt;P&gt;hi, &lt;/P&gt;
  &lt;P&gt;i found the answer.&lt;/P&gt;
  &lt;P&gt;INITIALIZATION.&lt;/P&gt;
  &lt;P&gt;MOVE 'your value' TO &amp;lt;selectoption&amp;gt;-HIGH.&lt;/P&gt;
  &lt;P&gt;APPEND &amp;lt;selectoption&amp;gt;.&lt;/P&gt;</description>
      <pubDate>Sat, 14 Oct 2017 07:26:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-high-value-non-editable/m-p/526196#M19096</guid>
      <dc:creator>former_member309899</dc:creator>
      <dc:date>2017-10-14T07:26:40Z</dc:date>
    </item>
    <item>
      <title>Re: Select option high value - Non editable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-high-value-non-editable/m-p/526197#M19097</link>
      <description>&lt;P&gt;Hi, i got solution. &lt;/P&gt;
  &lt;P&gt;thanks to &lt;A href="https://answers.sap.com/users/6549/newb.html"&gt;Kali Charan&lt;/A&gt; and &lt;A href="https://answers.sap.com/users/2688/matthewbillingham.html"&gt;Matthew Billingham&lt;/A&gt;.&lt;/P&gt;
  &lt;P&gt;To set non-editable filed on select option-high.&lt;/P&gt;
  &lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;
  &lt;P&gt;&lt;BR /&gt;LOOP AT SCREEN.&lt;BR /&gt;IF screen-name = '&amp;lt;selectoption&amp;gt;-HIGH'.&lt;BR /&gt;screen-input = 0.&lt;BR /&gt;MODIFY SCREEN.&lt;BR /&gt;ENDIF.&lt;BR /&gt;ENDLOOP.&lt;/P&gt;
  &lt;P&gt;To set Default value for select option HIGH.&lt;/P&gt;
  &lt;P&gt;INITIALIZATION.&lt;/P&gt;
  &lt;P&gt;MOVE 'your value' TO &amp;lt;selectoption&amp;gt;-HIGH.&lt;/P&gt;
  &lt;P&gt;APPEND &amp;lt;selectoption&amp;gt;.&lt;/P&gt;</description>
      <pubDate>Sat, 14 Oct 2017 07:29:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-high-value-non-editable/m-p/526197#M19097</guid>
      <dc:creator>former_member309899</dc:creator>
      <dc:date>2017-10-14T07:29:30Z</dc:date>
    </item>
    <item>
      <title>Re: Select option high value - Non editable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-high-value-non-editable/m-p/526198#M19098</link>
      <description>&lt;P&gt;Hi thank you so much&lt;/P&gt;</description>
      <pubDate>Sat, 14 Oct 2017 07:30:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-high-value-non-editable/m-p/526198#M19098</guid>
      <dc:creator>former_member309899</dc:creator>
      <dc:date>2017-10-14T07:30:21Z</dc:date>
    </item>
    <item>
      <title>Re: Select option high value - Non editable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-high-value-non-editable/m-p/526199#M19099</link>
      <description>&lt;P&gt;Hi thank you so much&lt;/P&gt;</description>
      <pubDate>Sat, 14 Oct 2017 07:30:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-high-value-non-editable/m-p/526199#M19099</guid>
      <dc:creator>former_member309899</dc:creator>
      <dc:date>2017-10-14T07:30:46Z</dc:date>
    </item>
    <item>
      <title>Re: Select option high value - Non editable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-high-value-non-editable/m-p/526200#M19100</link>
      <description>&lt;P&gt;If you only protect the "high" part of the SELECT-OPTIONS screen fields, the user can still change it by pressing the button at the right of this field.&lt;/P&gt;
  &lt;P&gt;So, you should also use &lt;STRONG&gt;NO-EXTENSION&lt;/STRONG&gt; to hide the button :&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;SELECT-OPTIONS s_date FOR &amp;lt;globaldatefield&amp;gt; NO-EXTENSION.&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 14 Oct 2017 08:24:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-high-value-non-editable/m-p/526200#M19100</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2017-10-14T08:24:12Z</dc:date>
    </item>
    <item>
      <title>Re: Select option high value - Non editable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-high-value-non-editable/m-p/526201#M19101</link>
      <description>&lt;P&gt;&lt;A href="https://help.sap.com/http.svc/rc/abapdocu_752_index_htm/7.52/en-US/index.htm?file=abapselect-options_screen.htm" target="_blank"&gt;SELECT-OPTIONS NO INTERVALS&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 14 Oct 2017 09:47:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-high-value-non-editable/m-p/526201#M19101</guid>
      <dc:creator>retired_member</dc:creator>
      <dc:date>2017-10-14T09:47:55Z</dc:date>
    </item>
  </channel>
</rss>

