SAP DEQUEUE_EEXT_RECON_HDR Function Module for Release lock on object EEXT_RECON_HDR
DEQUEUE_EEXT_RECON_HDR is a standard dequeue eext recon hdr 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 EEXT_RECON_HDR 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 eext recon hdr FM, simply by entering the name DEQUEUE_EEXT_RECON_HDR into the relevant SAP transaction such as SE37 or SE38.
Function Group: /1BCDWBEN/GEN0000
Program Name: /1BCDWBEN/SAPLGEN0000
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function DEQUEUE_EEXT_RECON_HDR 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_EEXT_RECON_HDR'"Release lock on object EEXT_RECON_HDR.
EXPORTING
* MODE_EXT_RECON_HDR = 'S' "Lock mode for table EXT_RECON_HDR
* X_BUKRS = ' ' "Fill argument 02 with initial value?
* X_BELNR = ' ' "Fill argument 03 with initial value?
* X_GJAHR = ' ' "Fill argument 04 with initial value?
* X_BUZEI = ' ' "Fill argument 05 with initial value?
* X_CREATED_ON = ' ' "Fill argument 06 with initial value?
* _SCOPE = '3' "
* _SYNCHRON = ' ' "Synchonous unlock
* _COLLECT = ' ' "Initially only collect lock
* MODE_EXT_RECON_ITEMS = 'S' "Lock mode for table EXT_RECON_ITEMS
* MODE_EXT_RECON_COMNTS = 'S' "Lock mode for table EXT_RECON_COMNTS
* MANDT = SY-MANDT "Enqueue argument 01
* BUKRS = "Enqueue argument 02
* BELNR = "Enqueue argument 03
* GJAHR = "Enqueue argument 04
* BUZEI = "Enqueue argument 05
* CREATED_ON = "Enqueue argument 06
IMPORTING Parameters details for DEQUEUE_EEXT_RECON_HDR
MODE_EXT_RECON_HDR - Lock mode for table EXT_RECON_HDR
Data type: ENQMODEDefault: 'S'
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_BUKRS - Fill argument 02 with initial value?
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_BELNR - Fill argument 03 with initial value?
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_GJAHR - Fill argument 04 with initial value?
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_BUZEI - Fill argument 05 with initial value?
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_CREATED_ON - Fill argument 06 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: DDENQCOLLDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
MODE_EXT_RECON_ITEMS - Lock mode for table EXT_RECON_ITEMS
Data type: ENQMODEDefault: 'S'
Optional: Yes
Call by Reference: No ( called with pass by value option)
MODE_EXT_RECON_COMNTS - Lock mode for table EXT_RECON_COMNTS
Data type: ENQMODEDefault: 'S'
Optional: Yes
Call by Reference: No ( called with pass by value option)
MANDT - Enqueue argument 01
Data type: EXT_RECON_HDR-MANDTDefault: SY-MANDT
Optional: Yes
Call by Reference: No ( called with pass by value option)
BUKRS - Enqueue argument 02
Data type: EXT_RECON_HDR-BUKRSOptional: Yes
Call by Reference: No ( called with pass by value option)
BELNR - Enqueue argument 03
Data type: EXT_RECON_HDR-BELNROptional: Yes
Call by Reference: No ( called with pass by value option)
GJAHR - Enqueue argument 04
Data type: EXT_RECON_HDR-GJAHROptional: Yes
Call by Reference: No ( called with pass by value option)
BUZEI - Enqueue argument 05
Data type: EXT_RECON_ITEMS-BUZEIOptional: Yes
Call by Reference: No ( called with pass by value option)
CREATED_ON - Enqueue argument 06
Data type: EXT_RECON_COMNTS-CREATED_ONOptional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for DEQUEUE_EEXT_RECON_HDR 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_ext_recon_hdr | TYPE ENQMODE, " 'S' | |||
| lv_x_bukrs | TYPE ENQMODE, " SPACE | |||
| lv_x_belnr | TYPE ENQMODE, " SPACE | |||
| lv_x_gjahr | TYPE ENQMODE, " SPACE | |||
| lv_x_buzei | TYPE ENQMODE, " SPACE | |||
| lv_x_created_on | TYPE ENQMODE, " SPACE | |||
| lv__scope | TYPE ENQMODE, " '3' | |||
| lv__synchron | TYPE ENQMODE, " SPACE | |||
| lv__collect | TYPE DDENQCOLL, " ' ' | |||
| lv_mode_ext_recon_items | TYPE ENQMODE, " 'S' | |||
| lv_mode_ext_recon_comnts | TYPE ENQMODE, " 'S' | |||
| lv_mandt | TYPE EXT_RECON_HDR-MANDT, " SY-MANDT | |||
| lv_bukrs | TYPE EXT_RECON_HDR-BUKRS, " | |||
| lv_belnr | TYPE EXT_RECON_HDR-BELNR, " | |||
| lv_gjahr | TYPE EXT_RECON_HDR-GJAHR, " | |||
| lv_buzei | TYPE EXT_RECON_ITEMS-BUZEI, " | |||
| lv_created_on | TYPE EXT_RECON_COMNTS-CREATED_ON. " |
|   CALL FUNCTION 'DEQUEUE_EEXT_RECON_HDR' "Release lock on object EEXT_RECON_HDR |
| EXPORTING | ||
| MODE_EXT_RECON_HDR | = lv_mode_ext_recon_hdr | |
| X_BUKRS | = lv_x_bukrs | |
| X_BELNR | = lv_x_belnr | |
| X_GJAHR | = lv_x_gjahr | |
| X_BUZEI | = lv_x_buzei | |
| X_CREATED_ON | = lv_x_created_on | |
| _SCOPE | = lv__scope | |
| _SYNCHRON | = lv__synchron | |
| _COLLECT | = lv__collect | |
| MODE_EXT_RECON_ITEMS | = lv_mode_ext_recon_items | |
| MODE_EXT_RECON_COMNTS | = lv_mode_ext_recon_comnts | |
| MANDT | = lv_mandt | |
| BUKRS | = lv_bukrs | |
| BELNR | = lv_belnr | |
| GJAHR | = lv_gjahr | |
| BUZEI | = lv_buzei | |
| CREATED_ON | = lv_created_on | |
| . " DEQUEUE_EEXT_RECON_HDR | ||
ABAP code using 7.40 inline data declarations to call FM DEQUEUE_EEXT_RECON_HDR
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_ext_recon_hdr) | = 'S'. | |||
| DATA(ld_x_bukrs) | = ' '. | |||
| DATA(ld_x_belnr) | = ' '. | |||
| DATA(ld_x_gjahr) | = ' '. | |||
| DATA(ld_x_buzei) | = ' '. | |||
| DATA(ld_x_created_on) | = ' '. | |||
| DATA(ld__scope) | = '3'. | |||
| DATA(ld__synchron) | = ' '. | |||
| DATA(ld__collect) | = ' '. | |||
| DATA(ld_mode_ext_recon_items) | = 'S'. | |||
| DATA(ld_mode_ext_recon_comnts) | = 'S'. | |||
| "SELECT single MANDT FROM EXT_RECON_HDR INTO @DATA(ld_mandt). | ||||
| DATA(ld_mandt) | = SY-MANDT. | |||
| "SELECT single BUKRS FROM EXT_RECON_HDR INTO @DATA(ld_bukrs). | ||||
| "SELECT single BELNR FROM EXT_RECON_HDR INTO @DATA(ld_belnr). | ||||
| "SELECT single GJAHR FROM EXT_RECON_HDR INTO @DATA(ld_gjahr). | ||||
| "SELECT single BUZEI FROM EXT_RECON_ITEMS INTO @DATA(ld_buzei). | ||||
| "SELECT single CREATED_ON FROM EXT_RECON_COMNTS INTO @DATA(ld_created_on). | ||||
Search for further information about these or an SAP related objects