SAP ENQUEUE_E_CCMSBI_DATA Function Module for Request lock for object E_CCMSBI_DATA









ENQUEUE_E_CCMSBI_DATA is a standard enqueue e ccmsbi data 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_CCMSBI_DATA 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 ccmsbi data FM, simply by entering the name ENQUEUE_E_CCMSBI_DATA 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 ENQUEUE_E_CCMSBI_DATA 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_CCMSBI_DATA'"Request lock for object E_CCMSBI_DATA
EXPORTING
* MODE_CCMSBI_MTE_DATA = 'E' "Lock mode for table CCMSBI_MTE_DATA
* VALID_TO_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_VALID_FROM_DATE = ' ' "Fill argument 06 with initial value?
* X_VALID_FROM_TIME = ' ' "Fill argument 07 with initial value?
* X_VALID_TO_DATE = ' ' "Fill argument 08 with initial value?
* X_VALID_TO_TIME = ' ' "Fill argument 09 with initial value?
* MTSYSID = "01th enqueue argument
* _SCOPE = '2' "
* _WAIT = ' ' "
* _COLLECT = ' ' "Initially only collect lock
* MTMCNAME = "02th enqueue argument
* MTNUMRANGE = "03th enqueue argument
* MTUID = "04th enqueue argument
* MTCLASS = "05th enqueue argument
* VALID_FROM_DATE = "06th enqueue argument
* VALID_FROM_TIME = "07th enqueue argument
* VALID_TO_DATE = "08th enqueue argument

EXCEPTIONS
FOREIGN_LOCK = 1 SYSTEM_FAILURE = 2
.



IMPORTING Parameters details for ENQUEUE_E_CCMSBI_DATA

MODE_CCMSBI_MTE_DATA - Lock mode for table CCMSBI_MTE_DATA

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

VALID_TO_TIME - 09th enqueue argument

Data type: CCMSBI_MTE_DATA-VALID_TO_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_VALID_FROM_DATE - 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_TIME - Fill argument 07 with initial value?

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

X_VALID_TO_DATE - Fill argument 08 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 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: CCMSBI_MTE_DATA-MTSYSID
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: CCMSBI_MTE_DATA-MTMCNAME
Optional: Yes
Call by Reference: No ( called with pass by value option)

MTNUMRANGE - 03th enqueue argument

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

MTUID - 04th enqueue argument

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

MTCLASS - 05th enqueue argument

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

VALID_FROM_DATE - 06th enqueue argument

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

VALID_FROM_TIME - 07th enqueue argument

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

VALID_TO_DATE - 08th enqueue argument

Data type: CCMSBI_MTE_DATA-VALID_TO_DATE
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_CCMSBI_DATA 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_ccmsbi_mte_data  TYPE ENQMODE, "   'E'
lv_valid_to_time  TYPE CCMSBI_MTE_DATA-VALID_TO_TIME, "   
lv_x_mtsysid  TYPE CCMSBI_MTE_DATA, "   SPACE
lv_x_mtmcname  TYPE CCMSBI_MTE_DATA, "   SPACE
lv_x_mtnumrange  TYPE CCMSBI_MTE_DATA, "   SPACE
lv_x_mtuid  TYPE CCMSBI_MTE_DATA, "   SPACE
lv_x_mtclass  TYPE CCMSBI_MTE_DATA, "   SPACE
lv_x_valid_from_date  TYPE CCMSBI_MTE_DATA, "   SPACE
lv_x_valid_from_time  TYPE CCMSBI_MTE_DATA, "   SPACE
lv_x_valid_to_date  TYPE CCMSBI_MTE_DATA, "   SPACE
lv_x_valid_to_time  TYPE CCMSBI_MTE_DATA, "   SPACE
lv_mtsysid  TYPE CCMSBI_MTE_DATA-MTSYSID, "   
lv_system_failure  TYPE CCMSBI_MTE_DATA, "   
lv__scope  TYPE CCMSBI_MTE_DATA, "   '2'
lv__wait  TYPE CCMSBI_MTE_DATA, "   SPACE
lv__collect  TYPE DDENQCOLL, "   ' '
lv_mtmcname  TYPE CCMSBI_MTE_DATA-MTMCNAME, "   
lv_mtnumrange  TYPE CCMSBI_MTE_DATA-MTNUMRANGE, "   
lv_mtuid  TYPE CCMSBI_MTE_DATA-MTUID, "   
lv_mtclass  TYPE CCMSBI_MTE_DATA-MTCLASS, "   
lv_valid_from_date  TYPE CCMSBI_MTE_DATA-VALID_FROM_DATE, "   
lv_valid_from_time  TYPE CCMSBI_MTE_DATA-VALID_FROM_TIME, "   
lv_valid_to_date  TYPE CCMSBI_MTE_DATA-VALID_TO_DATE. "   

  CALL FUNCTION 'ENQUEUE_E_CCMSBI_DATA'  "Request lock for object E_CCMSBI_DATA
    EXPORTING
         MODE_CCMSBI_MTE_DATA = lv_mode_ccmsbi_mte_data
         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_VALID_FROM_DATE = lv_x_valid_from_date
         X_VALID_FROM_TIME = lv_x_valid_from_time
         X_VALID_TO_DATE = lv_x_valid_to_date
         X_VALID_TO_TIME = lv_x_valid_to_time
         MTSYSID = lv_mtsysid
         _SCOPE = lv__scope
         _WAIT = lv__wait
         _COLLECT = lv__collect
         MTMCNAME = lv_mtmcname
         MTNUMRANGE = lv_mtnumrange
         MTUID = lv_mtuid
         MTCLASS = lv_mtclass
         VALID_FROM_DATE = lv_valid_from_date
         VALID_FROM_TIME = lv_valid_from_time
         VALID_TO_DATE = lv_valid_to_date
    EXCEPTIONS
        FOREIGN_LOCK = 1
        SYSTEM_FAILURE = 2
. " ENQUEUE_E_CCMSBI_DATA




ABAP code using 7.40 inline data declarations to call FM ENQUEUE_E_CCMSBI_DATA

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_data) = 'E'.
 
"SELECT single VALID_TO_TIME FROM CCMSBI_MTE_DATA 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_valid_from_date) = ' '.
 
DATA(ld_x_valid_from_time) = ' '.
 
DATA(ld_x_valid_to_date) = ' '.
 
DATA(ld_x_valid_to_time) = ' '.
 
"SELECT single MTSYSID FROM CCMSBI_MTE_DATA INTO @DATA(ld_mtsysid).
 
 
DATA(ld__scope) = '2'.
 
DATA(ld__wait) = ' '.
 
DATA(ld__collect) = ' '.
 
"SELECT single MTMCNAME FROM CCMSBI_MTE_DATA INTO @DATA(ld_mtmcname).
 
"SELECT single MTNUMRANGE FROM CCMSBI_MTE_DATA INTO @DATA(ld_mtnumrange).
 
"SELECT single MTUID FROM CCMSBI_MTE_DATA INTO @DATA(ld_mtuid).
 
"SELECT single MTCLASS FROM CCMSBI_MTE_DATA INTO @DATA(ld_mtclass).
 
"SELECT single VALID_FROM_DATE FROM CCMSBI_MTE_DATA INTO @DATA(ld_valid_from_date).
 
"SELECT single VALID_FROM_TIME FROM CCMSBI_MTE_DATA INTO @DATA(ld_valid_from_time).
 
"SELECT single VALID_TO_DATE FROM CCMSBI_MTE_DATA INTO @DATA(ld_valid_to_date).
 


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!