SAP DEQUEUE_E_UPSPACKAGE Function Module for Release lock on object E_UPSPACKAGE









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

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



Function DEQUEUE_E_UPSPACKAGE 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_UPSPACKAGE'"Release lock on object E_UPSPACKAGE
EXPORTING
* MODE_UPSHDR = 'E' "Lock mode for table UPSHDR
* X_UPSNUM = ' ' "Fill argument 02 with initial value?
* X_DIRECT = ' ' "Fill argument 03 with initial value?
* X_LOGSYS = ' ' "Fill argument 04 with initial value?
* X_UPSNAM = ' ' "Fill argument 05 with initial value?
* X_OWNER = ' ' "Fill argument 06 with initial value?
* _SCOPE = '3' "
* _SYNCHRON = ' ' "Synchonous unlock
* _COLLECT = ' ' "Initially only collect lock
* MODE_UPSITM = 'E' "Lock mode for table UPSITM
* MODE_UPSITX = 'E' "Lock mode for table UPSITX
* MANDT = SY-MANDT "01th enqueue argument
* UPSNUM = "02th enqueue argument
* DIRECT = "03th enqueue argument
* LOGSYS = "04th enqueue argument
* UPSNAM = "05th enqueue argument
* OWNER = "06th enqueue argument
.



IMPORTING Parameters details for DEQUEUE_E_UPSPACKAGE

MODE_UPSHDR - Lock mode for table UPSHDR

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

X_UPSNUM - Fill argument 02 with initial value?

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

X_DIRECT - Fill argument 03 with initial value?

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

X_LOGSYS - Fill argument 04 with initial value?

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

X_UPSNAM - Fill argument 05 with initial value?

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

X_OWNER - 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)

MODE_UPSITM - Lock mode for table UPSITM

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

MODE_UPSITX - Lock mode for table UPSITX

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

MANDT - 01th enqueue argument

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

UPSNUM - 02th enqueue argument

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

DIRECT - 03th enqueue argument

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

LOGSYS - 04th enqueue argument

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

UPSNAM - 05th enqueue argument

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

OWNER - 06th enqueue argument

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

Copy and paste ABAP code example for DEQUEUE_E_UPSPACKAGE 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_upshdr  TYPE ENQMODE, "   'E'
lv_x_upsnum  TYPE ENQMODE, "   SPACE
lv_x_direct  TYPE ENQMODE, "   SPACE
lv_x_logsys  TYPE ENQMODE, "   SPACE
lv_x_upsnam  TYPE ENQMODE, "   SPACE
lv_x_owner  TYPE ENQMODE, "   SPACE
lv__scope  TYPE ENQMODE, "   '3'
lv__synchron  TYPE ENQMODE, "   SPACE
lv__collect  TYPE DDENQCOLL, "   ' '
lv_mode_upsitm  TYPE ENQMODE, "   'E'
lv_mode_upsitx  TYPE ENQMODE, "   'E'
lv_mandt  TYPE UPSHDR-MANDT, "   SY-MANDT
lv_upsnum  TYPE UPSHDR-UPSNUM, "   
lv_direct  TYPE UPSHDR-DIRECT, "   
lv_logsys  TYPE UPSHDR-LOGSYS, "   
lv_upsnam  TYPE UPSHDR-UPSNAM, "   
lv_owner  TYPE UPSHDR-OWNER. "   

  CALL FUNCTION 'DEQUEUE_E_UPSPACKAGE'  "Release lock on object E_UPSPACKAGE
    EXPORTING
         MODE_UPSHDR = lv_mode_upshdr
         X_UPSNUM = lv_x_upsnum
         X_DIRECT = lv_x_direct
         X_LOGSYS = lv_x_logsys
         X_UPSNAM = lv_x_upsnam
         X_OWNER = lv_x_owner
         _SCOPE = lv__scope
         _SYNCHRON = lv__synchron
         _COLLECT = lv__collect
         MODE_UPSITM = lv_mode_upsitm
         MODE_UPSITX = lv_mode_upsitx
         MANDT = lv_mandt
         UPSNUM = lv_upsnum
         DIRECT = lv_direct
         LOGSYS = lv_logsys
         UPSNAM = lv_upsnam
         OWNER = lv_owner
. " DEQUEUE_E_UPSPACKAGE




ABAP code using 7.40 inline data declarations to call FM DEQUEUE_E_UPSPACKAGE

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_upshdr) = 'E'.
 
DATA(ld_x_upsnum) = ' '.
 
DATA(ld_x_direct) = ' '.
 
DATA(ld_x_logsys) = ' '.
 
DATA(ld_x_upsnam) = ' '.
 
DATA(ld_x_owner) = ' '.
 
DATA(ld__scope) = '3'.
 
DATA(ld__synchron) = ' '.
 
DATA(ld__collect) = ' '.
 
DATA(ld_mode_upsitm) = 'E'.
 
DATA(ld_mode_upsitx) = 'E'.
 
"SELECT single MANDT FROM UPSHDR INTO @DATA(ld_mandt).
DATA(ld_mandt) = SY-MANDT.
 
"SELECT single UPSNUM FROM UPSHDR INTO @DATA(ld_upsnum).
 
"SELECT single DIRECT FROM UPSHDR INTO @DATA(ld_direct).
 
"SELECT single LOGSYS FROM UPSHDR INTO @DATA(ld_logsys).
 
"SELECT single UPSNAM FROM UPSHDR INTO @DATA(ld_upsnam).
 
"SELECT single OWNER FROM UPSHDR INTO @DATA(ld_owner).
 


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!