Skip to content

ABAP Keyword Documentation →  ABAP - Quick Reference 

CALL BADI - Quick reference

Reference

Other versions: 7.31 | 7.40 | 7.54

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 specified directly as meth or specified in meth_name in the object plug-ins referenced by the BAdI object to which the BAdI reference variable badi refers.

Additions