SAP DEQUEUE_E_AMDP_DBG_REG Function Module for Release lock on object E_AMDP_DBG_REG
DEQUEUE_E_AMDP_DBG_REG is a standard dequeue e amdp dbg reg 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_AMDP_DBG_REG 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 amdp dbg reg FM, simply by entering the name DEQUEUE_E_AMDP_DBG_REG into the relevant SAP transaction such as SE37 or SE38.
Function Group: /1BCDWBEN/SEN0006
Program Name: /1BCDWBEN/SAPLSEN0006
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function DEQUEUE_E_AMDP_DBG_REG 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_AMDP_DBG_REG'"Release lock on object E_AMDP_DBG_REG.
EXPORTING
* MODE_AMDP_DBG_DEBUGGER_REGIS00 = 'E' "Lock mode for table AMDP_DBG_DEBUGGER_REGISTRY
* X_DEBUGGER_CLIENT = ' ' "Fill argument 01 with initial value?
* X_DEBUGGER_USER = ' ' "Fill argument 02 with initial value?
* X_DEBUGGEE_USER = ' ' "Fill argument 03 with initial value?
* X_DEBUGGEE_DB_CONN = ' ' "Fill argument 04 with initial value?
* X_DEBUGGER_CONTEXT = ' ' "Fill argument 05 with initial value?
* X_DEBUGGER_ID = ' ' "Fill argument 06 with initial value?
* X_DBG_HOLD_CNT = ' ' "Fill argument 07 with initial value?
* X_ACTIVE_SINCE = ' ' "Fill argument 08 with initial value?
* _SCOPE = '3' "
* _SYNCHRON = ' ' "Synchonous unlock
* DEBUGGER_CLIENT = "01th enqueue argument
* _COLLECT = ' ' "Initially only collect lock
* DEBUGGER_USER = "02th enqueue argument
* DEBUGGEE_USER = "03th enqueue argument
* DEBUGGEE_DB_CONN = "04th enqueue argument
* DEBUGGER_CONTEXT = "05th enqueue argument
* DEBUGGER_ID = "06th enqueue argument
* DBG_HOLD_CNT = "07th enqueue argument
* ACTIVE_SINCE = "08th enqueue argument
IMPORTING Parameters details for DEQUEUE_E_AMDP_DBG_REG
MODE_AMDP_DBG_DEBUGGER_REGIS00 - Lock mode for table AMDP_DBG_DEBUGGER_REGISTRY
Data type: ENQMODEDefault: 'E'
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_DEBUGGER_CLIENT - Fill argument 01 with initial value?
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_DEBUGGER_USER - Fill argument 02 with initial value?
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_DEBUGGEE_USER - Fill argument 03 with initial value?
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_DEBUGGEE_DB_CONN - Fill argument 04 with initial value?
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_DEBUGGER_CONTEXT - Fill argument 05 with initial value?
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_DEBUGGER_ID - Fill argument 06 with initial value?
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_DBG_HOLD_CNT - Fill argument 07 with initial value?
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_ACTIVE_SINCE - Fill argument 08 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)
DEBUGGER_CLIENT - 01th enqueue argument
Data type: AMDP_DBG_DEBUGGER_REGISTRY-DEBUGGER_CLIENTOptional: Yes
Call by Reference: No ( called with pass by value option)
_COLLECT - Initially only collect lock
Data type: DDENQCOLLDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
DEBUGGER_USER - 02th enqueue argument
Data type: AMDP_DBG_DEBUGGER_REGISTRY-DEBUGGER_USEROptional: Yes
Call by Reference: No ( called with pass by value option)
DEBUGGEE_USER - 03th enqueue argument
Data type: AMDP_DBG_DEBUGGER_REGISTRY-DEBUGGEE_USEROptional: Yes
Call by Reference: No ( called with pass by value option)
DEBUGGEE_DB_CONN - 04th enqueue argument
Data type: AMDP_DBG_DEBUGGER_REGISTRY-DEBUGGEE_DB_CONNOptional: Yes
Call by Reference: No ( called with pass by value option)
DEBUGGER_CONTEXT - 05th enqueue argument
Data type: AMDP_DBG_DEBUGGER_REGISTRY-DEBUGGER_CONTEXTOptional: Yes
Call by Reference: No ( called with pass by value option)
DEBUGGER_ID - 06th enqueue argument
Data type: AMDP_DBG_DEBUGGER_REGISTRY-DEBUGGER_IDOptional: Yes
Call by Reference: No ( called with pass by value option)
DBG_HOLD_CNT - 07th enqueue argument
Data type: AMDP_DBG_DEBUGGER_REGISTRY-DBG_HOLD_CNTOptional: Yes
Call by Reference: No ( called with pass by value option)
ACTIVE_SINCE - 08th enqueue argument
Data type: AMDP_DBG_DEBUGGER_REGISTRY-ACTIVE_SINCEOptional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for DEQUEUE_E_AMDP_DBG_REG 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_amdp_dbg_debugger_regis00 | TYPE ENQMODE, " 'E' | |||
| lv_x_debugger_client | TYPE ENQMODE, " SPACE | |||
| lv_x_debugger_user | TYPE ENQMODE, " SPACE | |||
| lv_x_debuggee_user | TYPE ENQMODE, " SPACE | |||
| lv_x_debuggee_db_conn | TYPE ENQMODE, " SPACE | |||
| lv_x_debugger_context | TYPE ENQMODE, " SPACE | |||
| lv_x_debugger_id | TYPE ENQMODE, " SPACE | |||
| lv_x_dbg_hold_cnt | TYPE ENQMODE, " SPACE | |||
| lv_x_active_since | TYPE ENQMODE, " SPACE | |||
| lv__scope | TYPE ENQMODE, " '3' | |||
| lv__synchron | TYPE ENQMODE, " SPACE | |||
| lv_debugger_client | TYPE AMDP_DBG_DEBUGGER_REGISTRY-DEBUGGER_CLIENT, " | |||
| lv__collect | TYPE DDENQCOLL, " ' ' | |||
| lv_debugger_user | TYPE AMDP_DBG_DEBUGGER_REGISTRY-DEBUGGER_USER, " | |||
| lv_debuggee_user | TYPE AMDP_DBG_DEBUGGER_REGISTRY-DEBUGGEE_USER, " | |||
| lv_debuggee_db_conn | TYPE AMDP_DBG_DEBUGGER_REGISTRY-DEBUGGEE_DB_CONN, " | |||
| lv_debugger_context | TYPE AMDP_DBG_DEBUGGER_REGISTRY-DEBUGGER_CONTEXT, " | |||
| lv_debugger_id | TYPE AMDP_DBG_DEBUGGER_REGISTRY-DEBUGGER_ID, " | |||
| lv_dbg_hold_cnt | TYPE AMDP_DBG_DEBUGGER_REGISTRY-DBG_HOLD_CNT, " | |||
| lv_active_since | TYPE AMDP_DBG_DEBUGGER_REGISTRY-ACTIVE_SINCE. " |
|   CALL FUNCTION 'DEQUEUE_E_AMDP_DBG_REG' "Release lock on object E_AMDP_DBG_REG |
| EXPORTING | ||
| MODE_AMDP_DBG_DEBUGGER_REGIS00 | = lv_mode_amdp_dbg_debugger_regis00 | |
| X_DEBUGGER_CLIENT | = lv_x_debugger_client | |
| X_DEBUGGER_USER | = lv_x_debugger_user | |
| X_DEBUGGEE_USER | = lv_x_debuggee_user | |
| X_DEBUGGEE_DB_CONN | = lv_x_debuggee_db_conn | |
| X_DEBUGGER_CONTEXT | = lv_x_debugger_context | |
| X_DEBUGGER_ID | = lv_x_debugger_id | |
| X_DBG_HOLD_CNT | = lv_x_dbg_hold_cnt | |
| X_ACTIVE_SINCE | = lv_x_active_since | |
| _SCOPE | = lv__scope | |
| _SYNCHRON | = lv__synchron | |
| DEBUGGER_CLIENT | = lv_debugger_client | |
| _COLLECT | = lv__collect | |
| DEBUGGER_USER | = lv_debugger_user | |
| DEBUGGEE_USER | = lv_debuggee_user | |
| DEBUGGEE_DB_CONN | = lv_debuggee_db_conn | |
| DEBUGGER_CONTEXT | = lv_debugger_context | |
| DEBUGGER_ID | = lv_debugger_id | |
| DBG_HOLD_CNT | = lv_dbg_hold_cnt | |
| ACTIVE_SINCE | = lv_active_since | |
| . " DEQUEUE_E_AMDP_DBG_REG | ||
ABAP code using 7.40 inline data declarations to call FM DEQUEUE_E_AMDP_DBG_REG
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_amdp_dbg_debugger_regis00) | = 'E'. | |||
| DATA(ld_x_debugger_client) | = ' '. | |||
| DATA(ld_x_debugger_user) | = ' '. | |||
| DATA(ld_x_debuggee_user) | = ' '. | |||
| DATA(ld_x_debuggee_db_conn) | = ' '. | |||
| DATA(ld_x_debugger_context) | = ' '. | |||
| DATA(ld_x_debugger_id) | = ' '. | |||
| DATA(ld_x_dbg_hold_cnt) | = ' '. | |||
| DATA(ld_x_active_since) | = ' '. | |||
| DATA(ld__scope) | = '3'. | |||
| DATA(ld__synchron) | = ' '. | |||
| "SELECT single DEBUGGER_CLIENT FROM AMDP_DBG_DEBUGGER_REGISTRY INTO @DATA(ld_debugger_client). | ||||
| DATA(ld__collect) | = ' '. | |||
| "SELECT single DEBUGGER_USER FROM AMDP_DBG_DEBUGGER_REGISTRY INTO @DATA(ld_debugger_user). | ||||
| "SELECT single DEBUGGEE_USER FROM AMDP_DBG_DEBUGGER_REGISTRY INTO @DATA(ld_debuggee_user). | ||||
| "SELECT single DEBUGGEE_DB_CONN FROM AMDP_DBG_DEBUGGER_REGISTRY INTO @DATA(ld_debuggee_db_conn). | ||||
| "SELECT single DEBUGGER_CONTEXT FROM AMDP_DBG_DEBUGGER_REGISTRY INTO @DATA(ld_debugger_context). | ||||
| "SELECT single DEBUGGER_ID FROM AMDP_DBG_DEBUGGER_REGISTRY INTO @DATA(ld_debugger_id). | ||||
| "SELECT single DBG_HOLD_CNT FROM AMDP_DBG_DEBUGGER_REGISTRY INTO @DATA(ld_dbg_hold_cnt). | ||||
| "SELECT single ACTIVE_SINCE FROM AMDP_DBG_DEBUGGER_REGISTRY INTO @DATA(ld_active_since). | ||||
Search for further information about these or an SAP related objects