SAP ACEPS_AGGREGATED_LIST_DISPLAY Function Module for Display Summarized Results List
ACEPS_AGGREGATED_LIST_DISPLAY is a standard aceps aggregated list display SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Display Summarized Results List processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for aceps aggregated list display FM, simply by entering the name ACEPS_AGGREGATED_LIST_DISPLAY into the relevant SAP transaction such as SE37 or SE38.
Function Group: ACEPS17
Program Name: SAPLACEPS17
Main Program: SAPLACEPS17
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ACEPS_AGGREGATED_LIST_DISPLAY pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'ACEPS_AGGREGATED_LIST_DISPLAY'"Display Summarized Results List.
EXPORTING
ID_COMP = "Application Component for Accrual
* ID_TESTRUN = 'X' "Test Run
ID_RUNTYPE = "Run Type of Periodic Posting Program
ID_EFFDATE = "Posting Date
CHANGING
* CT_AGGDOC = "Aggregated Accrual Engine Line Items
CT_RETURN = "Return Table
CT_ACEDOC_RETURN = "Table with Messages About Specific ACE Documents
CT_ACCDOC_RETURN = "Table of Messages for Transferred ACE Documents
IMPORTING Parameters details for ACEPS_AGGREGATED_LIST_DISPLAY
ID_COMP - Application Component for Accrual
Data type: ACE_COMPOptional: No
Call by Reference: Yes
ID_TESTRUN - Test Run
Data type: ACE_TESTRUNDefault: 'X'
Optional: Yes
Call by Reference: Yes
ID_RUNTYPE - Run Type of Periodic Posting Program
Data type: ACEPSPPLOG-RUNTYPEOptional: No
Call by Reference: Yes
ID_EFFDATE - Posting Date
Data type: ACE_EFFDATEOptional: No
Call by Reference: Yes
CHANGING Parameters details for ACEPS_AGGREGATED_LIST_DISPLAY
CT_AGGDOC - Aggregated Accrual Engine Line Items
Data type: ACEPS_ACE_DOC_AGGREGATED_TOptional: Yes
Call by Reference: Yes
CT_RETURN - Return Table
Data type: BAPIRET2_TOptional: No
Call by Reference: Yes
CT_ACEDOC_RETURN - Table with Messages About Specific ACE Documents
Data type: ACE_ACEDOC_RETURN_TOptional: No
Call by Reference: Yes
CT_ACCDOC_RETURN - Table of Messages for Transferred ACE Documents
Data type: ACE_ACCDOC_RETURN_TOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for ACEPS_AGGREGATED_LIST_DISPLAY Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_id_comp | TYPE ACE_COMP, " | |||
| lv_ct_aggdoc | TYPE ACEPS_ACE_DOC_AGGREGATED_T, " | |||
| lv_ct_return | TYPE BAPIRET2_T, " | |||
| lv_id_testrun | TYPE ACE_TESTRUN, " 'X' | |||
| lv_id_runtype | TYPE ACEPSPPLOG-RUNTYPE, " | |||
| lv_ct_acedoc_return | TYPE ACE_ACEDOC_RETURN_T, " | |||
| lv_id_effdate | TYPE ACE_EFFDATE, " | |||
| lv_ct_accdoc_return | TYPE ACE_ACCDOC_RETURN_T. " |
|   CALL FUNCTION 'ACEPS_AGGREGATED_LIST_DISPLAY' "Display Summarized Results List |
| EXPORTING | ||
| ID_COMP | = lv_id_comp | |
| ID_TESTRUN | = lv_id_testrun | |
| ID_RUNTYPE | = lv_id_runtype | |
| ID_EFFDATE | = lv_id_effdate | |
| CHANGING | ||
| CT_AGGDOC | = lv_ct_aggdoc | |
| CT_RETURN | = lv_ct_return | |
| CT_ACEDOC_RETURN | = lv_ct_acedoc_return | |
| CT_ACCDOC_RETURN | = lv_ct_accdoc_return | |
| . " ACEPS_AGGREGATED_LIST_DISPLAY | ||
ABAP code using 7.40 inline data declarations to call FM ACEPS_AGGREGATED_LIST_DISPLAY
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.| DATA(ld_id_testrun) | = 'X'. | |||
| "SELECT single RUNTYPE FROM ACEPSPPLOG INTO @DATA(ld_id_runtype). | ||||
Search for further information about these or an SAP related objects