SAP ICLE_BUNDLE_2_CONTAINER Function Module for ICL Correspondence: Place Claim Data in Container









ICLE_BUNDLE_2_CONTAINER is a standard icle bundle 2 container SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for ICL Correspondence: Place Claim Data in Container 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 icle bundle 2 container FM, simply by entering the name ICLE_BUNDLE_2_CONTAINER into the relevant SAP transaction such as SE37 or SE38.

Function Group: ICL_CORR_EXT
Program Name: SAPLICL_CORR_EXT
Main Program: SAPLICL_CORR_EXT
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function ICLE_BUNDLE_2_CONTAINER 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_BUNDLE_2_CONTAINER'"ICL Correspondence: Place Claim Data in Container
EXPORTING
I_SPRAS = "Language Key
I_COTYP = "Correspondence Type
I_GPART = "Correspondence: Recipient Business Partner
I_FORMKEY = "Application Form
* I_DOCID = "Claim Document
IS_CLAIM = "Claim
IS_CCEVENT = "Claim Bundle

CHANGING
C_DFKKCOH = "FI-CA Correspondence - Correspondence Header

TABLES
* IT_PART = "
* IT_CLINC = "
IT_DFKKCODCLUST = "FI-CA Correspondence - Correspondence Cluster Data
.



IMPORTING Parameters details for ICLE_BUNDLE_2_CONTAINER

I_SPRAS - Language Key

Data type: DFKKCOH-SPRAS
Optional: No
Call by Reference: No ( called with pass by value option)

I_COTYP - Correspondence Type

Data type: COTYP_KK
Optional: No
Call by Reference: No ( called with pass by value option)

I_GPART - Correspondence: Recipient Business Partner

Data type: DFKKCOH-GPART
Optional: No
Call by Reference: No ( called with pass by value option)

I_FORMKEY - Application Form

Data type: DFKKCOH-FORMKEY
Optional: No
Call by Reference: No ( called with pass by value option)

I_DOCID - Claim Document

Data type: ICL_DOCID
Optional: Yes
Call by Reference: No ( called with pass by value option)

IS_CLAIM - Claim

Data type: ICLCLAIM
Optional: No
Call by Reference: No ( called with pass by value option)

IS_CCEVENT - Claim Bundle

Data type: ICLCCEVENT
Optional: No
Call by Reference: No ( called with pass by value option)

CHANGING Parameters details for ICLE_BUNDLE_2_CONTAINER

C_DFKKCOH - FI-CA Correspondence - Correspondence Header

Data type: DFKKCOH
Optional: No
Call by Reference: Yes

TABLES Parameters details for ICLE_BUNDLE_2_CONTAINER

IT_PART -

Data type: ICL_CCEVENTB
Optional: Yes
Call by Reference: Yes

IT_CLINC -

Data type: ICL_TC_CLINC
Optional: Yes
Call by Reference: Yes

IT_DFKKCODCLUST - FI-CA Correspondence - Correspondence Cluster Data

Data type: DFKKCODCLUST
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for ICLE_BUNDLE_2_CONTAINER 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:
lt_it_part  TYPE STANDARD TABLE OF ICL_CCEVENTB, "   
lv_i_spras  TYPE DFKKCOH-SPRAS, "   
lv_c_dfkkcoh  TYPE DFKKCOH, "   
lv_i_cotyp  TYPE COTYP_KK, "   
lt_it_clinc  TYPE STANDARD TABLE OF ICL_TC_CLINC, "   
lv_i_gpart  TYPE DFKKCOH-GPART, "   
lt_it_dfkkcodclust  TYPE STANDARD TABLE OF DFKKCODCLUST, "   
lv_i_formkey  TYPE DFKKCOH-FORMKEY, "   
lv_i_docid  TYPE ICL_DOCID, "   
lv_is_claim  TYPE ICLCLAIM, "   
lv_is_ccevent  TYPE ICLCCEVENT. "   

  CALL FUNCTION 'ICLE_BUNDLE_2_CONTAINER'  "ICL Correspondence: Place Claim Data in Container
    EXPORTING
         I_SPRAS = lv_i_spras
         I_COTYP = lv_i_cotyp
         I_GPART = lv_i_gpart
         I_FORMKEY = lv_i_formkey
         I_DOCID = lv_i_docid
         IS_CLAIM = lv_is_claim
         IS_CCEVENT = lv_is_ccevent
    CHANGING
         C_DFKKCOH = lv_c_dfkkcoh
    TABLES
         IT_PART = lt_it_part
         IT_CLINC = lt_it_clinc
         IT_DFKKCODCLUST = lt_it_dfkkcodclust
. " ICLE_BUNDLE_2_CONTAINER




ABAP code using 7.40 inline data declarations to call FM ICLE_BUNDLE_2_CONTAINER

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 SPRAS FROM DFKKCOH INTO @DATA(ld_i_spras).
 
 
 
 
"SELECT single GPART FROM DFKKCOH INTO @DATA(ld_i_gpart).
 
 
"SELECT single FORMKEY FROM DFKKCOH INTO @DATA(ld_i_formkey).
 
 
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!