SAP ICLE_UPDATE Function Module for
ICLE_UPDATE is a standard icle update SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 icle update FM, simply by entering the name ICLE_UPDATE into the relevant SAP transaction such as SE37 or SE38.
Function Group: ICL_EVT_DB
Program Name: SAPLICL_EVT_DB
Main Program: SAPLICL_EVT_DB
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update: 1

Function ICLE_UPDATE 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 'ICLE_UPDATE'".
EXPORTING
* I_ACTTYP = "
TABLES
T_ICLCCEVENT = "Claim Bundle
T_ICLCCEVENTB_DEL = "
T_ICLCCEVENTP_INS = "
T_ICLCCEVENTP_UPD = "
T_ICLCCEVENTP_DEL = "Claim Bundle - Policy - Assignment
T_ICLCCEVENTP_OLD = "Claim Bundle - Policy - Assignment
T_ICLCCEVENTR_INS = "
T_ICLCCEVENTR_UPD = "
T_ICLCCEVENTR_DEL = "
T_ICLCCEVENTR_OLD = "Claim Bundle - Region - Assignment
T_ICLCCEVENTZ_INS = "
T_ICLCCEVENT_INS = "Claim Bundle
T_ICLCCEVENTZ_UPD = "
T_ICLCCEVENTZ_DEL = "
T_ICLCCEVENTZ_OLD = "Claim Bundle - Postal Code - Assignment
T_ICLCCEVENTL_INS = "
T_ICLCCEVENTL_UPD = "
T_ICLCCEVENTL_DEL = "
T_ICLCCEVENTL_OLD = "Claim Bundle
T_ICLCCEVENT_UPD = "Claim Bundle
T_ICLCCEVENT_DEL = "Claim Bundle
T_ICLCCEVENT_OLD = "Claim Bundle
T_ICLCCEVENTB = "Claim Bundle - Participant Occurrence
T_ICLCCEVENTB_OLD = "Claim Bundle - Participant Occurrence
T_ICLCCEVENTB_INS = "Participants
T_ICLCCEVENTB_UPD = "
IMPORTING Parameters details for ICLE_UPDATE
I_ACTTYP -
Data type: TBZ0K-AKTYPOptional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for ICLE_UPDATE
T_ICLCCEVENT - Claim Bundle
Data type: ICLCCEVENTOptional: No
Call by Reference: Yes
T_ICLCCEVENTB_DEL -
Data type: ICLCCEVENTBOptional: No
Call by Reference: No ( called with pass by value option)
T_ICLCCEVENTP_INS -
Data type: ICLCCEVENTPOptional: No
Call by Reference: No ( called with pass by value option)
T_ICLCCEVENTP_UPD -
Data type: ICLCCEVENTPOptional: No
Call by Reference: No ( called with pass by value option)
T_ICLCCEVENTP_DEL - Claim Bundle - Policy - Assignment
Data type: ICLCCEVENTPOptional: No
Call by Reference: No ( called with pass by value option)
T_ICLCCEVENTP_OLD - Claim Bundle - Policy - Assignment
Data type: ICLCCEVENTPOptional: No
Call by Reference: No ( called with pass by value option)
T_ICLCCEVENTR_INS -
Data type: ICLCCEVENTROptional: No
Call by Reference: No ( called with pass by value option)
T_ICLCCEVENTR_UPD -
Data type: ICLCCEVENTROptional: No
Call by Reference: No ( called with pass by value option)
T_ICLCCEVENTR_DEL -
Data type: ICLCCEVENTROptional: No
Call by Reference: No ( called with pass by value option)
T_ICLCCEVENTR_OLD - Claim Bundle - Region - Assignment
Data type: ICLCCEVENTROptional: No
Call by Reference: Yes
T_ICLCCEVENTZ_INS -
Data type: ICLCCEVENTZOptional: No
Call by Reference: No ( called with pass by value option)
T_ICLCCEVENT_INS - Claim Bundle
Data type: ICLCCEVENTOptional: No
Call by Reference: No ( called with pass by value option)
T_ICLCCEVENTZ_UPD -
Data type: ICLCCEVENTZOptional: No
Call by Reference: No ( called with pass by value option)
T_ICLCCEVENTZ_DEL -
Data type: ICLCCEVENTZOptional: No
Call by Reference: No ( called with pass by value option)
T_ICLCCEVENTZ_OLD - Claim Bundle - Postal Code - Assignment
Data type: ICLCCEVENTZOptional: No
Call by Reference: No ( called with pass by value option)
T_ICLCCEVENTL_INS -
Data type: ICLCCEVENTLOptional: No
Call by Reference: No ( called with pass by value option)
T_ICLCCEVENTL_UPD -
Data type: ICLCCEVENTLOptional: No
Call by Reference: No ( called with pass by value option)
T_ICLCCEVENTL_DEL -
Data type: ICLCCEVENTLOptional: No
Call by Reference: No ( called with pass by value option)
T_ICLCCEVENTL_OLD - Claim Bundle
Data type: ICLCCEVENTLOptional: No
Call by Reference: Yes
T_ICLCCEVENT_UPD - Claim Bundle
Data type: ICLCCEVENTOptional: No
Call by Reference: No ( called with pass by value option)
T_ICLCCEVENT_DEL - Claim Bundle
Data type: ICLCCEVENTOptional: No
Call by Reference: No ( called with pass by value option)
T_ICLCCEVENT_OLD - Claim Bundle
Data type: ICLCCEVENTOptional: No
Call by Reference: Yes
T_ICLCCEVENTB - Claim Bundle - Participant Occurrence
Data type: ICLCCEVENTBOptional: No
Call by Reference: Yes
T_ICLCCEVENTB_OLD - Claim Bundle - Participant Occurrence
Data type: ICLCCEVENTBOptional: No
Call by Reference: Yes
T_ICLCCEVENTB_INS - Participants
Data type: ICLCCEVENTBOptional: No
Call by Reference: No ( called with pass by value option)
T_ICLCCEVENTB_UPD -
Data type: ICLCCEVENTBOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ICLE_UPDATE 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_i_acttyp | TYPE TBZ0K-AKTYP, " | |||
| lt_t_iclccevent | TYPE STANDARD TABLE OF ICLCCEVENT, " | |||
| lt_t_iclcceventb_del | TYPE STANDARD TABLE OF ICLCCEVENTB, " | |||
| lt_t_iclcceventp_ins | TYPE STANDARD TABLE OF ICLCCEVENTP, " | |||
| lt_t_iclcceventp_upd | TYPE STANDARD TABLE OF ICLCCEVENTP, " | |||
| lt_t_iclcceventp_del | TYPE STANDARD TABLE OF ICLCCEVENTP, " | |||
| lt_t_iclcceventp_old | TYPE STANDARD TABLE OF ICLCCEVENTP, " | |||
| lt_t_iclcceventr_ins | TYPE STANDARD TABLE OF ICLCCEVENTR, " | |||
| lt_t_iclcceventr_upd | TYPE STANDARD TABLE OF ICLCCEVENTR, " | |||
| lt_t_iclcceventr_del | TYPE STANDARD TABLE OF ICLCCEVENTR, " | |||
| lt_t_iclcceventr_old | TYPE STANDARD TABLE OF ICLCCEVENTR, " | |||
| lt_t_iclcceventz_ins | TYPE STANDARD TABLE OF ICLCCEVENTZ, " | |||
| lt_t_iclccevent_ins | TYPE STANDARD TABLE OF ICLCCEVENT, " | |||
| lt_t_iclcceventz_upd | TYPE STANDARD TABLE OF ICLCCEVENTZ, " | |||
| lt_t_iclcceventz_del | TYPE STANDARD TABLE OF ICLCCEVENTZ, " | |||
| lt_t_iclcceventz_old | TYPE STANDARD TABLE OF ICLCCEVENTZ, " | |||
| lt_t_iclcceventl_ins | TYPE STANDARD TABLE OF ICLCCEVENTL, " | |||
| lt_t_iclcceventl_upd | TYPE STANDARD TABLE OF ICLCCEVENTL, " | |||
| lt_t_iclcceventl_del | TYPE STANDARD TABLE OF ICLCCEVENTL, " | |||
| lt_t_iclcceventl_old | TYPE STANDARD TABLE OF ICLCCEVENTL, " | |||
| lt_t_iclccevent_upd | TYPE STANDARD TABLE OF ICLCCEVENT, " | |||
| lt_t_iclccevent_del | TYPE STANDARD TABLE OF ICLCCEVENT, " | |||
| lt_t_iclccevent_old | TYPE STANDARD TABLE OF ICLCCEVENT, " | |||
| lt_t_iclcceventb | TYPE STANDARD TABLE OF ICLCCEVENTB, " | |||
| lt_t_iclcceventb_old | TYPE STANDARD TABLE OF ICLCCEVENTB, " | |||
| lt_t_iclcceventb_ins | TYPE STANDARD TABLE OF ICLCCEVENTB, " | |||
| lt_t_iclcceventb_upd | TYPE STANDARD TABLE OF ICLCCEVENTB. " |
|   CALL FUNCTION 'ICLE_UPDATE' " |
| EXPORTING | ||
| I_ACTTYP | = lv_i_acttyp | |
| TABLES | ||
| T_ICLCCEVENT | = lt_t_iclccevent | |
| T_ICLCCEVENTB_DEL | = lt_t_iclcceventb_del | |
| T_ICLCCEVENTP_INS | = lt_t_iclcceventp_ins | |
| T_ICLCCEVENTP_UPD | = lt_t_iclcceventp_upd | |
| T_ICLCCEVENTP_DEL | = lt_t_iclcceventp_del | |
| T_ICLCCEVENTP_OLD | = lt_t_iclcceventp_old | |
| T_ICLCCEVENTR_INS | = lt_t_iclcceventr_ins | |
| T_ICLCCEVENTR_UPD | = lt_t_iclcceventr_upd | |
| T_ICLCCEVENTR_DEL | = lt_t_iclcceventr_del | |
| T_ICLCCEVENTR_OLD | = lt_t_iclcceventr_old | |
| T_ICLCCEVENTZ_INS | = lt_t_iclcceventz_ins | |
| T_ICLCCEVENT_INS | = lt_t_iclccevent_ins | |
| T_ICLCCEVENTZ_UPD | = lt_t_iclcceventz_upd | |
| T_ICLCCEVENTZ_DEL | = lt_t_iclcceventz_del | |
| T_ICLCCEVENTZ_OLD | = lt_t_iclcceventz_old | |
| T_ICLCCEVENTL_INS | = lt_t_iclcceventl_ins | |
| T_ICLCCEVENTL_UPD | = lt_t_iclcceventl_upd | |
| T_ICLCCEVENTL_DEL | = lt_t_iclcceventl_del | |
| T_ICLCCEVENTL_OLD | = lt_t_iclcceventl_old | |
| T_ICLCCEVENT_UPD | = lt_t_iclccevent_upd | |
| T_ICLCCEVENT_DEL | = lt_t_iclccevent_del | |
| T_ICLCCEVENT_OLD | = lt_t_iclccevent_old | |
| T_ICLCCEVENTB | = lt_t_iclcceventb | |
| T_ICLCCEVENTB_OLD | = lt_t_iclcceventb_old | |
| T_ICLCCEVENTB_INS | = lt_t_iclcceventb_ins | |
| T_ICLCCEVENTB_UPD | = lt_t_iclcceventb_upd | |
| . " ICLE_UPDATE | ||
ABAP code using 7.40 inline data declarations to call FM ICLE_UPDATE
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 AKTYP FROM TBZ0K INTO @DATA(ld_i_acttyp). | ||||
Search for further information about these or an SAP related objects