SAP CALL BADI - Reference ABAP Statements

Get Example source ABAP code based on a different SAP table
  


Standard SAP Help for CALL

CALL BADI

ABAP Reference
ABAP Code Snippet


ABAP 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] }.
ABAP Code Snippet

What does it do? :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.

ABAP Addition EXPORTING p1 = a1 p2 = a2 ...
See CALL METHOD.
IMPORTING p1 = a1 p2 = a2 ...
See CALL METHOD.
CHANGING p1 = a1 p2 = a2 ...
See CALL METHOD.
RECEIVING r = a
See CALL METHOD.
EXCEPTIONS
See CALL METHOD.
PARAMETER-TABLE
See CALL METHOD.
EXCEPTION-TABLE
See CALL METHOD.


Return to menu