SAP NetWeaver AS ABAP Release 740, ©Copyright 2014 SAP AG. All rights reserved.
ABAP Keyword Documentation → ABAP − Short Reference →
CALL BADI - Short Reference
Syntax
CALL BADI badi->meth|badi->(meth_name)
{ [EXPORTING p1 = a1 p2 = a2 ...]
[IMPORTING p1 = a1 p2 = a2 ...]
[CHANGING p1 = a1 p2 = a2 ...]
[RECEIVING r = a ]
[EXCEPTIONS [exc1 = n1 exc2 = n2 ...]
[OTHERS = n_others]] }
| { [PARAMETER-TABLE ptab]
[EXCEPTION-TABLE etab] }.
Effect
:Calls a BAdI method that is directly specified as meth or is specified in meth_name in the
object plug-ins that are referenced by the
BAdI object to which the
BAdI reference variable badi refers.
Additions