SAP DEQUEUE_EOIH_J1B_MATDOC Function Module for Release lock on object EOIH_J1B_MATDOC









DEQUEUE_EOIH_J1B_MATDOC is a standard dequeue eoih j1b matdoc 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 EOIH_J1B_MATDOC 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 eoih j1b matdoc FM, simply by entering the name DEQUEUE_EOIH_J1B_MATDOC 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): Normal Function Module
Update:



Function DEQUEUE_EOIH_J1B_MATDOC 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_EOIH_J1B_MATDOC'"Release lock on object EOIH_J1B_MATDOC
EXPORTING
* MODE_MATDOC = 'E' "Lock mode for table MATDOC
* X_KEY2 = ' ' "Fill argument 03 with initial value?
* X_KEY3 = ' ' "Fill argument 04 with initial value?
* X_KEY4 = ' ' "Fill argument 05 with initial value?
* X_KEY5 = ' ' "Fill argument 06 with initial value?
* X_KEY6 = ' ' "Fill argument 07 with initial value?
* _SCOPE = '3' "
* _SYNCHRON = ' ' "Synchonous unlock
* _COLLECT = ' ' "Initially only collect lock
* MANDT = SY-MANDT "01th enqueue argument
* KEY1 = "02th enqueue argument
* KEY2 = "03th enqueue argument
* KEY3 = "04th enqueue argument
* KEY4 = "05th enqueue argument
* KEY5 = "06th enqueue argument
* KEY6 = "07th enqueue argument
* X_KEY1 = ' ' "Fill argument 02 with initial value?
.



IMPORTING Parameters details for DEQUEUE_EOIH_J1B_MATDOC

MODE_MATDOC - Lock mode for table MATDOC

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

X_KEY2 - Fill argument 03 with initial value?

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

X_KEY3 - Fill argument 04 with initial value?

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

X_KEY4 - Fill argument 05 with initial value?

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

X_KEY5 - Fill argument 06 with initial value?

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

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

KEY1 - 02th enqueue argument

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

KEY2 - 03th enqueue argument

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

KEY3 - 04th enqueue argument

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

KEY4 - 05th enqueue argument

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

KEY5 - 06th enqueue argument

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

KEY6 - 07th enqueue argument

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

X_KEY1 - 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_EOIH_J1B_MATDOC 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_matdoc  TYPE ENQMODE, "   'E'
lv_x_key2  TYPE ENQMODE, "   SPACE
lv_x_key3  TYPE ENQMODE, "   SPACE
lv_x_key4  TYPE ENQMODE, "   SPACE
lv_x_key5  TYPE ENQMODE, "   SPACE
lv_x_key6  TYPE ENQMODE, "   SPACE
lv__scope  TYPE ENQMODE, "   '3'
lv__synchron  TYPE ENQMODE, "   SPACE
lv__collect  TYPE DDENQCOLL, "   ' '
lv_mandt  TYPE MATDOC-MANDT, "   SY-MANDT
lv_key1  TYPE MATDOC-KEY1, "   
lv_key2  TYPE MATDOC-KEY2, "   
lv_key3  TYPE MATDOC-KEY3, "   
lv_key4  TYPE MATDOC-KEY4, "   
lv_key5  TYPE MATDOC-KEY5, "   
lv_key6  TYPE MATDOC-KEY6, "   
lv_x_key1  TYPE MATDOC. "   SPACE

  CALL FUNCTION 'DEQUEUE_EOIH_J1B_MATDOC'  "Release lock on object EOIH_J1B_MATDOC
    EXPORTING
         MODE_MATDOC = lv_mode_matdoc
         X_KEY2 = lv_x_key2
         X_KEY3 = lv_x_key3
         X_KEY4 = lv_x_key4
         X_KEY5 = lv_x_key5
         X_KEY6 = lv_x_key6
         _SCOPE = lv__scope
         _SYNCHRON = lv__synchron
         _COLLECT = lv__collect
         MANDT = lv_mandt
         KEY1 = lv_key1
         KEY2 = lv_key2
         KEY3 = lv_key3
         KEY4 = lv_key4
         KEY5 = lv_key5
         KEY6 = lv_key6
         X_KEY1 = lv_x_key1
. " DEQUEUE_EOIH_J1B_MATDOC




ABAP code using 7.40 inline data declarations to call FM DEQUEUE_EOIH_J1B_MATDOC

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_matdoc) = 'E'.
 
DATA(ld_x_key2) = ' '.
 
DATA(ld_x_key3) = ' '.
 
DATA(ld_x_key4) = ' '.
 
DATA(ld_x_key5) = ' '.
 
DATA(ld_x_key6) = ' '.
 
DATA(ld__scope) = '3'.
 
DATA(ld__synchron) = ' '.
 
DATA(ld__collect) = ' '.
 
"SELECT single MANDT FROM MATDOC INTO @DATA(ld_mandt).
DATA(ld_mandt) = SY-MANDT.
 
"SELECT single KEY1 FROM MATDOC INTO @DATA(ld_key1).
 
"SELECT single KEY2 FROM MATDOC INTO @DATA(ld_key2).
 
"SELECT single KEY3 FROM MATDOC INTO @DATA(ld_key3).
 
"SELECT single KEY4 FROM MATDOC INTO @DATA(ld_key4).
 
"SELECT single KEY5 FROM MATDOC INTO @DATA(ld_key5).
 
"SELECT single KEY6 FROM MATDOC INTO @DATA(ld_key6).
 
DATA(ld_x_key1) = ' '.
 


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!