MATERIAL_DIFFMAINT_ORGLEVS_OD SAP Method Determine Deviating Fields for Integrated Data
Below is documentation, parameters and attributes of ABAP Method MATERIAL_DIFFMAINT_ORGLEVS_OD 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_DIFFMAINT_ORGLEVS_OD can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method MATERIAL_DIFFMAINT_ORGLEVS_OD
.| Name | Type | Data Type | Description | Default Value |
| P_MARA | Importing | TYPE MARA | General material data | |
| 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_RTSTATUS | Importing | TYPE T133A-RPSTA | Retail maintenance status | |
| P_ABW_ART | Changing | TYPE T130F-KZREF | Flag for Type of Deviation | |
| T_ABW | Changing | TYPE MGINT_MABW | Table: Administration of Material Deviations - Retail | |
| T_ABW_FELDER | Changing | TYPE MGINT_MABW_DET | Details on the Differently Maintained Fields and Values |
Exceptions of Method MATERIAL_DIFFMAINT_ORGLEVS_OD
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO IF_EX_BADI_MATERIAL_OD.
DATA: lv_P_ABW_ART TYPE T130F-KZREF,
lv_P_MARA TYPE MARA,
lv_P_RMMG1 TYPE RMMG1,
lv_P_RMMW2 TYPE RMMW2,
lv_P_RTSTATUS TYPE T133A-RPSTA,
lv_T_ABW TYPE MGINT_MABW,
lv_T_ABW_FELDER TYPE MGINT_MABW_DET,
lv_other TYPE c.
CALL METHOD lo_class=>MATERIAL_DIFFMAINT_ORGLEVS_OD(
EXPORTING
P_MARA = lv_P_MARA
P_RMMG1 = lv_P_RMMG1
P_RMMW2 = lv_P_RMMW2
P_RTSTATUS = lv_P_RTSTATUS
CHANGING
P_ABW_ART = lv_P_ABW_ART
T_ABW = lv_T_ABW
T_ABW_FELDER = lv_T_ABW_FELDER ).
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