SAP ICL_IF_TICL323_SELECT Function Module for Reads Line from Assignment Table: Policy Product - Permitted Coverage Type









ICL_IF_TICL323_SELECT is a standard icl if ticl323 select SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Reads Line from Assignment Table: Policy Product - Permitted Coverage Type 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 if ticl323 select FM, simply by entering the name ICL_IF_TICL323_SELECT into the relevant SAP transaction such as SE37 or SE38.

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



Function ICL_IF_TICL323_SELECT 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_IF_TICL323_SELECT'"Reads Line from Assignment Table: Policy Product - Permitted Coverage Type
EXPORTING
* I_POLPROD = "
* I_GENERAT = "
* I_VERSION = "
* I_COUNTRY = "Country of Statutory Coverage
* I_REGION = "Region of Statutory Coverage

TABLES
T_TICL323 = "
.



IMPORTING Parameters details for ICL_IF_TICL323_SELECT

I_POLPROD -

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

I_GENERAT -

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

I_VERSION -

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

I_COUNTRY - Country of Statutory Coverage

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

I_REGION - Region of Statutory Coverage

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

TABLES Parameters details for ICL_IF_TICL323_SELECT

T_TICL323 -

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

Copy and paste ABAP code example for ICL_IF_TICL323_SELECT 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_polprod  TYPE TICL323-POLPROD, "   
lt_t_ticl323  TYPE STANDARD TABLE OF TICL323, "   
lv_i_generat  TYPE TICL323-GENERAT, "   
lv_i_version  TYPE TICL323-VERSION, "   
lv_i_country  TYPE TICL323-COUNTRY, "   
lv_i_region  TYPE TICL323-REGION. "   

  CALL FUNCTION 'ICL_IF_TICL323_SELECT'  "Reads Line from Assignment Table: Policy Product - Permitted Coverage Type
    EXPORTING
         I_POLPROD = lv_i_polprod
         I_GENERAT = lv_i_generat
         I_VERSION = lv_i_version
         I_COUNTRY = lv_i_country
         I_REGION = lv_i_region
    TABLES
         T_TICL323 = lt_t_ticl323
. " ICL_IF_TICL323_SELECT




ABAP code using 7.40 inline data declarations to call FM ICL_IF_TICL323_SELECT

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 POLPROD FROM TICL323 INTO @DATA(ld_i_polprod).
 
 
"SELECT single GENERAT FROM TICL323 INTO @DATA(ld_i_generat).
 
"SELECT single VERSION FROM TICL323 INTO @DATA(ld_i_version).
 
"SELECT single COUNTRY FROM TICL323 INTO @DATA(ld_i_country).
 
"SELECT single REGION FROM TICL323 INTO @DATA(ld_i_region).
 


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!