SAP GET BADI - Reference ABAP Statements

Get Example source ABAP code based on a different SAP table
  


Standard SAP Help for GET_BADI

GET BADI

ABAP Reference
ABAP Code Snippet


ABAP Syntax GET BADI { badi [FILTERS f1 = x1 f2 = x2 ...]
}
| { badi TYPE (name)
[ {FILTERS f1 = x1 f2 = x2 ...}
| {FILTER-TABLE ftab}] }
[CONTEXT con].
ABAP Code Snippet

What does it do? : Enters a BAdI reference to a BAdI object in a BAdI reference variable .

ABAP Addition TYPE (name)
Declares the name of a BAdI dynamically.
FILTERS f1 = x1 f2 = x2 ...
Specifies a setting x1, x2, etc. for the filters f1 , f2... of the BAdIs.
FILTER-TABLE ftab
Declares the filter setting dynamically in an internal table.
CONTEXT con
Specifies a BAdI context object.

Return to menu