SAP ISH_AT_GIN_GET_INSURANCE_DATA Function Module for









ISH_AT_GIN_GET_INSURANCE_DATA is a standard ish at gin get insurance data 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 ish at gin get insurance data FM, simply by entering the name ISH_AT_GIN_GET_INSURANCE_DATA into the relevant SAP transaction such as SE37 or SE38.

Function Group: NWAT_GIN_RFC
Program Name: SAPLNWAT_GIN_RFC
Main Program: SAPLNWAT_GIN_RFC
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function ISH_AT_GIN_GET_INSURANCE_DATA 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 'ISH_AT_GIN_GET_INSURANCE_DATA'"
EXPORTING
I_EINRI = "
* I_CARD_READER_ID = "
* I_ABT_FCD = '11111' "
* I_SVT_CODE = "
* I_RVNUM = "
I_VNAME = "
I_NNAME = "
I_GBDAT = "

IMPORTING
ES_INSURANCE_DATA = "
ES_CARD_DATA = "

CHANGING
* CT_BAPIRET2 = "
.



IMPORTING Parameters details for ISH_AT_GIN_GET_INSURANCE_DATA

I_EINRI -

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

I_CARD_READER_ID -

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

I_ABT_FCD -

Data type: STRING
Default: '11111'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_SVT_CODE -

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

I_RVNUM -

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

I_VNAME -

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

I_NNAME -

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

I_GBDAT -

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

EXPORTING Parameters details for ISH_AT_GIN_GET_INSURANCE_DATA

ES_INSURANCE_DATA -

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

ES_CARD_DATA -

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

CHANGING Parameters details for ISH_AT_GIN_GET_INSURANCE_DATA

CT_BAPIRET2 -

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

Copy and paste ABAP code example for ISH_AT_GIN_GET_INSURANCE_DATA 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_einri  TYPE EINRI, "   
lv_ct_bapiret2  TYPE ISH_BAPIRET2_TAB_TYPE, "   
lv_es_insurance_data  TYPE NWATSVCGET_VERSICHERTEN_DATEN, "   
lv_es_card_data  TYPE NWATCARD, "   
lv_i_card_reader_id  TYPE STRING, "   
lv_i_abt_fcd  TYPE STRING, "   '11111'
lv_i_svt_code  TYPE STRING, "   
lv_i_rvnum  TYPE NPAT-RVNUM, "   
lv_i_vname  TYPE NPAT-VNAME, "   
lv_i_nname  TYPE NPAT-NNAME, "   
lv_i_gbdat  TYPE NPAT-GBDAT. "   

  CALL FUNCTION 'ISH_AT_GIN_GET_INSURANCE_DATA'  "
    EXPORTING
         I_EINRI = lv_i_einri
         I_CARD_READER_ID = lv_i_card_reader_id
         I_ABT_FCD = lv_i_abt_fcd
         I_SVT_CODE = lv_i_svt_code
         I_RVNUM = lv_i_rvnum
         I_VNAME = lv_i_vname
         I_NNAME = lv_i_nname
         I_GBDAT = lv_i_gbdat
    IMPORTING
         ES_INSURANCE_DATA = lv_es_insurance_data
         ES_CARD_DATA = lv_es_card_data
    CHANGING
         CT_BAPIRET2 = lv_ct_bapiret2
. " ISH_AT_GIN_GET_INSURANCE_DATA




ABAP code using 7.40 inline data declarations to call FM ISH_AT_GIN_GET_INSURANCE_DATA

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.

 
 
 
 
 
DATA(ld_i_abt_fcd) = '11111'.
 
 
"SELECT single RVNUM FROM NPAT INTO @DATA(ld_i_rvnum).
 
"SELECT single VNAME FROM NPAT INTO @DATA(ld_i_vname).
 
"SELECT single NNAME FROM NPAT INTO @DATA(ld_i_nname).
 
"SELECT single GBDAT FROM NPAT INTO @DATA(ld_i_gbdat).
 


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!