SAP DEQUEUE_E_XLFT_OBJ_LANG Function Module for Release lock on object E_XLFT_OBJ_LANG
DEQUEUE_E_XLFT_OBJ_LANG is a standard dequeue e xlft obj lang 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_XLFT_OBJ_LANG 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 xlft obj lang FM, simply by entering the name DEQUEUE_E_XLFT_OBJ_LANG into the relevant SAP transaction such as SE37 or SE38.
Function Group: /1BCDWBEN/SEN0025
Program Name: /1BCDWBEN/SAPLSEN0025
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function DEQUEUE_E_XLFT_OBJ_LANG 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_XLFT_OBJ_LANG'"Release lock on object E_XLFT_OBJ_LANG.
EXPORTING
* MODE_DXLFT_DELTA_REG = 'E' "Lock mode for table DXLFT_DELTA_REG
* _COLLECT = ' ' "Initially only collect lock
* AREA = "01th enqueue argument
* OBJNAME = "02th enqueue argument
* LANGUAGE = "03th enqueue argument
* X_AREA = ' ' "Fill argument 01 with initial value?
* X_OBJNAME = ' ' "Fill argument 02 with initial value?
* X_LANGUAGE = ' ' "Fill argument 03 with initial value?
* _SCOPE = '3' "
* _SYNCHRON = ' ' "Synchonous unlock
IMPORTING Parameters details for DEQUEUE_E_XLFT_OBJ_LANG
MODE_DXLFT_DELTA_REG - Lock mode for table DXLFT_DELTA_REG
Data type: ENQMODEDefault: 'E'
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)
AREA - 01th enqueue argument
Data type: DXLFT_DELTA_REG-AREAOptional: Yes
Call by Reference: No ( called with pass by value option)
OBJNAME - 02th enqueue argument
Data type: DXLFT_DELTA_REG-OBJNAMEOptional: Yes
Call by Reference: No ( called with pass by value option)
LANGUAGE - 03th enqueue argument
Data type: DXLFT_DELTA_REG-LANGUAGEOptional: Yes
Call by Reference: No ( called with pass by value option)
X_AREA - Fill argument 01 with initial value?
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_OBJNAME - Fill argument 02 with initial value?
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_LANGUAGE - Fill argument 03 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)
Copy and paste ABAP code example for DEQUEUE_E_XLFT_OBJ_LANG 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_dxlft_delta_reg | TYPE ENQMODE, " 'E' | |||
| lv__collect | TYPE DDENQCOLL, " ' ' | |||
| lv_area | TYPE DXLFT_DELTA_REG-AREA, " | |||
| lv_objname | TYPE DXLFT_DELTA_REG-OBJNAME, " | |||
| lv_language | TYPE DXLFT_DELTA_REG-LANGUAGE, " | |||
| lv_x_area | TYPE DXLFT_DELTA_REG, " SPACE | |||
| lv_x_objname | TYPE DXLFT_DELTA_REG, " SPACE | |||
| lv_x_language | TYPE DXLFT_DELTA_REG, " SPACE | |||
| lv__scope | TYPE DXLFT_DELTA_REG, " '3' | |||
| lv__synchron | TYPE DXLFT_DELTA_REG. " SPACE |
|   CALL FUNCTION 'DEQUEUE_E_XLFT_OBJ_LANG' "Release lock on object E_XLFT_OBJ_LANG |
| EXPORTING | ||
| MODE_DXLFT_DELTA_REG | = lv_mode_dxlft_delta_reg | |
| _COLLECT | = lv__collect | |
| AREA | = lv_area | |
| OBJNAME | = lv_objname | |
| LANGUAGE | = lv_language | |
| X_AREA | = lv_x_area | |
| X_OBJNAME | = lv_x_objname | |
| X_LANGUAGE | = lv_x_language | |
| _SCOPE | = lv__scope | |
| _SYNCHRON | = lv__synchron | |
| . " DEQUEUE_E_XLFT_OBJ_LANG | ||
ABAP code using 7.40 inline data declarations to call FM DEQUEUE_E_XLFT_OBJ_LANG
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_dxlft_delta_reg) | = 'E'. | |||
| DATA(ld__collect) | = ' '. | |||
| "SELECT single AREA FROM DXLFT_DELTA_REG INTO @DATA(ld_area). | ||||
| "SELECT single OBJNAME FROM DXLFT_DELTA_REG INTO @DATA(ld_objname). | ||||
| "SELECT single LANGUAGE FROM DXLFT_DELTA_REG INTO @DATA(ld_language). | ||||
| DATA(ld_x_area) | = ' '. | |||
| DATA(ld_x_objname) | = ' '. | |||
| DATA(ld_x_language) | = ' '. | |||
| DATA(ld__scope) | = '3'. | |||
| DATA(ld__synchron) | = ' '. | |||
Search for further information about these or an SAP related objects