EX_BADI_MDRD_005 SAP Method Set references for the delivery relationship
Below is documentation, parameters and attributes of ABAP Method EX_BADI_MDRD_005 within SAP class IF_EX_BADI_MDRD. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name IF_EX_BADI_MDRD into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Instance
This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.The following technical details of method EX_BADI_MDRD_005 can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method EX_BADI_MDRD_005
.| Name | Type | Data Type | Description | Default Value |
| I_RTYPE | Importing | TYPE MDRD_RTYPE | Delivery Relationship: Type of Goods Recipient | |
| E_LEVEL | Exporting | TYPE MDRD_LEVEL_M | Levels for Determining the Supplied Recipient | |
| E_REFERENCE | Exporting | TYPE FLAG | Indicator: Reference Available | |
| C_EXTWG | Changing | TYPE MDRD_EXTWG-EXTWG | External Material Group | |
| C_MATKL | Changing | TYPE MDRD-MATKL | Material Group | |
| C_MATNR | Changing | TYPE MDRD-MATNR | Material Number | |
| C_RESDB | Changing | TYPE MDRD-RESDB | Issuing MRP Area in Stock Transport Order |
Exceptions of Method EX_BADI_MDRD_005
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO IF_EX_BADI_MDRD.
DATA: lv_C_EXTWG TYPE MDRD_EXTWG-EXTWG,
lv_C_MATKL TYPE MDRD-MATKL,
lv_C_MATNR TYPE MDRD-MATNR,
lv_C_RESDB TYPE MDRD-RESDB,
lv_E_LEVEL TYPE MDRD_LEVEL_M,
lv_E_REFERENCE TYPE FLAG,
lv_I_RTYPE TYPE MDRD_RTYPE,
lv_other TYPE c.
CALL METHOD lo_class=>EX_BADI_MDRD_005(
EXPORTING
I_RTYPE = lv_I_RTYPE
IMPORTING
E_LEVEL = lv_E_LEVEL
E_REFERENCE = lv_E_REFERENCE
CHANGING
C_EXTWG = lv_C_EXTWG
C_MATKL = lv_C_MATKL
C_MATNR = lv_C_MATNR
C_RESDB = lv_C_RESDB ).
Links to Related Class(s)
IF_EX_BA...Full list of available SAP object classes
Search for further information about these or an SAP related objects