SAP ENQUEUE_E_BI_METH Function Module for Request lock for object E_BI_METH









ENQUEUE_E_BI_METH is a standard enqueue e bi 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 Request lock for object E_BI_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 enqueue e bi meth FM, simply by entering the name ENQUEUE_E_BI_METH 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 ENQUEUE_E_BI_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 'ENQUEUE_E_BI_METH'"Request lock for object E_BI_METH
EXPORTING
* MODE_CCMSBIMETH = 'E' "Lock mode for table CCMSBIMETH
* VALTO_DATE = "09th enqueue argument
* VALTO_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_VALFR_DATE = ' ' "Fill argument 07 with initial value?
* X_VALFR_TIME = ' ' "Fill argument 08 with initial value?
* MTSYSID = "01th enqueue argument
* X_VALTO_DATE = ' ' "Fill argument 09 with initial value?
* X_VALTO_TIME = ' ' "Fill argument 10 with initial value?
* _SCOPE = '2' "
* _WAIT = ' ' "
* _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
* VALFR_DATE = "07th enqueue argument
* VALFR_TIME = "08th enqueue argument

EXCEPTIONS
FOREIGN_LOCK = 1 SYSTEM_FAILURE = 2
.



IMPORTING Parameters details for ENQUEUE_E_BI_METH

MODE_CCMSBIMETH - Lock mode for table CCMSBIMETH

Data type: ENQMODE
Default: 'E'
Optional: Yes
Call by Reference: No ( called with pass by value option)

VALTO_DATE - 09th enqueue argument

Data type: CCMSBIMETH-VALTO_DATE
Optional: Yes
Call by Reference: No ( called with pass by value option)

VALTO_TIME - 10th enqueue argument

Data type: CCMSBIMETH-VALTO_TIME
Optional: 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_VALFR_DATE - Fill argument 07 with initial value?

Data type:
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

X_VALFR_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: CCMSBIMETH-MTSYSID
Optional: Yes
Call by Reference: No ( called with pass by value option)

X_VALTO_DATE - Fill argument 09 with initial value?

Data type:
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

X_VALTO_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: '2'
Optional: Yes
Call by Reference: No ( called with pass by value option)

_WAIT -

Data type:
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

_COLLECT - Initially only collect lock

Data type: DDENQCOLL
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

MTMCNAME - 02th enqueue argument

Data type: CCMSBIMETH-MTMCNAME
Optional: Yes
Call by Reference: No ( called with pass by value option)

MTNUMRANGE - 03th enqueue argument

Data type: CCMSBIMETH-MTNUMRANGE
Optional: Yes
Call by Reference: No ( called with pass by value option)

MTUID - 04th enqueue argument

Data type: CCMSBIMETH-MTUID
Optional: Yes
Call by Reference: No ( called with pass by value option)

MTCLASS - 05th enqueue argument

Data type: CCMSBIMETH-MTCLASS
Optional: Yes
Call by Reference: No ( called with pass by value option)

WHICHTOOL - 06th enqueue argument

Data type: CCMSBIMETH-WHICHTOOL
Optional: Yes
Call by Reference: No ( called with pass by value option)

VALFR_DATE - 07th enqueue argument

Data type: CCMSBIMETH-VALFR_DATE
Optional: Yes
Call by Reference: No ( called with pass by value option)

VALFR_TIME - 08th enqueue argument

Data type: CCMSBIMETH-VALFR_TIME
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

FOREIGN_LOCK - Object already locked

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

