SAP DEQUEUE_E_BRF110 Function Module for Release lock on object E_BRF110
DEQUEUE_E_BRF110 is a standard dequeue e brf110 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Release lock on object E_BRF110 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 dequeue e brf110 FM, simply by entering the name DEQUEUE_E_BRF110 into the relevant SAP transaction such as SE37 or SE38.
Function Group: /1BCDWBEN/SEN0016
Program Name: /1BCDWBEN/SAPLSEN0016
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function DEQUEUE_E_BRF110 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 'DEQUEUE_E_BRF110'"Release lock on object E_BRF110.
EXPORTING
* MODE_TBRF110 = 'E' "Lock mode for table TBRF110
* X_APPLCLASS = ' ' "Fill argument 03 with initial value?
* X_EVENT = ' ' "Fill argument 04 with initial value?
* X_VERSION = ' ' "Fill argument 05 with initial value?
* X_LANGU = ' ' "Fill argument 06 with initial value?
* _SCOPE = '3' "
* _SYNCHRON = ' ' "Synchonous unlock
* _COLLECT = ' ' "Initially only collect lock
* MODE_TBRF110T = 'E' "Lock mode for table TBRF110T
* CLIENT = SY-MANDT "01th enqueue argument
* IMPORT_STATUS = "02th enqueue argument
* APPLCLASS = "03th enqueue argument
* EVENT = "04th enqueue argument
* VERSION = "05th enqueue argument
* LANGU = "06th enqueue argument
* X_IMPORT_STATUS = ' ' "Fill argument 02 with initial value?
IMPORTING Parameters details for DEQUEUE_E_BRF110
MODE_TBRF110 - Lock mode for table TBRF110
Data type: ENQMODEDefault: 'E'
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_APPLCLASS - Fill argument 03 with initial value?
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_EVENT - Fill argument 04 with initial value?
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_VERSION - Fill argument 05 with initial value?
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_LANGU - Fill argument 06 with initial value?
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
_SCOPE -
Data type:Default: '3'
Optional: Yes
Call by Reference: No ( called with pass by value option)
_SYNCHRON - Synchonous unlock
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
_COLLECT - Initially only collect lock
Data type: DDENQCOLLDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
MODE_TBRF110T - Lock mode for table TBRF110T
Data type: ENQMODEDefault: 'E'
Optional: Yes
Call by Reference: No ( called with pass by value option)
CLIENT - 01th enqueue argument
Data type: TBRF110-CLIENTDefault: SY-MANDT
Optional: Yes
Call by Reference: No ( called with pass by value option)
IMPORT_STATUS - 02th enqueue argument
Data type: TBRF110-IMPORT_STATUSOptional: Yes
Call by Reference: No ( called with pass by value option)
APPLCLASS - 03th enqueue argument
Data type: TBRF110-APPLCLASSOptional: Yes
Call by Reference: No ( called with pass by value option)
EVENT - 04th enqueue argument
Data type: TBRF110-EVENTOptional: Yes
Call by Reference: No ( called with pass by value option)
VERSION - 05th enqueue argument
Data type: TBRF110-VERSIONOptional: Yes
Call by Reference: No ( called with pass by value option)
LANGU - 06th enqueue argument
Data type: TBRF110T-LANGUOptional: Yes
Call by Reference: No ( called with pass by value option)
X_IMPORT_STATUS - Fill argument 02 with initial value?
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for DEQUEUE_E_BRF110 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_mode_tbrf110 | TYPE ENQMODE, " 'E' | |||
| lv_x_applclass | TYPE ENQMODE, " SPACE | |||
| lv_x_event | TYPE ENQMODE, " SPACE | |||
| lv_x_version | TYPE ENQMODE, " SPACE | |||
| lv_x_langu | TYPE ENQMODE, " SPACE | |||
| lv__scope | TYPE ENQMODE, " '3' | |||
| lv__synchron | TYPE ENQMODE, " SPACE | |||
| lv__collect | TYPE DDENQCOLL, " ' ' | |||
| lv_mode_tbrf110t | TYPE ENQMODE, " 'E' | |||
| lv_client | TYPE TBRF110-CLIENT, " SY-MANDT | |||
| lv_import_status | TYPE TBRF110-IMPORT_STATUS, " | |||
| lv_applclass | TYPE TBRF110-APPLCLASS, " | |||
| lv_event | TYPE TBRF110-EVENT, " | |||
| lv_version | TYPE TBRF110-VERSION, " | |||
| lv_langu | TYPE TBRF110T-LANGU, " | |||
| lv_x_import_status | TYPE TBRF110T. " SPACE |
|   CALL FUNCTION 'DEQUEUE_E_BRF110' "Release lock on object E_BRF110 |
| EXPORTING | ||
| MODE_TBRF110 | = lv_mode_tbrf110 | |
| X_APPLCLASS | = lv_x_applclass | |
| X_EVENT | = lv_x_event | |
| X_VERSION | = lv_x_version | |
| X_LANGU | = lv_x_langu | |
| _SCOPE | = lv__scope | |
| _SYNCHRON | = lv__synchron | |
| _COLLECT | = lv__collect | |
| MODE_TBRF110T | = lv_mode_tbrf110t | |
| CLIENT | = lv_client | |
| IMPORT_STATUS | = lv_import_status | |
| APPLCLASS | = lv_applclass | |
| EVENT | = lv_event | |
| VERSION | = lv_version | |
| LANGU | = lv_langu | |
| X_IMPORT_STATUS | = lv_x_import_status | |
| . " DEQUEUE_E_BRF110 | ||
ABAP code using 7.40 inline data declarations to call FM DEQUEUE_E_BRF110
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_mode_tbrf110) | = 'E'. | |||
| DATA(ld_x_applclass) | = ' '. | |||
| DATA(ld_x_event) | = ' '. | |||
| DATA(ld_x_version) | = ' '. | |||
| DATA(ld_x_langu) | = ' '. | |||
| DATA(ld__scope) | = '3'. | |||
| DATA(ld__synchron) | = ' '. | |||
| DATA(ld__collect) | = ' '. | |||
| DATA(ld_mode_tbrf110t) | = 'E'. | |||
| "SELECT single CLIENT FROM TBRF110 INTO @DATA(ld_client). | ||||
| DATA(ld_client) | = SY-MANDT. | |||
| "SELECT single IMPORT_STATUS FROM TBRF110 INTO @DATA(ld_import_status). | ||||
| "SELECT single APPLCLASS FROM TBRF110 INTO @DATA(ld_applclass). | ||||
| "SELECT single EVENT FROM TBRF110 INTO @DATA(ld_event). | ||||
| "SELECT single VERSION FROM TBRF110 INTO @DATA(ld_version). | ||||
| "SELECT single LANGU FROM TBRF110T INTO @DATA(ld_langu). | ||||
| DATA(ld_x_import_status) | = ' '. | |||
Search for further information about these or an SAP related objects