CHECK_MARA_MARC SAP Method Check Material Number/Plant
Below is documentation, parameters and attributes of ABAP Method CHECK_MARA_MARC within SAP class IF_EX_BADI_MATNR_CHECK_PVS. 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_MATNR_CHECK_PVS 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 CHECK_MARA_MARC can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CHECK_MARA_MARC
.| Name | Type | Data Type | Description | Default Value |
| MATNR | Importing | TYPE MATNR | Material Number | |
| WERKS | Importing | TYPE WERKS_D | Plant | |
| IS_USED | Changing | TYPE XFELD | 'In Use' Indicator | |
| IS_USED_IM | Changing | TYPE XFELD | 'In Use in Integration Model' Indicator |
Exceptions of Method CHECK_MARA_MARC
WRONG_CALL - Incorrect callExample ABAP coding
DATA: lo_class TYPE REF TO IF_EX_BADI_MATNR_CHECK_PVS.
DATA: lv_IS_USED TYPE XFELD,
lv_IS_USED_IM TYPE XFELD,
lv_MATNR TYPE MATNR,
lv_WERKS TYPE WERKS_D,
lv_other TYPE c.
CALL METHOD lo_class=>CHECK_MARA_MARC(
EXPORTING
MATNR = lv_MATNR
WERKS = lv_WERKS
CHANGING
IS_USED = lv_IS_USED
IS_USED_IM = lv_IS_USED_IM ).
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