SAP CL_BSP_WD_RT_REP_PERSIST OO Class - Runtime Repository Persistence Handler
CL_BSP_WD_RT_REP_PERSIST 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_BSP_WD_RT_REP_PERSIST 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_BSP_WD_RT_REP_PERSIST 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 | Public | |
| CALL METHOD cl_bsp_wd_rt_rep_persist=>CHECK...more details | ||
| CHECK_XML | Private | |
| CALL METHOD cl_bsp_wd_rt_rep_persist=>CHECK_XML...more details | ||
| CONSTRUCTOR | CONSTRUCTOR | Private |
| CALL METHOD cl_bsp_wd_rt_rep_persist=>CONSTRUCTOR...more details | ||
| DETERMINE_RT_REP_SRC | Private | |
| CALL METHOD cl_bsp_wd_rt_rep_persist=>DETERMINE_RT_REP_SRC...more details | ||
| GET_PERSISTENCE | get an instance of persistence class | Public |
| CALL METHOD cl_bsp_wd_rt_rep_persist=>GET_PERSISTENCE...more details | ||
| GET_RT_REP_API | Public | |
| CALL METHOD cl_bsp_wd_rt_rep_persist=>GET_RT_REP_API...more details | ||
|
| ||
| LOAD | Private | |
| CALL METHOD cl_bsp_wd_rt_rep_persist=>LOAD...more details | ||
| LOAD_FROM_URL | Private | |
| CALL METHOD cl_bsp_wd_rt_rep_persist=>LOAD_FROM_URL...more details | ||
| RELOAD | Public | |
| CALL METHOD cl_bsp_wd_rt_rep_persist=>RELOAD...more details | ||
| SAVE | Public | |
| CALL METHOD cl_bsp_wd_rt_rep_persist=>SAVE...more details | ||
| STRING_2_TABLE | Private | |
| CALL METHOD cl_bsp_wd_rt_rep_persist=>STRING_2_TABLE...more details | ||
| USER_CONFIRM_REPAIR | Private | |
| CALL METHOD cl_bsp_wd_rt_rep_persist=>USER_CONFIRM_REPAIR...more details | ||
CL_BSP_WD_RT_REP_PERSIST 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_DEFAULT_SRC_PAGENAME | Constant | Name of BSP Page (Upper and Lower Case) | 'Repository.xml' | LIKE O2PAGEEXT | Public |
| CO_SRC_PAGE_TYPE_HISTORIC | Constant | 'O' | LIKE CHAR1 | Public | |
| CO_SRC_PAGE_TYPE_MIME | Constant | Type of BSP Page | 'M' | LIKE STRING | Public |
| INSTANCE_CACHE | Static Attribute | LIKE LTYPE_PERSISTENCE_CACHE_TAB | Private | ||
| LOCKED | Instance Attribute | ABAP_FALSE | LIKE ABAP_BOOL | Public | |
| RT_REP_API | Instance Attribute | API for the Runtime Repository | LIKE CL_BSP_WD_RT_REP_API | Private | |
| RT_REP_PAGE_ATTR | Instance Attribute | O2: Page Attributes | LIKE O2PAGATTR | Private | |
| RT_REP_SRC_HISTORIC_VERSION | Instance Attribute | Version Management: Version Number | LIKE VERSNO | Public | |
| RT_REP_SRC_PAGEKEY | Instance Attribute | Key for the RT Rep Src BSP page | LIKE O2PAGKEY | Public | |
| RT_REP_SRC_PAGENAME | Instance Attribute | Name of BSP Page (Upper and Lower Case) | LIKE O2PAGEEXT | Private | |
| RT_REP_SRC_PAGE_TYPE | Instance Attribute | Type of BSP Page | LIKE STRING | Public | |
| RT_REP_URL | Instance Attribute | LIKE STRING | Private |
Events of Class CL_BSP_WD_RT_REP_PERSIST
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... CHANGED - Runtime Repository has been changedRELOADED - Runtime Repository was reloaded
Links to Related Class(s)
CL_BSP_W...Full list of available SAP object classes
Search for further information about these or an SAP related objects