SAP DEQUEUE_E_BI_THRH Function Module for Release lock on object E_BI_THRH
DEQUEUE_E_BI_THRH is a standard dequeue e bi thrh 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_BI_THRH 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 bi thrh FM, simply by entering the name DEQUEUE_E_BI_THRH into the relevant SAP transaction such as SE37 or SE38.
Function Group: /1BCDWBEN/SEN0012
Program Name: /1BCDWBEN/SAPLSEN0012
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function DEQUEUE_E_BI_THRH 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_BI_THRH'"Release lock on object E_BI_THRH.
EXPORTING
* MODE_CCMSBITHRH = 'E' "Lock mode for table CCMSBITHRH
* VALTO_TIME = "09th enqueue argument
* X_MTSYSID = ' ' "Fill argument 01 with initial value?
* X_MTMCNAME = ' ' "Fill argument 02 with initial value?
* X_MTNUMRANGE = ' ' "Fill argument 03 with initial value?
* X_MTUID = ' ' "Fill argument 04 with initial value?
* X_MTCLASS = ' ' "Fill argument 05 with initial value?
* X_VALFR_DATE = ' ' "Fill argument 06 with initial value?
* X_VALFR_TIME = ' ' "Fill argument 07 with initial value?
* X_VALTO_DATE = ' ' "Fill argument 08 with initial value?
* X_VALTO_TIME = ' ' "Fill argument 09 with initial value?
* MTSYSID = "01th enqueue argument
* _SCOPE = '3' "
* _SYNCHRON = ' ' "Synchonous unlock
* _COLLECT = ' ' "Initially only collect lock
* MTMCNAME = "02th enqueue argument
* MTNUMRANGE = "03th enqueue argument
* MTUID = "04th enqueue argument
* MTCLASS = "05th enqueue argument
* VALFR_DATE = "06th enqueue argument
* VALFR_TIME = "07th enqueue argument
* VALTO_DATE = "08th enqueue argument
IMPORTING Parameters details for DEQUEUE_E_BI_THRH
MODE_CCMSBITHRH - Lock mode for table CCMSBITHRH
Data type: ENQMODEDefault: 'E'
Optional: Yes
Call by Reference: No ( called with pass by value option)
VALTO_TIME - 09th enqueue argument
Data type: CCMSBITHRH-VALTO_TIMEOptional: Yes
Call by Reference: No ( called with pass by value option)
X_MTSYSID - Fill argument 01 with initial value?
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_MTMCNAME - Fill argument 02 with initial value?
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_MTNUMRANGE - Fill argument 03 with initial value?
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_MTUID - Fill argument 04 with initial value?
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_MTCLASS - Fill argument 05 with initial value?
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_VALFR_DATE - Fill argument 06 with initial value?
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_VALFR_TIME - Fill argument 07 with initial value?
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_VALTO_DATE - Fill argument 08 with initial value?
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_VALTO_TIME - Fill argument 09 with initial value?
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
MTSYSID - 01th enqueue argument
Data type: CCMSBITHRH-MTSYSIDOptional: 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)
MTMCNAME - 02th enqueue argument
Data type: CCMSBITHRH-MTMCNAMEOptional: Yes
Call by Reference: No ( called with pass by value option)
MTNUMRANGE - 03th enqueue argument
Data type: CCMSBITHRH-MTNUMRANGEOptional: Yes
Call by Reference: No ( called with pass by value option)
MTUID - 04th enqueue argument
Data type: CCMSBITHRH-MTUIDOptional: Yes
Call by Reference: No ( called with pass by value option)
MTCLASS - 05th enqueue argument
Data type: CCMSBITHRH-MTCLASSOptional: Yes
Call by Reference: No ( called with pass by value option)
VALFR_DATE - 06th enqueue argument
Data type: CCMSBITHRH-VALFR_DATEOptional: Yes
Call by Reference: No ( called with pass by value option)
VALFR_TIME - 07th enqueue argument
Data type: CCMSBITHRH-VALFR_TIMEOptional: Yes
Call by Reference: No ( called with pass by value option)
VALTO_DATE - 08th enqueue argument
Data type: CCMSBITHRH-VALTO_DATEOptional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for DEQUEUE_E_BI_THRH 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_ccmsbithrh | TYPE ENQMODE, " 'E' | |||
| lv_valto_time | TYPE CCMSBITHRH-VALTO_TIME, " | |||
| lv_x_mtsysid | TYPE CCMSBITHRH, " SPACE | |||
| lv_x_mtmcname | TYPE CCMSBITHRH, " SPACE | |||
| lv_x_mtnumrange | TYPE CCMSBITHRH, " SPACE | |||
| lv_x_mtuid | TYPE CCMSBITHRH, " SPACE | |||
| lv_x_mtclass | TYPE CCMSBITHRH, " SPACE | |||
| lv_x_valfr_date | TYPE CCMSBITHRH, " SPACE | |||
| lv_x_valfr_time | TYPE CCMSBITHRH, " SPACE | |||
| lv_x_valto_date | TYPE CCMSBITHRH, " SPACE | |||
| lv_x_valto_time | TYPE CCMSBITHRH, " SPACE | |||
| lv_mtsysid | TYPE CCMSBITHRH-MTSYSID, " | |||
| lv__scope | TYPE CCMSBITHRH, " '3' | |||
| lv__synchron | TYPE CCMSBITHRH, " SPACE | |||
| lv__collect | TYPE DDENQCOLL, " ' ' | |||
| lv_mtmcname | TYPE CCMSBITHRH-MTMCNAME, " | |||
| lv_mtnumrange | TYPE CCMSBITHRH-MTNUMRANGE, " | |||
| lv_mtuid | TYPE CCMSBITHRH-MTUID, " | |||
| lv_mtclass | TYPE CCMSBITHRH-MTCLASS, " | |||
| lv_valfr_date | TYPE CCMSBITHRH-VALFR_DATE, " | |||
| lv_valfr_time | TYPE CCMSBITHRH-VALFR_TIME, " | |||
| lv_valto_date | TYPE CCMSBITHRH-VALTO_DATE. " |
|   CALL FUNCTION 'DEQUEUE_E_BI_THRH' "Release lock on object E_BI_THRH |
| EXPORTING | ||
| MODE_CCMSBITHRH | = lv_mode_ccmsbithrh | |
| VALTO_TIME | = lv_valto_time | |
| X_MTSYSID | = lv_x_mtsysid | |
| X_MTMCNAME | = lv_x_mtmcname | |
| X_MTNUMRANGE | = lv_x_mtnumrange | |
| X_MTUID | = lv_x_mtuid | |
| X_MTCLASS | = lv_x_mtclass | |
| X_VALFR_DATE | = lv_x_valfr_date | |
| X_VALFR_TIME | = lv_x_valfr_time | |
| X_VALTO_DATE | = lv_x_valto_date | |
| X_VALTO_TIME | = lv_x_valto_time | |
| MTSYSID | = lv_mtsysid | |
| _SCOPE | = lv__scope | |
| _SYNCHRON | = lv__synchron | |
| _COLLECT | = lv__collect | |
| MTMCNAME | = lv_mtmcname | |
| MTNUMRANGE | = lv_mtnumrange | |
| MTUID | = lv_mtuid | |
| MTCLASS | = lv_mtclass | |
| VALFR_DATE | = lv_valfr_date | |
| VALFR_TIME | = lv_valfr_time | |
| VALTO_DATE | = lv_valto_date | |
| . " DEQUEUE_E_BI_THRH | ||
ABAP code using 7.40 inline data declarations to call FM DEQUEUE_E_BI_THRH
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_ccmsbithrh) | = 'E'. | |||
| "SELECT single VALTO_TIME FROM CCMSBITHRH INTO @DATA(ld_valto_time). | ||||
| DATA(ld_x_mtsysid) | = ' '. | |||
| DATA(ld_x_mtmcname) | = ' '. | |||
| DATA(ld_x_mtnumrange) | = ' '. | |||
| DATA(ld_x_mtuid) | = ' '. | |||
| DATA(ld_x_mtclass) | = ' '. | |||
| DATA(ld_x_valfr_date) | = ' '. | |||
| DATA(ld_x_valfr_time) | = ' '. | |||
| DATA(ld_x_valto_date) | = ' '. | |||
| DATA(ld_x_valto_time) | = ' '. | |||
| "SELECT single MTSYSID FROM CCMSBITHRH INTO @DATA(ld_mtsysid). | ||||
| DATA(ld__scope) | = '3'. | |||
| DATA(ld__synchron) | = ' '. | |||
| DATA(ld__collect) | = ' '. | |||
| "SELECT single MTMCNAME FROM CCMSBITHRH INTO @DATA(ld_mtmcname). | ||||
| "SELECT single MTNUMRANGE FROM CCMSBITHRH INTO @DATA(ld_mtnumrange). | ||||
| "SELECT single MTUID FROM CCMSBITHRH INTO @DATA(ld_mtuid). | ||||
| "SELECT single MTCLASS FROM CCMSBITHRH INTO @DATA(ld_mtclass). | ||||
| "SELECT single VALFR_DATE FROM CCMSBITHRH INTO @DATA(ld_valfr_date). | ||||
| "SELECT single VALFR_TIME FROM CCMSBITHRH INTO @DATA(ld_valfr_time). | ||||
| "SELECT single VALTO_DATE FROM CCMSBITHRH INTO @DATA(ld_valto_date). | ||||
Search for further information about these or an SAP related objects