MPLAN_ITEM_READ SAP Method Read Maintenance Item
Below is documentation, parameters and attributes of ABAP Method MPLAN_ITEM_READ within SAP class MPLAN_API. 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 MPLAN_API 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 MPLAN_ITEM_READ can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method MPLAN_ITEM_READ
.| Name | Type | Data Type | Description | Default Value |
| LOCK | Importing | TYPE BOOLEAN | Block Item | |
| MPLAN_ITEM | Importing | TYPE WAPOS | Maintenance Item | |
| NO_BUFFER | Importing | TYPE BOOLEAN | Do Not Read from Buffer | |
| ITEM | Exporting | TYPE MPLAN_MPOS | Maintenance Items for API | |
| ITEM_ILOA | Exporting | TYPE MPLAN_ILOA | ILOA for Maintenance Plan | |
| ITEM_LINEAR_DATA | Exporting | TYPE EAML_S_LFE_DATA_MPOS_API | ||
| ITEM_OBJECT_LIST | Exporting | TYPE MPLAN_OBJK_T | Object List for Maintenance Item | |
| LONGTEXT | Exporting | TYPE MPLAN_LONGTEXT_T | Long Text Lines | |
| RETURN | Exporting | TYPE BAPIRETTAB | Table with BAPI Return Information |
Exceptions of Method MPLAN_ITEM_READ
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO MPLAN_API.
DATA: lv_ITEM TYPE MPLAN_MPOS,
lv_ITEM_ILOA TYPE MPLAN_ILOA,
lv_ITEM_LINEAR_DATA TYPE EAML_S_LFE_DATA_MPOS_API,
lv_ITEM_OBJECT_LIST TYPE MPLAN_OBJK_T,
lv_LOCK TYPE BOOLEAN,
lv_LONGTEXT TYPE MPLAN_LONGTEXT_T,
lv_MPLAN_ITEM TYPE WAPOS,
lv_NO_BUFFER TYPE BOOLEAN,
lv_RETURN TYPE BAPIRETTAB,
lv_other TYPE c.
CALL METHOD lo_class=>MPLAN_ITEM_READ(
EXPORTING
LOCK = lv_LOCK
MPLAN_ITEM = lv_MPLAN_ITEM
NO_BUFFER = lv_NO_BUFFER
IMPORTING
ITEM = lv_ITEM
ITEM_ILOA = lv_ITEM_ILOA
ITEM_LINEAR_DATA = lv_ITEM_LINEAR_DATA
ITEM_OBJECT_LIST = lv_ITEM_OBJECT_LIST
LONGTEXT = lv_LONGTEXT
RETURN = lv_RETURN ).
Links to Related Class(s)
MPLAN_AP...Full list of available SAP object classes
Search for further information about these or an SAP related objects