<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/4415130#M1048946</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Jigar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is pretty simple.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Selection screen begin of block blk,&lt;/P&gt;&lt;P&gt;Select-options : p_matnr type mard-matnr.&lt;/P&gt;&lt;P&gt;Select-options: p_werks type mard-werks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT selection screen on block blk.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If p_matnr is initial.&lt;/P&gt;&lt;P&gt;if p_werks is initial.&lt;/P&gt;&lt;P&gt;Message e(999) "Enter valid plant or material&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;C&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 08 Sep 2008 18:33:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-08T18:33:29Z</dc:date>
    <item>
      <title>Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/4415127#M1048943</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;I have placed two select-options in the selection-screen. As per the requirement; i want to allow execution of the program only if one of these two fields are populated with some value/s.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I would like to throw a message if the user has not entered any value in any of the two select-options. Also after the display of the message control should be returned on that page only so that user can enter some value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please guide me on this problem?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;JIgar Shah.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Sep 2008 18:22:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/4415127#M1048943</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-08T18:22:38Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/4415128#M1048944</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;Use Obligatory addition to your select option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;tables mara.&lt;/P&gt;&lt;P&gt;select-options : s_matnr1 for mara-matnr obligatory.&lt;/P&gt;&lt;P&gt;select-options : s_matnr2 for mara-matnr obligatory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------------------------------------" /&gt;&lt;P&gt;Ok. If you need atleast one selection, Use this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options : s_matnr1 for mara-matnr.&lt;/P&gt;&lt;P&gt;select-options : s_matnr2 for mara-matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At selection-screen.&lt;/P&gt;&lt;P&gt;if s_matnr1 is initial and s_matnr2 is initial.&lt;/P&gt;&lt;P&gt;message E000(0) with 'please enter atleast one selection'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: senthil kumar on Sep 9, 2008 12:04 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Sep 2008 18:30:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/4415128#M1048944</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-08T18:30:21Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/4415129#M1048945</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;Either you make the fields as the Obligatory ones or&lt;/P&gt;&lt;P&gt;in the event AT SELECTION SCREEN on &amp;lt;field&amp;gt;.&lt;/P&gt;&lt;P&gt;check the values of both the select option fields is intitial or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If s_matnr is not initial and s_werks is not initial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;message ' -&lt;/P&gt;&lt;HR originaltext="-------" /&gt;&lt;P&gt;' type 'I' or type 'E'.&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;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Lekha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Sep 2008 18:30:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/4415129#M1048945</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-08T18:30:31Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/4415130#M1048946</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Jigar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is pretty simple.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Selection screen begin of block blk,&lt;/P&gt;&lt;P&gt;Select-options : p_matnr type mard-matnr.&lt;/P&gt;&lt;P&gt;Select-options: p_werks type mard-werks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT selection screen on block blk.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If p_matnr is initial.&lt;/P&gt;&lt;P&gt;if p_werks is initial.&lt;/P&gt;&lt;P&gt;Message e(999) "Enter valid plant or material&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;C&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Sep 2008 18:33:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/4415130#M1048946</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-08T18:33:29Z</dc:date>
    </item>
  </channel>
</rss>

