SAP /BOBF/CL_CUST_MANAGER OO Class - Manager Class
/BOBF/CL_CUST_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 /BOBF/CL_CUST_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 /BOBF/CL_CUST_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 |
| CLEAR_NAVIGATION_STACK | Public | |
| CALL METHOD /bobf/cl_cust_manager=>CLEAR_NAVIGATION_STACK...more details | ||
| DROP_FROM_NAVIGATION_STACK | Private | |
| CALL METHOD /bobf/cl_cust_manager=>DROP_FROM_NAVIGATION_STACK...more details | ||
| EXECUTE_WIZARD | Public | |
| CALL METHOD /bobf/cl_cust_manager=>EXECUTE_WIZARD...more details | ||
| EXIT | Exit the customer ui | Public |
| CALL METHOD /bobf/cl_cust_manager=>EXIT...more details | ||
| GET_CURRENT_SCREEN | Returns the topmost screen from the screen stack | Public |
| CALL METHOD /bobf/cl_cust_manager=>GET_CURRENT_SCREEN...more details | ||
| GET_INSTANCE | Singelton (method in order to create/retreive the instance) | Public |
| CALL METHOD /bobf/cl_cust_manager=>GET_INSTANCE...more details | ||
|
| ||
| GET_NAVIGATE_FORWARDS | Public | |
| CALL METHOD /bobf/cl_cust_manager=>GET_NAVIGATE_FORWARDS...more details | ||
| INITIALIZE | Initialization of the Customer UI application | Public |
| CALL METHOD /bobf/cl_cust_manager=>INITIALIZE...more details | ||
| NAVIGATE_BACKWARDS | Navigate backwards in the screen stack | Public |
| CALL METHOD /bobf/cl_cust_manager=>NAVIGATE_BACKWARDS...more details | ||
| NAVIGATE_FORWARDS | Navigate forwards in the screen stack | Public |
| CALL METHOD /bobf/cl_cust_manager=>NAVIGATE_FORWARDS...more details | ||
| OPEN_BO | Open a new Business Object | Public |
| CALL METHOD /bobf/cl_cust_manager=>OPEN_BO...more details | ||
| OPEN_BO_BROWSER | Public | |
| CALL METHOD /bobf/cl_cust_manager=>OPEN_BO_BROWSER...more details | ||
| OPEN_ENTITY_SCREEN | Open a new Screen (e.g. for determination or action) | Public |
| CALL METHOD /bobf/cl_cust_manager=>OPEN_ENTITY_SCREEN...more details | ||
| SCREEN_STACK_PUSH | Add a new screen to the stack and open it | Private |
| CALL METHOD /bobf/cl_cust_manager=>SCREEN_STACK_PUSH...more details | ||
| SHOW_BO | Public | |
| CALL METHOD /bobf/cl_cust_manager=>SHOW_BO...more details | ||
/BOBF/CL_CUST_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 |
| GO_INSTANCE | Static Attribute | Singelton (Reference to the Manager instance) | LIKE /BOBF/CL_CUST_MANAGER | Private | |
| MT_SCREEN_STACK | Instance Attribute | Containing all screens, which are opened so far | LIKE TT_SCREEN_STACK | Private | |
| MV_BO_KEY | Instance Attribute | bo key | LIKE /BOBF/OBM_BO_KEY | Public | |
| MV_EDITABLE | Instance Attribute | Data element for domain BOOLE: TRUE (='X') and FALSE (=' ') | LIKE BOOLE_D | Public | |
| MV_ENHANCEMENT | Instance Attribute | Data element for domain BOOLE: TRUE (='X') and FALSE (=' ') | LIKE BOOLE_D | Public | |
| MV_STACK_COUNTER | Instance Attribute | LIKE I | Private | ||
| MV_STACK_POINTER | Instance Attribute | LIKE I | Private | ||
| MV_UPGRADE_RUNNING | Static Attribute | True = X, while upgrade/SP/EhP is running in shawdow system | LIKE BOOLE_D | Public |
/BOBF/CL_CUST_MANAGER types
TT_SCREEN_STACK -TY_SCREEN_STACK -
Links to Related Class(s)
/BOBF/CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects