SAP DEQUEUE_EGGLT1E Function Module for Release lock on object EGGLT1E









DEQUEUE_EGGLT1E is a standard dequeue egglt1e 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 EGGLT1E 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 egglt1e FM, simply by entering the name DEQUEUE_EGGLT1E into the relevant SAP transaction such as SE37 or SE38.

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



Function DEQUEUE_EGGLT1E 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_EGGLT1E'"Release lock on object EGGLT1E
EXPORTING
* MODE_GLT1 = 'E' "Lock mode for table GLT1
* UMSKZ = "09th enqueue argument
* RMVCT = "10th enqueue argument
* OCLNT = "11th enqueue argument
* RASSC = "12th enqueue argument
* KOKRS = "13th enqueue argument
* RCNTR = "14th enqueue argument
* RACVT = "15th enqueue argument
* SBUSA = "16th enqueue argument
* SCNTR = "17th enqueue argument
* RTCUR = "18th enqueue argument
* RCLNT = SY-MANDT "01th enqueue argument
* RUNIT = "19th enqueue argument
* DRCRK = "20th enqueue argument
* RPMAX = "21th enqueue argument
* X_RLDNR = ' ' "Fill argument 02 with initial value?
* X_RRCTY = ' ' "Fill argument 03 with initial value?
* X_RVERS = ' ' "Fill argument 04 with initial value?
* X_BUKRS = ' ' "Fill argument 05 with initial value?
* X_RYEAR = ' ' "Fill argument 06 with initial value?
* X_RACCT = ' ' "Fill argument 07 with initial value?
* X_RBUSA = ' ' "Fill argument 08 with initial value?
* RLDNR = "02th enqueue argument
* X_UMSKZ = ' ' "Fill argument 09 with initial value?
* X_RMVCT = ' ' "Fill argument 10 with initial value?
* X_OCLNT = ' ' "Fill argument 11 with initial value?
* X_RASSC = ' ' "Fill argument 12 with initial value?
* X_KOKRS = ' ' "Fill argument 13 with initial value?
* X_RCNTR = ' ' "Fill argument 14 with initial value?
* X_RACVT = ' ' "Fill argument 15 with initial value?
* X_SBUSA = ' ' "Fill argument 16 with initial value?
* X_SCNTR = ' ' "Fill argument 17 with initial value?
* X_RTCUR = ' ' "Fill argument 18 with initial value?
* RRCTY = "03th enqueue argument
* X_RUNIT = ' ' "Fill argument 19 with initial value?
* X_DRCRK = ' ' "Fill argument 20 with initial value?
* X_RPMAX = ' ' "Fill argument 21 with initial value?
* _SCOPE = '3' "
* _SYNCHRON = ' ' "Synchonous unlock
* _COLLECT = ' ' "Initially only collect lock
* RVERS = "04th enqueue argument
* BUKRS = "05th enqueue argument
* RYEAR = "06th enqueue argument
* RACCT = "07th enqueue argument
* RBUSA = "08th enqueue argument
.



IMPORTING Parameters details for DEQUEUE_EGGLT1E

MODE_GLT1 - Lock mode for table GLT1

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

UMSKZ - 09th enqueue argument

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

RMVCT - 10th enqueue argument

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

OCLNT - 11th enqueue argument

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

RASSC - 12th enqueue argument

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

KOKRS - 13th enqueue argument

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

RCNTR - 14th enqueue argument

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

RACVT - 15th enqueue argument

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

SBUSA - 16th enqueue argument

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

SCNTR - 17th enqueue argument

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

RTCUR - 18th enqueue argument

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

RCLNT - 01th enqueue argument

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

RUNIT - 19th enqueue argument

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

DRCRK - 20th enqueue argument

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

RPMAX - 21th enqueue argument

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

X_RLDNR - Fill argument 02 with initial value?

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

X_RRCTY - Fill argument 03 with initial value?

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

X_RVERS - Fill argument 04 with initial value?

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

X_BUKRS - Fill argument 05 with initial value?

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

X_RYEAR - Fill argument 06 with initial value?

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

X_RACCT - Fill argument 07 with initial value?

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

X_RBUSA - Fill argument 08 with initial value?

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

RLDNR - 02th enqueue argument

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

X_UMSKZ - Fill argument 09 with initial value?

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

X_RMVCT - Fill argument 10 with initial value?

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

X_OCLNT - Fill argument 11 with initial value?

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

X_RASSC - Fill argument 12 with initial value?

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

X_KOKRS - Fill argument 13 with initial value?

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