SYSTEM_FAILURE - Internal error from enqueue server

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for ENQUEUE_E_BI_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_foreign_lock  TYPE STRING, "   
lv_mode_ccmsbimeth  TYPE ENQMODE, "   'E'
lv_valto_date  TYPE CCMSBIMETH-VALTO_DATE, "   
lv_valto_time  TYPE CCMSBIMETH-VALTO_TIME, "   
lv_x_mtsysid  TYPE CCMSBIMETH, "   SPACE
lv_x_mtmcname  TYPE CCMSBIMETH, "   SPACE
lv_x_mtnumrange  TYPE CCMSBIMETH, "   SPACE
lv_x_mtuid  TYPE CCMSBIMETH, "   SPACE
lv_x_mtclass  TYPE CCMSBIMETH, "   SPACE
lv_x_whichtool  TYPE CCMSBIMETH, "   SPACE
lv_x_valfr_date  TYPE CCMSBIMETH, "   SPACE
lv_x_valfr_time  TYPE CCMSBIMETH, "   SPACE
lv_mtsysid  TYPE CCMSBIMETH-MTSYSID, "   
lv_system_failure  TYPE CCMSBIMETH, "   
lv_x_valto_date  TYPE CCMSBIMETH, "   SPACE
lv_x_valto_time  TYPE CCMSBIMETH, "   SPACE
lv__scope  TYPE CCMSBIMETH, "   '2'
lv__wait  TYPE CCMSBIMETH, "   SPACE
lv__collect  TYPE DDENQCOLL, "   ' '
lv_mtmcname  TYPE CCMSBIMETH-MTMCNAME, "   
lv_mtnumrange  TYPE CCMSBIMETH-MTNUMRANGE, "   
lv_mtuid  TYPE CCMSBIMETH-MTUID, "   
lv_mtclass  TYPE CCMSBIMETH-MTCLASS, "   
lv_whichtool  TYPE CCMSBIMETH-WHICHTOOL, "   
lv_valfr_date  TYPE CCMSBIMETH-VALFR_DATE, "   
lv_valfr_time  TYPE CCMSBIMETH-VALFR_TIME. "   

  CALL FUNCTION 'ENQUEUE_E_BI_METH'  "Request lock for object E_BI_METH
    EXPORTING
         MODE_CCMSBIMETH = lv_mode_ccmsbimeth
         VALTO_DATE = lv_valto_date
         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_WHICHTOOL = lv_x_whichtool
         X_VALFR_DATE = lv_x_valfr_date
         X_VALFR_TIME = lv_x_valfr_time
         MTSYSID = lv_mtsysid
         X_VALTO_DATE = lv_x_valto_date
         X_VALTO_TIME = lv_x_valto_time
         _SCOPE = lv__scope
         _WAIT = lv__wait
         _COLLECT = lv__collect
         MTMCNAME = lv_mtmcname
         MTNUMRANGE = lv_mtnumrange
         MTUID = lv_mtuid
         MTCLASS = lv_mtclass
         WHICHTOOL = lv_whichtool
         VALFR_DATE = lv_valfr_date
         VALFR_TIME = lv_valfr_time
    EXCEPTIONS
        FOREIGN_LOCK = 1
        SYSTEM_FAILURE = 2
. " ENQUEUE_E_BI_METH




ABAP code using 7.40 inline data declarations to call FM ENQUEUE_E_BI_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_ccmsbimeth) = 'E'.
 
"SELECT single VALTO_DATE FROM CCMSBIMETH INTO @DATA(ld_valto_date).
 
"SELECT single VALTO_TIME FROM CCMSBIMETH 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_whichtool) = ' '.
 
DATA(ld_x_valfr_date) = ' '.
 
DATA(ld_x_valfr_time) = ' '.
 
"SELECT single MTSYSID FROM CCMSBIMETH INTO @DATA(ld_mtsysid).
 
 
DATA(ld_x_valto_date) = ' '.
 
DATA(ld_x_valto_time) = ' '.
 
DATA(ld__scope) = '2'.
 
DATA(ld__wait) = ' '.
 
DATA(ld__collect) = ' '.
 
"SELECT single MTMCNAME FROM CCMSBIMETH INTO @DATA(ld_mtmcname).
 
"SELECT single MTNUMRANGE FROM CCMSBIMETH INTO @DATA(ld_mtnumrange).
 
"SELECT single MTUID FROM CCMSBIMETH INTO @DATA(ld_mtuid).
 
"SELECT single MTCLASS FROM CCMSBIMETH INTO @DATA(ld_mtclass).
 
"SELECT single WHICHTOOL FROM CCMSBIMETH INTO @DATA(ld_whichtool).
 
"SELECT single VALFR_DATE FROM CCMSBIMETH INTO @DATA(ld_valfr_date).
 
"SELECT single VALFR_TIME FROM CCMSBIMETH INTO @DATA(ld_valfr_time).
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!