SAP /SAPSLL/CUSWLD_ENQUEUE Function Module for
/SAPSLL/CUSWLD_ENQUEUE is a standard /sapsll/cuswld enqueue 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 /sapsll/cuswld enqueue FM, simply by entering the name /SAPSLL/CUSWLD_ENQUEUE into the relevant SAP transaction such as SE37 or SE38.
Function Group: /SAPSLL/CUSWLD_INTACT
Program Name: /SAPSLL/SAPLCUSWLD_INTACT
Main Program: /SAPSLL/SAPLCUSWLD_INTACT
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function /SAPSLL/CUSWLD_ENQUEUE 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 '/SAPSLL/CUSWLD_ENQUEUE'".
EXPORTING
II_OBJ_CUSWLD = "
* IV_ENQUEUE_MODE = 'E' "
* IV_SCOPE = '3' "
IT_CUSWLD = "
IMPORTING
EV_LOCKING_USERID = "
ET_CUSWLD_ENQ = "
EXCEPTIONS
PARTIAL_FOREIGN_LOCK = 1 COMPLETE_FOREIGN_LOCK = 2
IMPORTING Parameters details for /SAPSLL/CUSWLD_ENQUEUE
II_OBJ_CUSWLD -
Data type: /SAPSLL/CL_OBJOptional: No
Call by Reference: Yes
IV_ENQUEUE_MODE -
Data type: ENQMODEDefault: 'E'
Optional: No
Call by Reference: Yes
IV_SCOPE -
Data type: DDENQSCOPEDefault: '3'
Optional: Yes
Call by Reference: Yes
IT_CUSWLD -
Data type: /SAPSLL/CUSWLD_TOptional: No
Call by Reference: Yes
EXPORTING Parameters details for /SAPSLL/CUSWLD_ENQUEUE
EV_LOCKING_USERID -
Data type: SY-UNAMEOptional: No
Call by Reference: Yes
ET_CUSWLD_ENQ -
Data type: /SAPSLL/CUSWLD_STOptional: No
Call by Reference: Yes
EXCEPTIONS details
PARTIAL_FOREIGN_LOCK -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
COMPLETE_FOREIGN_LOCK -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for /SAPSLL/CUSWLD_ENQUEUE 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_ii_obj_cuswld | TYPE /SAPSLL/CL_OBJ, " | |||
| lv_ev_locking_userid | TYPE SY-UNAME, " | |||
| lv_partial_foreign_lock | TYPE SY, " | |||
| lv_et_cuswld_enq | TYPE /SAPSLL/CUSWLD_ST, " | |||
| lv_iv_enqueue_mode | TYPE ENQMODE, " 'E' | |||
| lv_complete_foreign_lock | TYPE ENQMODE, " | |||
| lv_iv_scope | TYPE DDENQSCOPE, " '3' | |||
| lv_it_cuswld | TYPE /SAPSLL/CUSWLD_T. " |
|   CALL FUNCTION '/SAPSLL/CUSWLD_ENQUEUE' " |
| EXPORTING | ||
| II_OBJ_CUSWLD | = lv_ii_obj_cuswld | |
| IV_ENQUEUE_MODE | = lv_iv_enqueue_mode | |
| IV_SCOPE | = lv_iv_scope | |
| IT_CUSWLD | = lv_it_cuswld | |
| IMPORTING | ||
| EV_LOCKING_USERID | = lv_ev_locking_userid | |
| ET_CUSWLD_ENQ | = lv_et_cuswld_enq | |
| EXCEPTIONS | ||
| PARTIAL_FOREIGN_LOCK = 1 | ||
| COMPLETE_FOREIGN_LOCK = 2 | ||
| . " /SAPSLL/CUSWLD_ENQUEUE | ||
ABAP code using 7.40 inline data declarations to call FM /SAPSLL/CUSWLD_ENQUEUE
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 UNAME FROM SY INTO @DATA(ld_ev_locking_userid). | ||||
| DATA(ld_iv_enqueue_mode) | = 'E'. | |||
| DATA(ld_iv_scope) | = '3'. | |||
Search for further information about these or an SAP related objects