SAP CL_PERS_OBJECT_DATA_BUFFER OO Class - Personalization data object buffer
CL_PERS_OBJECT_DATA_BUFFER 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_PERS_OBJECT_DATA_BUFFER 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_PERS_OBJECT_DATA_BUFFER 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 |
| APPEND_DATA | Append new data | Public |
| CALL METHOD cl_pers_object_data_buffer=>APPEND_DATA...more details | ||
| BUFFER_TABLE_CLONE | Clone the buffer table | Public |
| CALL METHOD cl_pers_object_data_buffer=>BUFFER_TABLE_CLONE...more details | ||
| BUFFER_TABLE_GET | Read entire buffer table | Private |
| CALL METHOD cl_pers_object_data_buffer=>BUFFER_TABLE_GET...more details | ||
| BUFFER_TABLE_MERGE | Set buffer table | Private |
| CALL METHOD cl_pers_object_data_buffer=>BUFFER_TABLE_MERGE...more details | ||
| BUFFER_TABLE_MODIFY | Combine buffer tables | Public |
| CALL METHOD cl_pers_object_data_buffer=>BUFFER_TABLE_MODIFY...more details | ||
| BUFFER_TABLE_SET | Set buffer table | Private |
| CALL METHOD cl_pers_object_data_buffer=>BUFFER_TABLE_SET...more details | ||
|
| ||
| CHANGE_LINKED_OBJECT | Change assigned object | Public |
| CALL METHOD cl_pers_object_data_buffer=>CHANGE_LINKED_OBJECT...more details | ||
| CLEAR_OBJECT_DATA | Delete object data | Public |
| CALL METHOD cl_pers_object_data_buffer=>CLEAR_OBJECT_DATA...more details | ||
| CONSTRUCTOR | Constructor | Public |
| CALL METHOD cl_pers_object_data_buffer=>CONSTRUCTOR...more details | ||
| DELETE_DATA_ON_DB | Delete data from database | Public |
| CALL METHOD cl_pers_object_data_buffer=>DELETE_DATA_ON_DB...more details | ||
| DELETE_DATA_ON_DB_MULT | Delete data from database | Public |
| CALL METHOD cl_pers_object_data_buffer=>DELETE_DATA_ON_DB_MULT...more details | ||
| GET_ADDITIONAL_KEY_TABLE | List of existing additional keys | Public |
| CALL METHOD cl_pers_object_data_buffer=>GET_ADDITIONAL_KEY_TABLE...more details | ||
| GET_BUFFER_TABLE | Read entire buffer table (unsorted) | Public |
| CALL METHOD cl_pers_object_data_buffer=>GET_BUFFER_TABLE...more details | ||
| GET_TABLE_LINE | Get table rows | Public |
| CALL METHOD cl_pers_object_data_buffer=>GET_TABLE_LINE...more details | ||
| LOAD_OBJECT_DATA | Load object data | Public |
| CALL METHOD cl_pers_object_data_buffer=>LOAD_OBJECT_DATA...more details | ||
| LOAD_OBJECT_DATA_MERGE | Load object data | Public |
| CALL METHOD cl_pers_object_data_buffer=>LOAD_OBJECT_DATA_MERGE...more details | ||
| OVERWRITE_ENABLE | Activate append new data in database | Public |
| CALL METHOD cl_pers_object_data_buffer=>OVERWRITE_ENABLE...more details | ||
| SAVE_OBJECT_DATA | Write object data | Public |
| CALL METHOD cl_pers_object_data_buffer=>SAVE_OBJECT_DATA...more details | ||
| SET_BUFFER_TABLE | Set buffer table (unsorted) | Public |
| CALL METHOD cl_pers_object_data_buffer=>SET_BUFFER_TABLE...more details | ||
CL_PERS_OBJECT_DATA_BUFFER 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 |
| ADD_KEYS | Instance Attribute | Table of existing additional keys | LIKE T_ADD_KEY_TABLE | Private | |
| BUFFER_TABLE | Instance Attribute | Object data buffer table | LIKE T_BUFFER_TABLE | Private | |
| LINKED_OBJECT | Instance Attribute | Personalization level object | LIKE SPERS_LOBJ | Private | |
| OBJECT_DATA_SAVED | Instance Attribute | Object data saved | LIKE CHAR1 | Private | |
| OVERWRITE | Instance Attribute | Database data overwritten | LIKE CHAR1 | Private | |
| PERS_KEY | Instance Attribute | Personalization object key | LIKE SPERS_KEY | Private | |
| PERS_TYPE | Instance Attribute | Personalization level | LIKE SPERS_TYPE | Private |
CL_PERS_OBJECT_DATA_BUFFER types
T_ADD_KEY_TABLE -T_BUFFER_TABLE -
Links to Related Class(s)
CL_PERS_...Full list of available SAP object classes
Search for further information about these or an SAP related objects