SAP /SAPAPO/AMO_ATYPE_SELECTION OO Class - Selection of Alert Types for an Application
/SAPAPO/AMO_ATYPE_SELECTION 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/AMO_ATYPE_SELECTION 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/AMO_ATYPE_SELECTION 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/amo_atype_selection=>ADD_NODE...more details | ||
| CONSTRUCTOR | Create Selection Tree for Alert Type Selection | Public |
| CALL METHOD /sapapo/amo_atype_selection=>CONSTRUCTOR...more details | ||
| GET_CHANGE_FLAG | Check whether changes have been made | Public |
| CALL METHOD /sapapo/amo_atype_selection=>GET_CHANGE_FLAG...more details | ||
| GET_CURRENT_SELECTION | Read the current alert type selection | Public |
| CALL METHOD /sapapo/amo_atype_selection=>GET_CURRENT_SELECTION...more details | ||
| HANDLE_BUTTON_CLICK | Event Handler: Select a Threshold Value to Change | Private |
| CALL METHOD /sapapo/amo_atype_selection=>HANDLE_BUTTON_CLICK...more details | ||
| HANDLE_CHECKBOX_CHANGE | Event Handler: Change Selection (Checkbox) of a Node | Private |
| CALL METHOD /sapapo/amo_atype_selection=>HANDLE_CHECKBOX_CHANGE...more details | ||
|
| ||
| HANDLE_HEADER_CLICK | Event Handler: Select All Alert Types Using Header Line | Private |
| CALL METHOD /sapapo/amo_atype_selection=>HANDLE_HEADER_CLICK...more details | ||
| PREPARE_ATYPES_TREE | Preparations for Displaying the Selection Tree | Private |
| CALL METHOD /sapapo/amo_atype_selection=>PREPARE_ATYPES_TREE...more details | ||
| REGISTER_EVENTS_ATYPES_TREE | Registration of Possible Events | Private |
| CALL METHOD /sapapo/amo_atype_selection=>REGISTER_EVENTS_ATYPES_TREE...more details | ||
| SAVE_CURRENT_SELECTION | Save the current alert type selection | Public |
| CALL METHOD /sapapo/amo_atype_selection=>SAVE_CURRENT_SELECTION...more details | ||
| SET_CHANGE_FLAG | Set that changes have been made | Public |
| CALL METHOD /sapapo/amo_atype_selection=>SET_CHANGE_FLAG...more details | ||
| SET_EDITABLE | Set the editability of the fields (X = yes/SPACE = no) | Public |
| CALL METHOD /sapapo/amo_atype_selection=>SET_EDITABLE...more details | ||
| SET_NEW_PROFID | Select New Profile | Public |
| CALL METHOD /sapapo/amo_atype_selection=>SET_NEW_PROFID...more details | ||
/SAPAPO/AMO_ATYPE_SELECTION 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 |
| GA_AOTYPES_META_DATA | Instance Attribute | AOT Meta Data | LIKE /SAPAPO/AOTYPE_TAB | Private | |
| GA_APPLID | Instance Attribute | Application of Alert Types | LIKE /SAPAPO/AMOAPPLID | Public | |
| GA_APPLID_TAB | Instance Attribute | Several applications should be fixed under one name | LIKE /SAPAPO/AMOAPPLID_TAB | Private | |
| GA_ATYPES_TAB | Instance Attribute | Table of Alert Types for Selection | LIKE /SAPAPO/ATYPESIO_TAB | Public | |
| GA_ATYPES_TREE | Instance Attribute | Current Instance of ALV Tree | LIKE CL_GUI_ALV_TREE | Private | |
| GA_AT_META_TAB | Instance Attribute | Meta Data: Alert Types | LIKE /SAPAPO/ATYPE_META_TAB | Private | |
| GA_CHANGED | Instance Attribute | Changes made (Yes/No) | LIKE /SAPAPO/AMOFLAG | Private | |
| GA_EDITABLE | Instance Attribute | Can be edited | CAM_TRUE | LIKE /SAPAPO/AMOFLAG | Private |
| GA_EXISTING_NODES | Instance Attribute | Existing Node in Selection Tree | LIKE /SAPAPO/AMO_ATYPESIO_NODE_TAB | Public | |
| GA_PROFID | Instance Attribute | Current Profile in the Display | LIKE /SAPAPO/AMOPROFID | Private | |
| P_HEADER_ICON | Instance Attribute | Header Line Symbol | LIKE TV_IMAGE | Private |
Links to Related Class(s)
/SAPAPO/...Full list of available SAP object classes
Search for further information about these or an SAP related objects