SAP DEQUEUE_/SDF/E_MON_CALL Function Module for Release lock on object /SDF/E_MON_CALL









DEQUEUE_/SDF/E_MON_CALL is a standard dequeue /sdf/e mon call 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 /SDF/E_MON_CALL 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 /sdf/e mon call FM, simply by entering the name DEQUEUE_/SDF/E_MON_CALL into the relevant SAP transaction such as SE37 or SE38.

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



Function DEQUEUE_/SDF/E_MON_CALL 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_/SDF/E_MON_CALL'"Release lock on object /SDF/E_MON_CALL
EXPORTING
* MODE_/SDF/MON_CALL_KEY = 'E' "Lock mode for table /SDF/MON_CALL_KEY
* _COLLECT = ' ' "Initially only collect lock
* GUID = "01th enqueue argument
* DESTINATION = "02th enqueue argument
* FUNCTION = "03th enqueue argument
* X_GUID = ' ' "Fill argument 01 with initial value?
* X_DESTINATION = ' ' "Fill argument 02 with initial value?
* X_FUNCTION = ' ' "Fill argument 03 with initial value?
* _SCOPE = '3' "
* _SYNCHRON = ' ' "Synchonous unlock
.



IMPORTING Parameters details for DEQUEUE_/SDF/E_MON_CALL

MODE_/SDF/MON_CALL_KEY - Lock mode for table /SDF/MON_CALL_KEY

Data type: ENQMODE
Default: 'E'
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)

GUID - 01th enqueue argument

Data type: /SDF/MON_CALL_KEY-GUID
Optional: Yes
Call by Reference: No ( called with pass by value option)

DESTINATION - 02th enqueue argument

Data type: /SDF/MON_CALL_KEY-DESTINATION
Optional: Yes
Call by Reference: No ( called with pass by value option)

FUNCTION - 03th enqueue argument

Data type: /SDF/MON_CALL_KEY-FUNCTION
Optional: Yes
Call by Reference: No ( called with pass by value option)

X_GUID - Fill argument 01 with initial value?

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

X_DESTINATION - Fill argument 02 with initial value?

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

X_FUNCTION - Fill argument 03 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)

Copy and paste ABAP code example for DEQUEUE_/SDF/E_MON_CALL 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_/sdf/mon_call_key  TYPE ENQMODE, "   'E'
lv__collect  TYPE DDENQCOLL, "   ' '
lv_guid  TYPE /SDF/MON_CALL_KEY-GUID, "   
lv_destination  TYPE /SDF/MON_CALL_KEY-DESTINATION, "   
lv_function  TYPE /SDF/MON_CALL_KEY-FUNCTION, "   
lv_x_guid  TYPE /SDF/MON_CALL_KEY, "   SPACE
lv_x_destination  TYPE /SDF/MON_CALL_KEY, "   SPACE
lv_x_function  TYPE /SDF/MON_CALL_KEY, "   SPACE
lv__scope  TYPE /SDF/MON_CALL_KEY, "   '3'
lv__synchron  TYPE /SDF/MON_CALL_KEY. "   SPACE

  CALL FUNCTION 'DEQUEUE_/SDF/E_MON_CALL'  "Release lock on object /SDF/E_MON_CALL
    EXPORTING
         MODE_/SDF/MON_CALL_KEY = lv_mode_/sdf/mon_call_key
         _COLLECT = lv__collect
         GUID = lv_guid
         DESTINATION = lv_destination
         FUNCTION = lv_function
         X_GUID = lv_x_guid
         X_DESTINATION = lv_x_destination
         X_FUNCTION = lv_x_function
         _SCOPE = lv__scope
         _SYNCHRON = lv__synchron
. " DEQUEUE_/SDF/E_MON_CALL




ABAP code using 7.40 inline data declarations to call FM DEQUEUE_/SDF/E_MON_CALL

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_/sdf/mon_call_key) = 'E'.
 
DATA(ld__collect) = ' '.
 
"SELECT single GUID FROM /SDF/MON_CALL_KEY INTO @DATA(ld_guid).
 
"SELECT single DESTINATION FROM /SDF/MON_CALL_KEY INTO @DATA(ld_destination).
 
"SELECT single FUNCTION FROM /SDF/MON_CALL_KEY INTO @DATA(ld_function).
 
DATA(ld_x_guid) = ' '.
 
DATA(ld_x_destination) = ' '.
 
DATA(ld_x_function) = ' '.
 
DATA(ld__scope) = '3'.
 
DATA(ld__synchron) = ' '.
 


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!