SAP DEQUEUE_E_CRMC_LAYOUTC Function Module for Release lock on object E_CRMC_LAYOUTC









DEQUEUE_E_CRMC_LAYOUTC is a standard dequeue e crmc layoutc 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_CRMC_LAYOUTC 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 crmc layoutc FM, simply by entering the name DEQUEUE_E_CRMC_LAYOUTC into the relevant SAP transaction such as SE37 or SE38.

Function Group: /1BCDWBEN/CEN0009
Program Name: /1BCDWBEN/SAPLCEN0009
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function DEQUEUE_E_CRMC_LAYOUTC 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_CRMC_LAYOUTC'"Release lock on object E_CRMC_LAYOUTC
EXPORTING
* MODE_CRMC_LAYOUTC = 'E' "Lock mode for table CRMC_LAYOUTC
* COLUMNINDEX = "09th enqueue argument
* X_MAIN_FIELDGROUP = ' ' "Fill argument 02 with initial value?
* X_SCREENSIZE = ' ' "Fill argument 03 with initial value?
* X_BLVIEW = ' ' "Fill argument 04 with initial value?
* X_FLDGRPVAR = ' ' "Fill argument 05 with initial value?
* X_HIERARCHYLEVEL = ' ' "Fill argument 06 with initial value?
* X_FIELDGROUP = ' ' "Fill argument 07 with initial value?
* X_ROWINDEX = ' ' "Fill argument 08 with initial value?
* X_COLUMNINDEX = ' ' "Fill argument 09 with initial value?
* _SCOPE = '3' "
* MANDT = SY-MANDT "01th enqueue argument
* _SYNCHRON = ' ' "Synchonous unlock
* _COLLECT = ' ' "Initially only collect lock
* MAIN_FIELDGROUP = "02th enqueue argument
* SCREENSIZE = "03th enqueue argument
* BLVIEW = "04th enqueue argument
* FLDGRPVAR = "05th enqueue argument
* HIERARCHYLEVEL = "06th enqueue argument
* FIELDGROUP = "07th enqueue argument
* ROWINDEX = "08th enqueue argument
.



IMPORTING Parameters details for DEQUEUE_E_CRMC_LAYOUTC

MODE_CRMC_LAYOUTC - Lock mode for table CRMC_LAYOUTC

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

COLUMNINDEX - 09th enqueue argument

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

X_MAIN_FIELDGROUP - Fill argument 02 with initial value?

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

X_SCREENSIZE - Fill argument 03 with initial value?

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

X_BLVIEW - Fill argument 04 with initial value?

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

X_FLDGRPVAR - Fill argument 05 with initial value?

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

X_HIERARCHYLEVEL - Fill argument 06 with initial value?

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

X_FIELDGROUP - Fill argument 07 with initial value?

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

X_ROWINDEX - Fill argument 08 with initial value?

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

X_COLUMNINDEX - Fill argument 09 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)

MANDT - 01th enqueue argument

Data type: CRMC_LAYOUTC-MANDT
Default: SY-MANDT
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: DDENQCOLL
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

MAIN_FIELDGROUP - 02th enqueue argument

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

SCREENSIZE - 03th enqueue argument

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

BLVIEW - 04th enqueue argument

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

FLDGRPVAR - 05th enqueue argument

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

HIERARCHYLEVEL - 06th enqueue argument

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

FIELDGROUP - 07th enqueue argument

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

ROWINDEX - 08th enqueue argument

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

