SAP DEQUEUE_E_TF630 Function Module for Release lock on object E_TF630









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

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



Function DEQUEUE_E_TF630 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_TF630'"Release lock on object E_TF630
EXPORTING
* MODE_TF630 = 'E' "Lock mode for table TF630
* ITEM = "09th enqueue argument
* SEQNR = "10th enqueue argument
* X_DIMEN = ' ' "Fill argument 02 with initial value?
* X_RLDNR = ' ' "Fill argument 03 with initial value?
* X_ITCLG = ' ' "Fill argument 04 with initial value?
* X_EQUVS = ' ' "Fill argument 05 with initial value?
* X_COICU = ' ' "Fill argument 06 with initial value?
* X_RYEAR = ' ' "Fill argument 07 with initial value?
* X_PERID = ' ' "Fill argument 08 with initial value?
* X_ITEM = ' ' "Fill argument 09 with initial value?
* MANDT = SY-MANDT "01th enqueue argument
* X_SEQNR = ' ' "Fill argument 10 with initial value?
* _SCOPE = '3' "
* _SYNCHRON = ' ' "Synchonous unlock
* _COLLECT = ' ' "Initially only collect lock
* DIMEN = "02th enqueue argument
* RLDNR = "03th enqueue argument
* ITCLG = "04th enqueue argument
* EQUVS = "05th enqueue argument
* COICU = "06th enqueue argument
* RYEAR = "07th enqueue argument
* PERID = "08th enqueue argument
.



IMPORTING Parameters details for DEQUEUE_E_TF630

MODE_TF630 - Lock mode for table TF630

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

ITEM - 09th enqueue argument

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

SEQNR - 10th enqueue argument

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

X_DIMEN - Fill argument 02 with initial value?

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

X_RLDNR - Fill argument 03 with initial value?

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

X_ITCLG - Fill argument 04 with initial value?

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

X_EQUVS - Fill argument 05 with initial value?

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

X_COICU - Fill argument 06 with initial value?

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

X_RYEAR - Fill argument 07 with initial value?

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

X_PERID - Fill argument 08 with initial value?

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

X_ITEM - Fill argument 09 with initial value?

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

MANDT - 01th enqueue argument

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

X_SEQNR - Fill argument 10 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: DDENQ_LIKE-COLLECT
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

DIMEN - 02th enqueue argument

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

RLDNR - 03th enqueue argument

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

ITCLG - 04th enqueue argument

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

EQUVS - 05th enqueue argument

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

COICU - 06th enqueue argument

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

RYEAR - 07th enqueue argument

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

PERID - 08th enqueue argument

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

Copy and paste ABAP code example for DEQUEUE_E_TF630 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_tf630  TYPE DD26E-ENQMODE, "   'E'
lv_item  TYPE TF630-ITEM, "   
lv_seqnr  TYPE TF630-SEQNR, "   
lv_x_dimen  TYPE TF630, "   SPACE
lv_x_rldnr  TYPE TF630, "   SPACE
lv_x_itclg  TYPE TF630, "   SPACE
lv_x_equvs  TYPE TF630, "   SPACE
lv_x_coicu  TYPE TF630, "   SPACE
lv_x_ryear  TYPE TF630, "   SPACE
lv_x_perid  TYPE TF630, "   SPACE
lv_x_item  TYPE TF630, "   SPACE
lv_mandt  TYPE TF630-MANDT, "   SY-MANDT
lv_x_seqnr  TYPE TF630, "   SPACE
lv__scope  TYPE TF630, "   '3'
lv__synchron  TYPE TF630, "   SPACE
lv__collect  TYPE DDENQ_LIKE-COLLECT, "   ' '
lv_dimen  TYPE TF630-DIMEN, "   
lv_rldnr  TYPE TF630-RLDNR, "   
lv_itclg  TYPE TF630-ITCLG, "   
lv_equvs  TYPE TF630-EQUVS, "   
lv_coicu  TYPE TF630-COICU, "   
lv_ryear  TYPE TF630-RYEAR, "   
lv_perid  TYPE TF630-PERID. "   

  CALL FUNCTION 'DEQUEUE_E_TF630'  "Release lock on object E_TF630
    EXPORTING
         MODE_TF630 = lv_mode_tf630
         ITEM = lv_item
         SEQNR = lv_seqnr
         X_DIMEN = lv_x_dimen
         X_RLDNR = lv_x_rldnr
         X_ITCLG = lv_x_itclg
         X_EQUVS = lv_x_equvs
         X_COICU = lv_x_coicu
         X_RYEAR = lv_x_ryear
         X_PERID = lv_x_perid
         X_ITEM = lv_x_item
         MANDT = lv_mandt
         X_SEQNR = lv_x_seqnr
         _SCOPE = lv__scope
         _SYNCHRON = lv__synchron
         _COLLECT = lv__collect
         DIMEN = lv_dimen
         RLDNR = lv_rldnr
         ITCLG = lv_itclg
         EQUVS = lv_equvs
         COICU = lv_coicu
         RYEAR = lv_ryear
         PERID = lv_perid
. " DEQUEUE_E_TF630




ABAP code using 7.40 inline data declarations to call FM DEQUEUE_E_TF630

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.

"SELECT single ENQMODE FROM DD26E INTO @DATA(ld_mode_tf630).
DATA(ld_mode_tf630) = 'E'.
 
"SELECT single ITEM FROM TF630 INTO @DATA(ld_item).
 
"SELECT single SEQNR FROM TF630 INTO @DATA(ld_seqnr).
 
DATA(ld_x_dimen) = ' '.
 
DATA(ld_x_rldnr) = ' '.
 
DATA(ld_x_itclg) = ' '.
 
DATA(ld_x_equvs) = ' '.
 
DATA(ld_x_coicu) = ' '.
 
DATA(ld_x_ryear) = ' '.
 
DATA(ld_x_perid) = ' '.
 
DATA(ld_x_item) = ' '.
 
"SELECT single MANDT FROM TF630 INTO @DATA(ld_mandt).
DATA(ld_mandt) = SY-MANDT.
 
DATA(ld_x_seqnr) = ' '.
 
DATA(ld__scope) = '3'.
 
DATA(ld__synchron) = ' '.
 
"SELECT single COLLECT FROM DDENQ_LIKE INTO @DATA(ld__collect).
DATA(ld__collect) = ' '.
 
"SELECT single DIMEN FROM TF630 INTO @DATA(ld_dimen).
 
"SELECT single RLDNR FROM TF630 INTO @DATA(ld_rldnr).
 
"SELECT single ITCLG FROM TF630 INTO @DATA(ld_itclg).
 
"SELECT single EQUVS FROM TF630 INTO @DATA(ld_equvs).
 
"SELECT single COICU FROM TF630 INTO @DATA(ld_coicu).
 
"SELECT single RYEAR FROM TF630 INTO @DATA(ld_ryear).
 
"SELECT single PERID FROM TF630 INTO @DATA(ld_perid).
 


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!