MATERIAL_REFCHANGE_OD_RT SAP Method Pass On Templates for Integrated Data
Below is documentation, parameters and attributes of ABAP Method MATERIAL_REFCHANGE_OD_RT within SAP class IF_EX_BADI_MATERIAL_OD. 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_MATERIAL_OD 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 MATERIAL_REFCHANGE_OD_RT can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method MATERIAL_REFCHANGE_OD_RT
.| Name | Type | Data Type | Description | Default Value |
| P_ISGENERIC | Importing | TYPE T130F-KZREF | Propose Field Content from the Reference | |
| P_ISREFPLANT | Importing | TYPE T130F-KZREF | Propose Field Content from the Reference | |
| P_KZRFB | Importing | TYPE MTCOM-KZRFB | Indicator: reset buffer for Material_Pre_Fetch | |
| P_RMMG1 | Importing | TYPE RMMG1 | Mat. Master Maintenance: Initial Parameters - Orig. Material | |
| P_RMMW2 | Importing | TYPE RMMW2 | Material Master Maintenance: Retail Addition RMMG1 for DC | |
| P_T001W_REFP | Importing | TYPE T001W | Plants/branches | |
| TI_MATNR_TAB | Importing | TYPE MGINT_PRE03 | Table: Material Preliminary Step | |
| TI_VAR_TAB | Importing | TYPE MGINT_SVARTAB | Table for Header Data of a Variant |
Exceptions of Method MATERIAL_REFCHANGE_OD_RT
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO IF_EX_BADI_MATERIAL_OD.
DATA: lv_P_ISGENERIC TYPE T130F-KZREF,
lv_P_ISREFPLANT TYPE T130F-KZREF,
lv_P_KZRFB TYPE MTCOM-KZRFB,
lv_P_RMMG1 TYPE RMMG1,
lv_P_RMMW2 TYPE RMMW2,
lv_P_T001W_REFP TYPE T001W,
lv_TI_MATNR_TAB TYPE MGINT_PRE03,
lv_TI_VAR_TAB TYPE MGINT_SVARTAB,
lv_other TYPE c.
CALL METHOD lo_class=>MATERIAL_REFCHANGE_OD_RT(
EXPORTING
P_ISGENERIC = lv_P_ISGENERIC
P_ISREFPLANT = lv_P_ISREFPLANT
P_KZRFB = lv_P_KZRFB
P_RMMG1 = lv_P_RMMG1
P_RMMW2 = lv_P_RMMW2
P_T001W_REFP = lv_P_T001W_REFP
TI_MATNR_TAB = lv_TI_MATNR_TAB
TI_VAR_TAB = lv_TI_VAR_TAB ).
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