SAP DEQUEUE_/IXOS/EDC_TAHU Function Module for Release lock on object /IXOS/EDC_TAHU









DEQUEUE_/IXOS/EDC_TAHU is a standard dequeue /ixos/edc tahu 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 /IXOS/EDC_TAHU 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 /ixos/edc tahu FM, simply by entering the name DEQUEUE_/IXOS/EDC_TAHU into the relevant SAP transaction such as SE37 or SE38.

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



Function DEQUEUE_/IXOS/EDC_TAHU 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_/IXOS/EDC_TAHU'"Release lock on object /IXOS/EDC_TAHU
EXPORTING
* MODE_/IXOS/DC_TAHU = 'E' "Lock mode for table /IXOS/DC_TAHU
* FIELDNAME = "09th enqueue argument
* X_PROJECT = ' ' "Fill argument 02 with initial value?
* X_VERSION = ' ' "Fill argument 03 with initial value?
* X_TREE_NUM = ' ' "Fill argument 04 with initial value?
* X_DATASOURCE = ' ' "Fill argument 05 with initial value?
* X_NODETYPE = ' ' "Fill argument 06 with initial value?
* X_SEPHITLFLAG = ' ' "Fill argument 07 with initial value?
* X_USERNAME = ' ' "Fill argument 08 with initial value?
* X_FIELDNAME = ' ' "Fill argument 09 with initial value?
* _SCOPE = '3' "
* MANDT = SY-MANDT "01th enqueue argument
* _SYNCHRON = ' ' "Synchonous unlock
* _COLLECT = ' ' "Initially only collect lock
* PROJECT = "02th enqueue argument
* VERSION = "03th enqueue argument
* TREE_NUM = "04th enqueue argument
* DATASOURCE = "05th enqueue argument
* NODETYPE = "06th enqueue argument
* SEPHITLFLAG = "07th enqueue argument
* USERNAME = "08th enqueue argument
.



IMPORTING Parameters details for DEQUEUE_/IXOS/EDC_TAHU

MODE_/IXOS/DC_TAHU - Lock mode for table /IXOS/DC_TAHU

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

FIELDNAME - 09th enqueue argument

Data type: /IXOS/DC_TAHU-FIELDNAME
Optional: Yes
Call by Reference: No ( called with pass by value option)

X_PROJECT - Fill argument 02 with initial value?

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

X_VERSION - Fill argument 03 with initial value?

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

X_TREE_NUM - Fill argument 04 with initial value?

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

X_DATASOURCE - Fill argument 05 with initial value?

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

X_NODETYPE - Fill argument 06 with initial value?

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

X_SEPHITLFLAG - Fill argument 07 with initial value?

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

X_USERNAME - Fill argument 08 with initial value?

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

X_FIELDNAME - Fill argument 09 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)

MANDT - 01th enqueue argument

Data type: /IXOS/DC_TAHU-MANDT
Default: SY-MANDT
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)

PROJECT - 02th enqueue argument

Data type: /IXOS/DC_TAHU-PROJECT
Optional: Yes
Call by Reference: No ( called with pass by value option)

VERSION - 03th enqueue argument

Data type: /IXOS/DC_TAHU-VERSION
Optional: Yes
Call by Reference: No ( called with pass by value option)

TREE_NUM - 04th enqueue argument

Data type: /IXOS/DC_TAHU-TREE_NUM
Optional: Yes
Call by Reference: No ( called with pass by value option)

DATASOURCE - 05th enqueue argument

Data type: /IXOS/DC_TAHU-DATASOURCE
Optional: Yes
Call by Reference: No ( called with pass by value option)

NODETYPE - 06th enqueue argument

Data type: /IXOS/DC_TAHU-NODETYPE
Optional: Yes
Call by Reference: No ( called with pass by value option)

SEPHITLFLAG - 07th enqueue argument

Data type: /IXOS/DC_TAHU-SEPHITLFLAG
Optional: Yes
Call by Reference: No ( called with pass by value option)

USERNAME - 08th enqueue argument

