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

.

NameTypeData TypeDescriptionDefault Value
LOCKImportingTYPE
BOOLEAN
Block Item
MPLAN_ITEMImportingTYPE
WAPOS
Maintenance Item
NO_BUFFERImportingTYPE
BOOLEAN
Do Not Read from Buffer
ITEMExportingTYPE
MPLAN_MPOS
Maintenance Items for API
ITEM_ILOAExportingTYPE
MPLAN_ILOA
ILOA for Maintenance Plan
ITEM_LINEAR_DATAExportingTYPE
EAML_S_LFE_DATA_MPOS_API
ITEM_OBJECT_LISTExportingTYPE
MPLAN_OBJK_T
Object List for Maintenance Item
LONGTEXTExportingTYPE
MPLAN_LONGTEXT_T
Long Text Lines
RETURNExportingTYPE
BAPIRETTAB
Table with BAPI Return Information



Exceptions of Method MPLAN_ITEM_READ

This method does not have any exceptions

Example 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



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!