<?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 event in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/event/m-p/1997676#M406325</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is the use of at-selection screen output,atselection screen on feild and at selection? could u plzz tell me the answer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 07 Mar 2007 07:47:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-07T07:47:57Z</dc:date>
    <item>
      <title>event</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/event/m-p/1997676#M406325</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is the use of at-selection screen output,atselection screen on feild and at selection? could u plzz tell me the answer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2007 07:47:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/event/m-p/1997676#M406325</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-07T07:47:57Z</dc:date>
    </item>
    <item>
      <title>Re: event</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/event/m-p/1997677#M406326</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;/P&gt;&lt;P&gt;The AT SELECTION SCREEN ... events are implemented internally as FORM routines. All data objects created using DATA are therefore local - only recognized and addressable within the event.  &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;This event is executed at PBO of the selection screen every time the user presses ENTER - in contrast to INITIALIZATION. 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 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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example &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;&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;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;  ENDLOOP. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prasanth&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Reward if helpful&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2007 07:53:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/event/m-p/1997677#M406326</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-07T07:53:18Z</dc:date>
    </item>
    <item>
      <title>Re: event</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/event/m-p/1997678#M406327</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;Event AT SELECTION-SCREEN is the basic form of a whole series of events that occur while the selection screen is being processed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) AT SELECTION-SCREEN event is triggered in the &amp;lt;b&amp;gt;PAI of the selection screen&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;Once the ABAP runtime environment has passed all of the input data from the selection screen to the ABAP program, this gets trigered.&lt;/P&gt;&lt;P&gt;If an error message occurs in this processing block, the selection screen is redisplayed with all of its fields ready for input.&lt;/P&gt;&lt;P&gt;This allows us to check input values for consistency. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) AT SELECTION-SCREEN OUTPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;event is triggered in the &amp;lt;b&amp;gt;PBO of the selection screen&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;This event block allows us to modify the selection screen directly &amp;lt;b&amp;gt;before it is displayed&amp;lt;/b&amp;gt;. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) AT SELECTION-SCREEN ON &amp;lt;field&amp;gt;&lt;/P&gt;&lt;P&gt;In the &amp;lt;b&amp;gt;PAI event of the selection screen&amp;lt;/b&amp;gt;, the event &lt;/P&gt;&lt;P&gt;is triggered.&lt;/P&gt;&lt;P&gt;When the contents of each individual input field are passed from the selection screen to the ABAP program. The input field &amp;lt;field&amp;gt; can be checked in the corresponding event block.&lt;/P&gt;&lt;P&gt;If an error message occurs within this event block, &amp;lt;b&amp;gt;only the corresponding field is made ready for input again&amp;lt;/b&amp;gt; on the selection screen. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Apart from these there are other forms &lt;/P&gt;&lt;P&gt;4)AT SELECTION-SCREEN ON BLOCK &amp;lt;block&amp;gt; :-fields in a block &lt;/P&gt;&lt;P&gt;5)AT SELECTION-SCREEN ON RADIOBUTTON GROUP &amp;lt;radi&amp;gt;&lt;/P&gt;&lt;P&gt;6)AT SELECTION-SCREEN ON &amp;lt;seltab&amp;gt;&lt;/P&gt;&lt;P&gt;7)AT SELECTION-SCREEN ON HELP-REQUEST FOR &amp;lt;field&amp;gt;:- F1 help &lt;/P&gt;&lt;P&gt;8)AT SELECTION-SCREEN ON VALUE-REQUEST FOR &amp;lt;field&amp;gt;:- F4 help &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it clears your doubt.&lt;/P&gt;&lt;P&gt;Reward if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Saumya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2007 07:55:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/event/m-p/1997678#M406327</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-07T07:55:30Z</dc:date>
    </item>
    <item>
      <title>Re: event</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/event/m-p/1997679#M406328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;at selection-screen output is the PBO of selection screen so generally we are setting the attributes of selection screen here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen on field is PAI of selection screen when we are entering a value for the field and make any user interaction it triggers we can validate the value of that field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen is the PAI which is triggering for any user interaction irrespective of entering  value for perticular  field or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls check the link&lt;/P&gt;&lt;P&gt;&amp;lt;a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/56/1eb6c705ad11d2952f0000e8353423/content.htm"&amp;gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/56/1eb6c705ad11d2952f0000e8353423/content.htm&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;shiba dutta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2007 07:56:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/event/m-p/1997679#M406328</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-07T07:56:38Z</dc:date>
    </item>
  </channel>
</rss>