Data type: /IXOS/DC_TAHU-USERNAME
Optional: Yes
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for DEQUEUE_/IXOS/EDC_TAHU 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_/ixos/dc_tahu  TYPE ENQMODE, "   'E'
lv_fieldname  TYPE /IXOS/DC_TAHU-FIELDNAME, "   
lv_x_project  TYPE /IXOS/DC_TAHU, "   SPACE
lv_x_version  TYPE /IXOS/DC_TAHU, "   SPACE
lv_x_tree_num  TYPE /IXOS/DC_TAHU, "   SPACE
lv_x_datasource  TYPE /IXOS/DC_TAHU, "   SPACE
lv_x_nodetype  TYPE /IXOS/DC_TAHU, "   SPACE
lv_x_sephitlflag  TYPE /IXOS/DC_TAHU, "   SPACE
lv_x_username  TYPE /IXOS/DC_TAHU, "   SPACE
lv_x_fieldname  TYPE /IXOS/DC_TAHU, "   SPACE
lv__scope  TYPE /IXOS/DC_TAHU, "   '3'
lv_mandt  TYPE /IXOS/DC_TAHU-MANDT, "   SY-MANDT
lv__synchron  TYPE /IXOS/DC_TAHU, "   SPACE
lv__collect  TYPE DDENQCOLL, "   ' '
lv_project  TYPE /IXOS/DC_TAHU-PROJECT, "   
lv_version  TYPE /IXOS/DC_TAHU-VERSION, "   
lv_tree_num  TYPE /IXOS/DC_TAHU-TREE_NUM, "   
lv_datasource  TYPE /IXOS/DC_TAHU-DATASOURCE, "   
lv_nodetype  TYPE /IXOS/DC_TAHU-NODETYPE, "   
lv_sephitlflag  TYPE /IXOS/DC_TAHU-SEPHITLFLAG, "   
lv_username  TYPE /IXOS/DC_TAHU-USERNAME. "   

  CALL FUNCTION 'DEQUEUE_/IXOS/EDC_TAHU'  "Release lock on object /IXOS/EDC_TAHU
    EXPORTING
         MODE_/IXOS/DC_TAHU = lv_mode_/ixos/dc_tahu
         FIELDNAME = lv_fieldname
         X_PROJECT = lv_x_project
         X_VERSION = lv_x_version
         X_TREE_NUM = lv_x_tree_num
         X_DATASOURCE = lv_x_datasource
         X_NODETYPE = lv_x_nodetype
         X_SEPHITLFLAG = lv_x_sephitlflag
         X_USERNAME = lv_x_username
         X_FIELDNAME = lv_x_fieldname
         _SCOPE = lv__scope
         MANDT = lv_mandt
         _SYNCHRON = lv__synchron
         _COLLECT = lv__collect
         PROJECT = lv_project
         VERSION = lv_version
         TREE_NUM = lv_tree_num
         DATASOURCE = lv_datasource
         NODETYPE = lv_nodetype
         SEPHITLFLAG = lv_sephitlflag
         USERNAME = lv_username
. " DEQUEUE_/IXOS/EDC_TAHU




ABAP code using 7.40 inline data declarations to call FM DEQUEUE_/IXOS/EDC_TAHU

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_/ixos/dc_tahu) = 'E'.
 
"SELECT single FIELDNAME FROM /IXOS/DC_TAHU INTO @DATA(ld_fieldname).
 
DATA(ld_x_project) = ' '.
 
DATA(ld_x_version) = ' '.
 
DATA(ld_x_tree_num) = ' '.
 
DATA(ld_x_datasource) = ' '.
 
DATA(ld_x_nodetype) = ' '.
 
DATA(ld_x_sephitlflag) = ' '.
 
DATA(ld_x_username) = ' '.
 
DATA(ld_x_fieldname) = ' '.
 
DATA(ld__scope) = '3'.
 
"SELECT single MANDT FROM /IXOS/DC_TAHU INTO @DATA(ld_mandt).
DATA(ld_mandt) = SY-MANDT.
 
DATA(ld__synchron) = ' '.
 
DATA(ld__collect) = ' '.
 
"SELECT single PROJECT FROM /IXOS/DC_TAHU INTO @DATA(ld_project).
 
"SELECT single VERSION FROM /IXOS/DC_TAHU INTO @DATA(ld_version).
 
"SELECT single TREE_NUM FROM /IXOS/DC_TAHU INTO @DATA(ld_tree_num).
 
"SELECT single DATASOURCE FROM /IXOS/DC_TAHU INTO @DATA(ld_datasource).
 
"SELECT single NODETYPE FROM /IXOS/DC_TAHU INTO @DATA(ld_nodetype).
 
"SELECT single SEPHITLFLAG FROM /IXOS/DC_TAHU INTO @DATA(ld_sephitlflag).
 
"SELECT single USERNAME FROM /IXOS/DC_TAHU INTO @DATA(ld_username).
 


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!