SAP ICL_SAMPLE_GDV_READ Function Module for Read Auto Type Class List of German Insurance Association
ICL_SAMPLE_GDV_READ is a standard icl sample gdv read SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Read Auto Type Class List of German Insurance Association 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 sample gdv read FM, simply by entering the name ICL_SAMPLE_GDV_READ into the relevant SAP transaction such as SE37 or SE38.
Function Group: ICL_DOBJ_EXT
Program Name: SAPLICL_DOBJ_EXT
Main Program: SAPLICL_DOBJ_EXT
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ICL_SAMPLE_GDV_READ 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_SAMPLE_GDV_READ'"Read Auto Type Class List of German Insurance Association.
EXPORTING
IV_APPLSERVER = "Data Element for BOOLE Domain: TRUE (='X') and FALSE (=' ')
IV_FILENAME = "File Name
IV_PROPCAT = "Category of Insured Object
IV_IOBTYPE = "Type of Damaged or Insured Object
TABLES
IT_FILE = "Lines of a File
ET_PROPMA = "Make of Insurable Object
ET_PROPMO = "Insurable Object Model
ET_PROPTY = "Insurable Object Category
IMPORTING Parameters details for ICL_SAMPLE_GDV_READ
IV_APPLSERVER - Data Element for BOOLE Domain: TRUE (='X') and FALSE (=' ')
Data type: BOOLE_DOptional: No
Call by Reference: Yes
IV_FILENAME - File Name
Data type: ICL_FILENAMELOptional: No
Call by Reference: Yes
IV_PROPCAT - Category of Insured Object
Data type: ICL_IOBCATOptional: No
Call by Reference: Yes
IV_IOBTYPE - Type of Damaged or Insured Object
Data type: ICL_IOBTYPEOptional: No
Call by Reference: Yes
TABLES Parameters details for ICL_SAMPLE_GDV_READ
IT_FILE - Lines of a File
Data type: ICL_TABLINE_TOptional: No
Call by Reference: Yes
ET_PROPMA - Make of Insurable Object
Data type: ICLPROPMAOptional: No
Call by Reference: Yes
ET_PROPMO - Insurable Object Model
Data type: ICLPROPMOOptional: No
Call by Reference: Yes
ET_PROPTY - Insurable Object Category
Data type: ICLPROPTYOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for ICL_SAMPLE_GDV_READ 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_file | TYPE STANDARD TABLE OF ICL_TABLINE_T, " | |||
| lv_iv_applserver | TYPE BOOLE_D, " | |||
| lt_et_propma | TYPE STANDARD TABLE OF ICLPROPMA, " | |||
| lv_iv_filename | TYPE ICL_FILENAMEL, " | |||
| lt_et_propmo | TYPE STANDARD TABLE OF ICLPROPMO, " | |||
| lv_iv_propcat | TYPE ICL_IOBCAT, " | |||
| lt_et_propty | TYPE STANDARD TABLE OF ICLPROPTY, " | |||
| lv_iv_iobtype | TYPE ICL_IOBTYPE. " |
|   CALL FUNCTION 'ICL_SAMPLE_GDV_READ' "Read Auto Type Class List of German Insurance Association |
| EXPORTING | ||
| IV_APPLSERVER | = lv_iv_applserver | |
| IV_FILENAME | = lv_iv_filename | |
| IV_PROPCAT | = lv_iv_propcat | |
| IV_IOBTYPE | = lv_iv_iobtype | |
| TABLES | ||
| IT_FILE | = lt_it_file | |
| ET_PROPMA | = lt_et_propma | |
| ET_PROPMO | = lt_et_propmo | |
| ET_PROPTY | = lt_et_propty | |
| . " ICL_SAMPLE_GDV_READ | ||
ABAP code using 7.40 inline data declarations to call FM ICL_SAMPLE_GDV_READ
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.Search for further information about these or an SAP related objects