X_RCNTR - Fill argument 14 with initial value?

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

X_RACVT - Fill argument 15 with initial value?

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

X_SBUSA - Fill argument 16 with initial value?

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

X_SCNTR - Fill argument 17 with initial value?

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

X_RTCUR - Fill argument 18 with initial value?

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

RRCTY - 03th enqueue argument

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

X_RUNIT - Fill argument 19 with initial value?

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

X_DRCRK - Fill argument 20 with initial value?

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

X_RPMAX - Fill argument 21 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)

RVERS - 04th enqueue argument

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

BUKRS - 05th enqueue argument

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

RYEAR - 06th enqueue argument

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

RACCT - 07th enqueue argument

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

RBUSA - 08th enqueue argument

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

Copy and paste ABAP code example for DEQUEUE_EGGLT1E 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_glt1  TYPE ENQMODE, "   'E'
lv_umskz  TYPE GLT1-UMSKZ, "   
lv_rmvct  TYPE GLT1-RMVCT, "   
lv_oclnt  TYPE GLT1-OCLNT, "   
lv_rassc  TYPE GLT1-RASSC, "   
lv_kokrs  TYPE GLT1-KOKRS, "   
lv_rcntr  TYPE GLT1-RCNTR, "   
lv_racvt  TYPE GLT1-RACVT, "   
lv_sbusa  TYPE GLT1-SBUSA, "   
lv_scntr  TYPE GLT1-SCNTR, "   
lv_rtcur  TYPE GLT1-RTCUR, "   
lv_rclnt  TYPE GLT1-RCLNT, "   SY-MANDT
lv_runit  TYPE GLT1-RUNIT, "   
lv_drcrk  TYPE GLT1-DRCRK, "   
lv_rpmax  TYPE GLT1-RPMAX, "   
lv_x_rldnr  TYPE GLT1, "   SPACE
lv_x_rrcty  TYPE GLT1, "   SPACE
lv_x_rvers  TYPE GLT1, "   SPACE
lv_x_bukrs  TYPE GLT1, "   SPACE
lv_x_ryear  TYPE GLT1, "   SPACE
lv_x_racct  TYPE GLT1, "   SPACE
lv_x_rbusa  TYPE GLT1, "   SPACE
lv_rldnr  TYPE GLT1-RLDNR, "   
lv_x_umskz  TYPE GLT1, "   SPACE
lv_x_rmvct  TYPE GLT1, "   SPACE
lv_x_oclnt  TYPE GLT1, "   SPACE
lv_x_rassc  TYPE GLT1, "   SPACE
lv_x_kokrs  TYPE GLT1, "   SPACE
lv_x_rcntr  TYPE GLT1, "   SPACE
lv_x_racvt  TYPE GLT1, "   SPACE
lv_x_sbusa  TYPE GLT1, "   SPACE
lv_x_scntr  TYPE GLT1, "   SPACE
lv_x_rtcur  TYPE GLT1, "   SPACE
lv_rrcty  TYPE GLT1-RRCTY, "   
lv_x_runit  TYPE GLT1, "   SPACE
lv_x_drcrk  TYPE GLT1, "   SPACE
lv_x_rpmax  TYPE GLT1, "   SPACE
lv__scope  TYPE GLT1, "   '3'
lv__synchron  TYPE GLT1, "   SPACE
lv__collect  TYPE DDENQCOLL, "   ' '
lv_rvers  TYPE GLT1-RVERS, "   
lv_bukrs  TYPE GLT1-BUKRS, "   
lv_ryear  TYPE GLT1-RYEAR, "   
lv_racct  TYPE GLT1-RACCT, "   
lv_rbusa  TYPE GLT1-RBUSA. "   

  CALL FUNCTION 'DEQUEUE_EGGLT1E'  "Release lock on object EGGLT1E
    EXPORTING
         MODE_GLT1 = lv_mode_glt1
         UMSKZ = lv_umskz
         RMVCT = lv_rmvct
         OCLNT = lv_oclnt
         RASSC = lv_rassc
         KOKRS = lv_kokrs
         RCNTR = lv_rcntr
         RACVT = lv_racvt
         SBUSA = lv_sbusa
         SCNTR = lv_scntr
         RTCUR = lv_rtcur
         RCLNT = lv_rclnt
         RUNIT = lv_runit
         DRCRK = lv_drcrk
         RPMAX = lv_rpmax
         X_RLDNR = lv_x_rldnr
         X_RRCTY = lv_x_rrcty
         X_RVERS = lv_x_rvers
         X_BUKRS = lv_x_bukrs
         X_RYEAR = lv_x_ryear
         X_RACCT = lv_x_racct
         X_RBUSA = lv_x_rbusa
         RLDNR = lv_rldnr
         X_UMSKZ = lv_x_umskz
         X_RMVCT = lv_x_rmvct
         X_OCLNT = lv_x_oclnt
         X_RASSC = lv_x_rassc
         X_KOKRS = lv_x_kokrs
         X_RCNTR = lv_x_rcntr
         X_RACVT = lv_x_racvt
         X_SBUSA = lv_x_sbusa
         X_SCNTR = lv_x_scntr
         X_RTCUR = lv_x_rtcur
         RRCTY = lv_rrcty
         X_RUNIT = lv_x_runit
         X_DRCRK = lv_x_drcrk
         X_RPMAX = lv_x_rpmax
         _SCOPE = lv__scope
         _SYNCHRON = lv__synchron
         _COLLECT = lv__collect
         RVERS = lv_rvers
         BUKRS = lv_bukrs
         RYEAR = lv_ryear
         RACCT = lv_racct
         RBUSA = lv_rbusa
