SAP RAISE EVENT - Reference ABAP Statements

Get Example source ABAP code based on a different SAP table
  


Standard SAP Help for RAISE

RAISE EVENT

ABAP Reference
ABAP Code Snippet


ABAP Syntax RAISE EVENT evt [EXPORTING p1 = a1 p2 = a2 ...].

ABAP Code Snippet

What does it do? Triggers an event in a method.

ABAP Addition EXPORTING p1 = a1 p2 = a2 ...
Transfers actual parameters a1, a2, ... to the input parameter p1, p2 of the event handler.

Return to menu