SAP ISH_INSREL_CASE_POOL_GET Function Module for IS-H: Read Insurance Relationships frpm Data Pool
ISH_INSREL_CASE_POOL_GET is a standard ish insrel case pool get SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for IS-H: Read Insurance Relationships frpm Data Pool 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 ish insrel case pool get FM, simply by entering the name ISH_INSREL_CASE_POOL_GET into the relevant SAP transaction such as SE37 or SE38.
Function Group: NPOL
Program Name: SAPLNPOL
Main Program: SAPLNPOL
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISH_INSREL_CASE_POOL_GET 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_INSREL_CASE_POOL_GET'"IS-H: Read Insurance Relationships frpm Data Pool.
EXPORTING
SS_EINRI = "IS-H: Institution
SS_FALNR = "IS-H: Case Number
* SS_SEL_STORN = ' ' "Read Canceled
IMPORTING
SS_IP_CHANGE = "IS-H: Change of Insurance Provider in Insurance Relationship (Paragraph 301)
TABLES
* SS_VNCIR_CURR = "Current IR Data for Case
* SS_TEXTINFO_CURR = "IS-H: Manage Cllctv. Representation of SAPscript Documents
* SS_TEXTCONTENT_CURR = "SAPscript: Text Rows
* SS_NCIR_DABA = "IS-H: Default Values for Case-Related Insurance Relationships
* SS_TEXTINFO_DABA = "IS-H: Manage Cllctv. Representation of SAPscript Documents
* SS_TEXTCONTENT_DABA = "SAPscript: Text Rows
* SS_ADDRESS = "IS-H: Table with Address Object Assignments
* SS_NADR_HV = "Address Data of Main Person Insured
* SS_NADR_AG = "Address Data Employer of Main Person Insured
IMPORTING Parameters details for ISH_INSREL_CASE_POOL_GET
SS_EINRI - IS-H: Institution
Data type: EINRIOptional: No
Call by Reference: No ( called with pass by value option)
SS_FALNR - IS-H: Case Number
Data type: FALNROptional: No
Call by Reference: No ( called with pass by value option)
SS_SEL_STORN - Read Canceled
Data type: ISH_ON_OFFDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for ISH_INSREL_CASE_POOL_GET
SS_IP_CHANGE - IS-H: Change of Insurance Provider in Insurance Relationship (Paragraph 301)
Data type: RNIRCHGOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for ISH_INSREL_CASE_POOL_GET
SS_VNCIR_CURR - Current IR Data for Case
Data type: VNCIROptional: Yes
Call by Reference: Yes
SS_TEXTINFO_CURR - IS-H: Manage Cllctv. Representation of SAPscript Documents
Data type: ISH_DOCCOLLINFOOptional: Yes
Call by Reference: No ( called with pass by value option)
SS_TEXTCONTENT_CURR - SAPscript: Text Rows
Data type: TLINEOptional: Yes
Call by Reference: No ( called with pass by value option)
SS_NCIR_DABA - IS-H: Default Values for Case-Related Insurance Relationships
Data type: NCIROptional: Yes
Call by Reference: Yes
SS_TEXTINFO_DABA - IS-H: Manage Cllctv. Representation of SAPscript Documents
Data type: ISH_DOCCOLLINFOOptional: Yes
Call by Reference: No ( called with pass by value option)
SS_TEXTCONTENT_DABA - SAPscript: Text Rows
Data type: TLINEOptional: Yes
Call by Reference: No ( called with pass by value option)
SS_ADDRESS - IS-H: Table with Address Object Assignments
Data type: ISH_T_ADRMAP_OOOptional: Yes
Call by Reference: Yes
SS_NADR_HV - Address Data of Main Person Insured
Data type: NADROptional: Yes
Call by Reference: Yes
SS_NADR_AG - Address Data Employer of Main Person Insured
Data type: NADROptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for ISH_INSREL_CASE_POOL_GET 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_ss_einri | TYPE EINRI, " | |||
| lv_ss_ip_change | TYPE RNIRCHG, " | |||
| lt_ss_vncir_curr | TYPE STANDARD TABLE OF VNCIR, " | |||
| lv_ss_falnr | TYPE FALNR, " | |||
| lt_ss_textinfo_curr | TYPE STANDARD TABLE OF ISH_DOCCOLLINFO, " | |||
| lv_ss_sel_storn | TYPE ISH_ON_OFF, " ' ' | |||
| lt_ss_textcontent_curr | TYPE STANDARD TABLE OF TLINE, " | |||
| lt_ss_ncir_daba | TYPE STANDARD TABLE OF NCIR, " | |||
| lt_ss_textinfo_daba | TYPE STANDARD TABLE OF ISH_DOCCOLLINFO, " | |||
| lt_ss_textcontent_daba | TYPE STANDARD TABLE OF TLINE, " | |||
| lt_ss_address | TYPE STANDARD TABLE OF ISH_T_ADRMAP_OO, " | |||
| lt_ss_nadr_hv | TYPE STANDARD TABLE OF NADR, " | |||
| lt_ss_nadr_ag | TYPE STANDARD TABLE OF NADR. " |
|   CALL FUNCTION 'ISH_INSREL_CASE_POOL_GET' "IS-H: Read Insurance Relationships frpm Data Pool |
| EXPORTING | ||
| SS_EINRI | = lv_ss_einri | |
| SS_FALNR | = lv_ss_falnr | |
| SS_SEL_STORN | = lv_ss_sel_storn | |
| IMPORTING | ||
| SS_IP_CHANGE | = lv_ss_ip_change | |
| TABLES | ||
| SS_VNCIR_CURR | = lt_ss_vncir_curr | |
| SS_TEXTINFO_CURR | = lt_ss_textinfo_curr | |
| SS_TEXTCONTENT_CURR | = lt_ss_textcontent_curr | |
| SS_NCIR_DABA | = lt_ss_ncir_daba | |
| SS_TEXTINFO_DABA | = lt_ss_textinfo_daba | |
| SS_TEXTCONTENT_DABA | = lt_ss_textcontent_daba | |
| SS_ADDRESS | = lt_ss_address | |
| SS_NADR_HV | = lt_ss_nadr_hv | |
| SS_NADR_AG | = lt_ss_nadr_ag | |
| . " ISH_INSREL_CASE_POOL_GET | ||
ABAP code using 7.40 inline data declarations to call FM ISH_INSREL_CASE_POOL_GET
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_ss_sel_storn) | = ' '. | |||
Search for further information about these or an SAP related objects