SAP ISH_SE_CASELIST_GET Function Module for IS-H: Lesen der Fallliste eines Patienten









ISH_SE_CASELIST_GET is a standard ish se caselist 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: Lesen der Fallliste eines Patienten 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 se caselist get FM, simply by entering the name ISH_SE_CASELIST_GET into the relevant SAP transaction such as SE37 or SE38.

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



Function ISH_SE_CASELIST_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_SE_CASELIST_GET'"IS-H: Lesen der Fallliste eines Patienten
EXPORTING
I_EINRI = "IS-H: Einrichtung
I_PATNR = "IS-H: Patientennummer
* I_FALNR = "IS-H: Fallnummer
* I_VALID_FROM = '00000000' "IS-H: Gültig von
* I_VALID_TO = '99991231' "IS-H: Gültig bis
* I_CASE_TYPE = "IS-H: Fallart

IMPORTING
ET_NFAL = "IS-H: Tabellentyp für NFAL
ET_NBEW = "IS-H: Tabellentyp für NBEW
ET_RETURN = "Returntabelle
E_RETMAXTYPE = "IS-H: Maximal (schlimmster) aufgetretener Nachrichtentyp
.



IMPORTING Parameters details for ISH_SE_CASELIST_GET

I_EINRI - IS-H: Einrichtung

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

I_PATNR - IS-H: Patientennummer

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

I_FALNR - IS-H: Fallnummer

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

I_VALID_FROM - IS-H: Gültig von

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

I_VALID_TO - IS-H: Gültig bis

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

I_CASE_TYPE - IS-H: Fallart

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

EXPORTING Parameters details for ISH_SE_CASELIST_GET

ET_NFAL - IS-H: Tabellentyp für NFAL

Data type: ISH_T_NFAL
Optional: No
Call by Reference: Yes

ET_NBEW - IS-H: Tabellentyp für NBEW

Data type: ISH_T_NBEW
Optional: No
Call by Reference: Yes

ET_RETURN - Returntabelle

Data type: BAPIRET2_T
Optional: No
Call by Reference: Yes

E_RETMAXTYPE - IS-H: Maximal (schlimmster) aufgetretener Nachrichtentyp

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

Copy and paste ABAP code example for ISH_SE_CASELIST_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_et_nfal  TYPE ISH_T_NFAL, "   
lv_i_einri  TYPE NFAL-EINRI, "   
lv_et_nbew  TYPE ISH_T_NBEW, "   
lv_i_patnr  TYPE NFAL-PATNR, "   
lv_i_falnr  TYPE NFAL-FALNR, "   
lv_et_return  TYPE BAPIRET2_T, "   
lv_e_retmaxtype  TYPE NPDOK-BAPIRETMAXTY, "   
lv_i_valid_from  TYPE BEGDT_FAL, "   '00000000'
lv_i_valid_to  TYPE ENDDT_FAL, "   '99991231'
lv_i_case_type  TYPE FALLART. "   

  CALL FUNCTION 'ISH_SE_CASELIST_GET'  "IS-H: Lesen der Fallliste eines Patienten
    EXPORTING
         I_EINRI = lv_i_einri
         I_PATNR = lv_i_patnr
         I_FALNR = lv_i_falnr
         I_VALID_FROM = lv_i_valid_from
         I_VALID_TO = lv_i_valid_to
         I_CASE_TYPE = lv_i_case_type
    IMPORTING
         ET_NFAL = lv_et_nfal
         ET_NBEW = lv_et_nbew
         ET_RETURN = lv_et_return
         E_RETMAXTYPE = lv_e_retmaxtype
. " ISH_SE_CASELIST_GET




ABAP code using 7.40 inline data declarations to call FM ISH_SE_CASELIST_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.

 
"SELECT single EINRI FROM NFAL INTO @DATA(ld_i_einri).
 
 
"SELECT single PATNR FROM NFAL INTO @DATA(ld_i_patnr).
 
"SELECT single FALNR FROM NFAL INTO @DATA(ld_i_falnr).
 
 
"SELECT single BAPIRETMAXTY FROM NPDOK INTO @DATA(ld_e_retmaxtype).
 
DATA(ld_i_valid_from) = '00000000'.
 
DATA(ld_i_valid_to) = '99991231'.
 
 


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!