SAP DEQUEUE_E_OIU_RANK Function Module for Release lock on object E_OIU_RANK









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

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



Function DEQUEUE_E_OIU_RANK 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_OIU_RANK'"Release lock on object E_OIU_RANK
EXPORTING
* MODE_OIU_SB_RANK = 'E' "Lock mode for table OIU_SB_RANK
* _SYNCHRON = ' ' "Synchonous unlock
* _COLLECT = ' ' "Initially only collect lock
* MANDT = SY-MANDT "01th enqueue argument
* DN_NO = "02th enqueue argument
* PROD_DT = "03th enqueue argument
* MP_NO = "04th enqueue argument
* X_DN_NO = ' ' "Fill argument 02 with initial value?
* X_PROD_DT = ' ' "Fill argument 03 with initial value?
* X_MP_NO = ' ' "Fill argument 04 with initial value?
* _SCOPE = '3' "
.



IMPORTING Parameters details for DEQUEUE_E_OIU_RANK

MODE_OIU_SB_RANK - Lock mode for table OIU_SB_RANK

Data type: ENQMODE
Default: 'E'
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: OIU_SB_RANK-MANDT
Default: SY-MANDT
Optional: Yes
Call by Reference: No ( called with pass by value option)

DN_NO - 02th enqueue argument

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

PROD_DT - 03th enqueue argument

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

MP_NO - 04th enqueue argument

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

X_DN_NO - Fill argument 02 with initial value?

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

X_PROD_DT - Fill argument 03 with initial value?

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

X_MP_NO - Fill argument 04 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)

Copy and paste ABAP code example for DEQUEUE_E_OIU_RANK 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_oiu_sb_rank  TYPE ENQMODE, "   'E'
lv__synchron  TYPE ENQMODE, "   SPACE
lv__collect  TYPE DDENQCOLL, "   ' '
lv_mandt  TYPE OIU_SB_RANK-MANDT, "   SY-MANDT
lv_dn_no  TYPE OIU_SB_RANK-DN_NO, "   
lv_prod_dt  TYPE OIU_SB_RANK-PROD_DT, "   
lv_mp_no  TYPE OIU_SB_RANK-MP_NO, "   
lv_x_dn_no  TYPE OIU_SB_RANK, "   SPACE
lv_x_prod_dt  TYPE OIU_SB_RANK, "   SPACE
lv_x_mp_no  TYPE OIU_SB_RANK, "   SPACE
lv__scope  TYPE OIU_SB_RANK. "   '3'

  CALL FUNCTION 'DEQUEUE_E_OIU_RANK'  "Release lock on object E_OIU_RANK
    EXPORTING
         MODE_OIU_SB_RANK = lv_mode_oiu_sb_rank
         _SYNCHRON = lv__synchron
         _COLLECT = lv__collect
         MANDT = lv_mandt
         DN_NO = lv_dn_no
         PROD_DT = lv_prod_dt
         MP_NO = lv_mp_no
         X_DN_NO = lv_x_dn_no
         X_PROD_DT = lv_x_prod_dt
         X_MP_NO = lv_x_mp_no
         _SCOPE = lv__scope
. " DEQUEUE_E_OIU_RANK




ABAP code using 7.40 inline data declarations to call FM DEQUEUE_E_OIU_RANK

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_oiu_sb_rank) = 'E'.
 
DATA(ld__synchron) = ' '.
 
DATA(ld__collect) = ' '.
 
"SELECT single MANDT FROM OIU_SB_RANK INTO @DATA(ld_mandt).
DATA(ld_mandt) = SY-MANDT.
 
"SELECT single DN_NO FROM OIU_SB_RANK INTO @DATA(ld_dn_no).
 
"SELECT single PROD_DT FROM OIU_SB_RANK INTO @DATA(ld_prod_dt).
 
"SELECT single MP_NO FROM OIU_SB_RANK INTO @DATA(ld_mp_no).
 
DATA(ld_x_dn_no) = ' '.
 
DATA(ld_x_prod_dt) = ' '.
 
DATA(ld_x_mp_no) = ' '.
 
DATA(ld__scope) = '3'.
 


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!