MHIO_BUILD SAP Method Fill MHIO
Below is documentation, parameters and attributes of ABAP Method MHIO_BUILD within SAP class MPLAN_SCHEDULE. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name MPLAN_SCHEDULE 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 MHIO_BUILD can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method MHIO_BUILD
.| Name | Type | Data Type | Description | Default Value |
| C_MHIS_WA | Importing | TYPE MHIS | Preventive Maintenance Plan History | |
| C_MPOS_WA | Importing | TYPE WC_WMPOS | Maintenance Item | |
| I_MPLAWA | Importing | TYPE MPLA | Maintenance Plan | |
| T399W | Importing | TYPE T399W | Maintenance Plan Category Parameter | |
| C_MHIO | Changing | TYPE WC_T_WMHIO | Call Object from Maintenance Order |
Exceptions of Method MHIO_BUILD
CX_MPLAN_EXCEPTION_ROOT - General Exception Maintenance Plan APIExample ABAP coding
This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.DATA: lo_class TYPE REF TO MPLAN_SCHEDULE.
DATA: lv_C_MHIO TYPE WC_T_WMHIO,
lv_C_MHIS_WA TYPE MHIS,
lv_C_MPOS_WA TYPE WC_WMPOS,
lv_I_MPLAWA TYPE MPLA,
lv_T399W TYPE T399W,
lv_other TYPE c.
CALL METHOD lo_class=>MHIO_BUILD(
EXPORTING
C_MHIS_WA = lv_C_MHIS_WA
C_MPOS_WA = lv_C_MPOS_WA
I_MPLAWA = lv_I_MPLAWA
T399W = lv_T399W
CHANGING
C_MHIO = lv_C_MHIO ).
Links to Related Class(s)
MPLAN_SC...Full list of available SAP object classes
Search for further information about these or an SAP related objects