SAP /SAPAPO/ALERT_MONITOR OO Class - Alert Monitor
/SAPAPO/ALERT_MONITOR 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 /SAPAPO/ALERT_MONITOR 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 /SAPAPO/ALERT_MONITOR is /SAPAPO/ALERT_MONITOR_BASEMethod list of /SAPAPO/ALERT_MONITOR 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_NODE | Add a New Node into the Hierarchy Tree | Private |
| CALL METHOD /sapapo/alert_monitor=>ADD_NODE...more details | ||
| CONSTRUCTOR | Constructor | Public |
| CALL METHOD /sapapo/alert_monitor=>CONSTRUCTOR...more details | ||
| CREATE_NODES_FOR_DISPLAY | Create Node for Displaying Transferred Alerts | Private |
| CALL METHOD /sapapo/alert_monitor=>CREATE_NODES_FOR_DISPLAY...more details | ||
| DISPLAY_ALERTS | Display Alerts in Alert Grid | Private |
| CALL METHOD /sapapo/alert_monitor=>DISPLAY_ALERTS...more details | ||
| GET_ALERTS_FROM_NODES | Read Alerts for Selected Nodes | Private |
| CALL METHOD /sapapo/alert_monitor=>GET_ALERTS_FROM_NODES...more details | ||
| HANDLE_CHECKBOX_CHANGE | Event Handler: Change Selection (Checkbox) of a Node | Private |
| CALL METHOD /sapapo/alert_monitor=>HANDLE_CHECKBOX_CHANGE...more details | ||
|
| ||
| HANDLE_HEADER_CLICK | Event Handler: Select All Alerts Using Header Line | Private |
| CALL METHOD /sapapo/alert_monitor=>HANDLE_HEADER_CLICK...more details | ||
| HANDLE_HRCHY_CONTEXT_REQUEST | Event Handler: Tree Context Menu Request | Private |
| CALL METHOD /sapapo/alert_monitor=>HANDLE_HRCHY_CONTEXT_REQUEST...more details | ||
| HANDLE_HRCHY_CONTEXT_SELECT | Event Handler: Tree Context Menu Item Invoked | Private |
| CALL METHOD /sapapo/alert_monitor=>HANDLE_HRCHY_CONTEXT_SELECT...more details | ||
| INITIALIZE_CONTROLS | Initialize Control | Private |
| CALL METHOD /sapapo/alert_monitor=>INITIALIZE_CONTROLS...more details | ||
| MASK_ALERTS_DPP | Location related data masking for alerts | Private |
| CALL METHOD /sapapo/alert_monitor=>MASK_ALERTS_DPP...more details | ||
| PREPARE_HRCHY_TREE | Preparation to Display the Selection Tree | Private |
| CALL METHOD /sapapo/alert_monitor=>PREPARE_HRCHY_TREE...more details | ||
| PRESELECT_ALL | Select All Nodes for Immediate Display of All Alerts | Private |
| CALL METHOD /sapapo/alert_monitor=>PRESELECT_ALL...more details | ||
| REGISTER_EVENTS_HRCHY_TREE | Registration of Possible Events | Private |
| CALL METHOD /sapapo/alert_monitor=>REGISTER_EVENTS_HRCHY_TREE...more details | ||
| SORT_TREE_NODES | Sort Child Nodes of Tree Node | Private |
| CALL METHOD /sapapo/alert_monitor=>SORT_TREE_NODES...more details | ||
/SAPAPO/ALERT_MONITOR 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 |
| GT_EXISTING_NODES | Instance Attribute | Existing Nodes in Hierarchy Tree | LIKE | Public | |
| GT_NODE_VALUE | Instance Attribute | LIKE | Private | ||
| GV_ALERT_NO_FOR_NODE_ID | Instance Attribute | Sequence Number for Alert | LIKE LVC_NKEY | Private | |
| G_DOCKING_CONTROL | Instance Attribute | G_DOCKING_CONTROL | LIKE CL_GUI_DOCKING_CONTAINER | Private | |
| G_HRCHY_SORT_ASC | Instance Attribute | Checkbox | LIKE XFELD | Private | |
| G_HRCHY_SORT_FIELD | Instance Attribute | Name of field used for sorting | LIKE STRING | Private | |
| P_ALERT_GRID | Instance Attribute | Current Instance of Alert Grid Object | LIKE /SAPAPO/CL_ALERT_GRID | Private | |
| P_AOT_VIEW | Instance Attribute | P_AOT_VIEW | LIKE | Private | |
| P_ATYPES_META_TAB | Instance Attribute | Meta-Data for Alert Types | LIKE /SAPAPO/ATYPE_META_TAB | Private | |
| P_CONTAINER_ALERTS | Instance Attribute | Container for Displaying Alerts | LIKE CL_GUI_CONTAINER | Private | |
| P_CONTAINER_HIERARCHY | Instance Attribute | Container for Hierarchical Display | LIKE CL_GUI_CONTAINER | Private | |
| P_HEADER_ICON | Instance Attribute | Symbol for Header Line | LIKE TV_IMAGE | Public | |
| P_HIERARCHY_TREE | Instance Attribute | Tree for Hierarchical Display of Alerts | LIKE CL_GUI_ALV_TREE | Private | |
| P_HRCHY_TREE_TAB | Instance Attribute | Storage Table for Tree Control | LIKE /SAPAPO/AMO_HRCHY_TREE_TAB | Public | |
| P_PRESELECT_ALL | Instance Attribute | Display All Alerts Immediately | LIKE XFELD | Private | |
| P_SPLITTER | Instance Attribute | Splitter | LIKE CL_GUI_SPLITTER_CONTAINER | Private |
/SAPAPO/ALERT_MONITOR types
LTYP_NODE_LINE - Structure of Node LineLTYP_NODE_VALUE -
Links to Related Class(s)
/SAPAPO/...Full list of available SAP object classes
Search for further information about these or an SAP related objects