SAP CL_VBI_SCENE_MANAGER OO Class - Generic Scene Manager
CL_VBI_SCENE_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 CL_VBI_SCENE_MANAGER including details of:
- Interface class implementations
- Inheritance details
- Methods defined within class ( including link to full details )
- Attributes ( including initial values )
- Class Events
Interface Implementation
This OO class is an Interface Implementation, which means it will implement its own version of the methods from implementation class IF_VBI_SCENE_MANAGERMethod list of CL_VBI_SCENE_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 |
| ADD_OBJECTS_TO_SCENE | Add Objects to the current Scene | Public |
| CALL METHOD cl_vbi_scene_manager=>ADD_OBJECTS_TO_SCENE...more details | ||
| CHECK_ROLES_MATCH_FILTER | Compare two role tables for any match | Protected |
| CALL METHOD cl_vbi_scene_manager=>CHECK_ROLES_MATCH_FILTER...more details | ||
| CLEAR_SCENE | Remove Objects from Scene by GUID or ROLE | Public |
| CALL METHOD cl_vbi_scene_manager=>CLEAR_SCENE...more details | ||
| COMMIT_CHANGES | Commit_changes (reset delta and changed flag) | Public |
| CALL METHOD cl_vbi_scene_manager=>COMMIT_CHANGES...more details | ||
| GET_AREA_DATA | Returns the data for an Area object | Public |
| CALL METHOD cl_vbi_scene_manager=>GET_AREA_DATA...more details | ||
| GET_LINK_DATA | Returns the data for a Link object | Public |
| CALL METHOD cl_vbi_scene_manager=>GET_LINK_DATA...more details | ||
|
| ||
| GET_NEW_OBJECT_GUID | Creates a new object GUID | Public |
| CALL METHOD cl_vbi_scene_manager=>GET_NEW_OBJECT_GUID...more details | ||
| GET_SELECTED_OBJECTS | Public | |
| CALL METHOD cl_vbi_scene_manager=>GET_SELECTED_OBJECTS...more details | ||
| GET_SPOT_DATA | Returns the data for a Spot object | Public |
| CALL METHOD cl_vbi_scene_manager=>GET_SPOT_DATA...more details | ||
| IS_OBJECT_GROUPABLE | Protected | |
| CALL METHOD cl_vbi_scene_manager=>IS_OBJECT_GROUPABLE...more details | ||
| MERGE_CHANGED_OBJECTS_TO_SCENE | Merges Object changes to the current Scene | Public |
| CALL METHOD cl_vbi_scene_manager=>MERGE_CHANGED_OBJECTS_TO_SCENE...more details | ||
| REMOVE_OBJECT_FROM_SCENE | Remove Objects from Scene by GUID or ROLE | Public |
| CALL METHOD cl_vbi_scene_manager=>REMOVE_OBJECT_FROM_SCENE...more details | ||
| SET_OBJECT_CHANGEABILITY | Set Object Changeability | Public |
| CALL METHOD cl_vbi_scene_manager=>SET_OBJECT_CHANGEABILITY...more details | ||
| SET_OBJECT_PARAMETERS | Set Object parameters, e.g. FLYTO, HIGHLIGHTED, ... | Public |
| CALL METHOD cl_vbi_scene_manager=>SET_OBJECT_PARAMETERS...more details | ||
| UPDATE_BY_FIELDLIST | Protected | |
| CALL METHOD cl_vbi_scene_manager=>UPDATE_BY_FIELDLIST...more details | ||
CL_VBI_SCENE_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 |
| CO_DELTA_STATE_DELETED | Constant | Single-Character Flag | 'D' | LIKE CHAR1 | Public |
| CO_DELTA_STATE_MODIFIED | Constant | Single-Character Flag | 'M' | LIKE CHAR1 | Public |
| CO_DELTA_STATE_NEW | Constant | Single-Character Flag | 'N' | LIKE CHAR1 | Public |
| CO_OBJ_KIND_AREA | Constant | Object Kind Area | 'A' | LIKE CHAR1 | Protected |
| CO_OBJ_KIND_LINK | Constant | Object Kind Link | 'L' | LIKE CHAR1 | Protected |
| CO_OBJ_KIND_SPOT | Constant | Object Kind Spot | 'S' | LIKE CHAR1 | Protected |
| DELTA_ENTRIES_INDEX | Instance Attribute | LIKE | Protected | ||
| OBJECTS | Instance Attribute | LIKE OBJECT_TAB | Protected | ||
| SCENE_CHANGED | Instance Attribute | LIKE | Protected |
CL_VBI_SCENE_MANAGER types
ENTRY_EXTENSION -OBJECT_ENTRY -
OBJECT_TAB -
Links to Related Class(s)
CL_VBI_S...Full list of available SAP object classes
Search for further information about these or an SAP related objects