You are on page 1of 1

EVENTS evt [EXPORTING parameters ]. ABAP_ADDITION: ... EXPORTING parameters What does it do?

Declares an instance event evt in a class or interface. The Naming conventions apply to the name evt . Using the RAISE EVENT statement, the instance event evt can be raised in any instance method of the same class, or of any class that implements the interface, as well as in the instance methods of subclasses - if they are visible there. ABAP_ADDITION ... EXPORTING parameters What does it do ? The EXPORTING addition defines the parameter interface of the event evt . An event can only have output parameters parameters that are passed by value.

You might also like