SAP DPR_EVE_BATCH_PROCESS_DPO Function Module for PROCESS functionality
DPR_EVE_BATCH_PROCESS_DPO is a standard dpr eve batch process dpo SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for PROCESS functionality 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 dpr eve batch process dpo FM, simply by entering the name DPR_EVE_BATCH_PROCESS_DPO into the relevant SAP transaction such as SE37 or SE38.
Function Group: DPR_EVE_BATCH
Program Name: SAPLDPR_EVE_BATCH
Main Program: SAPLDPR_EVE_BATCH
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function DPR_EVE_BATCH_PROCESS_DPO 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 'DPR_EVE_BATCH_PROCESS_DPO'"PROCESS functionality.
EXPORTING
IT_PROJECT_GUIDS_IDS = "Table Type for Ext. ID of Entities (Standard; Non-Unique)
IT_EXTRACT_SELECTION = "Extract Range Table Type
IV_CL_CA = "Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
IV_USE_CUSTOMIZING = "Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
IV_THLD_AGGREGATE = "Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
IV_DELETE_AGGREGATED_THLD = "Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
IV_THRSH = "Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
IV_CHECK_CHANGES = "Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
IV_TEST_RUN = "Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
IMPORTING
EV_ERROR_OCCURRED = "Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
CT_MESSAGE_LOG = "Return parameter table
IMPORTING Parameters details for DPR_EVE_BATCH_PROCESS_DPO
IT_PROJECT_GUIDS_IDS - Table Type for Ext. ID of Entities (Standard; Non-Unique)
Data type: DPR_TT_EXTERNAL_IDSOptional: No
Call by Reference: No ( called with pass by value option)
IT_EXTRACT_SELECTION - Extract Range Table Type
Data type: EVE_TT_CHAR16_SELECT_OPTIONSOptional: No
Call by Reference: No ( called with pass by value option)
IV_CL_CA - Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
Data type: BOOLE_DOptional: No
Call by Reference: No ( called with pass by value option)
IV_USE_CUSTOMIZING - Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
Data type: BOOLE_DOptional: No
Call by Reference: No ( called with pass by value option)
IV_THLD_AGGREGATE - Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
Data type: BOOLE_DOptional: No
Call by Reference: No ( called with pass by value option)
IV_DELETE_AGGREGATED_THLD - Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
Data type: BOOLE_DOptional: No
Call by Reference: No ( called with pass by value option)
IV_THRSH - Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
Data type: BOOLE_DOptional: No
Call by Reference: No ( called with pass by value option)
IV_CHECK_CHANGES - Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
Data type: BOOLE_DOptional: No
Call by Reference: No ( called with pass by value option)
IV_TEST_RUN - Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
Data type: BOOLE_DOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for DPR_EVE_BATCH_PROCESS_DPO
EV_ERROR_OCCURRED - Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
Data type: BOOLE_DOptional: No
Call by Reference: No ( called with pass by value option)
CT_MESSAGE_LOG - Return parameter table
Data type: BAPIRET2_TOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for DPR_EVE_BATCH_PROCESS_DPO 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_ev_error_occurred | TYPE BOOLE_D, " | |||
| lv_it_project_guids_ids | TYPE DPR_TT_EXTERNAL_IDS, " | |||
| lv_ct_message_log | TYPE BAPIRET2_T, " | |||
| lv_it_extract_selection | TYPE EVE_TT_CHAR16_SELECT_OPTIONS, " | |||
| lv_iv_cl_ca | TYPE BOOLE_D, " | |||
| lv_iv_use_customizing | TYPE BOOLE_D, " | |||
| lv_iv_thld_aggregate | TYPE BOOLE_D, " | |||
| lv_iv_delete_aggregated_thld | TYPE BOOLE_D, " | |||
| lv_iv_thrsh | TYPE BOOLE_D, " | |||
| lv_iv_check_changes | TYPE BOOLE_D, " | |||
| lv_iv_test_run | TYPE BOOLE_D. " |
|   CALL FUNCTION 'DPR_EVE_BATCH_PROCESS_DPO' "PROCESS functionality |
| EXPORTING | ||
| IT_PROJECT_GUIDS_IDS | = lv_it_project_guids_ids | |
| IT_EXTRACT_SELECTION | = lv_it_extract_selection | |
| IV_CL_CA | = lv_iv_cl_ca | |
| IV_USE_CUSTOMIZING | = lv_iv_use_customizing | |
| IV_THLD_AGGREGATE | = lv_iv_thld_aggregate | |
| IV_DELETE_AGGREGATED_THLD | = lv_iv_delete_aggregated_thld | |
| IV_THRSH | = lv_iv_thrsh | |
| IV_CHECK_CHANGES | = lv_iv_check_changes | |
| IV_TEST_RUN | = lv_iv_test_run | |
| IMPORTING | ||
| EV_ERROR_OCCURRED | = lv_ev_error_occurred | |
| CT_MESSAGE_LOG | = lv_ct_message_log | |
| . " DPR_EVE_BATCH_PROCESS_DPO | ||
ABAP code using 7.40 inline data declarations to call FM DPR_EVE_BATCH_PROCESS_DPO
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.Search for further information about these or an SAP related objects