RSOD_SKWF_RESOURCE_IS_LOCKED is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name RSOD_SKWF_RESOURCE_IS_LOCKED into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
RSOD_SKFW_RM
Released Date:
Not Released
Processing type: Remote-Enabled
CALL FUNCTION 'RSOD_SKWF_RESOURCE_IS_LOCKED' "Check if a resource is locked
EXPORTING
* i_appl = 'BW' " skwf_appl Application
i_s_loio = " skwf_io LOIO: Class and ID
IMPORTING
e_user = " syuname User who locked the resource - SPACE: not locked
error_text = " string Error Text
. " RSOD_SKWF_RESOURCE_IS_LOCKED
The ABAP code below is a full code listing to execute function module RSOD_SKWF_RESOURCE_IS_LOCKED including all data declarations. The code uses 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 original method of declaring data variables up front. 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).
| ld_e_user | TYPE SYUNAME , |
| ld_error_text | TYPE STRING . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_e_user | TYPE SYUNAME , |
| ld_i_appl | TYPE SKWF_APPL , |
| ld_error_text | TYPE STRING , |
| ld_i_s_loio | TYPE SKWF_IO . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name RSOD_SKWF_RESOURCE_IS_LOCKED or its description.
RSOD_SKWF_RESOURCE_IS_LOCKED - Check if a resource is locked RSOD_SKWF_RENAME_RESOURCE - Rename Resource RSOD_SKWF_QUERY - Resource Search Using Properties RSOD_SKWF_LOCK_RESOURCE - Locking a Resource RSOD_SKWF_GET_ROOT_CHILDREN - Return Root Objects RSOD_SKWF_GET_RES_BY_URL - Delivers a Resource from a URL