SAP DAAG_PROCESS_PARALLEL Function Module for









DAAG_PROCESS_PARALLEL is a standard daag process parallel SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 daag process parallel FM, simply by entering the name DAAG_PROCESS_PARALLEL into the relevant SAP transaction such as SE37 or SE38.

Function Group: DAAG_COMMON
Program Name: SAPLDAAG_COMMON
Main Program: SAPLDAAG_COMMON
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function DAAG_PROCESS_PARALLEL 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 'DAAG_PROCESS_PARALLEL'"
EXPORTING
IV_DAGO = "
IV_BOS_XML = "
IV_RUN_NUMBER = "
* IV_IS_UNDOING_AGING_RUN = ABAP_FALSE "Is Undoing Aging Rin: True(X) and False (' ')
* IV_UNDOING_LOWER_DATE = "
* IV_UNDOING_UPPER_DATE = "
* IV_UNDOING_TARGET_DATE = "Obsolete
* IT_SELECTION_REFERENCE = "SELECT-OPTIONS Table
IT_HOST_INFO_OF_TABLES = "

IMPORTING
ET_UPDATE_STATS = "
EV_UPDATE_FAILED = "

EXCEPTIONS
ERROR = 1 SQL_EXCEPTION = 2
.



IMPORTING Parameters details for DAAG_PROCESS_PARALLEL

IV_DAGO -

Data type: DAAG_OBJECT
Optional: No
Call by Reference: No ( called with pass by value option)

IV_BOS_XML -

Data type: XSTRING
Optional: No
Call by Reference: No ( called with pass by value option)

IV_RUN_NUMBER -

Data type: SYSUUID_C22
Optional: No
Call by Reference: No ( called with pass by value option)

IV_IS_UNDOING_AGING_RUN - Is Undoing Aging Rin: True(X) and False (' ')

Data type: BOOLE_D
Default: ABAP_FALSE
Optional: Yes
Call by Reference: No ( called with pass by value option)

IV_UNDOING_LOWER_DATE -

Data type: DATS
Optional: Yes
Call by Reference: No ( called with pass by value option)

IV_UNDOING_UPPER_DATE -

Data type: DATS
Optional: Yes
Call by Reference: No ( called with pass by value option)

IV_UNDOING_TARGET_DATE - Obsolete

Data type: DATS
Optional: Yes
Call by Reference: No ( called with pass by value option)

IT_SELECTION_REFERENCE - SELECT-OPTIONS Table

Data type: RSELOPTION
Optional: Yes
Call by Reference: No ( called with pass by value option)

IT_HOST_INFO_OF_TABLES -

Data type: DAAG_T_HOST
Optional: No
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for DAAG_PROCESS_PARALLEL

ET_UPDATE_STATS -

Data type: DAAG_T_UPDATE_STATS
Optional: No
Call by Reference: No ( called with pass by value option)

EV_UPDATE_FAILED -

Data type: BOOLE_D
Optional: No
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

ERROR -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

SQL_EXCEPTION -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for DAAG_PROCESS_PARALLEL 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_error  TYPE STRING, "   
lv_iv_dago  TYPE DAAG_OBJECT, "   
lv_et_update_stats  TYPE DAAG_T_UPDATE_STATS, "   
lv_iv_bos_xml  TYPE XSTRING, "   
lv_sql_exception  TYPE XSTRING, "   
lv_ev_update_failed  TYPE BOOLE_D, "   
lv_iv_run_number  TYPE SYSUUID_C22, "   
lv_iv_is_undoing_aging_run  TYPE BOOLE_D, "   ABAP_FALSE
lv_iv_undoing_lower_date  TYPE DATS, "   
lv_iv_undoing_upper_date  TYPE DATS, "   
lv_iv_undoing_target_date  TYPE DATS, "   
lv_it_selection_reference  TYPE RSELOPTION, "   
lv_it_host_info_of_tables  TYPE DAAG_T_HOST. "   

  CALL FUNCTION 'DAAG_PROCESS_PARALLEL'  "
    EXPORTING
         IV_DAGO = lv_iv_dago
         IV_BOS_XML = lv_iv_bos_xml
         IV_RUN_NUMBER = lv_iv_run_number
         IV_IS_UNDOING_AGING_RUN = lv_iv_is_undoing_aging_run
         IV_UNDOING_LOWER_DATE = lv_iv_undoing_lower_date
         IV_UNDOING_UPPER_DATE = lv_iv_undoing_upper_date
         IV_UNDOING_TARGET_DATE = lv_iv_undoing_target_date
         IT_SELECTION_REFERENCE = lv_it_selection_reference
         IT_HOST_INFO_OF_TABLES = lv_it_host_info_of_tables
    IMPORTING
         ET_UPDATE_STATS = lv_et_update_stats
         EV_UPDATE_FAILED = lv_ev_update_failed
    EXCEPTIONS
        ERROR = 1
        SQL_EXCEPTION = 2
. " DAAG_PROCESS_PARALLEL




ABAP code using 7.40 inline data declarations to call FM DAAG_PROCESS_PARALLEL

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_iv_is_undoing_aging_run) = ABAP_FALSE.
 
 
 
 
 
 


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!