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

Function DEQUEUE_E_CCMSBI_METH 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_CCMSBI_METH'"Release lock on object E_CCMSBI_METH.
EXPORTING
* MODE_CCMSBI_MTE_METH = 'E' "Lock mode for table CCMSBI_MTE_METH
* VALID_TO_DATE = "09th enqueue argument
* VALID_TO_TIME = "10th 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_WHICHTOOL = ' ' "Fill argument 06 with initial value?
* X_VALID_FROM_DATE = ' ' "Fill argument 07 with initial value?
* X_VALID_FROM_TIME = ' ' "Fill argument 08 with initial value?
* MTSYSID = "01th enqueue argument
* X_VALID_TO_DATE = ' ' "Fill argument 09 with initial value?
* X_VALID_TO_TIME = ' ' "Fill argument 10 with initial value?
* _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
* WHICHTOOL = "06th enqueue argument
* VALID_FROM_DATE = "07th enqueue argument
* VALID_FROM_TIME = "08th enqueue argument
IMPORTING Parameters details for DEQUEUE_E_CCMSBI_METH
MODE_CCMSBI_MTE_METH - Lock mode for table CCMSBI_MTE_METH
Data type: ENQMODEDefault: 'E'
Optional: Yes
Call by Reference: No ( called with pass by value option)
VALID_TO_DATE - 09th enqueue argument
Data type: CCMSBI_MTE_METH-VALID_TO_DATEOptional: Yes
Call by Reference: No ( called with pass by value option)
VALID_TO_TIME - 10th enqueue argument
Data type: CCMSBI_MTE_METH-VALID_TO_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_WHICHTOOL - Fill argument 06 with initial value?
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_VALID_FROM_DATE - Fill argument 07 with initial value?
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_VALID_FROM_TIME - Fill argument 08 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: CCMSBI_MTE_METH-MTSYSIDOptional: Yes
Call by Reference: No ( called with pass by value option)
X_VALID_TO_DATE - Fill argument 09 with initial value?
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_VALID_TO_TIME - Fill argument 10 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)
MTMCNAME - 02th enqueue argument
Data type: CCMSBI_MTE_METH-MTMCNAMEOptional: Yes
Call by Reference: No ( called with pass by value option)
MTNUMRANGE - 03th enqueue argument
Data type: CCMSBI_MTE_METH-MTNUMRANGEOptional: Yes
Call by Reference: No ( called with pass by value option)
MTUID - 04th enqueue argument
Data type: CCMSBI_MTE_METH-MTUIDOptional: Yes
Call by Reference: No ( called with pass by value option)
MTCLASS - 05th enqueue argument
Data type: CCMSBI_MTE_METH-MTCLASSOptional: Yes
Call by Reference: No ( called with pass by value option)
WHICHTOOL - 06th enqueue argument
Data type: CCMSBI_MTE_METH-WHICHTOOLOptional: Yes
Call by Reference: No ( called with pass by value option)
VALID_FROM_DATE - 07th enqueue argument
Data type: CCMSBI_MTE_METH-VALID_FROM_DATEOptional: Yes
Call by Reference: No ( called with pass by value option)
VALID_FROM_TIME - 08th enqueue argument
Data type: CCMSBI_MTE_METH-VALID_FROM_TIMEOptional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for DEQUEUE_E_CCMSBI_METH 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_ccmsbi_mte_meth | TYPE ENQMODE, " 'E' | |||
| lv_valid_to_date | TYPE CCMSBI_MTE_METH-VALID_TO_DATE, " | |||
| lv_valid_to_time | TYPE CCMSBI_MTE_METH-VALID_TO_TIME, " | |||
| lv_x_mtsysid | TYPE CCMSBI_MTE_METH, " SPACE | |||
| lv_x_mtmcname | TYPE CCMSBI_MTE_METH, " SPACE | |||
| lv_x_mtnumrange | TYPE CCMSBI_MTE_METH, " SPACE | |||
| lv_x_mtuid | TYPE CCMSBI_MTE_METH, " SPACE | |||
| lv_x_mtclass | TYPE CCMSBI_MTE_METH, " SPACE | |||
| lv_x_whichtool | TYPE CCMSBI_MTE_METH, " SPACE | |||
| lv_x_valid_from_date | TYPE CCMSBI_MTE_METH, " SPACE | |||
| lv_x_valid_from_time | TYPE CCMSBI_MTE_METH, " SPACE | |||
| lv_mtsysid | TYPE CCMSBI_MTE_METH-MTSYSID, " | |||
| lv_x_valid_to_date | TYPE CCMSBI_MTE_METH, " SPACE | |||
| lv_x_valid_to_time | TYPE CCMSBI_MTE_METH, " SPACE | |||
| lv__scope | TYPE CCMSBI_MTE_METH, " '3' | |||
| lv__synchron | TYPE CCMSBI_MTE_METH, " SPACE | |||
| lv__collect | TYPE DDENQCOLL, " ' ' | |||
| lv_mtmcname | TYPE CCMSBI_MTE_METH-MTMCNAME, " | |||
| lv_mtnumrange | TYPE CCMSBI_MTE_METH-MTNUMRANGE, " | |||
| lv_mtuid | TYPE CCMSBI_MTE_METH-MTUID, " | |||
| lv_mtclass | TYPE CCMSBI_MTE_METH-MTCLASS, " | |||
| lv_whichtool | TYPE CCMSBI_MTE_METH-WHICHTOOL, " | |||
| lv_valid_from_date | TYPE CCMSBI_MTE_METH-VALID_FROM_DATE, " | |||
| lv_valid_from_time | TYPE CCMSBI_MTE_METH-VALID_FROM_TIME. " |
|   CALL FUNCTION 'DEQUEUE_E_CCMSBI_METH' "Release lock on object E_CCMSBI_METH |
| EXPORTING | ||
| MODE_CCMSBI_MTE_METH | = lv_mode_ccmsbi_mte_meth | |
| VALID_TO_DATE | = lv_valid_to_date | |
| VALID_TO_TIME | = lv_valid_to_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_WHICHTOOL | = lv_x_whichtool | |
| X_VALID_FROM_DATE | = lv_x_valid_from_date | |
| X_VALID_FROM_TIME | = lv_x_valid_from_time | |
| MTSYSID | = lv_mtsysid | |
| X_VALID_TO_DATE | = lv_x_valid_to_date | |
| X_VALID_TO_TIME | = lv_x_valid_to_time | |
| _SCOPE | = lv__scope | |
| _SYNCHRON | = lv__synchron | |
| _COLLECT | = lv__collect | |
| MTMCNAME | = lv_mtmcname | |
| MTNUMRANGE | = lv_mtnumrange | |
| MTUID | = lv_mtuid | |
| MTCLASS | = lv_mtclass | |
| WHICHTOOL | = lv_whichtool | |
| VALID_FROM_DATE | = lv_valid_from_date | |
| VALID_FROM_TIME | = lv_valid_from_time | |
| . " DEQUEUE_E_CCMSBI_METH | ||
ABAP code using 7.40 inline data declarations to call FM DEQUEUE_E_CCMSBI_METH
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_ccmsbi_mte_meth) | = 'E'. | |||
| "SELECT single VALID_TO_DATE FROM CCMSBI_MTE_METH INTO @DATA(ld_valid_to_date). | ||||
| "SELECT single VALID_TO_TIME FROM CCMSBI_MTE_METH INTO @DATA(ld_valid_to_time). | ||||
| DATA(ld_x_mtsysid) | = ' '. | |||
| DATA(ld_x_mtmcname) | = ' '. | |||
| DATA(ld_x_mtnumrange) | = ' '. | |||
| DATA(ld_x_mtuid) | = ' '. | |||
| DATA(ld_x_mtclass) | = ' '. | |||
| DATA(ld_x_whichtool) | = ' '. | |||
| DATA(ld_x_valid_from_date) | = ' '. | |||
| DATA(ld_x_valid_from_time) | = ' '. | |||
| "SELECT single MTSYSID FROM CCMSBI_MTE_METH INTO @DATA(ld_mtsysid). | ||||
| DATA(ld_x_valid_to_date) | = ' '. | |||
| DATA(ld_x_valid_to_time) | = ' '. | |||
| DATA(ld__scope) | = '3'. | |||
| DATA(ld__synchron) | = ' '. | |||
| DATA(ld__collect) | = ' '. | |||
| "SELECT single MTMCNAME FROM CCMSBI_MTE_METH INTO @DATA(ld_mtmcname). | ||||
| "SELECT single MTNUMRANGE FROM CCMSBI_MTE_METH INTO @DATA(ld_mtnumrange). | ||||
| "SELECT single MTUID FROM CCMSBI_MTE_METH INTO @DATA(ld_mtuid). | ||||
| "SELECT single MTCLASS FROM CCMSBI_MTE_METH INTO @DATA(ld_mtclass). | ||||
| "SELECT single WHICHTOOL FROM CCMSBI_MTE_METH INTO @DATA(ld_whichtool). | ||||
| "SELECT single VALID_FROM_DATE FROM CCMSBI_MTE_METH INTO @DATA(ld_valid_from_date). | ||||
| "SELECT single VALID_FROM_TIME FROM CCMSBI_MTE_METH INTO @DATA(ld_valid_from_time). | ||||
Search for further information about these or an SAP related objects