SAP RAISE EXCEPTION - Reference ABAP Statements

Get Example source ABAP code based on a different SAP table
  


Standard SAP Help for RAISE

RAISE EXCEPTION

ABAP Reference
ABAP Code Snippet


ABAP Syntax RAISE [RESUMABLE] EXCEPTION

{ {TYPE cx_class [EXPORTING p1 = a1 p2 = a2 ...]}
| oref }.
ABAP Code Snippet

What does it do? Triggers a class-based exception.

ABAP Addition RESUMABLE
Triggers a resumable exception.
TYPE cx_class [EXPORTING p1 = a1 p2 = a2 ...]
Specifies the exception class and transfers actual parameters a1, a2, ... to the input parameters p1, p2, ... of the constructor.
oref
Uses an existing exception object that refers to the oref.

Return to menu