SAP ENQUEUE_EJPLF Function Module for Request lock for object EJPLF









ENQUEUE_EJPLF is a standard enqueue ejplf SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Request lock for object EJPLF 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 enqueue ejplf FM, simply by entering the name ENQUEUE_EJPLF into the relevant SAP transaction such as SE37 or SE38.

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



Function ENQUEUE_EJPLF 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 'ENQUEUE_EJPLF'"Request lock for object EJPLF
EXPORTING
* MODE_RJP_ENQ_DELIV_SEQ = 'E' "Lock mode for table RJP_ENQ_DELIV_SEQ
* MANDT = SY-MANDT "01th enqueue argument
* MED_PROD = "02th enqueue argument
* MED_ISSUE = "03th enqueue argument
* X_MED_PROD = ' ' "Fill argument 02 with initial value?
* X_MED_ISSUE = ' ' "Fill argument 03 with initial value?
* _SCOPE = '2' "
* _WAIT = ' ' "
* _COLLECT = ' ' "Initially only collect lock

EXCEPTIONS
FOREIGN_LOCK = 1 SYSTEM_FAILURE = 2
.



IMPORTING Parameters details for ENQUEUE_EJPLF

MODE_RJP_ENQ_DELIV_SEQ - Lock mode for table RJP_ENQ_DELIV_SEQ

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

MANDT - 01th enqueue argument

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

MED_PROD - 02th enqueue argument

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

MED_ISSUE - 03th enqueue argument

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

X_MED_PROD - Fill argument 02 with initial value?

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

X_MED_ISSUE - Fill argument 03 with initial value?

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

_SCOPE -

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

_WAIT -

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)

EXCEPTIONS details

FOREIGN_LOCK - Object already locked

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

SYSTEM_FAILURE - Internal error from enqueue server

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

Copy and paste ABAP code example for ENQUEUE_EJPLF 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_foreign_lock  TYPE STRING, "   
lv_mode_rjp_enq_deliv_seq  TYPE ENQMODE, "   'E'
lv_mandt  TYPE RJP_ENQ_DELIV_SEQ-MANDT, "   SY-MANDT
lv_system_failure  TYPE RJP_ENQ_DELIV_SEQ, "   
lv_med_prod  TYPE RJP_ENQ_DELIV_SEQ-MED_PROD, "   
lv_med_issue  TYPE RJP_ENQ_DELIV_SEQ-MED_ISSUE, "   
lv_x_med_prod  TYPE RJP_ENQ_DELIV_SEQ, "   SPACE
lv_x_med_issue  TYPE RJP_ENQ_DELIV_SEQ, "   SPACE
lv__scope  TYPE RJP_ENQ_DELIV_SEQ, "   '2'
lv__wait  TYPE RJP_ENQ_DELIV_SEQ, "   SPACE
lv__collect  TYPE DDENQCOLL. "   ' '

  CALL FUNCTION 'ENQUEUE_EJPLF'  "Request lock for object EJPLF
    EXPORTING
         MODE_RJP_ENQ_DELIV_SEQ = lv_mode_rjp_enq_deliv_seq
         MANDT = lv_mandt
         MED_PROD = lv_med_prod
         MED_ISSUE = lv_med_issue
         X_MED_PROD = lv_x_med_prod
         X_MED_ISSUE = lv_x_med_issue
         _SCOPE = lv__scope
         _WAIT = lv__wait
         _COLLECT = lv__collect
    EXCEPTIONS
        FOREIGN_LOCK = 1
        SYSTEM_FAILURE = 2
. " ENQUEUE_EJPLF




ABAP code using 7.40 inline data declarations to call FM ENQUEUE_EJPLF

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_rjp_enq_deliv_seq) = 'E'.
 
"SELECT single MANDT FROM RJP_ENQ_DELIV_SEQ INTO @DATA(ld_mandt).
DATA(ld_mandt) = SY-MANDT.
 
 
"SELECT single MED_PROD FROM RJP_ENQ_DELIV_SEQ INTO @DATA(ld_med_prod).
 
"SELECT single MED_ISSUE FROM RJP_ENQ_DELIV_SEQ INTO @DATA(ld_med_issue).
 
DATA(ld_x_med_prod) = ' '.
 
DATA(ld_x_med_issue) = ' '.
 
DATA(ld__scope) = '2'.
 
DATA(ld__wait) = ' '.
 
DATA(ld__collect) = ' '.
 


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!