SAP ISH_CASEIV_POOL_GET Function Module for IS-H: Read Insurance Verification Data from Data Pool
ISH_CASEIV_POOL_GET is a standard ish caseiv 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 Verification Data from 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 caseiv pool get FM, simply by entering the name ISH_CASEIV_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_CASEIV_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_CASEIV_POOL_GET'"IS-H: Read Insurance Verification Data from Data Pool.
EXPORTING
I_EINRI = "IS-H: Institution
I_FALNR = "IS-H: Case Number
* I_SEL_STORN = "Read Canceled Data also
* I_DB_STORN = ON "IS-H: Boolean Data Type for ON (= 'X') and OFF (= ' ')
TABLES
* ET_VNKSK_CURR = "Current IV Header Data
* ET_TEXTCONTENT_DABA = "SAPscript: Text Rows
* ET_VNCIR_LAST_CHECKED = "Most Current Checked IR Data Status
* ET_VNKSP_CURR = "Current IV Item Data
* ET_VNKSD_CURR = "Change Document Structure: Generated by RSSCD000
* ET_TEXTINFO_CURR = "IS-H: Manage Cllctv. Representation of SAPscript Documents
* ET_TEXTCONTENT_CURR = "SAPscript: Text Rows
* ET_NKSK_DABA = "Database Status IV Header Data
* ET_NKSP_DABA = "Database Status IV Item Data
* ET_NKSD_DABA = "IS-H: Treatment Certificate Details
* ET_TEXTINFO_DABA = "IS-H: Manage Cllctv. Representation of SAPscript Documents
IMPORTING Parameters details for ISH_CASEIV_POOL_GET
I_EINRI - IS-H: Institution
Data type: EINRIOptional: No
Call by Reference: No ( called with pass by value option)
I_FALNR - IS-H: Case Number
Data type: FALNROptional: No
Call by Reference: No ( called with pass by value option)
I_SEL_STORN - Read Canceled Data also
Data type: ISH_ON_OFFOptional: Yes
Call by Reference: No ( called with pass by value option)
I_DB_STORN - IS-H: Boolean Data Type for ON (= 'X') and OFF (= ' ')
Data type: ISH_ON_OFFDefault: ON
Optional: Yes
Call by Reference: Yes
TABLES Parameters details for ISH_CASEIV_POOL_GET
ET_VNKSK_CURR - Current IV Header Data
Data type: VNKSKOptional: Yes
Call by Reference: Yes
ET_TEXTCONTENT_DABA - SAPscript: Text Rows
Data type: TLINEOptional: Yes
Call by Reference: Yes
ET_VNCIR_LAST_CHECKED - Most Current Checked IR Data Status
Data type: VNCIROptional: Yes
Call by Reference: Yes
ET_VNKSP_CURR - Current IV Item Data
Data type: VNKSPOptional: Yes
Call by Reference: Yes
ET_VNKSD_CURR - Change Document Structure: Generated by RSSCD000
Data type: VNKSDOptional: Yes
Call by Reference: Yes
ET_TEXTINFO_CURR - IS-H: Manage Cllctv. Representation of SAPscript Documents
Data type: ISH_DOCCOLLINFOOptional: Yes
Call by Reference: Yes
ET_TEXTCONTENT_CURR - SAPscript: Text Rows
Data type: TLINEOptional: Yes
Call by Reference: Yes
ET_NKSK_DABA - Database Status IV Header Data
Data type: NKSKOptional: Yes
Call by Reference: Yes
ET_NKSP_DABA - Database Status IV Item Data
Data type: NKSPOptional: Yes
Call by Reference: Yes
ET_NKSD_DABA - IS-H: Treatment Certificate Details
Data type: NKSDOptional: Yes
Call by Reference: Yes
ET_TEXTINFO_DABA - IS-H: Manage Cllctv. Representation of SAPscript Documents
Data type: ISH_DOCCOLLINFOOptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for ISH_CASEIV_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_i_einri | TYPE EINRI, " | |||
| lt_et_vnksk_curr | TYPE STANDARD TABLE OF VNKSK, " | |||
| lt_et_textcontent_daba | TYPE STANDARD TABLE OF TLINE, " | |||
| lt_et_vncir_last_checked | TYPE STANDARD TABLE OF VNCIR, " | |||
| lv_i_falnr | TYPE FALNR, " | |||
| lt_et_vnksp_curr | TYPE STANDARD TABLE OF VNKSP, " | |||
| lv_i_sel_storn | TYPE ISH_ON_OFF, " | |||
| lt_et_vnksd_curr | TYPE STANDARD TABLE OF VNKSD, " | |||
| lv_i_db_storn | TYPE ISH_ON_OFF, " ON | |||
| lt_et_textinfo_curr | TYPE STANDARD TABLE OF ISH_DOCCOLLINFO, " | |||
| lt_et_textcontent_curr | TYPE STANDARD TABLE OF TLINE, " | |||
| lt_et_nksk_daba | TYPE STANDARD TABLE OF NKSK, " | |||
| lt_et_nksp_daba | TYPE STANDARD TABLE OF NKSP, " | |||
| lt_et_nksd_daba | TYPE STANDARD TABLE OF NKSD, " | |||
| lt_et_textinfo_daba | TYPE STANDARD TABLE OF ISH_DOCCOLLINFO. " |
|   CALL FUNCTION 'ISH_CASEIV_POOL_GET' "IS-H: Read Insurance Verification Data from Data Pool |
| EXPORTING | ||
| I_EINRI | = lv_i_einri | |
| I_FALNR | = lv_i_falnr | |
| I_SEL_STORN | = lv_i_sel_storn | |
| I_DB_STORN | = lv_i_db_storn | |
| TABLES | ||
| ET_VNKSK_CURR | = lt_et_vnksk_curr | |
| ET_TEXTCONTENT_DABA | = lt_et_textcontent_daba | |
| ET_VNCIR_LAST_CHECKED | = lt_et_vncir_last_checked | |
| ET_VNKSP_CURR | = lt_et_vnksp_curr | |
| ET_VNKSD_CURR | = lt_et_vnksd_curr | |
| ET_TEXTINFO_CURR | = lt_et_textinfo_curr | |
| ET_TEXTCONTENT_CURR | = lt_et_textcontent_curr | |
| ET_NKSK_DABA | = lt_et_nksk_daba | |
| ET_NKSP_DABA | = lt_et_nksp_daba | |
| ET_NKSD_DABA | = lt_et_nksd_daba | |
| ET_TEXTINFO_DABA | = lt_et_textinfo_daba | |
| . " ISH_CASEIV_POOL_GET | ||
ABAP code using 7.40 inline data declarations to call FM ISH_CASEIV_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_i_db_storn) | = ON. | |||
Search for further information about these or an SAP related objects