SAP DEQUEUE_EPPRELE Function Module for









DEQUEUE_EPPRELE is a standard dequeue epprele SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 epprele FM, simply by entering the name DEQUEUE_EPPRELE into the relevant SAP transaction such as SE37 or SE38.

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



Function DEQUEUE_EPPRELE 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_EPPRELE'"
EXPORTING
* MODE_PREL = 'E' "
* SEQNR = "
* X_PERNR = ' ' "
* X_INFTY = ' ' "
* X_SUBTY = ' ' "
* X_OBJPS = ' ' "
* X_SPRPS = ' ' "
* X_ENDDA = ' ' "
* X_BEGDA = ' ' "
* X_SEQNR = ' ' "
* _SCOPE = '3' "
* MANDT = SY-MANDT "
* _SYNCHRON = ' ' "
* _COLLECT = ' ' "
* PERNR = "
* INFTY = "
* SUBTY = "
* OBJPS = "
* SPRPS = "
* ENDDA = "
* BEGDA = "
.



IMPORTING Parameters details for DEQUEUE_EPPRELE

MODE_PREL -

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

SEQNR -

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

X_PERNR -

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

X_INFTY -

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

X_SUBTY -

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

X_OBJPS -

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

X_SPRPS -

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

X_ENDDA -

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

X_BEGDA -

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

X_SEQNR -

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 -

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

_SYNCHRON -

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

_COLLECT -

Data type: DDENQ_LIKE-COLLECT
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

PERNR -

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

INFTY -

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

SUBTY -

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

OBJPS -

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

SPRPS -

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

ENDDA -

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

BEGDA -

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

Copy and paste ABAP code example for DEQUEUE_EPPRELE 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_prel  TYPE DD26E-ENQMODE, "   'E'
lv_seqnr  TYPE PREL-SEQNR, "   
lv_x_pernr  TYPE PREL, "   SPACE
lv_x_infty  TYPE PREL, "   SPACE
lv_x_subty  TYPE PREL, "   SPACE
lv_x_objps  TYPE PREL, "   SPACE
lv_x_sprps  TYPE PREL, "   SPACE
lv_x_endda  TYPE PREL, "   SPACE
lv_x_begda  TYPE PREL, "   SPACE
lv_x_seqnr  TYPE PREL, "   SPACE
lv__scope  TYPE PREL, "   '3'
lv_mandt  TYPE PREL-MANDT, "   SY-MANDT
lv__synchron  TYPE PREL, "   SPACE
lv__collect  TYPE DDENQ_LIKE-COLLECT, "   ' '
lv_pernr  TYPE PREL-PERNR, "   
lv_infty  TYPE PREL-INFTY, "   
lv_subty  TYPE PREL-SUBTY, "   
lv_objps  TYPE PREL-OBJPS, "   
lv_sprps  TYPE PREL-SPRPS, "   
lv_endda  TYPE PREL-ENDDA, "   
lv_begda  TYPE PREL-BEGDA. "   

  CALL FUNCTION 'DEQUEUE_EPPRELE'  "
    EXPORTING
         MODE_PREL = lv_mode_prel
         SEQNR = lv_seqnr
         X_PERNR = lv_x_pernr
         X_INFTY = lv_x_infty
         X_SUBTY = lv_x_subty
         X_OBJPS = lv_x_objps
         X_SPRPS = lv_x_sprps
         X_ENDDA = lv_x_endda
         X_BEGDA = lv_x_begda
         X_SEQNR = lv_x_seqnr
         _SCOPE = lv__scope
         MANDT = lv_mandt
         _SYNCHRON = lv__synchron
         _COLLECT = lv__collect
         PERNR = lv_pernr
         INFTY = lv_infty
         SUBTY = lv_subty
         OBJPS = lv_objps
         SPRPS = lv_sprps
         ENDDA = lv_endda
         BEGDA = lv_begda
. " DEQUEUE_EPPRELE




ABAP code using 7.40 inline data declarations to call FM DEQUEUE_EPPRELE

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.

"SELECT single ENQMODE FROM DD26E INTO @DATA(ld_mode_prel).
DATA(ld_mode_prel) = 'E'.
 
"SELECT single SEQNR FROM PREL INTO @DATA(ld_seqnr).
 
DATA(ld_x_pernr) = ' '.
 
DATA(ld_x_infty) = ' '.
 
DATA(ld_x_subty) = ' '.
 
DATA(ld_x_objps) = ' '.
 
DATA(ld_x_sprps) = ' '.
 
DATA(ld_x_endda) = ' '.
 
DATA(ld_x_begda) = ' '.
 
DATA(ld_x_seqnr) = ' '.
 
DATA(ld__scope) = '3'.
 
"SELECT single MANDT FROM PREL INTO @DATA(ld_mandt).
DATA(ld_mandt) = SY-MANDT.
 
DATA(ld__synchron) = ' '.
 
"SELECT single COLLECT FROM DDENQ_LIKE INTO @DATA(ld__collect).
DATA(ld__collect) = ' '.
 
"SELECT single PERNR FROM PREL INTO @DATA(ld_pernr).
 
"SELECT single INFTY FROM PREL INTO @DATA(ld_infty).
 
"SELECT single SUBTY FROM PREL INTO @DATA(ld_subty).
 
"SELECT single OBJPS FROM PREL INTO @DATA(ld_objps).
 
"SELECT single SPRPS FROM PREL INTO @DATA(ld_sprps).
 
"SELECT single ENDDA FROM PREL INTO @DATA(ld_endda).
 
"SELECT single BEGDA FROM PREL INTO @DATA(ld_begda).
 


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!