EXECUTE SAP Method Calculate









Below is documentation, parameters and attributes of ABAP Method EXECUTE within SAP class CL_SALV_EX_AGGREGATION. There is also a number of example ABAP code snipts to help you use the functionality of this method.

This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name CL_SALV_EX_AGGREGATION into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.


Method Type - Static

This is a Static Method so you can call it directly

The following technical details of method EXECUTE can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method EXECUTE

.

NameTypeData TypeDescriptionDefault Value
S_LAYOImportingTYPE
LVC_S_LAYO
ALV Control: Layout Structure
T_FCATImportingTYPE
LVC_T_FCAT
Field Catalog for List Viewer Control
T_INPUTImportingTYPE
TABLE
T_ROWSImportingTYPE
IF_SALV_BS=>T_TYPE_ROW
Line References
T_SORTImportingTYPE
LVC_T_SORT
ALV Control: Table of Sort Criteria
T_KEYFIGURE_TREEExportingTYPE
SALV_BS_T_KEYFIGURE_TREE
SALV: Table Aggregation Tree
T_MEASUREExportingTYPE
SALV_BS_T_MEASURE
SALV: Table of Measure Columns



Exceptions of Method EXECUTE

This method does not have any exceptions

Example ABAP coding


DATA: lv_S_LAYO TYPE LVC_S_LAYO,
lv_T_FCAT TYPE LVC_T_FCAT,
lv_T_INPUT TYPE TABLE,
lv_T_KEYFIGURE_TREE TYPE SALV_BS_T_KEYFIGURE_TREE,
lv_T_MEASURE TYPE SALV_BS_T_MEASURE,
lv_T_ROWS TYPE IF_SALV_BS=>T_TYPE_ROW,
lv_T_SORT TYPE LVC_T_SORT,
lv_other TYPE c.

CALL METHOD CL_SALV_EX_AGGREGATION=>EXECUTE(
EXPORTING
S_LAYO = lv_S_LAYO
T_FCAT = lv_T_FCAT
T_INPUT = lv_T_INPUT
T_ROWS = lv_T_ROWS
T_SORT = lv_T_SORT
IMPORTING
T_KEYFIGURE_TREE = lv_T_KEYFIGURE_TREE
T_MEASURE = lv_T_MEASURE ).

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



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!