GET_OTHER_MATERIAL_DATA_BILD SAP Method Fill Work Area for Integrated Objects in Material Master









Below is documentation, parameters and attributes of ABAP Method GET_OTHER_MATERIAL_DATA_BILD 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 GET_OTHER_MATERIAL_DATA_BILD can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method GET_OTHER_MATERIAL_DATA_BILD

.

NameTypeData TypeDescriptionDefault Value
P_AKTVSTATUSImportingTYPE
MARA-PSTAT
Maintenance Status
P_AKTVSTATUS_RTImportingTYPE
MAW1-WPSTA
Retail maintenance status
P_RMMG1ImportingTYPE
RMMG1
Mat. Master Maintenance: Initial Parameters - Orig. Material
P_RMMW2ImportingTYPE
RMMW2
Material Master Maintenance: Retail Addition RMMG1 for DC
P_RTSTATUS_BILDImportingTYPE
T133A-RPSTA
Retail maintenance status
P_SPERRMODUSImportingTYPE
TVGVI-SPERA
Type of block (shared, exclusive)
P_STATUS_BILDImportingTYPE
T133A-PSTAT
Maintenance Status
TI_PTABImportingTYPE
MGINT_SPTAP
Table PTAB (Created for Update)
TI_PTAB_RTImportingTYPE
MGINT_SPTAP
Table PTAB (Created for Update)



Exceptions of Method GET_OTHER_MATERIAL_DATA_BILD

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_EX_BADI_MATERIAL_OD.
DATA: lv_P_AKTVSTATUS TYPE MARA-PSTAT,
lv_P_AKTVSTATUS_RT TYPE MAW1-WPSTA,
lv_P_RMMG1 TYPE RMMG1,
lv_P_RMMW2 TYPE RMMW2,
lv_P_RTSTATUS_BILD TYPE T133A-RPSTA,
lv_P_SPERRMODUS TYPE TVGVI-SPERA,
lv_P_STATUS_BILD TYPE T133A-PSTAT,
lv_TI_PTAB TYPE MGINT_SPTAP,
lv_TI_PTAB_RT TYPE MGINT_SPTAP,
lv_other TYPE c.

CALL METHOD lo_class=>GET_OTHER_MATERIAL_DATA_BILD(
EXPORTING
P_AKTVSTATUS = lv_P_AKTVSTATUS
P_AKTVSTATUS_RT = lv_P_AKTVSTATUS_RT
P_RMMG1 = lv_P_RMMG1
P_RMMW2 = lv_P_RMMW2
P_RTSTATUS_BILD = lv_P_RTSTATUS_BILD
P_SPERRMODUS = lv_P_SPERRMODUS
P_STATUS_BILD = lv_P_STATUS_BILD
TI_PTAB = lv_TI_PTAB
TI_PTAB_RT = lv_TI_PTAB_RT ).

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



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!