<?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: Events in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/events/m-p/3223744#M768856</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  Thanks for your rly&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 30 Dec 2007 05:27:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-30T05:27:07Z</dc:date>
    <item>
      <title>Events</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/events/m-p/3223742#M768854</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;  can u tell about the events in the abap programming and how they going to trigger.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;explain in detail.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 30 Dec 2007 05:17:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/events/m-p/3223742#M768854</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-30T05:17:16Z</dc:date>
    </item>
    <item>
      <title>Re: Events</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/events/m-p/3223743#M768855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  The events in abap r &lt;/P&gt;&lt;P&gt;  Initialisation&lt;/P&gt;&lt;P&gt;  Top of page&lt;/P&gt;&lt;P&gt;  start of selection&lt;/P&gt;&lt;P&gt;  end of page &lt;/P&gt;&lt;P&gt; end of selection&lt;/P&gt;&lt;P&gt;at line selection&lt;/P&gt;&lt;P&gt;at user command&lt;/P&gt;&lt;P&gt; Initialisation: TO put the calculated values in the parameters and select options we will use it.&lt;/P&gt;&lt;P&gt;top-of-page.-it will trigger when the first write statement trigger .&lt;/P&gt;&lt;P&gt;at line selection- to goto secondary lists by double clicking on the basic list&lt;/P&gt;&lt;P&gt;at iser command. when one button is clicked  then certain code need to be excecuted then this event is useful.&lt;/P&gt;&lt;P&gt;Plzz reward points if it helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 30 Dec 2007 05:23:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/events/m-p/3223743#M768855</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-30T05:23:40Z</dc:date>
    </item>
    <item>
      <title>Re: Events</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/events/m-p/3223744#M768856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  Thanks for your rly&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 30 Dec 2007 05:27:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/events/m-p/3223744#M768856</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-30T05:27:07Z</dc:date>
    </item>
    <item>
      <title>Re: Events</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/events/m-p/3223745#M768857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kumar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls find some below contents.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls reward pts if help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;deepanker.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Triggering and Handling Events &lt;/P&gt;&lt;P&gt;In ABAP Objects, triggering and handling an event means that certain methods act as triggers and trigger events, to which other methods - the handlers - react. This means that the handler methods are executed when the event occurs. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This section contains explains how to work with events in ABAP Objects.  For precise details of the relevant ABAP statements, refer to the corresponding keyword documentation in the ABAP Editor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Triggering Events&lt;/P&gt;&lt;P&gt;To trigger an event, a class must&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;·        Declare the event in its declaration part&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;·        Trigger the event in one of its methods&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Declaring Events&lt;/P&gt;&lt;P&gt;You declare events in the declaration part of a class or in an interface. To declare instance events, use the following statement: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EVENTS ) TYPE type &lt;A href="https://community.sap.com/OPTIONAL"&gt;&lt;/A&gt;.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To declare static events, use the following statement: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS-EVENTS ... &lt;A href="https://community.sap.com/FOR"&gt;&lt;/A&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It links a list of handler methods with corresponding trigger methods.  There are four different types of event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It can be&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;·        An instance event declared in a class&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;·        An instance event declared in an interface&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;·        A static event declared in a class&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;·        A static event declared in an interface&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The syntax and effect of the SET HANDLER depends on which of the four cases listed above applies.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For an instance event, you must use the FOR addition to specify the instance for which you want to register the handler.  You can either specify a single instance as the trigger, using a reference variable ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The registration applies automatically to the whole class, or to all of the classes that implement the interface containing the static event.  In the case of interfaces, the registration also applies to classes that are not loaded until after the handler has been registered. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Timing of Event Handling&lt;/P&gt;&lt;P&gt;After the RAISE EVENT statement, all registered handler methods are executed before the next statement is processed (synchronous event handling).  If a handler method itself triggers events, its handler methods are executed before the original handler method continues. To avoid the possibility of endless recursion, events may currently only be nested 64 deep. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Handler methods are executed in the order in which they were registered.  Since event handlers are registered dynamically, you should not assume that they will be processed in a particular order. Instead, you should program as though all event handlers will be executed simultaneously. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Pls reward pts if help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Dec 2007 04:47:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/events/m-p/3223745#M768857</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-31T04:47:11Z</dc:date>
    </item>
  </channel>
</rss>

