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

Function DEQUEUE_E_ICLCLAIMDATA 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_ICLCLAIMDATA'"Release lock on object E_ICLCLAIMDATA.
EXPORTING
* MODE_ICLCLAIMDATA = 'E' "Lock mode for table ICLCLAIMDATA
* REPMONTH = "09th enqueue argument
* CLAIM = "10th enqueue argument
* CLAIMANT = "11th enqueue argument
* X_COMPCODE = ' ' "Fill argument 02 with initial value?
* X_PRDGRP = ' ' "Fill argument 03 with initial value?
* X_LINEOFINS = ' ' "Fill argument 04 with initial value?
* X_COVERAGE = ' ' "Fill argument 05 with initial value?
* X_REGOFFICE = ' ' "Fill argument 06 with initial value?
* X_STATE = ' ' "Fill argument 07 with initial value?
* X_REPYEAR = ' ' "Fill argument 08 with initial value?
* CLIENT = SY-MANDT "01th enqueue argument
* X_REPMONTH = ' ' "Fill argument 09 with initial value?
* X_CLAIM = ' ' "Fill argument 10 with initial value?
* X_CLAIMANT = ' ' "Fill argument 11 with initial value?
* _SCOPE = '3' "
* _SYNCHRON = ' ' "Synchonous unlock
* _COLLECT = ' ' "Initially only collect lock
* COMPCODE = "02th enqueue argument
* PRDGRP = "03th enqueue argument
* LINEOFINS = "04th enqueue argument
* COVERAGE = "05th enqueue argument
* REGOFFICE = "06th enqueue argument
* STATE = "07th enqueue argument
* REPYEAR = "08th enqueue argument
IMPORTING Parameters details for DEQUEUE_E_ICLCLAIMDATA
MODE_ICLCLAIMDATA - Lock mode for table ICLCLAIMDATA
Data type: ENQMODEDefault: 'E'
Optional: Yes
Call by Reference: No ( called with pass by value option)
REPMONTH - 09th enqueue argument
Data type: ICLCLAIMDATA-REPMONTHOptional: Yes
Call by Reference: No ( called with pass by value option)
CLAIM - 10th enqueue argument
Data type: ICLCLAIMDATA-CLAIMOptional: Yes
Call by Reference: No ( called with pass by value option)
CLAIMANT - 11th enqueue argument
Data type: ICLCLAIMDATA-CLAIMANTOptional: Yes
Call by Reference: No ( called with pass by value option)
X_COMPCODE - Fill argument 02 with initial value?
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_PRDGRP - Fill argument 03 with initial value?
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_LINEOFINS - Fill argument 04 with initial value?
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_COVERAGE - Fill argument 05 with initial value?
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_REGOFFICE - Fill argument 06 with initial value?
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_STATE - Fill argument 07 with initial value?
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_REPYEAR - Fill argument 08 with initial value?
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
CLIENT - 01th enqueue argument
Data type: ICLCLAIMDATA-CLIENTDefault: SY-MANDT
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_REPMONTH - Fill argument 09 with initial value?
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_CLAIM - Fill argument 10 with initial value?
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_CLAIMANT - Fill argument 11 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)
COMPCODE - 02th enqueue argument
Data type: ICLCLAIMDATA-COMPCODEOptional: Yes
Call by Reference: No ( called with pass by value option)
PRDGRP - 03th enqueue argument
Data type: ICLCLAIMDATA-PRDGRPOptional: Yes
Call by Reference: No ( called with pass by value option)
LINEOFINS - 04th enqueue argument
Data type: ICLCLAIMDATA-LINEOFINSOptional: Yes
Call by Reference: No ( called with pass by value option)
COVERAGE - 05th enqueue argument
Data type: ICLCLAIMDATA-COVERAGEOptional: Yes
Call by Reference: No ( called with pass by value option)
REGOFFICE - 06th enqueue argument
Data type: ICLCLAIMDATA-REGOFFICEOptional: Yes
Call by Reference: No ( called with pass by value option)
STATE - 07th enqueue argument
Data type: ICLCLAIMDATA-STATEOptional: Yes
Call by Reference: No ( called with pass by value option)
REPYEAR - 08th enqueue argument
Data type: ICLCLAIMDATA-REPYEAROptional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for DEQUEUE_E_ICLCLAIMDATA 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_iclclaimdata | TYPE ENQMODE, " 'E' | |||
| lv_repmonth | TYPE ICLCLAIMDATA-REPMONTH, " | |||
| lv_claim | TYPE ICLCLAIMDATA-CLAIM, " | |||
| lv_claimant | TYPE ICLCLAIMDATA-CLAIMANT, " | |||
| lv_x_compcode | TYPE ICLCLAIMDATA, " SPACE | |||
| lv_x_prdgrp | TYPE ICLCLAIMDATA, " SPACE | |||
| lv_x_lineofins | TYPE ICLCLAIMDATA, " SPACE | |||
| lv_x_coverage | TYPE ICLCLAIMDATA, " SPACE | |||
| lv_x_regoffice | TYPE ICLCLAIMDATA, " SPACE | |||
| lv_x_state | TYPE ICLCLAIMDATA, " SPACE | |||
| lv_x_repyear | TYPE ICLCLAIMDATA, " SPACE | |||
| lv_client | TYPE ICLCLAIMDATA-CLIENT, " SY-MANDT | |||
| lv_x_repmonth | TYPE ICLCLAIMDATA, " SPACE | |||
| lv_x_claim | TYPE ICLCLAIMDATA, " SPACE | |||
| lv_x_claimant | TYPE ICLCLAIMDATA, " SPACE | |||
| lv__scope | TYPE ICLCLAIMDATA, " '3' | |||
| lv__synchron | TYPE ICLCLAIMDATA, " SPACE | |||
| lv__collect | TYPE DDENQCOLL, " ' ' | |||
| lv_compcode | TYPE ICLCLAIMDATA-COMPCODE, " | |||
| lv_prdgrp | TYPE ICLCLAIMDATA-PRDGRP, " | |||
| lv_lineofins | TYPE ICLCLAIMDATA-LINEOFINS, " | |||
| lv_coverage | TYPE ICLCLAIMDATA-COVERAGE, " | |||
| lv_regoffice | TYPE ICLCLAIMDATA-REGOFFICE, " | |||
| lv_state | TYPE ICLCLAIMDATA-STATE, " | |||
| lv_repyear | TYPE ICLCLAIMDATA-REPYEAR. " |
|   CALL FUNCTION 'DEQUEUE_E_ICLCLAIMDATA' "Release lock on object E_ICLCLAIMDATA |
| EXPORTING | ||
| MODE_ICLCLAIMDATA | = lv_mode_iclclaimdata | |
| REPMONTH | = lv_repmonth | |
| CLAIM | = lv_claim | |
| CLAIMANT | = lv_claimant | |
| X_COMPCODE | = lv_x_compcode | |
| X_PRDGRP | = lv_x_prdgrp | |
| X_LINEOFINS | = lv_x_lineofins | |
| X_COVERAGE | = lv_x_coverage | |
| X_REGOFFICE | = lv_x_regoffice | |
| X_STATE | = lv_x_state | |
| X_REPYEAR | = lv_x_repyear | |
| CLIENT | = lv_client | |
| X_REPMONTH | = lv_x_repmonth | |
| X_CLAIM | = lv_x_claim | |
| X_CLAIMANT | = lv_x_claimant | |
| _SCOPE | = lv__scope | |
| _SYNCHRON | = lv__synchron | |
| _COLLECT | = lv__collect | |
| COMPCODE | = lv_compcode | |
| PRDGRP | = lv_prdgrp | |
| LINEOFINS | = lv_lineofins | |
| COVERAGE | = lv_coverage | |
| REGOFFICE | = lv_regoffice | |
| STATE | = lv_state | |
| REPYEAR | = lv_repyear | |
| . " DEQUEUE_E_ICLCLAIMDATA | ||
ABAP code using 7.40 inline data declarations to call FM DEQUEUE_E_ICLCLAIMDATA
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_iclclaimdata) | = 'E'. | |||
| "SELECT single REPMONTH FROM ICLCLAIMDATA INTO @DATA(ld_repmonth). | ||||
| "SELECT single CLAIM FROM ICLCLAIMDATA INTO @DATA(ld_claim). | ||||
| "SELECT single CLAIMANT FROM ICLCLAIMDATA INTO @DATA(ld_claimant). | ||||
| DATA(ld_x_compcode) | = ' '. | |||
| DATA(ld_x_prdgrp) | = ' '. | |||
| DATA(ld_x_lineofins) | = ' '. | |||
| DATA(ld_x_coverage) | = ' '. | |||
| DATA(ld_x_regoffice) | = ' '. | |||
| DATA(ld_x_state) | = ' '. | |||
| DATA(ld_x_repyear) | = ' '. | |||
| "SELECT single CLIENT FROM ICLCLAIMDATA INTO @DATA(ld_client). | ||||
| DATA(ld_client) | = SY-MANDT. | |||
| DATA(ld_x_repmonth) | = ' '. | |||
| DATA(ld_x_claim) | = ' '. | |||
| DATA(ld_x_claimant) | = ' '. | |||
| DATA(ld__scope) | = '3'. | |||
| DATA(ld__synchron) | = ' '. | |||
| DATA(ld__collect) | = ' '. | |||
| "SELECT single COMPCODE FROM ICLCLAIMDATA INTO @DATA(ld_compcode). | ||||
| "SELECT single PRDGRP FROM ICLCLAIMDATA INTO @DATA(ld_prdgrp). | ||||
| "SELECT single LINEOFINS FROM ICLCLAIMDATA INTO @DATA(ld_lineofins). | ||||
| "SELECT single COVERAGE FROM ICLCLAIMDATA INTO @DATA(ld_coverage). | ||||
| "SELECT single REGOFFICE FROM ICLCLAIMDATA INTO @DATA(ld_regoffice). | ||||
| "SELECT single STATE FROM ICLCLAIMDATA INTO @DATA(ld_state). | ||||
| "SELECT single REPYEAR FROM ICLCLAIMDATA INTO @DATA(ld_repyear). | ||||
Search for further information about these or an SAP related objects