SAP /SAPAPO/CL_AMODAL OO Class - Alert Monitor Data Access Layer
/SAPAPO/CL_AMODAL 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/CL_AMODAL 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 /SAPAPO/CL_AMODAL 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 |
| ALERT_DELETE | Delete alert from alert storage | Private |
| CALL METHOD /sapapo/cl_amodal=>ALERT_DELETE...more details | ||
| ALERT_DELETE_AE | Delete alert from alert engine | Private |
| CALL METHOD /sapapo/cl_amodal=>ALERT_DELETE_AE...more details | ||
| ALERT_DELETE_BY_LIST | Delete list of alerts from alert storage | Public |
| CALL METHOD /sapapo/cl_amodal=>ALERT_DELETE_BY_LIST...more details | ||
| ALERT_DELETE_TBL | Delete alert from alert table | Protected |
| CALL METHOD /sapapo/cl_amodal=>ALERT_DELETE_TBL...more details | ||
| ALERT_INSERT | Insert alert into alert storage | Private |
| CALL METHOD /sapapo/cl_amodal=>ALERT_INSERT...more details | ||
| ALERT_INSERT_AE | Insert alert into alert engine | Private |
| CALL METHOD /sapapo/cl_amodal=>ALERT_INSERT_AE...more details | ||
|
| ||
| ALERT_INSERT_TBL | Insert alert into alert table | Protected |
| CALL METHOD /sapapo/cl_amodal=>ALERT_INSERT_TBL...more details | ||
| ALERT_READ | Read alert from alert storage | Protected |
| CALL METHOD /sapapo/cl_amodal=>ALERT_READ...more details | ||
| ALERT_READ_BY_SEL | Read alert from alert storage based on selection | Public |
| CALL METHOD /sapapo/cl_amodal=>ALERT_READ_BY_SEL...more details | ||
| ALERT_SELECT | Select alert from alert storage | Private |
| CALL METHOD /sapapo/cl_amodal=>ALERT_SELECT...more details | ||
| ALERT_SELECT_AE | Select alert from alert engine | Private |
| CALL METHOD /sapapo/cl_amodal=>ALERT_SELECT_AE...more details | ||
| ALERT_SELECT_TBL | Read alert from alert table | Protected |
| CALL METHOD /sapapo/cl_amodal=>ALERT_SELECT_TBL...more details | ||
| ALERT_WRITE | Write alert to alert storage | Protected |
| CALL METHOD /sapapo/cl_amodal=>ALERT_WRITE...more details | ||
| ALERT_WRITE_BY_LIST | Write alerts to alert storage from list | Public |
| CALL METHOD /sapapo/cl_amodal=>ALERT_WRITE_BY_LIST...more details | ||
| CLASS_CONSTRUCTOR | CLASS_CONSTRUCTOR | Public |
| CALL METHOD /sapapo/cl_amodal=>CLASS_CONSTRUCTOR...more details | ||
| GET_AOTYPE | Get alert object type customizing setting | Public |
| CALL METHOD /sapapo/cl_amodal=>GET_AOTYPE...more details | ||
| GET_ATUID_AOTAT | Get alert object type+alert type of unique alert type | Private |
| CALL METHOD /sapapo/cl_amodal=>GET_ATUID_AOTAT...more details | ||
| GET_ATUID_ATID | Get unique alert type of alert object type+alert type | Private |
| CALL METHOD /sapapo/cl_amodal=>GET_ATUID_ATID...more details | ||
| GET_DALAOT | Get alert object types handled by application DAL adapter | Public |
| CALL METHOD /sapapo/cl_amodal=>GET_DALAOT...more details | ||
| GET_DALMAP_AE | Get alert type mapping table for alert engine storage | Protected |
| CALL METHOD /sapapo/cl_amodal=>GET_DALMAP_AE...more details | ||
| SELTAB_CHRRNG_ADD | Add values to characteristic range tables | Private |
| CALL METHOD /sapapo/cl_amodal=>SELTAB_CHRRNG_ADD...more details | ||
| SELTAB_CONV_AE | Convert AMO sel. range table to alert engine range table | Private |
| CALL METHOD /sapapo/cl_amodal=>SELTAB_CONV_AE...more details | ||
| SELTAB_VALUE_ADD | Add value to selection range table | Protected |
| CALL METHOD /sapapo/cl_amodal=>SELTAB_VALUE_ADD...more details | ||
/SAPAPO/CL_AMODAL 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 |
| GC_ALERTDB_FIELD | Constant | Fields of internal DB alert structure | LIKE | Protected | |
| GC_SELOPT_ATIME | Constant | Alert time selection options | LIKE | Public | |
| GT_BUFFER_AOTYPES | Static Attribute | Alert Object Type buffer table | LIKE | Private | |
| GT_BUFFER_ATUID | Static Attribute | Alert Type Mapping buffer table | LIKE | Private | |
| MV_DB_CURSOR | Instance Attribute | DB cursor | LIKE CURSOR | Private |
/SAPAPO/CL_AMODAL types
TYP_S_ALERT_DB - Internal DB Alert StructureTYP_S_DALMAP_AE - Mapping structure for Alert Engine Storage
TYP_S_SEL_CHAR - Selection of Alert Characteristics (+planning version)
TYP_T_ALERT_DB - Internal DB Alert Table
TYP_T_DALAOT - Alert Object Types handled by DAL adapter
TYP_T_DALMAP_AE - Mapping table for Alert Engine Storage
Links to Related Class(s)
/SAPAPO/...Full list of available SAP object classes
Search for further information about these or an SAP related objects