SAP DEQUEUE_/ISDFPS/E_UPSHDR Function Module for Release lock on object /ISDFPS/E_UPSHDR









DEQUEUE_/ISDFPS/E_UPSHDR is a standard dequeue /isdfps/e upshdr 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 /ISDFPS/E_UPSHDR 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 /isdfps/e upshdr FM, simply by entering the name DEQUEUE_/ISDFPS/E_UPSHDR into the relevant SAP transaction such as SE37 or SE38.

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



Function DEQUEUE_/ISDFPS/E_UPSHDR 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_/ISDFPS/E_UPSHDR'"Release lock on object /ISDFPS/E_UPSHDR
EXPORTING
* MODE_/ISDFPS/UPSHDR = 'E' "Lock mode for table /ISDFPS/UPSHDR
* X_UPSNUM = ' ' "Fill argument 03 with initial value?
* X_DIRECT = ' ' "Fill argument 04 with initial value?
* X_LOGSYS = ' ' "Fill argument 05 with initial value?
* X_UPSNAM = ' ' "Fill argument 06 with initial value?
* X_OWNER = ' ' "Fill argument 07 with initial value?
* _SCOPE = '3' "
* _SYNCHRON = ' ' "Synchonous unlock
* _COLLECT = ' ' "Initially only collect lock
* MANDT = SY-MANDT "01th enqueue argument
* COMMAND_TYPE = "02th enqueue argument
* UPSNUM = "03th enqueue argument
* DIRECT = "04th enqueue argument
* LOGSYS = "05th enqueue argument
* UPSNAM = "06th enqueue argument
* OWNER = "07th enqueue argument
* X_COMMAND_TYPE = ' ' "Fill argument 02 with initial value?
.



IMPORTING Parameters details for DEQUEUE_/ISDFPS/E_UPSHDR

MODE_/ISDFPS/UPSHDR - Lock mode for table /ISDFPS/UPSHDR

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

X_UPSNUM - Fill argument 03 with initial value?

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

X_DIRECT - Fill argument 04 with initial value?

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

X_LOGSYS - Fill argument 05 with initial value?

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

X_UPSNAM - Fill argument 06 with initial value?

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

X_OWNER - 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: /ISDFPS/UPSHDR-MANDT
Default: SY-MANDT
Optional: Yes
Call by Reference: No ( called with pass by value option)

COMMAND_TYPE - 02th enqueue argument

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

UPSNUM - 03th enqueue argument

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

DIRECT - 04th enqueue argument

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

LOGSYS - 05th enqueue argument

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

UPSNAM - 06th enqueue argument

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

OWNER - 07th enqueue argument

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

X_COMMAND_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_/ISDFPS/E_UPSHDR 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_/isdfps/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_mandt  TYPE /ISDFPS/UPSHDR-MANDT, "   SY-MANDT
lv_command_type  TYPE /ISDFPS/UPSHDR-COMMAND_TYPE, "   
lv_upsnum  TYPE /ISDFPS/UPSHDR-UPSNUM, "   
lv_direct  TYPE /ISDFPS/UPSHDR-DIRECT, "   
lv_logsys  TYPE /ISDFPS/UPSHDR-LOGSYS, "   
lv_upsnam  TYPE /ISDFPS/UPSHDR-UPSNAM, "   
lv_owner  TYPE /ISDFPS/UPSHDR-OWNER, "   
lv_x_command_type  TYPE /ISDFPS/UPSHDR. "   SPACE

  CALL FUNCTION 'DEQUEUE_/ISDFPS/E_UPSHDR'  "Release lock on object /ISDFPS/E_UPSHDR
    EXPORTING
         MODE_/ISDFPS/UPSHDR = lv_mode_/isdfps/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
         MANDT = lv_mandt
         COMMAND_TYPE = lv_command_type
         UPSNUM = lv_upsnum
         DIRECT = lv_direct
         LOGSYS = lv_logsys
         UPSNAM = lv_upsnam
         OWNER = lv_owner
         X_COMMAND_TYPE = lv_x_command_type
. " DEQUEUE_/ISDFPS/E_UPSHDR




ABAP code using 7.40 inline data declarations to call FM DEQUEUE_/ISDFPS/E_UPSHDR

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_/isdfps/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) = ' '.
 
"SELECT single MANDT FROM /ISDFPS/UPSHDR INTO @DATA(ld_mandt).
DATA(ld_mandt) = SY-MANDT.
 
"SELECT single COMMAND_TYPE FROM /ISDFPS/UPSHDR INTO @DATA(ld_command_type).
 
"SELECT single UPSNUM FROM /ISDFPS/UPSHDR INTO @DATA(ld_upsnum).
 
"SELECT single DIRECT FROM /ISDFPS/UPSHDR INTO @DATA(ld_direct).
 
"SELECT single LOGSYS FROM /ISDFPS/UPSHDR INTO @DATA(ld_logsys).
 
"SELECT single UPSNAM FROM /ISDFPS/UPSHDR INTO @DATA(ld_upsnam).
 
"SELECT single OWNER FROM /ISDFPS/UPSHDR INTO @DATA(ld_owner).
 
DATA(ld_x_command_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!