SAP EVENTS - Reference ABAP Statements

Get Example source ABAP code based on a different SAP table
  


Standard SAP Help for EVENTS

EVENTS

ABAP Reference
ABAP Code Snippet


ABAP Syntax EVENTS evt [ EXPORTING VALUE(p1)
typing
[OPTIONAL|{DEFAULT def1}]
VALUE(p2) typing
[OPTIONAL|{DEFAULT def2}]
... ].
ABAP Code Snippet

What does it do? Declares an instance event evt of a class or interface.

ABAP Addition EXPORTING VALUE(p1) ... VALUE(p2) ...
Defines the output parameters p1, p2, ... of the event.
typing
Assigns a type to the output parameter.
OPTIONAL|DEFAULT
Specifies optional output parameters either with or without the replacement parameters def1, def2, ...

Return to menu