SAP /SCMB/CL_APPMON OO Class -
/SCMB/CL_APPMON 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 /SCMB/CL_APPMON 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 /SCMB/CL_APPMON 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 |
| BUILD_TREE | Private | |
| CALL METHOD /scmb/cl_appmon=>BUILD_TREE...more details | ||
| CONSTRUCTOR | Constructor | Public |
| CALL METHOD /scmb/cl_appmon=>CONSTRUCTOR...more details | ||
| CREATE_ALV | CREATE_ALV | Public |
| CALL METHOD /scmb/cl_appmon=>CREATE_ALV...more details | ||
| CREATE_AND_INIT_TREE | CREATE_AND_INIT_TREE | Private |
| CALL METHOD /scmb/cl_appmon=>CREATE_AND_INIT_TREE...more details | ||
| CREATE_CONTAINERS | CREATE_CONTAINERS | Private |
| CALL METHOD /scmb/cl_appmon=>CREATE_CONTAINERS...more details | ||
| CREATE_PICTURE | CREATE_PICTURE | Private |
| CALL METHOD /scmb/cl_appmon=>CREATE_PICTURE...more details | ||
|
| ||
| FREE | FREE | Public |
| CALL METHOD /scmb/cl_appmon=>FREE...more details | ||
| FREE_ALV | FREE_ALV | Protected |
| CALL METHOD /scmb/cl_appmon=>FREE_ALV...more details | ||
| FREE_CONTAINERS | FREE_CONTAINERS | Protected |
| CALL METHOD /scmb/cl_appmon=>FREE_CONTAINERS...more details | ||
| GET_CONTAINERS | Private | |
| CALL METHOD /scmb/cl_appmon=>GET_CONTAINERS...more details | ||
| GET_ENTRY | GET_ENTRY | Public |
| CALL METHOD /scmb/cl_appmon=>GET_ENTRY...more details | ||
| HANDLE_ALV_DOUBLE_CLICK | HANDLE_ALV_DOUBLE_CLICK | Public |
| CALL METHOD /scmb/cl_appmon=>HANDLE_ALV_DOUBLE_CLICK...more details | ||
| HANDLE_NODE_DOUBLE_CLICK | HANDLE_NODE_DOUBLE_CLICK | Protected |
| CALL METHOD /scmb/cl_appmon=>HANDLE_NODE_DOUBLE_CLICK...more details | ||
| HANDLE_TOOLBAR | HANDLE_TOOLBAR | Protected |
| CALL METHOD /scmb/cl_appmon=>HANDLE_TOOLBAR...more details | ||
| HANDLE_TOOLBAR_COMMAND | HANDLE_TOOLBAR_COMMAND | Protected |
| CALL METHOD /scmb/cl_appmon=>HANDLE_TOOLBAR_COMMAND...more details | ||
| SET_ATTRIBUTES | Private | |
| CALL METHOD /scmb/cl_appmon=>SET_ATTRIBUTES...more details | ||
| TOGGLE_TREE | TOGGLE_TREE | Public |
| CALL METHOD /scmb/cl_appmon=>TOGGLE_TREE...more details | ||
/SCMB/CL_APPMON 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 |
| DOCKING_CONTAINER_1 | Instance Attribute | DOCKING_CONTAINER_1 | LIKE CL_GUI_DOCKING_CONTAINER | Private | |
| DOCKING_CONTAINER_2 | Instance Attribute | Docking Control Container | LIKE CL_GUI_DOCKING_CONTAINER | Private | |
| GV_FLIP_FLOP | Instance Attribute | GV_FLIP_FLOP | LIKE CHAR01 | Private | |
| LG_VALUE100 | Instance Attribute | LG_VALUE100 | LIKE CHAR100 | Public | |
| LO_ALV | Instance Attribute | ALV List Viewer | LIKE CL_GUI_ALV_GRID | Protected | |
| LV_GENTABREF | Instance Attribute | LIKE | Private | ||
| NODE_KEY_NEW | Instance Attribute | Tree Control: Node Key | LIKE TV_NODEKEY | Protected | |
| NODE_KEY_OLD | Instance Attribute | Tree Control: Node Key | LIKE TV_NODEKEY | Protected | |
| NODE_TABLE | Instance Attribute | NODE_TABLE | LIKE /SCMB/PFM_TREETAB | Private | |
| PO_PICTURE | Instance Attribute | PICTURE | LIKE CL_GUI_PICTURE | Protected | |
| PV_RESULT | Instance Attribute | LIKE | Private | ||
| PV_TOGGLE_TREE | Instance Attribute | Single-Character Flag | LIKE CHAR1 | Public | |
| SIMPLE_TREE | Instance Attribute | SIMPLE_TREE | LIKE CL_GUI_SIMPLE_TREE | Private |
Links to Related Class(s)
/SCMB/CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects