SAP RH_WI_AGENTS_GET Function Module for Determine All Users Authorized to Execute Specified Work Item
RH_WI_AGENTS_GET is a standard rh wi agents get SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Determine All Users Authorized to Execute Specified Work Item 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 rh wi agents get FM, simply by entering the name RH_WI_AGENTS_GET into the relevant SAP transaction such as SE37 or SE38.
Function Group: RHW1
Program Name: SAPLRHW1
Main Program: SAPLRHW1
Appliation area: H
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function RH_WI_AGENTS_GET 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 'RH_WI_AGENTS_GET'"Determine All Users Authorized to Execute Specified Work Item.
EXPORTING
ACT_WI_ID = "
* SEARCH_DATE = SY-DATUM "
* EXCLUDED_AGENTS_GIVEN = "
TABLES
* EXCLUDED_AGENTS = "
WI_AGENT_LIST = "
EXCEPTIONS
NO_ACTIVE_PLVAR = 1 NO_AGENT_FOUND = 2 GENERAL_TASK = 3 BACKGROUND_TASK = 4
IMPORTING Parameters details for RH_WI_AGENTS_GET
ACT_WI_ID -
Data type: SWWWIHEAD-WI_IDOptional: No
Call by Reference: No ( called with pass by value option)
SEARCH_DATE -
Data type: SY-DATUMDefault: SY-DATUM
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXCLUDED_AGENTS_GIVEN -
Data type: HRPP0C-TESTOptional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for RH_WI_AGENTS_GET
EXCLUDED_AGENTS -
Data type: SWHACTOROptional: Yes
Call by Reference: No ( called with pass by value option)
WI_AGENT_LIST -
Data type: SWHACTOROptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NO_ACTIVE_PLVAR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_AGENT_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
GENERAL_TASK -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
BACKGROUND_TASK -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for RH_WI_AGENTS_GET 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_act_wi_id | TYPE SWWWIHEAD-WI_ID, " | |||
| lt_excluded_agents | TYPE STANDARD TABLE OF SWHACTOR, " | |||
| lv_no_active_plvar | TYPE SWHACTOR, " | |||
| lv_search_date | TYPE SY-DATUM, " SY-DATUM | |||
| lt_wi_agent_list | TYPE STANDARD TABLE OF SWHACTOR, " | |||
| lv_no_agent_found | TYPE SWHACTOR, " | |||
| lv_general_task | TYPE SWHACTOR, " | |||
| lv_excluded_agents_given | TYPE HRPP0C-TEST, " | |||
| lv_background_task | TYPE HRPP0C. " |
|   CALL FUNCTION 'RH_WI_AGENTS_GET' "Determine All Users Authorized to Execute Specified Work Item |
| EXPORTING | ||
| ACT_WI_ID | = lv_act_wi_id | |
| SEARCH_DATE | = lv_search_date | |
| EXCLUDED_AGENTS_GIVEN | = lv_excluded_agents_given | |
| TABLES | ||
| EXCLUDED_AGENTS | = lt_excluded_agents | |
| WI_AGENT_LIST | = lt_wi_agent_list | |
| EXCEPTIONS | ||
| NO_ACTIVE_PLVAR = 1 | ||
| NO_AGENT_FOUND = 2 | ||
| GENERAL_TASK = 3 | ||
| BACKGROUND_TASK = 4 | ||
| . " RH_WI_AGENTS_GET | ||
ABAP code using 7.40 inline data declarations to call FM RH_WI_AGENTS_GET
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 WI_ID FROM SWWWIHEAD INTO @DATA(ld_act_wi_id). | ||||
| "SELECT single DATUM FROM SY INTO @DATA(ld_search_date). | ||||
| DATA(ld_search_date) | = SY-DATUM. | |||
| "SELECT single TEST FROM HRPP0C INTO @DATA(ld_excluded_agents_given). | ||||
Search for further information about these or an SAP related objects