READ_MCH1 SAP Method Read Batch Master Record
Below is documentation, parameters and attributes of ABAP Method READ_MCH1 within SAP class /ISDFPS/CL_GAF_PERSEQUI. 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 /ISDFPS/CL_GAF_PERSEQUI into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Static
This is a Static Method so you can call it directlyThe following technical details of method READ_MCH1 can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method READ_MCH1
.| Name | Type | Data Type | Description | Default Value |
| IV_BATCH | Importing | TYPE CHARG_D | Batch Number | |
| IV_MATNR | Importing | TYPE MATNR | Material Number | |
| ES_MCH1 | Exporting | TYPE MCH1 | Batches (If Batch Management Cross-Plant) |
Exceptions of Method READ_MCH1
This method does not have any exceptionsExample ABAP coding
DATA: lv_ES_MCH1 TYPE MCH1,
lv_IV_BATCH TYPE CHARG_D,
lv_IV_MATNR TYPE MATNR,
lv_other TYPE c.
CALL METHOD /ISDFPS/CL_GAF_PERSEQUI=>READ_MCH1(
EXPORTING
IV_BATCH = lv_IV_BATCH
IV_MATNR = lv_IV_MATNR
IMPORTING
ES_MCH1 = lv_ES_MCH1 ).
Links to Related Class(s)
/ISDFPS/...Full list of available SAP object classes
Search for further information about these or an SAP related objects