<?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: At selection screen on validation in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-on-validation/m-p/12042953#M1968100</link>
    <description>&lt;P&gt;Check examples provided in transaction DWDM&lt;/P&gt;</description>
    <pubDate>Wed, 18 Dec 2019 15:03:48 GMT</pubDate>
    <dc:creator>FredericGirod</dc:creator>
    <dc:date>2019-12-18T15:03:48Z</dc:date>
    <item>
      <title>At selection screen on validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-on-validation/m-p/12042952#M1968099</link>
      <description>&lt;P&gt;suppose i have a table with field number and the records in the field are 1 2 3 4 6 9 10. now i have a select option in my selection screen and i insert values 1 to 10 in the select options . &lt;/P&gt;
  &lt;P&gt;my requirement is a logic to validate and get an error message for the missing no. 5 7 8 on the selection screen.&lt;/P&gt;
  &lt;P&gt;how to validate this on selection screen?&lt;/P&gt;</description>
      <pubDate>Wed, 18 Dec 2019 14:35:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-on-validation/m-p/12042952#M1968099</guid>
      <dc:creator>former_member649377</dc:creator>
      <dc:date>2019-12-18T14:35:39Z</dc:date>
    </item>
    <item>
      <title>Re: At selection screen on validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-on-validation/m-p/12042953#M1968100</link>
      <description>&lt;P&gt;Check examples provided in transaction DWDM&lt;/P&gt;</description>
      <pubDate>Wed, 18 Dec 2019 15:03:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-on-validation/m-p/12042953#M1968100</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2019-12-18T15:03:48Z</dc:date>
    </item>
    <item>
      <title>Re: At selection screen on validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-on-validation/m-p/12042954#M1968101</link>
      <description>&lt;P&gt;First try in your end. if its not work your code, share it. look at the &lt;A href="https://answers.sap.com/questions/9894790/validate-select-options-.html"&gt;answer&lt;/A&gt; it will help you to build the logic.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Dec 2019 15:13:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-on-validation/m-p/12042954#M1968101</guid>
      <dc:creator>Nawanandana</dc:creator>
      <dc:date>2019-12-18T15:13:53Z</dc:date>
    </item>
    <item>
      <title>Re: At selection screen on validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-on-validation/m-p/12042955#M1968102</link>
      <description>&lt;P&gt;You can implement something like this:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TYPES: ty_itab TYPE TABLE OF i WITH EMPTY KEY.
DATA(lt_entry_data) = VALUE ty_itab( ( 1 ) ( 2 ) ( 3 ) ( 4 ) ( 6 ) ( 9 ) (10) ).
DATA lt_result TYPE ty_itab.

lv_numbr = so_numbr-low.

WHILE lv_numbr &amp;lt;= so_numbr-high.
  READ lt_entry_data  WITH KEY table_line = lv_numbr TRANSPORTING NO FIELDS.
  IF sy-subrc &amp;lt;&amp;gt; 0.
    APPEND lv_numbr TO lt_result.
    WRITE: \ lv_numr.
  ENDIF.
  ADD 1 to lv_numbr.
ENDWHILE.

&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 18 Dec 2019 22:18:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-on-validation/m-p/12042955#M1968102</guid>
      <dc:creator>grigore_turcan</dc:creator>
      <dc:date>2019-12-18T22:18:42Z</dc:date>
    </item>
  </channel>
</rss>

