SAP CL_BSP_WD_APPL_TREE OO Class - Application Visualisation for BSP WD Appl. on RTTI Basis
CL_BSP_WD_APPL_TREE 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_APPL_TREE including details of:
- Interface class implementations
- Inheritance details
- Methods defined within class ( including link to full details )
- Attributes ( including initial values )
- Class Events
Inheritance
This OO class has a superclass assigned to it, which means it will inherit its objects and methods. The superclass for CL_BSP_WD_APPL_TREE is CL_BSP_WD_GUI_LIST_TREEMethod list of CL_BSP_WD_APPL_TREE 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_IS_REPLACED | Private | |
| CALL METHOD cl_bsp_wd_appl_tree=>CHECK_IS_REPLACED...more details | ||
| CONSTRUCTOR | Constructor | Public |
| CALL METHOD cl_bsp_wd_appl_tree=>CONSTRUCTOR...more details | ||
| CREATE_TOOLBAR | Private | |
| CALL METHOD cl_bsp_wd_appl_tree=>CREATE_TOOLBAR...more details | ||
| FIRE_CONTEXT_MENU | Private | |
| CALL METHOD cl_bsp_wd_appl_tree=>FIRE_CONTEXT_MENU...more details | ||
| FIRE_DETAILS | Private | |
| CALL METHOD cl_bsp_wd_appl_tree=>FIRE_DETAILS...more details | ||
| ON_TOOLBAR_FUNCTION | Private | |
| CALL METHOD cl_bsp_wd_appl_tree=>ON_TOOLBAR_FUNCTION...more details | ||
|
| ||
| SHOW_URL | Private | |
| CALL METHOD cl_bsp_wd_appl_tree=>SHOW_URL...more details | ||
CL_BSP_WD_APPL_TREE 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 |
| APPL_MODEL | Instance Attribute | Model Description for BSP WD Applications | LIKE IF_BSP_WD_APPL_MODEL | Public | |
| COMPONENT_DESCRIPTOR | Instance Attribute | Component Description | LIKE IF_BSP_WD_COMPONENT_DESCRIPTOR | Public | |
| CO_HIDE_OBSOLETE | Constant | Name of a BSP Page/Controller (Upper and Lower Case) | '#HIDE_OBSOLETE#' | LIKE O2PAGEEXT | Private |
| CO_PERS_BSP | Constant | Name of BSP Application | '#APPL_TREE_PERS#' | LIKE O2APPLNAME | Private |
| DETAILS_TREE | Instance Attribute | LIKE | Private | ||
| ENHANCEMENT_SET | Instance Attribute | Enhancement Set | LIKE BSP_WD_ENHANCEMENT_SET | Public | |
| HIDE_OBSOLETE | Instance Attribute | LIKE | Private | ||
| LAST_ROOT_NODES | Instance Attribute | LIKE | Private | ||
| NODE_TYPE_APPL | Constant | Node Type: Application | 'a' | LIKE CHAR1 | Public |
| NODE_TYPE_APPLCTRL | Constant | Node Type: Application Controller | 'l' | LIKE CHAR1 | Public |
| NODE_TYPE_COMP | Constant | Node Type: Component | 'q' | LIKE CHAR1 | Public |
| NODE_TYPE_COMPCTRL | Constant | Node Type: Component Controller | 'x' | LIKE CHAR1 | Public |
| NODE_TYPE_CUCO | Constant | Node Type: Custom Controller | 'c' | LIKE CHAR1 | Public |
| NODE_TYPE_VIEW | Constant | Node Type: View | 'y' | LIKE CHAR1 | Public |
| NODE_TYPE_WINDOW | Constant | Node Type: Window | 's' | LIKE CHAR1 | Public |
| SEARCH_PATTERN | Instance Attribute | LIKE STRING | Protected | ||
| SHOW_FAVOURITES | Instance Attribute | LIKE | Private | ||
| SPLITTER | Instance Attribute | Splitter Control | LIKE CL_GUI_SPLITTER_CONTAINER | Private | |
| START_NODE_NAME | Instance Attribute | Text (100 characters) | LIKE TEXT100 | Private | |
| START_NODE_TYPE | Instance Attribute | Single-Character Indicator | LIKE CHAR1 | Private | |
| TOOLBAR | Instance Attribute | Tool Bar Control | LIKE CL_GUI_TOOLBAR | Private |
Events of Class CL_BSP_WD_APPL_TREE
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... CONTEXT_MENU -DETAILS -
DISPLAY_URL - Display URL
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