<?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 options... in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/1863324#M364243</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sowmya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select options will not validate the value entered,  You have write the code separately in at-selection screen or start-of-selection.  you can consider the low value for validation&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 Jan 2007 13:14:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-25T13:14:19Z</dc:date>
    <item>
      <title>select options...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/1863323#M364242</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;Does select options validate input in the selection screen?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;that is, If we are giving the high, low values for select options and while executing the program , if we are giving values out of range , then will it intimate us to enter a value within low-high range?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sowmya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jan 2007 13:09:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/1863323#M364242</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-25T13:09:15Z</dc:date>
    </item>
    <item>
      <title>Re: select options...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/1863324#M364243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sowmya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select options will not validate the value entered,  You have write the code separately in at-selection screen or start-of-selection.  you can consider the low value for validation&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jan 2007 13:14:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/1863324#M364243</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-25T13:14:19Z</dc:date>
    </item>
    <item>
      <title>Re: select options...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/1863325#M364244</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;AT SELECTION-SCREEN.

  IF NOT &amp;lt;VALUE&amp;gt; IN SEL_OPT.
    MESSAGE E208(00) with 'Insert a valid value'.
  ENDIF.&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, 25 Jan 2007 13:14:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/1863325#M364244</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-25T13:14:54Z</dc:date>
    </item>
    <item>
      <title>Re: select options...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/1863326#M364245</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;Yes if the higer limit is lesser than the lower limit then it will give the error.&lt;/P&gt;&lt;P&gt;There are some certain SAP validations also which will occur.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But just to be sure you can add all the validations you require in the AT SELECTION-SCREEN event.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jan 2007 13:15:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/1863326#M364245</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-25T13:15:14Z</dc:date>
    </item>
    <item>
      <title>Re: select options...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/1863327#M364246</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sowmya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The mandatory check that will perform for the select-option is that the low value should always be less than the high value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The other checking we need to perform at selection-screen event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In general if we find atleast one valid entry for the select-option then we will proceed with the program execution else give an error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Satya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jan 2007 13:15:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/1863327#M364246</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-25T13:15:27Z</dc:date>
    </item>
    <item>
      <title>Re: select options...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/1863328#M364247</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;no no no,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hi somwya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the high and low fields are beeing filled by you in the selection screen.&lt;/P&gt;&lt;P&gt;when the selection screen pops up, there are no records in you range table against you could validate.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jan 2007 13:16:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/1863328#M364247</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-25T13:16:37Z</dc:date>
    </item>
    <item>
      <title>Re: select options...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/1863329#M364248</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sowmya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can validate the input given at selection-screen through AT SELECTION-SCREEN event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By default, SELECT-OPTIONS doesnt have this capability implicitly.&lt;/P&gt;&lt;P&gt;So, You need to write code under this event and if it is out of range then give a message to them to give valid entries to this range.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jan 2007 13:17:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/1863329#M364248</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-25T13:17:41Z</dc:date>
    </item>
  </channel>
</rss>

