SAP DEQUEUE_E_RSDS Function Module for









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

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



Function DEQUEUE_E_RSDS 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_RSDS'"
EXPORTING
* MODE_RSDSQCAT = 'E' "
* _COLLECT = ' ' "
* ORIGIN = "
* DBNA = "
* NAME = "
* X_ORIGIN = ' ' "
* X_DBNA = ' ' "
* X_NAME = ' ' "
* _SCOPE = '3' "
* _SYNCHRON = ' ' "
.



IMPORTING Parameters details for DEQUEUE_E_RSDS

MODE_RSDSQCAT -

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

ORIGIN -

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

DBNA -

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

NAME -

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

X_ORIGIN -

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

X_DBNA -

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

X_NAME -

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 -

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

Copy and paste ABAP code example for DEQUEUE_E_RSDS 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_rsdsqcat  TYPE DD26E-ENQMODE, "   'E'
lv__collect  TYPE DDENQ_LIKE-COLLECT, "   ' '
lv_origin  TYPE RSDSQCAT-ORIGIN, "   
lv_dbna  TYPE RSDSQCAT-DBNA, "   
lv_name  TYPE RSDSQCAT-NAME, "   
lv_x_origin  TYPE RSDSQCAT, "   SPACE
lv_x_dbna  TYPE RSDSQCAT, "   SPACE
lv_x_name  TYPE RSDSQCAT, "   SPACE
lv__scope  TYPE RSDSQCAT, "   '3'
lv__synchron  TYPE RSDSQCAT. "   SPACE

  CALL FUNCTION 'DEQUEUE_E_RSDS'  "
    EXPORTING
         MODE_RSDSQCAT = lv_mode_rsdsqcat
         _COLLECT = lv__collect
         ORIGIN = lv_origin
         DBNA = lv_dbna
         NAME = lv_name
         X_ORIGIN = lv_x_origin
         X_DBNA = lv_x_dbna
         X_NAME = lv_x_name
         _SCOPE = lv__scope
         _SYNCHRON = lv__synchron
. " DEQUEUE_E_RSDS




ABAP code using 7.40 inline data declarations to call FM DEQUEUE_E_RSDS

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_rsdsqcat).
DATA(ld_mode_rsdsqcat) = 'E'.
 
"SELECT single COLLECT FROM DDENQ_LIKE INTO @DATA(ld__collect).
DATA(ld__collect) = ' '.
 
"SELECT single ORIGIN FROM RSDSQCAT INTO @DATA(ld_origin).
 
"SELECT single DBNA FROM RSDSQCAT INTO @DATA(ld_dbna).
 
"SELECT single NAME FROM RSDSQCAT INTO @DATA(ld_name).
 
DATA(ld_x_origin) = ' '.
 
DATA(ld_x_dbna) = ' '.
 
DATA(ld_x_name) = ' '.
 
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!