SAP CL_BSP_WD_RT_REP_XML OO Class - OBSOLETE - Do not use
CL_BSP_WD_RT_REP_XML 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_XML 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_XML 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 |
| ADD_VIEWSET | add viewset including viewareas | Public |
| CALL METHOD cl_bsp_wd_rt_rep_xml=>ADD_VIEWSET...more details | ||
| ADD_WINDOW | add window node | Public |
| CALL METHOD cl_bsp_wd_rt_rep_xml=>ADD_WINDOW...more details | ||
| CONSTRUCTOR | CONSTRUCTOR | Public |
| CALL METHOD cl_bsp_wd_rt_rep_xml=>CONSTRUCTOR...more details | ||
| CREATE_INITIAL_REP_XML | Cretae Initial Runtime Repository XML | Public |
| CALL METHOD cl_bsp_wd_rt_rep_xml=>CREATE_INITIAL_REP_XML...more details | ||
| CREATE_REP_DOM | Generates DOM out of runtime repository (REP) XML | Public |
| CALL METHOD cl_bsp_wd_rt_rep_xml=>CREATE_REP_DOM...more details | ||
| DELETE_VIEW | Delete a view | Public |
| CALL METHOD cl_bsp_wd_rt_rep_xml=>DELETE_VIEW...more details | ||
|
| ||
| DELETE_VIEWSET | Delete a viewset | Public |
| CALL METHOD cl_bsp_wd_rt_rep_xml=>DELETE_VIEWSET...more details | ||
| DELETE_WINDOW | Delete a window | Public |
| CALL METHOD cl_bsp_wd_rt_rep_xml=>DELETE_WINDOW...more details | ||
| GET_COMPONENT_4_USAGE | provide a list of used components and views | Public |
| CALL METHOD cl_bsp_wd_rt_rep_xml=>GET_COMPONENT_4_USAGE...more details | ||
| GET_COMPONENT_USAGES | provide a list of used components and views | Public |
| CALL METHOD cl_bsp_wd_rt_rep_xml=>GET_COMPONENT_USAGES...more details | ||
| GET_INTERFACE_VIEWS | provide a list of interface views | Public |
| CALL METHOD cl_bsp_wd_rt_rep_xml=>GET_INTERFACE_VIEWS...more details | ||
| GET_REP_AS_TREE | Provides relevant part of REP as a tree | Public |
| CALL METHOD cl_bsp_wd_rt_rep_xml=>GET_REP_AS_TREE...more details | ||
| GET_REP_AS_XML | Render current REP as XML | Public |
| CALL METHOD cl_bsp_wd_rt_rep_xml=>GET_REP_AS_XML...more details | ||
| GET_VIEWS_IN_WINDOW | provide a list of views in a window with plugs | Public |
| CALL METHOD cl_bsp_wd_rt_rep_xml=>GET_VIEWS_IN_WINDOW...more details | ||
| GET_WINDOWS | provide a list of windows | Public |
| CALL METHOD cl_bsp_wd_rt_rep_xml=>GET_WINDOWS...more details | ||
| NODE_CHANGE_ATTRIBUTES | Change attributes of a node | Public |
| CALL METHOD cl_bsp_wd_rt_rep_xml=>NODE_CHANGE_ATTRIBUTES...more details | ||
| NODE_DELETE | Delete node | Public |
| CALL METHOD cl_bsp_wd_rt_rep_xml=>NODE_DELETE...more details | ||
| NODE_INSERT | Insert Node | Public |
| CALL METHOD cl_bsp_wd_rt_rep_xml=>NODE_INSERT...more details | ||
| RELOAD_XML | Public | |
| CALL METHOD cl_bsp_wd_rt_rep_xml=>RELOAD_XML...more details | ||
| RENAME_WINDOW | Rename a window | Public |
| CALL METHOD cl_bsp_wd_rt_rep_xml=>RENAME_WINDOW...more details | ||
| UPDATE_ATTRIBUTES | generic update of node attributes | Private |
| CALL METHOD cl_bsp_wd_rt_rep_xml=>UPDATE_ATTRIBUTES...more details | ||
CL_BSP_WD_RT_REP_XML 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 |
| GR_DOCUMENT | Instance Attribute | IF_IXML_DOCUMENT | LIKE IF_IXML_DOCUMENT | Private | |
| GR_IXML | Instance Attribute | IF_IXML | LIKE IF_IXML | Private | |
| GR_ROOT_NODE | Instance Attribute | LIKE CL_BSP_WD_RT_REP_NODE | Private | ||
| GR_STREAM_FACTORY | Instance Attribute | IF_IXML_STREAM_FACTORY | LIKE IF_IXML_STREAM_FACTORY | Private | |
| GV_COMPONENT | Instance Attribute | Component Name | LIKE BSP_WD_COMPONENT_NAME | Public | |
| GV_ENHANCEMENT_SET | Instance Attribute | Enhancement Set | LIKE BSP_WD_ENHANCEMENT_SET | Public | |
| GV_LOCKED | Instance Attribute | ABAP_FALSE | LIKE ABAP_BOOL | Public | |
| GV_MESSAGE | Instance Attribute | Return Parameter | LIKE BAPIRET1 | Public | |
| PERSISTENCE | Instance Attribute | Lesen und Schreiben des Runtime Repositories | LIKE CL_BSP_WD_RT_REP_PERSISTENCE | Private |
Events of Class CL_BSP_WD_RT_REP_XML
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... RELOAD_REQUESTED -XML_CHANGED - will be raised if XML was changed on public interfaces
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