Skip to content

ABAP Keyword Documentation →  ABAP - Reference →  Calling and leaving program units →  Calling Processing Blocks →  Call Event Handler 

SET HANDLER

Short Reference

Other versions: 7.31 | 7.40 | 7.54

Syntax Forms


Registers an instance events handler

1. SET HANDLER handler1 handler2 ... FOR oref|{ALL INSTANCES}
                                   [ACTIVATION act].

Register static events handler

2. SET HANDLER handler1 handler2 ... [ACTIVATION act].

Effect

This statement registers or deregisters the event handlers handler for the corresponding instance events or static events.

System fields

sy-subrc Meaning
0 All specified handlers could be registered or deregistered.
4 At least one of the specified handlers could not be registered, as it is already registered for the same event.
8 At least one of the specified handlers could not be deregistered, as it is not registered for the event in question.


Notes

  • The statement SET HANDLER manages internally different system tables that relate the triggers and event holders to each other for single registration, mass registration, and registration for static events. Each registration represents one line in one of the system tables assigned to the trigger. A handler can only appear once in a particular system table, but can appear in several system tables, that is, it can be registered for different events. When the system triggers an event with RAISE EVENT, it evaluates the corresponding system tables and calls the event handlers registered there.
  • The order of the calls of registered event handlers is not defined and can change during program runtime. To get a fixed order of different method calls, these can be called in one event handler.
  • When registering an instance method, a reference to the corresponding object in the relevant table is created and then deleted again when deregistering. With regard to the Garbage Collector, such a reference has the same effect as a reference in a reference variable. Objects registered as handlers are not deleted as long as they are registered, that is, they are not deregistered using the ACTIVATION addition. If a triggering instance is deleted by the Garbage Collector, the corresponding system table is also deleted and as a result, its registrations are reversed.
  • If the SET HANDLER statement registers the current handler again for the current event during event handling, it is not clear whether the registration is still considered in the current event handling. This can lead to endless recursion and should be avoided.

Example

Registration of event handlers for two instance events and a static event. In the first statement SET HANDLER, a static event handler h1 and an instance method h2, are registered fort he instance events e1 and e2 of the object referred to by the reference variable trigger. In the second statement SET HANDLER, an instance method h3 is registered fort he static event ce1 of the class c1.

CLASS c1 DEFINITION.
  PUBLIC SECTION.
    EVENTS e1.
    CLASS-EVENTS ce1.
ENDCLASS.

CLASS c2 DEFINITION INHERITING FROM c1.
  PUBLIC SECTION.
    EVENTS e2.
ENDCLASS.

CLASS c3 DEFINITION.
  PUBLIC SECTION.
    CLASS-METHODS  h1 FOR EVENT e1 OF c1.
          METHODS: h2 FOR EVENT e2 OF c2,
                   h3 FOR EVENT ce1 OF c1.
ENDCLASS.

...

DATA: trigger TYPE REF TO c2,
      handler TYPE REF TO c3.

SET HANDLER: c3=>h1 handler->h2 FOR trigger,
             handler->h3.

Exceptions


Non-Catchable Exceptions

  • Cause: Unable to register any more handlers.
    Runtime Error: SET_HANDLER_DISP_OVERFLOW
  • Cause: Handlers of instance methods need the FOR addition.
    Runtime Error: SET_HANDLER_E_NO_FOR
  • Cause: Event handler was registered for a static event.
    Runtime Error: SET_HANDLER_FOR_CE
  • Cause: The trigger of an event must not be NULL.
    Runtime Error: SET_HANDLER_FOR_NULL
  • Cause: The handler of an event must not be NULL.
    Runtime Error: SET_HANDLER_HOBJ_NULL

Continue

SET HANDLER - FOR

SET HANDLER - static_event