SAP ISH_CASE_INFO Function Module for









ISH_CASE_INFO is a standard ish case info 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 case info FM, simply by entering the name ISH_CASE_INFO into the relevant SAP transaction such as SE37 or SE38.

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



Function ISH_CASE_INFO 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_CASE_INFO'"
EXPORTING
I_EINRICHT = "Institution
* READ_NBEW = 'X' "
* READ_NDIA = 'X' "
* READ_NKSK = 'X' "
* READ_NLEI = 'X' "
* READ_NCIR = 'X' "
* READ_NFKL = 'X' "
* I_R3_LIST = ' ' "

IMPORTING
NO_AUTHORITY = "

TABLES
* I_NBEW = "NBEW in connect. with
* I_NDIA = "
I_NFAL = "
* I_NKSK = "
* I_NLEI = "
* I_NCIR = "
* I_NFKL = "

EXCEPTIONS
NO_CASE = 1
.



IMPORTING Parameters details for ISH_CASE_INFO

I_EINRICHT - Institution

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

READ_NBEW -

Data type: NPDOK-XFELD
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

READ_NDIA -

Data type: NPDOK-XFELD
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

READ_NKSK -

Data type: NPDOK-XFELD
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

READ_NLEI -

Data type: NPDOK-XFELD
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

READ_NCIR -

Data type: NPDOK-XFELD
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

READ_NFKL -

Data type: NPDOK-XFELD
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_R3_LIST -

Data type: NPDOK-XFELD
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for ISH_CASE_INFO

NO_AUTHORITY -

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

TABLES Parameters details for ISH_CASE_INFO

I_NBEW - NBEW in connect. with

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

I_NDIA -

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

I_NFAL -

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

I_NKSK -

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

I_NLEI -

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

I_NCIR -

Data type: NCIR
Optional: Yes
Call by Reference: Yes

I_NFKL -

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

EXCEPTIONS details

NO_CASE -

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

Copy and paste ABAP code example for ISH_CASE_INFO 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_i_nbew  TYPE STANDARD TABLE OF NBEW, "   
lv_no_case  TYPE NBEW, "   
lv_i_einricht  TYPE NFAL-EINRI, "   
lv_no_authority  TYPE NPDOK-XFELD, "   
lt_i_ndia  TYPE STANDARD TABLE OF NDIA, "   
lv_read_nbew  TYPE NPDOK-XFELD, "   'X'
lt_i_nfal  TYPE STANDARD TABLE OF NFAL, "   
lv_read_ndia  TYPE NPDOK-XFELD, "   'X'
lt_i_nksk  TYPE STANDARD TABLE OF NKSK, "   
lv_read_nksk  TYPE NPDOK-XFELD, "   'X'
lt_i_nlei  TYPE STANDARD TABLE OF NLEI, "   
lv_read_nlei  TYPE NPDOK-XFELD, "   'X'
lt_i_ncir  TYPE STANDARD TABLE OF NCIR, "   
lv_read_ncir  TYPE NPDOK-XFELD, "   'X'
lt_i_nfkl  TYPE STANDARD TABLE OF NFKL, "   
lv_read_nfkl  TYPE NPDOK-XFELD, "   'X'
lv_i_r3_list  TYPE NPDOK-XFELD. "   SPACE

  CALL FUNCTION 'ISH_CASE_INFO'  "
    EXPORTING
         I_EINRICHT = lv_i_einricht
         READ_NBEW = lv_read_nbew
         READ_NDIA = lv_read_ndia
         READ_NKSK = lv_read_nksk
         READ_NLEI = lv_read_nlei
         READ_NCIR = lv_read_ncir
         READ_NFKL = lv_read_nfkl
         I_R3_LIST = lv_i_r3_list
    IMPORTING
         NO_AUTHORITY = lv_no_authority
    TABLES
         I_NBEW = lt_i_nbew
         I_NDIA = lt_i_ndia
         I_NFAL = lt_i_nfal
         I_NKSK = lt_i_nksk
         I_NLEI = lt_i_nlei
         I_NCIR = lt_i_ncir
         I_NFKL = lt_i_nfkl
    EXCEPTIONS
        NO_CASE = 1
. " ISH_CASE_INFO




ABAP code using 7.40 inline data declarations to call FM ISH_CASE_INFO

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_einricht).
 
"SELECT single XFELD FROM NPDOK INTO @DATA(ld_no_authority).
 
 
"SELECT single XFELD FROM NPDOK INTO @DATA(ld_read_nbew).
DATA(ld_read_nbew) = 'X'.
 
 
"SELECT single XFELD FROM NPDOK INTO @DATA(ld_read_ndia).
DATA(ld_read_ndia) = 'X'.
 
 
"SELECT single XFELD FROM NPDOK INTO @DATA(ld_read_nksk).
DATA(ld_read_nksk) = 'X'.
 
 
"SELECT single XFELD FROM NPDOK INTO @DATA(ld_read_nlei).
DATA(ld_read_nlei) = 'X'.
 
 
"SELECT single XFELD FROM NPDOK INTO @DATA(ld_read_ncir).
DATA(ld_read_ncir) = 'X'.
 
 
"SELECT single XFELD FROM NPDOK INTO @DATA(ld_read_nfkl).
DATA(ld_read_nfkl) = 'X'.
 
"SELECT single XFELD FROM NPDOK INTO @DATA(ld_i_r3_list).
DATA(ld_i_r3_list) = ' '.
 


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!