SAP LSO_RUNNING_WORKFLOWS_READ Function Module for
LSO_RUNNING_WORKFLOWS_READ is a standard lso running workflows read 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 lso running workflows read FM, simply by entering the name LSO_RUNNING_WORKFLOWS_READ into the relevant SAP transaction such as SE37 or SE38.
Function Group: LSO_WORKFLOW
Program Name: SAPLLSO_WORKFLOW
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function LSO_RUNNING_WORKFLOWS_READ 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 'LSO_RUNNING_WORKFLOWS_READ'".
EXPORTING
PLVAR = "
* LEARNERID = "
* LEARNERTYPE = "
* TRAININGID = "
* TRAININGOTYPE = "
* VERIFY = 'X' "
* MODE = 'L' "
TABLES
* RUNNING_WORKFLOWS = "
* CURRICULUM_ELEMENTS = "
EXCEPTIONS
NO_VALID_INPUT_DATA = 1 NOTHING_FOUND = 2
IMPORTING Parameters details for LSO_RUNNING_WORKFLOWS_READ
PLVAR -
Data type: PLVAROptional: No
Call by Reference: Yes
LEARNERID -
Data type: LSO_LEARNER_OBJIDOptional: Yes
Call by Reference: Yes
LEARNERTYPE -
Data type: LSO_LEARNER_OTYPEOptional: Yes
Call by Reference: Yes
TRAININGID -
Data type: LSO_TRAINING_ID_COptional: Yes
Call by Reference: Yes
TRAININGOTYPE -
Data type: LSO_TRAINING_TYPE_COptional: Yes
Call by Reference: Yes
VERIFY -
Data type: FLAGDefault: 'X'
Optional: Yes
Call by Reference: Yes
MODE -
Data type: FLAGDefault: 'L'
Optional: Yes
Call by Reference: Yes
TABLES Parameters details for LSO_RUNNING_WORKFLOWS_READ
RUNNING_WORKFLOWS -
Data type: LSOWF_RUNNINGOptional: Yes
Call by Reference: Yes
CURRICULUM_ELEMENTS -
Data type: LSO_CURR_TRAINING_LISTOptional: Yes
Call by Reference: Yes
EXCEPTIONS details
NO_VALID_INPUT_DATA -
Data type:Optional: No
Call by Reference: Yes
NOTHING_FOUND -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for LSO_RUNNING_WORKFLOWS_READ 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_plvar | TYPE PLVAR, " | |||
| lt_running_workflows | TYPE STANDARD TABLE OF LSOWF_RUNNING, " | |||
| lv_no_valid_input_data | TYPE LSOWF_RUNNING, " | |||
| lv_learnerid | TYPE LSO_LEARNER_OBJID, " | |||
| lv_nothing_found | TYPE LSO_LEARNER_OBJID, " | |||
| lt_curriculum_elements | TYPE STANDARD TABLE OF LSO_CURR_TRAINING_LIST, " | |||
| lv_learnertype | TYPE LSO_LEARNER_OTYPE, " | |||
| lv_trainingid | TYPE LSO_TRAINING_ID_C, " | |||
| lv_trainingotype | TYPE LSO_TRAINING_TYPE_C, " | |||
| lv_verify | TYPE FLAG, " 'X' | |||
| lv_mode | TYPE FLAG. " 'L' |
|   CALL FUNCTION 'LSO_RUNNING_WORKFLOWS_READ' " |
| EXPORTING | ||
| PLVAR | = lv_plvar | |
| LEARNERID | = lv_learnerid | |
| LEARNERTYPE | = lv_learnertype | |
| TRAININGID | = lv_trainingid | |
| TRAININGOTYPE | = lv_trainingotype | |
| VERIFY | = lv_verify | |
| MODE | = lv_mode | |
| TABLES | ||
| RUNNING_WORKFLOWS | = lt_running_workflows | |
| CURRICULUM_ELEMENTS | = lt_curriculum_elements | |
| EXCEPTIONS | ||
| NO_VALID_INPUT_DATA = 1 | ||
| NOTHING_FOUND = 2 | ||
| . " LSO_RUNNING_WORKFLOWS_READ | ||
ABAP code using 7.40 inline data declarations to call FM LSO_RUNNING_WORKFLOWS_READ
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_verify) | = 'X'. | |||
| DATA(ld_mode) | = 'L'. | |||
Search for further information about these or an SAP related objects