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

Function /SAPSLL/CUSWLE_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/CUSWLE_ENQUEUE'".
EXPORTING
* IV_ENQUEUE_MODE = 'E' "
* IV_SCOPE = '3' "
IT_CUSWLE = "
IMPORTING
EV_LOCKING_USERID = "
ET_CUSWLE_ENQ = "
EXCEPTIONS
PARTIAL_FOREIGN_LOCK = 1 COMPLETE_FOREIGN_LOCK = 2
IMPORTING Parameters details for /SAPSLL/CUSWLE_ENQUEUE
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_CUSWLE -
Data type: /SAPSLL/CUSWLE_TOptional: No
Call by Reference: Yes
EXPORTING Parameters details for /SAPSLL/CUSWLE_ENQUEUE
EV_LOCKING_USERID -
Data type: SY-UNAMEOptional: No
Call by Reference: Yes
ET_CUSWLE_ENQ -
Data type: /SAPSLL/CUSWLE_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/CUSWLE_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_iv_enqueue_mode | TYPE ENQMODE, " 'E' | |||
| lv_ev_locking_userid | TYPE SY-UNAME, " | |||
| lv_partial_foreign_lock | TYPE SY, " | |||
| lv_iv_scope | TYPE DDENQSCOPE, " '3' | |||
| lv_et_cuswle_enq | TYPE /SAPSLL/CUSWLE_ST, " | |||
| lv_complete_foreign_lock | TYPE /SAPSLL/CUSWLE_ST, " | |||
| lv_it_cuswle | TYPE /SAPSLL/CUSWLE_T. " |
|   CALL FUNCTION '/SAPSLL/CUSWLE_ENQUEUE' " |
| EXPORTING | ||
| IV_ENQUEUE_MODE | = lv_iv_enqueue_mode | |
| IV_SCOPE | = lv_iv_scope | |
| IT_CUSWLE | = lv_it_cuswle | |
| IMPORTING | ||
| EV_LOCKING_USERID | = lv_ev_locking_userid | |
| ET_CUSWLE_ENQ | = lv_et_cuswle_enq | |
| EXCEPTIONS | ||
| PARTIAL_FOREIGN_LOCK = 1 | ||
| COMPLETE_FOREIGN_LOCK = 2 | ||
| . " /SAPSLL/CUSWLE_ENQUEUE | ||
ABAP code using 7.40 inline data declarations to call FM /SAPSLL/CUSWLE_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.| DATA(ld_iv_enqueue_mode) | = 'E'. | |||
| "SELECT single UNAME FROM SY INTO @DATA(ld_ev_locking_userid). | ||||
| DATA(ld_iv_scope) | = '3'. | |||
Search for further information about these or an SAP related objects