SAP CL_PERSISTENCY_MANAGER_FIEB OO Class - Management of persistency objects
CL_PERSISTENCY_MANAGER_FIEB 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 CL_PERSISTENCY_MANAGER_FIEB including details of:
- Interface class implementations
- Inheritance details
- Methods defined within class ( including link to full details )
- Attributes ( including initial values )
- Class Events
Method list of CL_PERSISTENCY_MANAGER_FIEB 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 |
| CHANGED | The object transferred is marked as changed | Public |
| CALL METHOD cl_persistency_manager_fieb=>CHANGED...more details | ||
| CHECK_EXISTENCE | Checks whether the object was already instantiated | Private |
| CALL METHOD cl_persistency_manager_fieb=>CHECK_EXISTENCE...more details | ||
| DELETED | The object transferred is marked as deleted | Public |
| CALL METHOD cl_persistency_manager_fieb=>DELETED...more details | ||
| GET_OBJECT | Supplies the instantiated object with the transferred OID | Private |
| CALL METHOD cl_persistency_manager_fieb=>GET_OBJECT...more details | ||
| INSTANCE | Supplies the reference to the only instance of the class | Private |
| CALL METHOD cl_persistency_manager_fieb=>INSTANCE...more details | ||
| INVALIDATE | Invalidates all registered main memory copies | Private |
| CALL METHOD cl_persistency_manager_fieb=>INVALIDATE...more details | ||
|
| ||
| PREPARE_FOR_COMMIT | Prepares the COMMIT activities | Public |
| CALL METHOD cl_persistency_manager_fieb=>PREPARE_FOR_COMMIT...more details | ||
| PREPARE_FOR_COMMIT_INSTANCE | Makes the COMMIT preparations in the singelton instance | Private |
| CALL METHOD cl_persistency_manager_fieb=>PREPARE_FOR_COMMIT_INSTANCE...more details | ||
| RAISE_COMMIT_DONE | Triggers activities subsequent to COMMIT | Public |
| CALL METHOD cl_persistency_manager_fieb=>RAISE_COMMIT_DONE...more details | ||
| RAISE_COMMIT_DONE_INST | Trigger activities subsequent to COMMIT in singleton | Private |
| CALL METHOD cl_persistency_manager_fieb=>RAISE_COMMIT_DONE_INST...more details | ||
| REGISTER | Registers an instantiated object | Private |
| CALL METHOD cl_persistency_manager_fieb=>REGISTER...more details | ||
| REGISTER_NEW | Registers a new object | Public |
| CALL METHOD cl_persistency_manager_fieb=>REGISTER_NEW...more details | ||
| REINSTANTIATE | Supplies an instance of the transferred class | Public |
| CALL METHOD cl_persistency_manager_fieb=>REINSTANTIATE...more details | ||
| ROLLBACK | Starts the rollback activities | Public |
| CALL METHOD cl_persistency_manager_fieb=>ROLLBACK...more details | ||
| UPDATE_STATE | Updates the status of the transferred object | Private |
| CALL METHOD cl_persistency_manager_fieb=>UPDATE_STATE...more details | ||
CL_PERSISTENCY_MANAGER_FIEB 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 |
| CO_STATE_CHANGED | Constant | CO_STATE_CHANGED | 1 | LIKE | Private |
| CO_STATE_DELETED | Constant | CO_STATE_DELETED | 3 | LIKE | Private |
| CO_STATE_UNCHANGED | Constant | CO_STATE_UNCHANGED | 2 | LIKE | Private |
| NEW_OBJECTS | Instance Attribute | Contains all new objects | LIKE TY_NEWOBJECTS | Private | |
| REINSTANTIATED_OBJECTS | Instance Attribute | Contains all objects already instantiated | LIKE TY_OBJECTLIST | Private | |
| UNIQUE_INSTANCE | Static Attribute | Contains the reference to the single instance of this class | LIKE CL_PERSISTENCY_MANAGER_FIEB | Private |
Events of Class CL_PERSISTENCY_MANAGER_FIEB
Events are created within your class using special event handler methods. These must be registered at runtime for the event and can then be triggered using the ABAP syntax: RAISE EVENT EXPOTING... COMMIT_DONE - COMMIT activities are overCL_PERSISTENCY_MANAGER_FIEB types
TY_NEWOBJECTS - TY_NEWOBJECTSTY_OBJECTLIST - TY_OBJECTLIST
TY_WA_NEWOBJECTS - TY_WA_NEWOBJECTS
TY_WA_OBJECTLIST - TY_WA_OBJECTLIST
Links to Related Class(s)
CL_PERSI...Full list of available SAP object classes
Search for further information about these or an SAP related objects