<?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: difference between at selection screen and at selection screen output. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-at-selection-screen-and-at-selection-screen-output/m-p/3716203#M894598</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;At Selection Screen------ Used for the validating the fields in the Selection screen&lt;/P&gt;&lt;P&gt;By this event u will get F4 value, screen field validations like data is availabe or not when user enter data in a field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At Selection Screen Output -&lt;/P&gt;&lt;HR originaltext="-----" /&gt;&lt;P&gt; This is used for the dynamic feld validation&lt;/P&gt;&lt;P&gt; like if u dont want a field in selection screen to be an input field.&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;Prashanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Apr 2008 16:10:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-29T16:10:52Z</dc:date>
    <item>
      <title>difference between at selection screen and at selection screen output.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-at-selection-screen-and-at-selection-screen-output/m-p/3716199#M894594</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;      Could any body help me what is the difference between at selection screen and at selection screen output.&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;Koti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Apr 2008 15:20:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-at-selection-screen-and-at-selection-screen-output/m-p/3716199#M894594</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-29T15:20:47Z</dc:date>
    </item>
    <item>
      <title>Re: difference between at selection screen and at selection screen output.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-at-selection-screen-and-at-selection-screen-output/m-p/3716200#M894595</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;&lt;STRONG&gt;AT SELECTION SCREEN&lt;/STRONG&gt;:&lt;/P&gt;&lt;P&gt;when user enters the values in the fields of the selection screen and clicks on execution button,this event gets triggered.this event is basically for checking the value entered by the user for the field of the selection screen i.e data validity checking.this event is for entire selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;AT SELECTION SCREEN OUTPUT&lt;/STRONG&gt;:&lt;/P&gt;&lt;P&gt;This event is executed at PBO of the selection screen every time the user presses&lt;/P&gt;&lt;P&gt;ENTER - in contrast to INITIALIZATION . Therefore, this event is not suitable for setting selection screen default values.&lt;/P&gt;&lt;P&gt;Also, since AT SELECTION-SCREEN OUTPUT is first executed after the variant is imported (if a variant is used)&lt;/P&gt;&lt;P&gt;and after adopting any values specified under SUBMIT in the WITH clause, changing the report parameters&lt;/P&gt;&lt;P&gt;or the selection options in AT SELECTION-SCREEN OUTPUT would destroy the specified values.&lt;/P&gt;&lt;P&gt;Here, however, you can use LOOP AT SCREEN or MODIFY SCREEN to change the input/output attributes of selection screen fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Output all fields of the SELECT-OPTION NAME highlighted:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS NAME FOR SY-REPID MODIF ID XYZ.&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 OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CHECK SCREEN-GROUP1 = 'XYZ'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SCREEN-INTENSIFIED = '1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The addition MODIF ID XYZ to the key word SELECT-OPTIONS&lt;/P&gt;&lt;P&gt;assigns all fields of the selection option NAME to a group you can read in the field SCREEN-GROUP1 .&lt;/P&gt;&lt;P&gt;At PBO of the selection screen, all these fields are then set to highlighted&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sunil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Apr 2008 15:23:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-at-selection-screen-and-at-selection-screen-output/m-p/3716200#M894595</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-29T15:23:39Z</dc:date>
    </item>
    <item>
      <title>Re: difference between at selection screen and at selection screen output.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-at-selection-screen-and-at-selection-screen-output/m-p/3716201#M894596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Koti&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION SCREEN&lt;/P&gt;&lt;P&gt;It is used when using an element on the screen...parameter...select options radio button...etc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION SCREEN OUTPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPTION It is used as an event, This event is triggered at the screen event PBO of a selection screen.&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;please reward&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gabriel P-&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Apr 2008 15:25:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-at-selection-screen-and-at-selection-screen-output/m-p/3716201#M894596</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-29T15:25:12Z</dc:date>
    </item>
    <item>
      <title>Re: difference between at selection screen and at selection screen output.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-at-selection-screen-and-at-selection-screen-output/m-p/3716202#M894597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;AT SELECTION-SCREEN - Used for validation purpose and&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT -  used to alter / add properties of selection screen elements ( parmeters / soptions).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Apr 2008 15:49:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-at-selection-screen-and-at-selection-screen-output/m-p/3716202#M894597</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-29T15:49:27Z</dc:date>
    </item>
    <item>
      <title>Re: difference between at selection screen and at selection screen output.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-at-selection-screen-and-at-selection-screen-output/m-p/3716203#M894598</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;At Selection Screen------ Used for the validating the fields in the Selection screen&lt;/P&gt;&lt;P&gt;By this event u will get F4 value, screen field validations like data is availabe or not when user enter data in a field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At Selection Screen Output -&lt;/P&gt;&lt;HR originaltext="-----" /&gt;&lt;P&gt; This is used for the dynamic feld validation&lt;/P&gt;&lt;P&gt; like if u dont want a field in selection screen to be an input field.&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;Prashanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Apr 2008 16:10:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-at-selection-screen-and-at-selection-screen-output/m-p/3716203#M894598</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-29T16:10:52Z</dc:date>
    </item>
    <item>
      <title>Re: difference between at selection screen and at selection screen output.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-at-selection-screen-and-at-selection-screen-output/m-p/3716204#M894599</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;At Selection-Screen:  With this user can implement validations in ABAP reports. It triggers after processing user input still selection screen in active mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for eg :&lt;/P&gt;&lt;P&gt;AT SELECTIONSCREEN on Vendor.&lt;/P&gt;&lt;P&gt;IF Vendor-low &amp;lt; 500. or&lt;/P&gt;&lt;P&gt;    Vendor - High&amp;gt;4000.&lt;/P&gt;&lt;P&gt;Message E000(0) with 'enter proper input'.&lt;/P&gt;&lt;P&gt;Endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the PBO of the selection screen, the &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT : event is triggered. This event block allows you to modify the selection screen directly before it is displayed.Therefore, this event is not suitable for setting selection screen default values. Also, since AT SELECTION-SCREEN OUTPUT is first executed after the variant is imported (if a variant is used) and after adopting any values specified under SUBMIT in the WITH clause, changing the report parameters .you can use LOOP AT SCREEN or MODIFY SCREEN to change the input/output attributes of selection screen fields.&lt;/P&gt;&lt;P&gt;for eg :&lt;/P&gt;&lt;P&gt;Output all fields of the SELECT-OPTION NAME highlighted: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;!&lt;DEL&gt;[if !supportEmptyParas]&lt;/DEL&gt;&amp;gt; &amp;lt;!&lt;DEL&gt;[endif]&lt;/DEL&gt;&amp;gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS NAME FOR SY-REPID MODIF ID XYZ...&lt;/P&gt;&lt;P&gt;.AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN&lt;/P&gt;&lt;P&gt;CHECK SCREEN-GROUP1 = 'XYZ'.&lt;/P&gt;&lt;P&gt;SCREEN-INTENSIFIED = '1'.   &lt;/P&gt;&lt;P&gt; MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls reward if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rajyalakshmi Attili on Apr 30, 2008 12:03 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 01:30:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-at-selection-screen-and-at-selection-screen-output/m-p/3716204#M894599</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-30T01:30:21Z</dc:date>
    </item>
  </channel>
</rss>