Copy and paste ABAP code example for DEQUEUE_E_CRMC_LAYOUTC 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_crmc_layoutc  TYPE ENQMODE, "   'E'
lv_columnindex  TYPE CRMC_LAYOUTC-COLUMNINDEX, "   
lv_x_main_fieldgroup  TYPE CRMC_LAYOUTC, "   SPACE
lv_x_screensize  TYPE CRMC_LAYOUTC, "   SPACE
lv_x_blview  TYPE CRMC_LAYOUTC, "   SPACE
lv_x_fldgrpvar  TYPE CRMC_LAYOUTC, "   SPACE
lv_x_hierarchylevel  TYPE CRMC_LAYOUTC, "   SPACE
lv_x_fieldgroup  TYPE CRMC_LAYOUTC, "   SPACE
lv_x_rowindex  TYPE CRMC_LAYOUTC, "   SPACE
lv_x_columnindex  TYPE CRMC_LAYOUTC, "   SPACE
lv__scope  TYPE CRMC_LAYOUTC, "   '3'
lv_mandt  TYPE CRMC_LAYOUTC-MANDT, "   SY-MANDT
lv__synchron  TYPE CRMC_LAYOUTC, "   SPACE
lv__collect  TYPE DDENQCOLL, "   ' '
lv_main_fieldgroup  TYPE CRMC_LAYOUTC-MAIN_FIELDGROUP, "   
lv_screensize  TYPE CRMC_LAYOUTC-SCREENSIZE, "   
lv_blview  TYPE CRMC_LAYOUTC-BLVIEW, "   
lv_fldgrpvar  TYPE CRMC_LAYOUTC-FLDGRPVAR, "   
lv_hierarchylevel  TYPE CRMC_LAYOUTC-HIERARCHYLEVEL, "   
lv_fieldgroup  TYPE CRMC_LAYOUTC-FIELDGROUP, "   
lv_rowindex  TYPE CRMC_LAYOUTC-ROWINDEX. "   

  CALL FUNCTION 'DEQUEUE_E_CRMC_LAYOUTC'  "Release lock on object E_CRMC_LAYOUTC
    EXPORTING
         MODE_CRMC_LAYOUTC = lv_mode_crmc_layoutc
         COLUMNINDEX = lv_columnindex
         X_MAIN_FIELDGROUP = lv_x_main_fieldgroup
         X_SCREENSIZE = lv_x_screensize
         X_BLVIEW = lv_x_blview
         X_FLDGRPVAR = lv_x_fldgrpvar
         X_HIERARCHYLEVEL = lv_x_hierarchylevel
         X_FIELDGROUP = lv_x_fieldgroup
         X_ROWINDEX = lv_x_rowindex
         X_COLUMNINDEX = lv_x_columnindex
         _SCOPE = lv__scope
         MANDT = lv_mandt
         _SYNCHRON = lv__synchron
         _COLLECT = lv__collect
         MAIN_FIELDGROUP = lv_main_fieldgroup
         SCREENSIZE = lv_screensize
         BLVIEW = lv_blview
         FLDGRPVAR = lv_fldgrpvar
         HIERARCHYLEVEL = lv_hierarchylevel
         FIELDGROUP = lv_fieldgroup
         ROWINDEX = lv_rowindex
. " DEQUEUE_E_CRMC_LAYOUTC




ABAP code using 7.40 inline data declarations to call FM DEQUEUE_E_CRMC_LAYOUTC

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_crmc_layoutc) = 'E'.
 
"SELECT single COLUMNINDEX FROM CRMC_LAYOUTC INTO @DATA(ld_columnindex).
 
DATA(ld_x_main_fieldgroup) = ' '.
 
DATA(ld_x_screensize) = ' '.
 
DATA(ld_x_blview) = ' '.
 
DATA(ld_x_fldgrpvar) = ' '.
 
DATA(ld_x_hierarchylevel) = ' '.
 
DATA(ld_x_fieldgroup) = ' '.
 
DATA(ld_x_rowindex) = ' '.
 
DATA(ld_x_columnindex) = ' '.
 
DATA(ld__scope) = '3'.
 
"SELECT single MANDT FROM CRMC_LAYOUTC INTO @DATA(ld_mandt).
DATA(ld_mandt) = SY-MANDT.
 
DATA(ld__synchron) = ' '.
 
DATA(ld__collect) = ' '.
 
"SELECT single MAIN_FIELDGROUP FROM CRMC_LAYOUTC INTO @DATA(ld_main_fieldgroup).
 
"SELECT single SCREENSIZE FROM CRMC_LAYOUTC INTO @DATA(ld_screensize).
 
"SELECT single BLVIEW FROM CRMC_LAYOUTC INTO @DATA(ld_blview).
 
"SELECT single FLDGRPVAR FROM CRMC_LAYOUTC INTO @DATA(ld_fldgrpvar).
 
"SELECT single HIERARCHYLEVEL FROM CRMC_LAYOUTC INTO @DATA(ld_hierarchylevel).
 
"SELECT single FIELDGROUP FROM CRMC_LAYOUTC INTO @DATA(ld_fieldgroup).
 
"SELECT single ROWINDEX FROM CRMC_LAYOUTC INTO @DATA(ld_rowindex).
 


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!