SAP SWK_EXECUTE_DATAFLOW Function Module for Plugin module to update the WI container with service parameters
SWK_EXECUTE_DATAFLOW is a standard swk execute dataflow SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Plugin module to update the WI container with service parameters 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 swk execute dataflow FM, simply by entering the name SWK_EXECUTE_DATAFLOW into the relevant SAP transaction such as SE37 or SE38.
Function Group: SWK3
Program Name: SAPLSWK3
Main Program: SAPLSWK3
Appliation area: S
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function SWK_EXECUTE_DATAFLOW 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 'SWK_EXECUTE_DATAFLOW'"Plugin module to update the WI container with service parameters.
EXPORTING
DATAFLOW = "
TABLES
CALLING_CONTAINER = "
CALLED_CONTAINER = "
EXCEPTIONS
OBJECTS_NOT_ALLOWED = 1 HEADER_READ_FAILURE = 2 TASK_READ_FAILURE = 3 INVALID_DATATYPE = 4 MERGE_FAILURE = 5 CONVERSION_ERROR = 6
IMPORTING Parameters details for SWK_EXECUTE_DATAFLOW
DATAFLOW -
Data type: SWABINDEF-DATAFLOWOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for SWK_EXECUTE_DATAFLOW
CALLING_CONTAINER -
Data type: SWCONTOptional: No
Call by Reference: No ( called with pass by value option)
CALLED_CONTAINER -
Data type: SWCONTOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
OBJECTS_NOT_ALLOWED -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
HEADER_READ_FAILURE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
TASK_READ_FAILURE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
INVALID_DATATYPE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
MERGE_FAILURE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
CONVERSION_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for SWK_EXECUTE_DATAFLOW 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_dataflow | TYPE SWABINDEF-DATAFLOW, " | |||
| lt_calling_container | TYPE STANDARD TABLE OF SWCONT, " | |||
| lv_objects_not_allowed | TYPE SWCONT, " | |||
| lt_called_container | TYPE STANDARD TABLE OF SWCONT, " | |||
| lv_header_read_failure | TYPE SWCONT, " | |||
| lv_task_read_failure | TYPE SWCONT, " | |||
| lv_invalid_datatype | TYPE SWCONT, " | |||
| lv_merge_failure | TYPE SWCONT, " | |||
| lv_conversion_error | TYPE SWCONT. " |
|   CALL FUNCTION 'SWK_EXECUTE_DATAFLOW' "Plugin module to update the WI container with service parameters |
| EXPORTING | ||
| DATAFLOW | = lv_dataflow | |
| TABLES | ||
| CALLING_CONTAINER | = lt_calling_container | |
| CALLED_CONTAINER | = lt_called_container | |
| EXCEPTIONS | ||
| OBJECTS_NOT_ALLOWED = 1 | ||
| HEADER_READ_FAILURE = 2 | ||
| TASK_READ_FAILURE = 3 | ||
| INVALID_DATATYPE = 4 | ||
| MERGE_FAILURE = 5 | ||
| CONVERSION_ERROR = 6 | ||
| . " SWK_EXECUTE_DATAFLOW | ||
ABAP code using 7.40 inline data declarations to call FM SWK_EXECUTE_DATAFLOW
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.| "SELECT single DATAFLOW FROM SWABINDEF INTO @DATA(ld_dataflow). | ||||
Search for further information about these or an SAP related objects