SAP CL_SALV_AGGREGATIONS OO Class - All Aggregation Objects
CL_SALV_AGGREGATIONS 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 CL_SALV_AGGREGATIONS 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 CL_SALV_AGGREGATIONS is CL_SALV_METADATA_BASEInterface Implementation
This OO class is an Interface Implementation, which means it will implement its own version of the methods from implementation class IF_SALV_C_AGGREGATIONMethod list of CL_SALV_AGGREGATIONS 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_AGGREGATION | Add Aggregation | Public |
| CALL METHOD cl_salv_aggregations=>ADD_AGGREGATION...more details | ||
| CLEAR | Delete Aggregations | Public |
| CALL METHOD cl_salv_aggregations=>CLEAR...more details | ||
| CONSTRUCTOR | Constructor | Public |
| CALL METHOD cl_salv_aggregations=>CONSTRUCTOR...more details | ||
| GET | Get Aggregations | Public |
| CALL METHOD cl_salv_aggregations=>GET...more details | ||
| GET_AGGREGATION | Get Aggregation | Public |
| CALL METHOD cl_salv_aggregations=>GET_AGGREGATION...more details | ||
| HAS_COLUMN_AGGREGATION | Private | |
| CALL METHOD cl_salv_aggregations=>HAS_COLUMN_AGGREGATION...more details | ||
|
| ||
| IS_AGGREGATION_ALLOWED | Check Whether Column Aggregation Allowed | Public |
| CALL METHOD cl_salv_aggregations=>IS_AGGREGATION_ALLOWED...more details | ||
| IS_AGGREGATION_BEFORE_ITEMS | Check Position of Results Row | Public |
| CALL METHOD cl_salv_aggregations=>IS_AGGREGATION_BEFORE_ITEMS...more details | ||
| IS_AGGREGATION_DEFINED | Check Whether Aggregation Exists | Public |
| CALL METHOD cl_salv_aggregations=>IS_AGGREGATION_DEFINED...more details | ||
| IS_NUMERICAL_AGGREGATION_ON | Check Whether Numerical Aggregation Allowed | Public |
| CALL METHOD cl_salv_aggregations=>IS_NUMERICAL_AGGREGATION_ON...more details | ||
| RAISE_AGGREGATION_EXISTS | Private | |
| CALL METHOD cl_salv_aggregations=>RAISE_AGGREGATION_EXISTS...more details | ||
| RAISE_AGGREGATION_NOT_ALLOWED | Private | |
| CALL METHOD cl_salv_aggregations=>RAISE_AGGREGATION_NOT_ALLOWED...more details | ||
| RAISE_AGGREGATION_NOT_FOUND | Private | |
| CALL METHOD cl_salv_aggregations=>RAISE_AGGREGATION_NOT_FOUND...more details | ||
| REMOVE_AGGREGATION | Delete Aggregation | Public |
| CALL METHOD cl_salv_aggregations=>REMOVE_AGGREGATION...more details | ||
| REPAIR | Repair Aggregation Settings | Private |
| CALL METHOD cl_salv_aggregations=>REPAIR...more details | ||
| SET_AGGREGATION_ALLOWED | Allow Aggregation on Column | Public |
| CALL METHOD cl_salv_aggregations=>SET_AGGREGATION_ALLOWED...more details | ||
| SET_AGGREGATION_BEFORE_ITEMS | Set Position of Results Row | Public |
| CALL METHOD cl_salv_aggregations=>SET_AGGREGATION_BEFORE_ITEMS...more details | ||
| SET_NUMERICAL_AGGREGATION | Allow Aggregation on Numeric Values | Public |
| CALL METHOD cl_salv_aggregations=>SET_NUMERICAL_AGGREGATION...more details | ||
CL_SALV_AGGREGATIONS 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 |
| AGGREGATION_BEFORE_ITEMS | Instance Attribute | Display Aggregation Before Data Entries | FALSE | LIKE SAP_BOOL | Private |
| AVERAGE | Instance Attribute | LIKE | Private | ||
| MAXIMUM | Instance Attribute | LIKE | Private | ||
| MINIMUM | Instance Attribute | LIKE | Private | ||
| NONE | Instance Attribute | LIKE | Private | ||
| NUMERICAL_AGGREGATION | Instance Attribute | Aggregation on Numeric Values Allowed | FALSE | LIKE SAP_BOOL | Private |
| R_COLUMNS | Instance Attribute | ALV Columns | LIKE CL_SALV_COLUMNS | Private | |
| TOTAL | Instance Attribute | LIKE | Private | ||
| T_AGGREGATION | Instance Attribute | Columns on Which to Aggregate | LIKE SALV_T_AGGREGATION | Private | |
| T_AGGREGATION_NOT_ALLOWED | Instance Attribute | Columns for Which no Aggregation is Allowed | LIKE SALV_T_COLUMN | Private |
Links to Related Class(s)
CL_SALV_...Full list of available SAP object classes
Search for further information about these or an SAP related objects