MP_READ_EXT SAP Method Extension for reading the maintenance data
Below is documentation, parameters and attributes of ABAP Method MP_READ_EXT 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_EXT can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method MP_READ_EXT
.| Name | Type | Data Type | Description | Default Value |
| I_WARPL | Importing | TYPE WARPL | Maintenance Plan | |
| ET_MESSAGES | Exporting | TYPE PHIN_T_MSG | PHIN_MSG table type | |
| CS_DRAD_MP | Changing | TYPE PHIN_S_DRAD | Maintenance Plan: Link to table DRAD + DRAT | |
| CS_MPLA | Changing | TYPE MPLA | Maintenance plan | |
| CT_ILOA | Changing | TYPE PHIN_T_ILOA | PM Object Location and Account Assignment | |
| CT_MHIO | Changing | TYPE PHIN_T_MHIO | Maintenance plan call objects | |
| CT_MHIS | Changing | TYPE PHIN_T_MHIS | Maintenance plan history | |
| CT_MMPT | Changing | TYPE PHIN_T_MMPT | Cycle definitions and measuring points for MP | |
| CT_MPOS | Changing | TYPE PHIN_T_MPOS | Maintenance positions |
Exceptions of Method MP_READ_EXT
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO IF_EX_BADI_PHIN_CUST_LOGIC.
DATA: lv_CS_DRAD_MP TYPE PHIN_S_DRAD,
lv_CS_MPLA TYPE MPLA,
lv_CT_ILOA TYPE PHIN_T_ILOA,
lv_CT_MHIO TYPE PHIN_T_MHIO,
lv_CT_MHIS TYPE PHIN_T_MHIS,
lv_CT_MMPT TYPE PHIN_T_MMPT,
lv_CT_MPOS TYPE PHIN_T_MPOS,
lv_ET_MESSAGES TYPE PHIN_T_MSG,
lv_I_WARPL TYPE WARPL,
lv_other TYPE c.
CALL METHOD lo_class=>MP_READ_EXT(
EXPORTING
I_WARPL = lv_I_WARPL
IMPORTING
ET_MESSAGES = lv_ET_MESSAGES
CHANGING
CS_DRAD_MP = lv_CS_DRAD_MP
CS_MPLA = lv_CS_MPLA
CT_ILOA = lv_CT_ILOA
CT_MHIO = lv_CT_MHIO
CT_MHIS = lv_CT_MHIS
CT_MMPT = lv_CT_MMPT
CT_MPOS = lv_CT_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