SAP CL_SUPER_PERS_ACCESS OO Class - Generic Personalization interface implementation
CL_SUPER_PERS_ACCESS 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_SUPER_PERS_ACCESS including details of:
- Interface class implementations
- Inheritance details
- Methods defined within class ( including link to full details )
- Attributes ( including initial values )
- Class Events
Interface Implementation
This OO class is an Interface Implementation, which means it will implement its own version of the methods from implementation class IF_PERS_EXTERNAL_TABLEMethod list of CL_SUPER_PERS_ACCESS 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 |
| DIALOG_RESULT_PROCESS_ROLE | Postprocess data from generic dialog (role) | Protected |
| CALL METHOD cl_super_pers_access=>DIALOG_RESULT_PROCESS_ROLE...more details | ||
| DIALOG_RESULT_PROCESS_SYSTEM | Postprocess data from generic dialog (syst.) | Protected |
| CALL METHOD cl_super_pers_access=>DIALOG_RESULT_PROCESS_SYSTEM...more details | ||
| DIALOG_RESULT_PROCESS_USER | Postprocess data from generic dialog (user) | Protected |
| CALL METHOD cl_super_pers_access=>DIALOG_RESULT_PROCESS_USER...more details | ||
| DIALOG_SELECTION_ROLE | Selection of data for dialog (role) | Protected |
| CALL METHOD cl_super_pers_access=>DIALOG_SELECTION_ROLE...more details | ||
| DIALOG_SELECTION_SYSTEM | Selection of data for dialog (system) | Protected |
| CALL METHOD cl_super_pers_access=>DIALOG_SELECTION_SYSTEM...more details | ||
| DIALOG_SELECTION_USER | Selection of data for dialog (user) | Protected |
| CALL METHOD cl_super_pers_access=>DIALOG_SELECTION_USER...more details | ||
|
| ||
| REMOVE_DATA_FROM_DB | Delete Data from Database | Protected |
| CALL METHOD cl_super_pers_access=>REMOVE_DATA_FROM_DB...more details | ||
CL_SUPER_PERS_ACCESS 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 |
| BUFFER_LINE_ROLE | Instance Attribute | Generic buffer table row | LIKE DATA | Protected | |
| BUFFER_LINE_SYSTEM | Instance Attribute | Generic buffer table row | LIKE DATA | Protected | |
| BUFFER_LINE_USER | Instance Attribute | Generic buffer table row | LIKE DATA | Protected | |
| BUFFER_TABLE_ROLE | Instance Attribute | Generic buffer table | LIKE DATA | Protected | |
| BUFFER_TABLE_SYSTEM | Instance Attribute | Generic buffer table | LIKE DATA | Protected | |
| BUFFER_TABLE_USER | Instance Attribute | Generic buffer table | LIKE DATA | Protected | |
| C_PERS_TYPE_ROLE | Constant | Type role | 'A' | LIKE SPERS_TYPE | Public |
| C_PERS_TYPE_SYSTEM | Constant | Type system | SPACE | LIKE SPERS_TYPE | Public |
| C_PERS_TYPE_USER | Constant | Type user | 'U' | LIKE SPERS_TYPE | Public |
| DIALOG_FIELDS_HIDE | Instance Attribute | List of fields hidden in gen. dialog | LIKE SPERS_FLDT | Protected | |
| FIELD_ROLE | Instance Attribute | Role name field | SPACE | LIKE FIELDNAME | Protected |
| FIELD_USER | Instance Attribute | User name field | SPACE | LIKE FIELDNAME | Protected |
| LAST_ROLE | Instance Attribute | Role Name | LIKE AGR_NAME | Private | |
| LAST_USER | Instance Attribute | User Name | LIKE UNAME | Private | |
| ROLE_DATA_LOADED | Instance Attribute | Role data loaded | LIKE CHAR1 | Protected | |
| SYSTEM_DATA_LOADED | Instance Attribute | System data loaded | LIKE CHAR1 | Private | |
| TABLE_ROLE | Instance Attribute | Role-dependent table name | SPACE | LIKE TABNAME | Protected |
| TABLE_SYSTEM | Instance Attribute | System-dependent table name | SPACE | LIKE TABNAME | Protected |
| TABLE_USER | Instance Attribute | User-dependent table name | SPACE | LIKE TABNAME | Protected |
| TAB_DYNSUB | Static Attribute | ABAP Program: Number of Current Screen | LIKE SYDYNNR | Public | |
| TAB_HANDLE | Static Attribute | Character field of length 40 | LIKE CHAR40 | Public | |
| TAB_PROGRAM | Static Attribute | ABAP program, caller in external procedures | LIKE SYCPROG | Public | |
| USER_DATA_LOADED | Instance Attribute | User data loaded | LIKE CHAR1 | Private |
Links to Related Class(s)
CL_SUPER...Full list of available SAP object classes
Search for further information about these or an SAP related objects