SAP CL_PERS_DEFAULT_TABLE OO Class - Stand personalization object repository
CL_PERS_DEFAULT_TABLE 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_DEFAULT_TABLE 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_DEFAULT_TABLE 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 |
| CLEAR_BUFFER | Delete data in buffer | Public |
| CALL METHOD cl_pers_default_table=>CLEAR_BUFFER...more details | ||
| CONSTRUCTOR | Constructor | Public |
| CALL METHOD cl_pers_default_table=>CONSTRUCTOR...more details | ||
| COPY_DATA | Copy personalization data | Public |
| CALL METHOD cl_pers_default_table=>COPY_DATA...more details | ||
| CREATE_INSTANCE | Create an object in the class | Private |
| CALL METHOD cl_pers_default_table=>CREATE_INSTANCE...more details | ||
| DELETE_DATA | Delete personalization data | Public |
| CALL METHOD cl_pers_default_table=>DELETE_DATA...more details | ||
| DELETE_OBJECTS | Delete all data of a personalization object | Public |
| CALL METHOD cl_pers_default_table=>DELETE_OBJECTS...more details | ||
|
| ||
| GET_DATA | Get personalization data | Public |
| CALL METHOD cl_pers_default_table=>GET_DATA...more details | ||
| GET_INSTANCE | Create class | Public |
| CALL METHOD cl_pers_default_table=>GET_INSTANCE...more details | ||
| GET_OBJECT | Get user-spec. personalization data object | Public |
| CALL METHOD cl_pers_default_table=>GET_OBJECT...more details | ||
| SAVE_BUFFER | Save buffered data | Public |
| CALL METHOD cl_pers_default_table=>SAVE_BUFFER...more details | ||
| SET_DATA | Set personalization data | Public |
| CALL METHOD cl_pers_default_table=>SET_DATA...more details | ||
| TRANSPORT_DATA | Transport personalization data | Public |
| CALL METHOD cl_pers_default_table=>TRANSPORT_DATA...more details | ||
CL_PERS_DEFAULT_TABLE 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 |
| INSTANCES | Static Attribute | Table of Instances | LIKE T_ILIST | Private | |
| PERS_REG_DATA | Instance Attribute | Dialog class | LIKE SPERS_REG | Private | |
| PERS_TYPE | Instance Attribute | Personalization level | 'U' | LIKE SPERS_TYPE | Private |
Events of Class CL_PERS_DEFAULT_TABLE
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... SAVE_CHANGES - Save all dataCL_PERS_DEFAULT_TABLE types
T_ILIST - Instance listT_INSTANCE - Instance
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