CHANGE_CHECK_OTHER_MAT_DATA SAP Method Check Whether Integrated Material Data Was Changed









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

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


Parameters of Method CHANGE_CHECK_OTHER_MAT_DATA

.

NameTypeData TypeDescriptionDefault Value
P_CHANGE_CHECK_2ImportingTYPE
T130F-KZREF
TI_PTABImportingTYPE
MGINT_SPTAP
Table PTAB (Created for Update)
TI_PTAB_FULLImportingTYPE
MGINT_SPTAB
Table of Material Master Tables with Full Key
TI_PTAB_FULL_RTImportingTYPE
MGINT_SPTAB_RT
Table of Retail Material Master Tables with Full Key
TI_PTAB_RTImportingTYPE
MGINT_SPTAP
Table PTAB (Created for Update)
P_HAS_CHANGESChangingTYPE
T130F-KZREF
Flag for Displaying Changes



Exceptions of Method CHANGE_CHECK_OTHER_MAT_DATA

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_EX_BADI_MATERIAL_OD.
DATA: lv_P_CHANGE_CHECK_2 TYPE T130F-KZREF,
lv_P_HAS_CHANGES TYPE T130F-KZREF,
lv_TI_PTAB TYPE MGINT_SPTAP,
lv_TI_PTAB_FULL TYPE MGINT_SPTAB,
lv_TI_PTAB_FULL_RT TYPE MGINT_SPTAB_RT,
lv_TI_PTAB_RT TYPE MGINT_SPTAP,
lv_other TYPE c.

CALL METHOD lo_class=>CHANGE_CHECK_OTHER_MAT_DATA(
EXPORTING
P_CHANGE_CHECK_2 = lv_P_CHANGE_CHECK_2
TI_PTAB = lv_TI_PTAB
TI_PTAB_FULL = lv_TI_PTAB_FULL
TI_PTAB_FULL_RT = lv_TI_PTAB_FULL_RT
TI_PTAB_RT = lv_TI_PTAB_RT
CHANGING
P_HAS_CHANGES = lv_P_HAS_CHANGES ).

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!