SAP DEQUEUE_ESEPA_MNDT_MULT Function Module for Release lock on object ESEPA_MNDT_MULT









DEQUEUE_ESEPA_MNDT_MULT is a standard dequeue esepa mndt mult 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 ESEPA_MNDT_MULT 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 esepa mndt mult FM, simply by entering the name DEQUEUE_ESEPA_MNDT_MULT into the relevant SAP transaction such as SE37 or SE38.

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



Function DEQUEUE_ESEPA_MNDT_MULT 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_ESEPA_MNDT_MULT'"Release lock on object ESEPA_MNDT_MULT
EXPORTING
* MODE_SEPA_MDTENQ_MULT = 'E' "Lock mode for table SEPA_MDTENQ_MULT
* X_ANWND = ' ' "Fill argument 03 with initial value?
* X_REC_CRDID = ' ' "Fill argument 04 with initial value?
* X_SND_ID_LOW = ' ' "Fill argument 05 with initial value?
* X_SND_ID_HIGH = ' ' "Fill argument 06 with initial value?
* X_MNDID = ' ' "Fill argument 07 with initial value?
* _SCOPE = '3' "
* _SYNCHRON = ' ' "Synchonous unlock
* _COLLECT = ' ' "Initially only collect lock
* MANDT = SY-MANDT "01th enqueue argument
* LOCK_TYPE = "02th enqueue argument
* ANWND = "03th enqueue argument
* REC_CRDID = "04th enqueue argument
* SND_ID_LOW = "05th enqueue argument
* SND_ID_HIGH = "06th enqueue argument
* MNDID = "07th enqueue argument
* X_LOCK_TYPE = ' ' "Fill argument 02 with initial value?
.



IMPORTING Parameters details for DEQUEUE_ESEPA_MNDT_MULT

MODE_SEPA_MDTENQ_MULT - Lock mode for table SEPA_MDTENQ_MULT

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

X_ANWND - Fill argument 03 with initial value?

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

X_REC_CRDID - Fill argument 04 with initial value?

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

X_SND_ID_LOW - Fill argument 05 with initial value?

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

X_SND_ID_HIGH - Fill argument 06 with initial value?

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

X_MNDID - Fill argument 07 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: SEPA_MDTENQ_MULT-MANDT
Default: SY-MANDT
Optional: Yes
Call by Reference: No ( called with pass by value option)

LOCK_TYPE - 02th enqueue argument

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

ANWND - 03th enqueue argument

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

REC_CRDID - 04th enqueue argument

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

SND_ID_LOW - 05th enqueue argument

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

SND_ID_HIGH - 06th enqueue argument

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

MNDID - 07th enqueue argument

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

X_LOCK_TYPE - Fill argument 02 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_ESEPA_MNDT_MULT 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_sepa_mdtenq_mult  TYPE ENQMODE, "   'E'
lv_x_anwnd  TYPE ENQMODE, "   SPACE
lv_x_rec_crdid  TYPE ENQMODE, "   SPACE
lv_x_snd_id_low  TYPE ENQMODE, "   SPACE
lv_x_snd_id_high  TYPE ENQMODE, "   SPACE
lv_x_mndid  TYPE ENQMODE, "   SPACE
lv__scope  TYPE ENQMODE, "   '3'
lv__synchron  TYPE ENQMODE, "   SPACE
lv__collect  TYPE DDENQCOLL, "   ' '
lv_mandt  TYPE SEPA_MDTENQ_MULT-MANDT, "   SY-MANDT
lv_lock_type  TYPE SEPA_MDTENQ_MULT-LOCK_TYPE, "   
lv_anwnd  TYPE SEPA_MDTENQ_MULT-ANWND, "   
lv_rec_crdid  TYPE SEPA_MDTENQ_MULT-REC_CRDID, "   
lv_snd_id_low  TYPE SEPA_MDTENQ_MULT-SND_ID_LOW, "   
lv_snd_id_high  TYPE SEPA_MDTENQ_MULT-SND_ID_HIGH, "   
lv_mndid  TYPE SEPA_MDTENQ_MULT-MNDID, "   
lv_x_lock_type  TYPE SEPA_MDTENQ_MULT. "   SPACE

  CALL FUNCTION 'DEQUEUE_ESEPA_MNDT_MULT'  "Release lock on object ESEPA_MNDT_MULT
    EXPORTING
         MODE_SEPA_MDTENQ_MULT = lv_mode_sepa_mdtenq_mult
         X_ANWND = lv_x_anwnd
         X_REC_CRDID = lv_x_rec_crdid
         X_SND_ID_LOW = lv_x_snd_id_low
         X_SND_ID_HIGH = lv_x_snd_id_high
         X_MNDID = lv_x_mndid
         _SCOPE = lv__scope
         _SYNCHRON = lv__synchron
         _COLLECT = lv__collect
         MANDT = lv_mandt
         LOCK_TYPE = lv_lock_type
         ANWND = lv_anwnd
         REC_CRDID = lv_rec_crdid
         SND_ID_LOW = lv_snd_id_low
         SND_ID_HIGH = lv_snd_id_high
         MNDID = lv_mndid
         X_LOCK_TYPE = lv_x_lock_type
. " DEQUEUE_ESEPA_MNDT_MULT




ABAP code using 7.40 inline data declarations to call FM DEQUEUE_ESEPA_MNDT_MULT

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_sepa_mdtenq_mult) = 'E'.
 
DATA(ld_x_anwnd) = ' '.
 
DATA(ld_x_rec_crdid) = ' '.
 
DATA(ld_x_snd_id_low) = ' '.
 
DATA(ld_x_snd_id_high) = ' '.
 
DATA(ld_x_mndid) = ' '.
 
DATA(ld__scope) = '3'.
 
DATA(ld__synchron) = ' '.
 
DATA(ld__collect) = ' '.
 
"SELECT single MANDT FROM SEPA_MDTENQ_MULT INTO @DATA(ld_mandt).
DATA(ld_mandt) = SY-MANDT.
 
"SELECT single LOCK_TYPE FROM SEPA_MDTENQ_MULT INTO @DATA(ld_lock_type).
 
"SELECT single ANWND FROM SEPA_MDTENQ_MULT INTO @DATA(ld_anwnd).
 
"SELECT single REC_CRDID FROM SEPA_MDTENQ_MULT INTO @DATA(ld_rec_crdid).
 
"SELECT single SND_ID_LOW FROM SEPA_MDTENQ_MULT INTO @DATA(ld_snd_id_low).
 
"SELECT single SND_ID_HIGH FROM SEPA_MDTENQ_MULT INTO @DATA(ld_snd_id_high).
 
"SELECT single MNDID FROM SEPA_MDTENQ_MULT INTO @DATA(ld_mndid).
 
DATA(ld_x_lock_type) = ' '.
 


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!