<?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(condition) in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-condition/m-p/1432537#M206635</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, there is no way to get the popup before the at selection-screen event.  The only thing that you can do to avoid the processing of code in the AT SELECTION-SCREEN event is to check for the function code of the "multiple selection button".  In my previous post, I suggestted to add a check statement.  This check statement is checking that the user did not press the multiple funtion  button, if he did that the code under the CHECK statement in the AT SELECTION-SCREEN event would not get fired.  Does this make sense?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 14 Jul 2006 18:29:04 GMT</pubDate>
    <dc:creator>RichHeilman</dc:creator>
    <dc:date>2006-07-14T18:29:04Z</dc:date>
    <item>
      <title>selection-screen(condition)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-condition/m-p/1432533#M206631</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a report with about 15 select-options in selection screen. My condition is there should be atleast one input from the end user if not I should say 'Not enough inputs'. For this I implemented a logic using 'at selection-screen' event. It is working well. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My question is when I execute my report, I see the Multiple selections option (right arrow button) for all the select-options in the selection screen. When I press this button, I am not getting a pop-up but the condition which I kept in 'at selection-screen' event is executed and it says 'no enough inputs'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I press the Multiple selections button the control is passing through the 'at selection-screen' event. Is it possible that when I press the Multiple selections button, I get the pop-up before the control comes to 'at selection-screen' event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below is my code. Please try this code for example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options:    s_werk    for qals-werk.&lt;/P&gt;&lt;P&gt;select-options:    s_matnr   for qals-matnr  matchcode object mat1.&lt;/P&gt;&lt;P&gt;select-options:    s_charg   for qals-charg  matchcode object mch1.&lt;/P&gt;&lt;P&gt;select-options:    s_art     for qals-art.&lt;/P&gt;&lt;P&gt;select-options:    s_pruef   for qals-prueflos.&lt;/P&gt;&lt;P&gt;select-options:    s_vaplz   for aufk-vaplz.&lt;/P&gt;&lt;P&gt;select-options:    s_ltxa1   for afvc-ltxa1.&lt;/P&gt;&lt;P&gt;select-options:    s_aufnr   for qals-aufnr.&lt;/P&gt;&lt;P&gt;select-options:    s_enst    for qals-enstehdat.&lt;/P&gt;&lt;P&gt;select-options:    s_past    for qals-pastrterm.&lt;/P&gt;&lt;P&gt;select-options:    s_paend   for qals-paendterm.&lt;/P&gt;&lt;P&gt;select-options:    s_plnty   for qals-plnty.&lt;/P&gt;&lt;P&gt;select-options:    s_herst   for qals-hersteller matchcode object kred.&lt;/P&gt;&lt;P&gt;select-options:    s_lifnr   for qals-lifnr  matchcode object kred.&lt;/P&gt;&lt;P&gt;select-options:    s_kunnr   for qals-kunnr  matchcode object debi.&lt;/P&gt;&lt;P&gt;select-options:    s_verwm   for qamv-verwmerkm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*****************&lt;/P&gt;&lt;P&gt;at selection-screen.&lt;/P&gt;&lt;P&gt;*****************&lt;/P&gt;&lt;P&gt;count = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not s_werk is initial.&lt;/P&gt;&lt;P&gt; count = count + 1.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not s_matnr is initial.&lt;/P&gt;&lt;P&gt; count = count + 1.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not s_charg is initial.&lt;/P&gt;&lt;P&gt; count = count + 1.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not s_art is initial.&lt;/P&gt;&lt;P&gt; count = count + 1.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not s_pruef is initial.&lt;/P&gt;&lt;P&gt; count = count + 1.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not s_vaplz is initial.&lt;/P&gt;&lt;P&gt; count = count + 1.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not s_ltxa1 is initial.&lt;/P&gt;&lt;P&gt; count = count + 1.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not s_aufnr is initial.&lt;/P&gt;&lt;P&gt; count = count + 1.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not s_past is initial.&lt;/P&gt;&lt;P&gt; count = count + 1.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not s_paend is initial.&lt;/P&gt;&lt;P&gt; count = count + 1.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not s_plnty is initial.&lt;/P&gt;&lt;P&gt; count = count + 1.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not s_herst is initial.&lt;/P&gt;&lt;P&gt; count = count + 1.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not s_lifnr is initial.&lt;/P&gt;&lt;P&gt; count = count + 1.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not s_kunnr is initial.&lt;/P&gt;&lt;P&gt; count = count + 1.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not s_verwm is initial.&lt;/P&gt;&lt;P&gt; count = count + 1.&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;if count &amp;lt; 1.&lt;/P&gt;&lt;P&gt; message e000(0) with 'No enough inputs'.&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;&lt;/P&gt;&lt;P&gt;*******************&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;*******************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*******************&lt;/P&gt;&lt;P&gt;end-of-selection.&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="19" type="ul"&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Jul 2006 17:38:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-condition/m-p/1432533#M206631</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-14T17:38:16Z</dc:date>
    </item>
    <item>
      <title>Re: selection-screen(condition)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-condition/m-p/1432534#M206632</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to check the sy-ucomm in the event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;


