SAP ICL_CTR_BEN_CALC_CONF Function Module for RFC Confirmation Calculate Claim
ICL_CTR_BEN_CALC_CONF is a standard icl ctr ben calc conf SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for RFC Confirmation Calculate Claim 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 icl ctr ben calc conf FM, simply by entering the name ICL_CTR_BEN_CALC_CONF into the relevant SAP transaction such as SE37 or SE38.
Function Group: ICL_POLICY_IN
Program Name: SAPLICL_POLICY_IN
Main Program: SAPLICL_POLICY_IN
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function ICL_CTR_BEN_CALC_CONF 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 'ICL_CTR_BEN_CALC_CONF'"RFC Confirmation Calculate Claim.
EXPORTING
* IV_APPL_NR = "Application number
* IT_BNFCALC = "Benefit Values
* IT_ORDER = "Fund Order
* IV_RELEASE_DT = "Release Date (When All Exchange Rates Exist)
* IF_RELEASE_FG = "Release Indicators (All Exchange Rates Exist)
IT_STATUS = "Table with BAPI Return Information
* IT_ACCLOAN = "Settled Benefit Values per Contract
IV_CLAIM = "Number of Claim
IT_SUBCLAIM = "Structure of Calculate Contract
EXCEPTIONS
NO_AUTHORITY = 1
IMPORTING Parameters details for ICL_CTR_BEN_CALC_CONF
IV_APPL_NR - Application number
Data type: ICL_CM_CALL_RFC_S-APPLNR_NROptional: Yes
Call by Reference: No ( called with pass by value option)
IT_BNFCALC - Benefit Values
Data type: ICL_BNFCALC_RFC_TOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_ORDER - Fund Order
Data type: ICL_ORDER_RFC_TOptional: Yes
Call by Reference: No ( called with pass by value option)
IV_RELEASE_DT - Release Date (When All Exchange Rates Exist)
Data type: DATSOptional: Yes
Call by Reference: No ( called with pass by value option)
IF_RELEASE_FG - Release Indicators (All Exchange Rates Exist)
Data type: CHAR1Optional: Yes
Call by Reference: No ( called with pass by value option)
IT_STATUS - Table with BAPI Return Information
Data type: BAPIRETTABOptional: No
Call by Reference: No ( called with pass by value option)
IT_ACCLOAN - Settled Benefit Values per Contract
Data type: ICL_ACCLOAN_RFC_TOptional: Yes
Call by Reference: No ( called with pass by value option)
IV_CLAIM - Number of Claim
Data type: ICL_CLAIMOptional: No
Call by Reference: No ( called with pass by value option)
IT_SUBCLAIM - Structure of Calculate Contract
Data type: ICL_CALC_CONF_RFC_TOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NO_AUTHORITY -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for ICL_CTR_BEN_CALC_CONF 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_iv_appl_nr | TYPE ICL_CM_CALL_RFC_S-APPLNR_NR, " | |||
| lv_no_authority | TYPE ICL_CM_CALL_RFC_S, " | |||
| lv_it_bnfcalc | TYPE ICL_BNFCALC_RFC_T, " | |||
| lv_it_order | TYPE ICL_ORDER_RFC_T, " | |||
| lv_iv_release_dt | TYPE DATS, " | |||
| lv_if_release_fg | TYPE CHAR1, " | |||
| lv_it_status | TYPE BAPIRETTAB, " | |||
| lv_it_accloan | TYPE ICL_ACCLOAN_RFC_T, " | |||
| lv_iv_claim | TYPE ICL_CLAIM, " | |||
| lv_it_subclaim | TYPE ICL_CALC_CONF_RFC_T. " |
|   CALL FUNCTION 'ICL_CTR_BEN_CALC_CONF' "RFC Confirmation Calculate Claim |
| EXPORTING | ||
| IV_APPL_NR | = lv_iv_appl_nr | |
| IT_BNFCALC | = lv_it_bnfcalc | |
| IT_ORDER | = lv_it_order | |
| IV_RELEASE_DT | = lv_iv_release_dt | |
| IF_RELEASE_FG | = lv_if_release_fg | |
| IT_STATUS | = lv_it_status | |
| IT_ACCLOAN | = lv_it_accloan | |
| IV_CLAIM | = lv_iv_claim | |
| IT_SUBCLAIM | = lv_it_subclaim | |
| EXCEPTIONS | ||
| NO_AUTHORITY = 1 | ||
| . " ICL_CTR_BEN_CALC_CONF | ||
ABAP code using 7.40 inline data declarations to call FM ICL_CTR_BEN_CALC_CONF
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 APPLNR_NR FROM ICL_CM_CALL_RFC_S INTO @DATA(ld_iv_appl_nr). | ||||
Search for further information about these or an SAP related objects