SAP CL_PERS_ADMIN OO Class - Central personalization data repository
CL_PERS_ADMIN 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_ADMIN 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_ADMIN 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 |
| CHECK_PERS_KEY | Personalization key check | Public |
| CALL METHOD cl_pers_admin=>CHECK_PERS_KEY...more details | ||
| CLASS_CONSTRUCTOR | CLASS_CONSTRUCTOR | Public |
| CALL METHOD cl_pers_admin=>CLASS_CONSTRUCTOR...more details | ||
| DELETE_ALL_OBJECTS | Delete all data of a personalization object | Public |
| CALL METHOD cl_pers_admin=>DELETE_ALL_OBJECTS...more details | ||
| DELETE_DATA_ROLE | Delete role personalization data | Public |
| CALL METHOD cl_pers_admin=>DELETE_DATA_ROLE...more details | ||
| DELETE_DATA_SYSTEM | Delete system personalization data | Public |
| CALL METHOD cl_pers_admin=>DELETE_DATA_SYSTEM...more details | ||
| DELETE_DATA_USER | Delete personalization data | Public |
| CALL METHOD cl_pers_admin=>DELETE_DATA_USER...more details | ||
|
| ||
| GET_ACCESS_CLASS | Get access class | Private |
| CALL METHOD cl_pers_admin=>GET_ACCESS_CLASS...more details | ||
| GET_DATA | Get personalization data | Public |
| CALL METHOD cl_pers_admin=>GET_DATA...more details | ||
| GET_DATA_ROLE | Get role personalization data | Public |
| CALL METHOD cl_pers_admin=>GET_DATA_ROLE...more details | ||
| GET_DATA_SYSTEM | Get system personalization data | Public |
| CALL METHOD cl_pers_admin=>GET_DATA_SYSTEM...more details | ||
| GET_OBJECT | Get personalization object | Public |
| CALL METHOD cl_pers_admin=>GET_OBJECT...more details | ||
| GET_OBJECT_ROLE | Get role personalization object | Public |
| CALL METHOD cl_pers_admin=>GET_OBJECT_ROLE...more details | ||
| GET_OBJECT_SYSTEM | Get system personalization object | Public |
| CALL METHOD cl_pers_admin=>GET_OBJECT_SYSTEM...more details | ||
| GET_SEL_TAB_GENERIC | Get Selection Table (Generic) | Public |
| CALL METHOD cl_pers_admin=>GET_SEL_TAB_GENERIC...more details | ||
| ROLE_DIALOG | Call role dialog | Public |
| CALL METHOD cl_pers_admin=>ROLE_DIALOG...more details | ||
| SAVE_BUFFER | Save buffered data | Public |
| CALL METHOD cl_pers_admin=>SAVE_BUFFER...more details | ||
| SET_DATA | Set personalization data | Public |
| CALL METHOD cl_pers_admin=>SET_DATA...more details | ||
| SET_DATA_ROLE | Set role personalization data | Public |
| CALL METHOD cl_pers_admin=>SET_DATA_ROLE...more details | ||
| SET_DATA_SYSTEM | Set system personalization data | Public |
| CALL METHOD cl_pers_admin=>SET_DATA_SYSTEM...more details | ||
| SYSTEM_DIALOG | Call system dialog | Public |
| CALL METHOD cl_pers_admin=>SYSTEM_DIALOG...more details | ||
| USER_DIALOG | Call user dialog | Public |
| CALL METHOD cl_pers_admin=>USER_DIALOG...more details | ||
CL_PERS_ADMIN 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 |
| ACCESS_CLASS_LIST | Static Attribute | List of registration data | LIKE T_INSTANCE_LIST | Private | |
| CLASS_INSTANCE_LIST | Static Attribute | List of instantiated classes | LIKE T_CLASS_INSTANCE_LIST | Private | |
| C_DEFAULT_CLASS | Constant | Class name | 'CL_PERS_DEFAULT_ACCESS' | LIKE SEOCLSNAME | Private |
| OBJ_DEFAULT_ACCESS | Static Attribute | Reference to standard repository | LIKE CL_PERS_DEFAULT_ACCESS | Private |
Events of Class CL_PERS_ADMIN
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... AGR_COPIED - Role copiedCALL_DIALOG_USER - Dialog call
SAVE_CHANGES - Save all buffered data
USER_COPIED - User copied
CL_PERS_ADMIN types
T_CLASS_INSTANCE -T_CLASS_INSTANCE_LIST -
T_INSTANCE -
T_INSTANCE_LIST -
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