tables: t001w.

select-options: s_werks for t001w-werks.


at selection-screen.

&amp;lt;b&amp;gt;  check sy-ucomm &amp;lt;&amp;gt; '%000'.  'Multiple Selection fcode&amp;lt;/b&amp;gt;

  if  s_werks is initial.
    message e001(00) with 'Enter a value'.
  endif.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Jul 2006 17:49:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-condition/m-p/1432534#M206632</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-07-14T17:49:56Z</dc:date>
    </item>
    <item>
      <title>Re: selection-screen(condition)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-condition/m-p/1432535#M206633</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rich,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please tell me what exactly this statement checks for.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;check sy-ucomm &amp;lt;&amp;gt; '%000'.  'Multiple Selection fcode&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Jul 2006 17:59:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-condition/m-p/1432535#M206633</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-14T17:59:47Z</dc:date>
    </item>
    <item>
      <title>Re: selection-screen(condition)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-condition/m-p/1432536#M206634</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;When I press the Multiple Selections button, the 'at selection-screen' event is executed and then I am getting the pop-up window. Is there a way to get the pop-up window before the 'at selection-screen' event is executed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reply. Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Jul 2006 18:12:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-condition/m-p/1432536#M206634</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-14T18:12:36Z</dc:date>
    </item>
    <item>
      <title>Re: selection-screen(condition)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-condition/m-p/1432537#M206635</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, there is no way to get the popup before the at selection-screen event.  The only thing that you can do to avoid the processing of code in the AT SELECTION-SCREEN event is to check for the function code of the "multiple selection button".  In my previous post, I suggestted to add a check statement.  This check statement is checking that the user did not press the multiple funtion  button, if he did that the code under the CHECK statement in the AT SELECTION-SCREEN event would not get fired.  Does this make sense?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Jul 2006 18:29:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-condition/m-p/1432537#M206635</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-07-14T18:29:04Z</dc:date>
    </item>
    <item>
      <title>Re: selection-screen(condition)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-condition/m-p/1432538#M206636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is this problem solved?  If so, please mark as solved.  Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Jul 2006 01:36:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-condition/m-p/1432538#M206636</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-07-15T01:36:51Z</dc:date>
    </item>
    <item>
      <title>Re: selection-screen(condition)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-condition/m-p/1432539#M206637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rich,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I didnt try yet the thing you mentioned in your reply. I'll test it and respond soon to this post. Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Jul 2006 01:39:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-condition/m-p/1432539#M206637</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-15T01:39:32Z</dc:date>
    </item>
    <item>
      <title>Re: selection-screen(condition)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-condition/m-p/1432540#M206638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just so you know, you have no control over when the events are fired.  They are fired at specific times, you have to be able to handle them when you don't want to do the logic under them.  In your case, you don't want to do the logic if the user has hit the MS button.  That is the fcode that the CHECK statement is looking for.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Jul 2006 01:44:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-condition/m-p/1432540#M206638</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-07-15T01:44:16Z</dc:date>
    </item>
    <item>
      <title>Re: selection-screen(condition)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-condition/m-p/1432541#M206639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rich,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I appreciate your replies. I will try this thing and respond back. PLease remember this post. I will let you know if I succeeded. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks once again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Jul 2006 01:52:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-condition/m-p/1432541#M206639</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-15T01:52:02Z</dc:date>
    </item>
    <item>
      <title>Re: selection-screen(condition)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-condition/m-p/1432542#M206640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rich,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried what you said.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check sy-ucomm &amp;lt;&amp;gt; '%000'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if count &amp;lt; 1.&lt;/P&gt;&lt;P&gt; message e000(0) with 'Not enough inputs'.&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;But what I observed is when I press the Multiple Selections button the code under the check statement is not skipped but instead executed and I am getting the error message not enough inputs. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I changed the &amp;lt;&amp;gt; in check statement to = and what I observed is the code under the check statement is not executed irrespective of whether I press the Multiple selections button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PLease clarify on this. Waiting for your reply. Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Jul 2006 14:30:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-condition/m-p/1432542#M206640</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-15T14:30:42Z</dc:date>
    </item>
    <item>
      <title>Re: selection-screen(condition)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-condition/m-p/1432543#M206641</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;write this code under start-of-selection , it will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if s_werk[] is initial and &lt;/P&gt;&lt;P&gt;if s_matnr[] is initial and &lt;/P&gt;&lt;P&gt;if s_charg[] is initial and &lt;/P&gt;&lt;P&gt;if  s_art[] is initial and &lt;/P&gt;&lt;P&gt;if  s_pruef[] is initial and &lt;/P&gt;&lt;P&gt;if  s_vaplz[] is initial and &lt;/P&gt;&lt;P&gt;if s_ltxa1[] is initial and &lt;/P&gt;&lt;P&gt;if s_aufnr[] is initial and &lt;/P&gt;&lt;P&gt;if  s_enst[] is initial and &lt;/P&gt;&lt;P&gt;if  s_past[] is initial and &lt;/P&gt;&lt;P&gt;if  s_paend[] is initial and &lt;/P&gt;&lt;P&gt;if  s_plnty[] is initial and &lt;/P&gt;&lt;P&gt;if  s_herst[] is initial and &lt;/P&gt;&lt;P&gt;if  s_lifnr[] is initial and &lt;/P&gt;&lt;P&gt;if  s_kunnr[] is initial and &lt;/P&gt;&lt;P&gt;if  s_verwm[] is initial .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;message message s000(0) with 'Not enough inputs'&lt;/P&gt;&lt;P&gt;exit.&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;regards&lt;/P&gt;&lt;P&gt;Appana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Jul 2006 14:38:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-condition/m-p/1432543#M206641</guid>
      <dc:creator>Laxmana_Appana_</dc:creator>
      <dc:date>2006-07-15T14:38:57Z</dc:date>
    </item>
    <item>
      <title>Re: selection-screen(condition)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-condition/m-p/1432544#M206642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the value of sy-ucomm at the CHECK statment in debug mode when you click the multiple selection button.  What ever the value is of sy-ucomm is the value that you need to check.  In my system, the value was &lt;/P&gt;&lt;P&gt;'%000'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;RIch Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Jul 2006 16:29:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-condition/m-p/1432544#M206642</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-07-15T16:29:23Z</dc:date>
    </item>
    <item>
      <title>Re: selection-screen(condition)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-condition/m-p/1432545#M206643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is good programming practice to do validations in the AT SELECTION-SCREEN event, not the START-OF-SELECTION, but if you don't care, then by all means do it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Jul 2006 16:31:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-condition/m-p/1432545#M206643</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-07-15T16:31:03Z</dc:date>
    </item>
    <item>
      <title>Re: selection-screen(condition)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-condition/m-p/1432546#M206644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rich,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I agree with you. I am going with your logic. Its working now. But sorry I cant assign you full points as I did that already to other person. But I did assign you maximum points I can. Thanks once again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Jul 2006 16:50:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-condition/m-p/1432546#M206644</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-15T16:50:54Z</dc:date>
    </item>
    <item>
      <title>Re: selection-screen(condition)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-condition/m-p/1432547#M206645</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No problem with the points,  you can do as he suggested, it obviously works, but again, validations are supposed to be handled in the AT SELECTION-SCREEN event.  Just wanted you to be aware.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you code the validations in the START-of-SELECTION event, they will not be done when the user hits "ENTER".  They will only be done when the user clicks the "EXECUTE" button.  This is why it is good to do them in the AT SELECTION-SCREEN event.  Make Sense?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Jul 2006 17:21:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-condition/m-p/1432547#M206645</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-07-15T17:21:51Z</dc:date>
    </item>
  </channel>
</rss>

