SAP DEQUEUE_E_OIUX8_NMMASTER Function Module for Release lock on object E_OIUX8_NMMASTER









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

Function Group: /1BCDWBEN/OEN0007
Program Name: /1BCDWBEN/SAPLOEN0007
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function DEQUEUE_E_OIUX8_NMMASTER 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_OIUX8_NMMASTER'"Release lock on object E_OIUX8_NMMASTER
EXPORTING
* MODE_OIUX8_NM_MASTER = 'E' "Lock mode for table OIUX8_NM_MASTER
* X_RPT_ID = ' ' "Fill argument 02 with initial value?
* X_WL_NO = ' ' "Fill argument 03 with initial value?
* X_WC_NO = ' ' "Fill argument 04 with initial value?
* X_MP_NO = ' ' "Fill argument 05 with initial value?
* X_BUKRS = ' ' "Fill argument 06 with initial value?
* X_VNAME = ' ' "Fill argument 07 with initial value?
* X_DOI_NO = ' ' "Fill argument 08 with initial value?
* _SCOPE = '3' "
* _SYNCHRON = ' ' "Synchonous unlock
* _COLLECT = ' ' "Initially only collect lock
* MANDT = SY-MANDT "01th enqueue argument
* RPT_ID = "02th enqueue argument
* WL_NO = "03th enqueue argument
* WC_NO = "04th enqueue argument
* MP_NO = "05th enqueue argument
* BUKRS = "06th enqueue argument
* VNAME = "07th enqueue argument
* DOI_NO = "08th enqueue argument
.



IMPORTING Parameters details for DEQUEUE_E_OIUX8_NMMASTER

MODE_OIUX8_NM_MASTER - Lock mode for table OIUX8_NM_MASTER

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

X_RPT_ID - Fill argument 02 with initial value?

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

X_WL_NO - Fill argument 03 with initial value?

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

X_WC_NO - Fill argument 04 with initial value?

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

X_MP_NO - Fill argument 05 with initial value?

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

X_BUKRS - Fill argument 06 with initial value?

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

X_VNAME - Fill argument 07 with initial value?

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

X_DOI_NO - Fill argument 08 with initial value?

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

_SCOPE -

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

_SYNCHRON - Synchonous unlock

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

RPT_ID - 02th enqueue argument

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

WL_NO - 03th enqueue argument

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

WC_NO - 04th enqueue argument

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

MP_NO - 05th enqueue argument

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

BUKRS - 06th enqueue argument

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

VNAME - 07th enqueue argument

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

DOI_NO - 08th enqueue argument

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

Copy and paste ABAP code example for DEQUEUE_E_OIUX8_NMMASTER 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_oiux8_nm_master  TYPE ENQMODE, "   'E'
lv_x_rpt_id  TYPE DDENQXPAR, "   SPACE
lv_x_wl_no  TYPE DDENQXPAR, "   SPACE
lv_x_wc_no  TYPE DDENQXPAR, "   SPACE
lv_x_mp_no  TYPE DDENQXPAR, "   SPACE
lv_x_bukrs  TYPE DDENQXPAR, "   SPACE
lv_x_vname  TYPE DDENQXPAR, "   SPACE
lv_x_doi_no  TYPE DDENQXPAR, "   SPACE
lv__scope  TYPE DDENQSCOPE, "   '3'
lv__synchron  TYPE DDENQSYNC, "   SPACE
lv__collect  TYPE DDENQCOLL, "   ' '
lv_mandt  TYPE OIUX8_NM_MASTER-MANDT, "   SY-MANDT
lv_rpt_id  TYPE OIUX8_NM_MASTER-RPT_ID, "   
lv_wl_no  TYPE OIUX8_NM_MASTER-WL_NO, "   
lv_wc_no  TYPE OIUX8_NM_MASTER-WC_NO, "   
lv_mp_no  TYPE OIUX8_NM_MASTER-MP_NO, "   
lv_bukrs  TYPE OIUX8_NM_MASTER-BUKRS, "   
lv_vname  TYPE OIUX8_NM_MASTER-VNAME, "   
lv_doi_no  TYPE OIUX8_NM_MASTER-DOI_NO. "   

  CALL FUNCTION 'DEQUEUE_E_OIUX8_NMMASTER'  "Release lock on object E_OIUX8_NMMASTER
    EXPORTING
         MODE_OIUX8_NM_MASTER = lv_mode_oiux8_nm_master
         X_RPT_ID = lv_x_rpt_id
         X_WL_NO = lv_x_wl_no
         X_WC_NO = lv_x_wc_no
         X_MP_NO = lv_x_mp_no
         X_BUKRS = lv_x_bukrs
         X_VNAME = lv_x_vname
         X_DOI_NO = lv_x_doi_no
         _SCOPE = lv__scope
         _SYNCHRON = lv__synchron
         _COLLECT = lv__collect
         MANDT = lv_mandt
         RPT_ID = lv_rpt_id
         WL_NO = lv_wl_no
         WC_NO = lv_wc_no
         MP_NO = lv_mp_no
         BUKRS = lv_bukrs
         VNAME = lv_vname
         DOI_NO = lv_doi_no
. " DEQUEUE_E_OIUX8_NMMASTER




ABAP code using 7.40 inline data declarations to call FM DEQUEUE_E_OIUX8_NMMASTER

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_oiux8_nm_master) = 'E'.
 
DATA(ld_x_rpt_id) = ' '.
 
DATA(ld_x_wl_no) = ' '.
 
DATA(ld_x_wc_no) = ' '.
 
DATA(ld_x_mp_no) = ' '.
 
DATA(ld_x_bukrs) = ' '.
 
DATA(ld_x_vname) = ' '.
 
DATA(ld_x_doi_no) = ' '.
 
DATA(ld__scope) = '3'.
 
DATA(ld__synchron) = ' '.
 
DATA(ld__collect) = ' '.
 
"SELECT single MANDT FROM OIUX8_NM_MASTER INTO @DATA(ld_mandt).
DATA(ld_mandt) = SY-MANDT.
 
"SELECT single RPT_ID FROM OIUX8_NM_MASTER INTO @DATA(ld_rpt_id).
 
"SELECT single WL_NO FROM OIUX8_NM_MASTER INTO @DATA(ld_wl_no).
 
"SELECT single WC_NO FROM OIUX8_NM_MASTER INTO @DATA(ld_wc_no).
 
"SELECT single MP_NO FROM OIUX8_NM_MASTER INTO @DATA(ld_mp_no).
 
"SELECT single BUKRS FROM OIUX8_NM_MASTER INTO @DATA(ld_bukrs).
 
"SELECT single VNAME FROM OIUX8_NM_MASTER INTO @DATA(ld_vname).
 
"SELECT single DOI_NO FROM OIUX8_NM_MASTER INTO @DATA(ld_doi_no).
 


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!