SAP CL_BSP_WD_CONTROLLER OO Class - Basis Class for WD Controller
CL_BSP_WD_CONTROLLER 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_CONTROLLER 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_CONTROLLER is CL_BSP_CONTROLLER2Method list of CL_BSP_WD_CONTROLLER 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 |
| ACTIVATE_TESTING | Private | |
| CALL METHOD cl_bsp_wd_controller=>ACTIVATE_TESTING...more details | ||
| COMPLETE_NAME | Completes the Controller Name | Public |
| CALL METHOD cl_bsp_wd_controller=>COMPLETE_NAME...more details | ||
| CONSTRUCTOR | Constructor | Public |
| CALL METHOD cl_bsp_wd_controller=>CONSTRUCTOR...more details | ||
| DELETE_CUSTOM_CONTROLLER | Call: Deletes a Custom Controller | Public |
| CALL METHOD cl_bsp_wd_controller=>DELETE_CUSTOM_CONTROLLER...more details | ||
| DO_CLEANUP_CONTEXT | Implementation: Release Controller Context | Protected |
| CALL METHOD cl_bsp_wd_controller=>DO_CLEANUP_CONTEXT...more details | ||
| DO_CONTEXT_NODE_BINDING | Connects Two Context Nodes | Public |
| CALL METHOD cl_bsp_wd_controller=>DO_CONTEXT_NODE_BINDING...more details | ||
|
| ||
| DO_INIT_CONTEXT | Implementation: Initialization of Controller Context | Protected |
| CALL METHOD cl_bsp_wd_controller=>DO_INIT_CONTEXT...more details | ||
| GET_CUSTOM_CONTROLLER | Call: Fetches a Custom Controller and Generates it if Needed | Public |
| CALL METHOD cl_bsp_wd_controller=>GET_CUSTOM_CONTROLLER...more details | ||
| WD_CREATE_CONTEXT | Instantiates Controller Context | Protected |
| CALL METHOD cl_bsp_wd_controller=>WD_CREATE_CONTEXT...more details | ||
| WD_DESTROY | 'Destructor' for WD Controller | Protected |
| CALL METHOD cl_bsp_wd_controller=>WD_DESTROY...more details | ||
| WD_DESTROY_CONTEXT | Releases the Controller Context | Protected |
| CALL METHOD cl_bsp_wd_controller=>WD_DESTROY_CONTEXT...more details | ||
CL_BSP_WD_CONTROLLER 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 |
| COMP_CONTROLLER | Instance Attribute | BSP WD Component Controller | LIKE CL_BSP_WD_COMPONENT_CONTROLLER | Protected | |
| CONTEXT | Instance Attribute | Context | LIKE CL_BSP_WD_CONTEXT | Protected | |
| CO_PREFIX_CUCO_GLOBAL_SCOPE | Constant | Prefix for Addressing Global Custom Controller | 'GLOBAL.' | LIKE CHAR7 | Public |
| CO_SHARE_COLLECTION | Constant | Bond Type: Common Collection | 'C' | LIKE BSP_WD_BINDING_TYPE | Public |
| CO_SHARE_COLL_WRAPPER | Constant | Bond Type: Common Collection Wrapper | 'W' | LIKE BSP_WD_BINDING_TYPE | Public |
| CO_TYPED_CTXT | Constant | Component Name | 'TYPED_CONTEXT' | LIKE STRING | Private |
| CO_TYPE_COMPONENT | Constant | Controller Type: Component | 'C' | LIKE BSP_WD_CONTROLLER_TYPE | Public |
| CO_TYPE_CUSTOM | Constant | Controller Type: Custom | 'K' | LIKE BSP_WD_CONTROLLER_TYPE | Public |
| CO_TYPE_INTERFACE | Constant | Controller Type: Interface | 'I' | LIKE BSP_WD_CONTROLLER_TYPE | Public |
| CO_TYPE_VIEW | Constant | Controller Type: View | 'V' | LIKE BSP_WD_CONTROLLER_TYPE | Public |
| CO_TYPE_WINDOW | Constant | Controller Type: Window | 'W' | LIKE BSP_WD_CONTROLLER_TYPE | Public |
| DO_BINDING | Instance Attribute | LIKE | Private | ||
| TESTING | Instance Attribute | LIKE | Private | ||
| VIEW_MANAGER | Instance Attribute | View Manager | LIKE IF_BSP_WD_VIEW_MANAGER | Protected | |
| WD_APPL | Static Attribute | BSP WD Application | LIKE CL_BSP_WD_APPLICATION | Protected |
Events of Class CL_BSP_WD_CONTROLLER
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... DISABLE_DH_NAVIGATION - Request Suppression of Delta HandlingLinks 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