SAP MPLAN_ITEM OO Class -
MPLAN_ITEM is a standard SAP object class available within R/3 SAP systems depending on your version and release level. You can view/maintain the class details by entering its name into the relevant SAP transactions such as SE24, SE80 or even SE84. Below is the documentation available for class MPLAN_ITEM including details of:
- Interface class implementations
- Inheritance details
- Methods defined within class ( including link to full details )
- Attributes ( including initial values )
- Class Events
Inheritance
This OO class has a superclass assigned to it, which means it will inherit its objects and methods. The superclass for MPLAN_ITEM is MPLAN_APPLICATION_OBJECTSAP MPLAN_ITEM OO Class - Maintenance Item
MPLAN_ITEM is a standard SAP object class available within R/3 SAP systems depending on your version and release level. You can view/maintain the class details by entering its name into the relevant SAP transactions such as SE24, SE80 or even SE84. Below is the documentation available for class MPLAN_ITEM including details of:
- Interface class implementations
- Inheritance details
- Methods defined within class ( including link to full details )
- Attributes ( including initial values )
- Class Events
Inheritance
This OO class has a superclass assigned to it, which means it will inherit its objects and methods. The superclass for MPLAN_ITEM is MPLAN_APPLICATION_OBJECTMethod list of MPLAN_ITEM SAP class
A method is a coding block that performs a certain procedure (i.e. ABAP functionality) on an object within the overall SAP class. In simple terms if the object is an SAP database table a method could be the procedure to add a record or to delete a record. If you are new to OO in many respects, the implementation of a method is similar to a function module and can be called in a very similar way using CALL METHOD.
Instead of "CALL FUNCTION", Methods are referenced using the following syntax: CALL METHOD =>methodname EXPORTING/IMPORTING...
| Method Name | Description | Visability |
| CHANGE_DATA | Set Data | Public |
| CALL METHOD mplan_item=>CHANGE_DATA...more details | ||
| CHECK_DATA_WITH_HEADER | Private | |
| CALL METHOD mplan_item=>CHECK_DATA_WITH_HEADER...more details | ||
| CHECK_EXISTENCE | Check Whether a Maintenance Plan Item Is in the Database | Private |
| CALL METHOD mplan_item=>CHECK_EXISTENCE...more details | ||
| CONSTRUCTOR | Create Object with Key | Private |
| CALL METHOD mplan_item=>CONSTRUCTOR...more details | ||
| DELETE_OBJECT_LIST | Private | |
| CALL METHOD mplan_item=>DELETE_OBJECT_LIST...more details | ||
| GET_CHECKED | Has Item Been Checked? | Public |
| CALL METHOD mplan_item=>GET_CHECKED...more details | ||
|
| ||
| GET_DATA | Get Item Data | Public |
| CALL METHOD mplan_item=>GET_DATA...more details | ||
| GET_DATA_OLD | Read Out Maintenance Item Value of Database | Public |
| CALL METHOD mplan_item=>GET_DATA_OLD...more details | ||
| GET_ILOAN | Private | |
| CALL METHOD mplan_item=>GET_ILOAN...more details | ||
| INSERT_OBJECT_LIST | Private | |
| CALL METHOD mplan_item=>INSERT_OBJECT_LIST...more details | ||
| POST_OBJECT | Prepare Data Save During Commit Work | Public |
| CALL METHOD mplan_item=>POST_OBJECT...more details | ||
| SET_DATA | Set Data | Public |
| CALL METHOD mplan_item=>SET_DATA...more details | ||
| SET_DATA_CHECKED | Set Data to Checked | Private |
| CALL METHOD mplan_item=>SET_DATA_CHECKED...more details | ||
| SET_DATA_OLD | Save Current Data in Database Screen | Private |
| CALL METHOD mplan_item=>SET_DATA_OLD...more details | ||
| SET_DATA_TO_BEFORE_IMAGE | Write Data to Database Image | Public |
| CALL METHOD mplan_item=>SET_DATA_TO_BEFORE_IMAGE...more details | ||
| SET_DATA_TO_DB | Write Data to Database Image | Public |
| CALL METHOD mplan_item=>SET_DATA_TO_DB...more details | ||
| SET_DELETED | Set Action to Delete | Public |
| CALL METHOD mplan_item=>SET_DELETED...more details | ||
| SET_DIALOG_CREATED | Created in Dialog Mode | Public |
| CALL METHOD mplan_item=>SET_DIALOG_CREATED...more details | ||
| SET_GS_ITEM | Transfer Attribute GS_ITEM Without Check | Private |
| CALL METHOD mplan_item=>SET_GS_ITEM...more details | ||
| SET_ILOAN | Set ILOA Number | Public |
| CALL METHOD mplan_item=>SET_ILOAN...more details | ||
| SET_PREREAD_DATA | Set Data | Private |
| CALL METHOD mplan_item=>SET_PREREAD_DATA...more details | ||
| SET_SPECIAL_DATA | Set Header-Related Data | Public |
| CALL METHOD mplan_item=>SET_SPECIAL_DATA...more details | ||
| TRIGGER_OBJECT_CHANGED_EVENT | Activate Object_changed event | Public |
| CALL METHOD mplan_item=>TRIGGER_OBJECT_CHANGED_EVENT...more details | ||
| UPDATE_OBJECT_LIST | Private | |
| CALL METHOD mplan_item=>UPDATE_OBJECT_LIST...more details | ||
MPLAN_ITEM attributes
List of attributes within class CL_ABAP_CHAR_UTILITIES. These can be referenced using the following syntax CL_ABAP_CHAR_UTILITIES=>. Although depending on where you are inserting the ABAP code you do need to check if the attribute is public or private.
| Name | Level | Description | Initial Value | Type | Visability |
| GS_ILOA | Instance Attribute | ILOA Data | LIKE MPLAN_ILOA | Private | |
| GS_ILOA_BEFORE_IMAGE | Instance Attribute | ILOA Data in Database | LIKE MPLAN_ILOA | Private | |
| GS_ILOA_DB | Instance Attribute | ILOA Data in Database | LIKE MPLAN_ILOA | Private | |
| GS_ITEM | Instance Attribute | Maintenance Item | LIKE MPLAN_MPOS | Private | |
| GS_ITEM_BEFORE_IMAGE | Instance Attribute | Maintenance Item in Database | LIKE MPLAN_MPOS | Private | |
| GS_ITEM_DB | Instance Attribute | Maintenance Item in Database | LIKE MPLAN_MPOS | Private | |
| GT_LONGTEXTS | Instance Attribute | Long Texts | LIKE MPLAN_LONGTEXT_T | Private | |
| GT_OBJECT_LIST | Instance Attribute | Object List for Item | LIKE MPLAN_OBJK_T | Private |
Links to Related Class(s)
MPLAN_IT...Full list of available SAP object classes
Search for further information about these or an SAP related objects