SAP DEQUEUE_ECDESK_FILTERS Function Module for Release lock on object ECDESK_FILTERS









DEQUEUE_ECDESK_FILTERS is a standard dequeue ecdesk filters 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 ECDESK_FILTERS 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 ecdesk filters FM, simply by entering the name DEQUEUE_ECDESK_FILTERS into the relevant SAP transaction such as SE37 or SE38.

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



Function DEQUEUE_ECDESK_FILTERS 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_ECDESK_FILTERS'"Release lock on object ECDESK_FILTERS
EXPORTING
* MODE_CDESK_FILTERS = 'E' "Lock mode for table CDESK_FILTERS
* X_CADUSER = ' ' "Fill argument 04 with initial value?
* X_FILTER_NAME = ' ' "Fill argument 05 with initial value?
* X_RELTYP = ' ' "Fill argument 06 with initial value?
* _SCOPE = '3' "
* _SYNCHRON = ' ' "Synchonous unlock
* _COLLECT = ' ' "Initially only collect lock
* MANDT = SY-MANDT "01th enqueue argument
* CADSYSTEM = "02th enqueue argument
* CADGROUP = "03th enqueue argument
* CADUSER = "04th enqueue argument
* FILTER_NAME = "05th enqueue argument
* RELTYP = "06th enqueue argument
* X_CADSYSTEM = ' ' "Fill argument 02 with initial value?
* X_CADGROUP = ' ' "Fill argument 03 with initial value?
.



IMPORTING Parameters details for DEQUEUE_ECDESK_FILTERS

MODE_CDESK_FILTERS - Lock mode for table CDESK_FILTERS

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

X_CADUSER - Fill argument 04 with initial value?

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

X_FILTER_NAME - Fill argument 05 with initial value?

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

X_RELTYP - Fill argument 06 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: DDENQCOLL
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

MANDT - 01th enqueue argument

Data type: CDESK_FILTERS-MANDT
Default: SY-MANDT
Optional: Yes
Call by Reference: No ( called with pass by value option)

CADSYSTEM - 02th enqueue argument

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

CADGROUP - 03th enqueue argument

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

CADUSER - 04th enqueue argument

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

FILTER_NAME - 05th enqueue argument

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

RELTYP - 06th enqueue argument

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

X_CADSYSTEM - Fill argument 02 with initial value?

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

X_CADGROUP - Fill argument 03 with initial value?

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

Copy and paste ABAP code example for DEQUEUE_ECDESK_FILTERS 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_cdesk_filters  TYPE ENQMODE, "   'E'
lv_x_caduser  TYPE ENQMODE, "   SPACE
lv_x_filter_name  TYPE ENQMODE, "   SPACE
lv_x_reltyp  TYPE ENQMODE, "   SPACE
lv__scope  TYPE ENQMODE, "   '3'
lv__synchron  TYPE ENQMODE, "   SPACE
lv__collect  TYPE DDENQCOLL, "   ' '
lv_mandt  TYPE CDESK_FILTERS-MANDT, "   SY-MANDT
lv_cadsystem  TYPE CDESK_FILTERS-CADSYSTEM, "   
lv_cadgroup  TYPE CDESK_FILTERS-CADGROUP, "   
lv_caduser  TYPE CDESK_FILTERS-CADUSER, "   
lv_filter_name  TYPE CDESK_FILTERS-FILTER_NAME, "   
lv_reltyp  TYPE CDESK_FILTERS-RELTYP, "   
lv_x_cadsystem  TYPE CDESK_FILTERS, "   SPACE
lv_x_cadgroup  TYPE CDESK_FILTERS. "   SPACE

  CALL FUNCTION 'DEQUEUE_ECDESK_FILTERS'  "Release lock on object ECDESK_FILTERS
    EXPORTING
         MODE_CDESK_FILTERS = lv_mode_cdesk_filters
         X_CADUSER = lv_x_caduser
         X_FILTER_NAME = lv_x_filter_name
         X_RELTYP = lv_x_reltyp
         _SCOPE = lv__scope
         _SYNCHRON = lv__synchron
         _COLLECT = lv__collect
         MANDT = lv_mandt
         CADSYSTEM = lv_cadsystem
         CADGROUP = lv_cadgroup
         CADUSER = lv_caduser
         FILTER_NAME = lv_filter_name
         RELTYP = lv_reltyp
         X_CADSYSTEM = lv_x_cadsystem
         X_CADGROUP = lv_x_cadgroup
. " DEQUEUE_ECDESK_FILTERS




ABAP code using 7.40 inline data declarations to call FM DEQUEUE_ECDESK_FILTERS

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_cdesk_filters) = 'E'.
 
DATA(ld_x_caduser) = ' '.
 
DATA(ld_x_filter_name) = ' '.
 
DATA(ld_x_reltyp) = ' '.
 
DATA(ld__scope) = '3'.
 
DATA(ld__synchron) = ' '.
 
DATA(ld__collect) = ' '.
 
"SELECT single MANDT FROM CDESK_FILTERS INTO @DATA(ld_mandt).
DATA(ld_mandt) = SY-MANDT.
 
"SELECT single CADSYSTEM FROM CDESK_FILTERS INTO @DATA(ld_cadsystem).
 
"SELECT single CADGROUP FROM CDESK_FILTERS INTO @DATA(ld_cadgroup).
 
"SELECT single CADUSER FROM CDESK_FILTERS INTO @DATA(ld_caduser).
 
"SELECT single FILTER_NAME FROM CDESK_FILTERS INTO @DATA(ld_filter_name).
 
"SELECT single RELTYP FROM CDESK_FILTERS INTO @DATA(ld_reltyp).
 
DATA(ld_x_cadsystem) = ' '.
 
DATA(ld_x_cadgroup) = ' '.
 


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!