MP_READ_SUB SAP Method Substitution for reading the maintenance data
Below is documentation, parameters and attributes of ABAP Method MP_READ_SUB within SAP class IF_EX_BADI_PHIN_CUST_LOGIC. 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_PHIN_CUST_LOGIC 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 MP_READ_SUB can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method MP_READ_SUB
.| Name | Type | Data Type | Description | Default Value |
| I_WARPL | Importing | TYPE WARPL | Maintenance Plan | |
| ES_DRAD_MP | Exporting | TYPE PHIN_S_DRAD | Maintenance Plan: Link to table DRAD + DRAT | |
| ES_MPLA | Exporting | TYPE MPLA | Maintenance plan | |
| ET_ILOA | Exporting | TYPE PHIN_T_ILOA | PM Object Location and Account Assignment | |
| ET_MESSAGES | Exporting | TYPE PHIN_T_MSG | PHIN_MSG table type | |
| ET_MHIO | Exporting | TYPE PHIN_T_MHIO | Maintenance plan call objects | |
| ET_MHIS | Exporting | TYPE PHIN_T_MHIS | Maintenance plan history | |
| ET_MMPT | Exporting | TYPE PHIN_T_MMPT | Cycle definitions and measuring points for MP | |
| ET_MPOS | Exporting | TYPE PHIN_T_MPOS | Maintenance positions |
Exceptions of Method MP_READ_SUB
BYPASS_SDR_LOGIC - Bypass standard business logicExample ABAP coding
DATA: lo_class TYPE REF TO IF_EX_BADI_PHIN_CUST_LOGIC.
DATA: lv_ES_DRAD_MP TYPE PHIN_S_DRAD,
lv_ES_MPLA TYPE MPLA,
lv_ET_ILOA TYPE PHIN_T_ILOA,
lv_ET_MESSAGES TYPE PHIN_T_MSG,
lv_ET_MHIO TYPE PHIN_T_MHIO,
lv_ET_MHIS TYPE PHIN_T_MHIS,
lv_ET_MMPT TYPE PHIN_T_MMPT,
lv_ET_MPOS TYPE PHIN_T_MPOS,
lv_I_WARPL TYPE WARPL,
lv_other TYPE c.
CALL METHOD lo_class=>MP_READ_SUB(
EXPORTING
I_WARPL = lv_I_WARPL
IMPORTING
ES_DRAD_MP = lv_ES_DRAD_MP
ES_MPLA = lv_ES_MPLA
ET_ILOA = lv_ET_ILOA
ET_MESSAGES = lv_ET_MESSAGES
ET_MHIO = lv_ET_MHIO
ET_MHIS = lv_ET_MHIS
ET_MMPT = lv_ET_MMPT
ET_MPOS = lv_ET_MPOS ).
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