. " DEQUEUE_EGGLT1E




ABAP code using 7.40 inline data declarations to call FM DEQUEUE_EGGLT1E

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_glt1) = 'E'.
 
"SELECT single UMSKZ FROM GLT1 INTO @DATA(ld_umskz).
 
"SELECT single RMVCT FROM GLT1 INTO @DATA(ld_rmvct).
 
"SELECT single OCLNT FROM GLT1 INTO @DATA(ld_oclnt).
 
"SELECT single RASSC FROM GLT1 INTO @DATA(ld_rassc).
 
"SELECT single KOKRS FROM GLT1 INTO @DATA(ld_kokrs).
 
"SELECT single RCNTR FROM GLT1 INTO @DATA(ld_rcntr).
 
"SELECT single RACVT FROM GLT1 INTO @DATA(ld_racvt).
 
"SELECT single SBUSA FROM GLT1 INTO @DATA(ld_sbusa).
 
"SELECT single SCNTR FROM GLT1 INTO @DATA(ld_scntr).
 
"SELECT single RTCUR FROM GLT1 INTO @DATA(ld_rtcur).
 
"SELECT single RCLNT FROM GLT1 INTO @DATA(ld_rclnt).
DATA(ld_rclnt) = SY-MANDT.
 
"SELECT single RUNIT FROM GLT1 INTO @DATA(ld_runit).
 
"SELECT single DRCRK FROM GLT1 INTO @DATA(ld_drcrk).
 
"SELECT single RPMAX FROM GLT1 INTO @DATA(ld_rpmax).
 
DATA(ld_x_rldnr) = ' '.
 
DATA(ld_x_rrcty) = ' '.
 
DATA(ld_x_rvers) = ' '.
 
DATA(ld_x_bukrs) = ' '.
 
DATA(ld_x_ryear) = ' '.
 
DATA(ld_x_racct) = ' '.
 
DATA(ld_x_rbusa) = ' '.
 
"SELECT single RLDNR FROM GLT1 INTO @DATA(ld_rldnr).
 
DATA(ld_x_umskz) = ' '.
 
DATA(ld_x_rmvct) = ' '.
 
DATA(ld_x_oclnt) = ' '.
 
DATA(ld_x_rassc) = ' '.
 
DATA(ld_x_kokrs) = ' '.
 
DATA(ld_x_rcntr) = ' '.
 
DATA(ld_x_racvt) = ' '.
 
DATA(ld_x_sbusa) = ' '.
 
DATA(ld_x_scntr) = ' '.
 
DATA(ld_x_rtcur) = ' '.
 
"SELECT single RRCTY FROM GLT1 INTO @DATA(ld_rrcty).
 
DATA(ld_x_runit) = ' '.
 
DATA(ld_x_drcrk) = ' '.
 
DATA(ld_x_rpmax) = ' '.
 
DATA(ld__scope) = '3'.
 
DATA(ld__synchron) = ' '.
 
DATA(ld__collect) = ' '.
 
"SELECT single RVERS FROM GLT1 INTO @DATA(ld_rvers).
 
"SELECT single BUKRS FROM GLT1 INTO @DATA(ld_bukrs).
 
"SELECT single RYEAR FROM GLT1 INTO @DATA(ld_ryear).
 
"SELECT single RACCT FROM GLT1 INTO @DATA(ld_racct).
 
"SELECT single RBUSA FROM GLT1 INTO @DATA(ld_rbusa).
 


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!