SAP IF_BSP_WD_VIEW_MANAGER OO Class - Access Interface for View Manager
IF_BSP_WD_VIEW_MANAGER 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 IF_BSP_WD_VIEW_MANAGER 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 IF_BSP_WD_VIEW_MANAGER 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_WD_VIEW_EXISTS | Checks Whether the Provided Web Screen View Exists | Public |
| CALL METHOD if_bsp_wd_view_manager=>CHECK_WD_VIEW_EXISTS...more details | ||
| CREATE_CONTROLLER | Creates a Controller Instance | Public |
| CALL METHOD if_bsp_wd_view_manager=>CREATE_CONTROLLER...more details | ||
| DELETE_CONTROLLER | Deletes a Subcontroller | Public |
| CALL METHOD if_bsp_wd_view_manager=>DELETE_CONTROLLER...more details | ||
| ERROR_NAVIGATE | Private | |
| CALL METHOD if_bsp_wd_view_manager=>ERROR_NAVIGATE...more details | ||
| GET_CONTROLLER | Fetches a Subcontroller | Public |
| CALL METHOD if_bsp_wd_view_manager=>GET_CONTROLLER...more details | ||
| GET_CURRENT_RENDERING_GROUP | Gets the Currently Processed View Assembly | Public |
| CALL METHOD if_bsp_wd_view_manager=>GET_CURRENT_RENDERING_GROUP...more details | ||
|
| ||
| GET_CURRENT_RENDER_MODE | Delivers the Current Render Mode | Public |
| CALL METHOD if_bsp_wd_view_manager=>GET_CURRENT_RENDER_MODE...more details | ||
| GET_HELP_ID | Delivers ID for Help (ABAP Class Name) | Public |
| CALL METHOD if_bsp_wd_view_manager=>GET_HELP_ID...more details | ||
| GET_HISTORY_MANAGER_DISPLAY | Delivers Display Interface of the History Manager | Public |
| CALL METHOD if_bsp_wd_view_manager=>GET_HISTORY_MANAGER_DISPLAY...more details | ||
| GET_HISTORY_MODE | Returns the History Operation Mode | Public |
| CALL METHOD if_bsp_wd_view_manager=>GET_HISTORY_MODE...more details | ||
| GET_MESSAGE_SERVICE | Returns Message Service | Public |
| CALL METHOD if_bsp_wd_view_manager=>GET_MESSAGE_SERVICE...more details | ||
| GET_OUT | Fetches the Current Writer | Public |
| CALL METHOD if_bsp_wd_view_manager=>GET_OUT...more details | ||
| GET_REPLACEMENT | Determines Controller/View Replacement | Public |
| CALL METHOD if_bsp_wd_view_manager=>GET_REPLACEMENT...more details | ||
| GET_VIEW_CONFIG_DESCR | Delivers Configuration Description for a View | Public |
| CALL METHOD if_bsp_wd_view_manager=>GET_VIEW_CONFIG_DESCR...more details | ||
| GET_WINDOW_CONTROLLER | Returns the Assigned Window Controller | Public |
| CALL METHOD if_bsp_wd_view_manager=>GET_WINDOW_CONTROLLER...more details | ||
| GET_WORKAREA_VIEW | Delivers View Currently Displayed in Work Area | Public |
| CALL METHOD if_bsp_wd_view_manager=>GET_WORKAREA_VIEW...more details | ||
| NAVIGATE | Private | |
| CALL METHOD if_bsp_wd_view_manager=>NAVIGATE...more details | ||
| SET_WORKAREA_OWNER | Set Owner (View Controller) of Work Area | Public |
| CALL METHOD if_bsp_wd_view_manager=>SET_WORKAREA_OWNER...more details | ||
| SET_WORKAREA_REF | Set Work Area Reference | Public |
| CALL METHOD if_bsp_wd_view_manager=>SET_WORKAREA_REF...more details | ||
IF_BSP_WD_VIEW_MANAGER 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 |
| APPLICATION_NAME | Instance Attribute | Name of BSP Application with Namespace | LIKE STRING | Public | |
| WORKAREA_DEF | Instance Attribute | Work Area Definition | LIKE BSP_WD_WORKAREA_DEFINITION | Public | |
| WORKAREA_OWNER | Instance Attribute | View Controller that Occupies Work Area | LIKE CL_BSP_WD_VIEW_CONTROLLER | Public | |
| WORKAREA_REF_SET | Instance Attribute | Indicator: Work Area Reference Was Set | LIKE ABAP_BOOL | Public |
Events of Class IF_BSP_WD_VIEW_MANAGER
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... BEFORE_NAVIGATION_STEP -END_OF_NAVIGATION -
START_OF_NAVIGATION -
Links to Related Class(s)
IF_BSP_W...Full list of available SAP object classes
Search for further information about these or an SAP related objects