SAP ISH_KLASSIFIKATION_FALL Function Module for









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

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



Function ISH_KLASSIFIKATION_FALL 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_KLASSIFIKATION_FALL'"
EXPORTING
* NBEWSTRING = ' ' "Movement data NBEW string
* SS_TNPOL_MODE = ' ' "
NFALSTRING = "Case data from NFAL
NPATSTRING = "Patient master data from NPAT
* SS_KLFTYP = ' ' "Classification Category
* SS_PPR = 0 "Display/maintain nurs. acuities acc. to nurs. acuity classification
* SS_REPID = ' ' "ID of calling program
* SS_SAVE_IMMEDIATLY = 0 "Flag whether case classif. should be updated in FM
* SS_VCODE_NFAL = ' ' "Processing code referring to table NFAL
* SS_VCODE_NFKL = ' ' "Processing code referring to table NFKL

IMPORTING
SS_OKCODE = "OKCODE last executed in FM
SS_UPD_NFKL = "Flag 'Update table NFKL'

EXCEPTIONS
NO_AUTHORITY = 1
.



IMPORTING Parameters details for ISH_KLASSIFIKATION_FALL

NBEWSTRING - Movement data NBEW string

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

SS_TNPOL_MODE -

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

NFALSTRING - Case data from NFAL

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

NPATSTRING - Patient master data from NPAT

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

SS_KLFTYP - Classification Category

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

SS_PPR - Display/maintain nurs. acuities acc. to nurs. acuity classification

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

SS_REPID - ID of calling program

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

SS_SAVE_IMMEDIATLY - Flag whether case classif. should be updated in FM

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

SS_VCODE_NFAL - Processing code referring to table NFAL

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

SS_VCODE_NFKL - Processing code referring to table NFKL

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

EXPORTING Parameters details for ISH_KLASSIFIKATION_FALL

SS_OKCODE - OKCODE last executed in FM

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

SS_UPD_NFKL - Flag 'Update table NFKL'

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

EXCEPTIONS details

NO_AUTHORITY - No authorization for case classification

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

Copy and paste ABAP code example for ISH_KLASSIFIKATION_FALL 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_okcode  TYPE SY-UCOMM, "   
lv_nbewstring  TYPE NBEW, "   SPACE
lv_no_authority  TYPE NBEW, "   
lv_ss_tnpol_mode  TYPE ISH_ON_OFF, "   SPACE
lv_nfalstring  TYPE NFAL, "   
lv_ss_upd_nfkl  TYPE RNFKL-UPDKZ, "   
lv_npatstring  TYPE NPAT, "   
lv_ss_klftyp  TYPE TNKTY-KLFTYP, "   SPACE
lv_ss_ppr  TYPE TNKTY, "   0
lv_ss_repid  TYPE SY-REPID, "   SPACE
lv_ss_save_immediatly  TYPE SY, "   0
lv_ss_vcode_nfal  TYPE RNFKL-VCODE, "   SPACE
lv_ss_vcode_nfkl  TYPE RNFKL-VCODE. "   SPACE

  CALL FUNCTION 'ISH_KLASSIFIKATION_FALL'  "
    EXPORTING
         NBEWSTRING = lv_nbewstring
         SS_TNPOL_MODE = lv_ss_tnpol_mode
         NFALSTRING = lv_nfalstring
         NPATSTRING = lv_npatstring
         SS_KLFTYP = lv_ss_klftyp
         SS_PPR = lv_ss_ppr
         SS_REPID = lv_ss_repid
         SS_SAVE_IMMEDIATLY = lv_ss_save_immediatly
         SS_VCODE_NFAL = lv_ss_vcode_nfal
         SS_VCODE_NFKL = lv_ss_vcode_nfkl
    IMPORTING
         SS_OKCODE = lv_ss_okcode
         SS_UPD_NFKL = lv_ss_upd_nfkl
    EXCEPTIONS
        NO_AUTHORITY = 1
. " ISH_KLASSIFIKATION_FALL




ABAP code using 7.40 inline data declarations to call FM ISH_KLASSIFIKATION_FALL

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 UCOMM FROM SY INTO @DATA(ld_ss_okcode).
 
DATA(ld_nbewstring) = ' '.
 
 
DATA(ld_ss_tnpol_mode) = ' '.
 
 
"SELECT single UPDKZ FROM RNFKL INTO @DATA(ld_ss_upd_nfkl).
 
 
"SELECT single KLFTYP FROM TNKTY INTO @DATA(ld_ss_klftyp).
DATA(ld_ss_klftyp) = ' '.
 
 
"SELECT single REPID FROM SY INTO @DATA(ld_ss_repid).
DATA(ld_ss_repid) = ' '.
 
 
"SELECT single VCODE FROM RNFKL INTO @DATA(ld_ss_vcode_nfal).
DATA(ld_ss_vcode_nfal) = ' '.
 
"SELECT single VCODE FROM RNFKL INTO @DATA(ld_ss_vcode_nfkl).
DATA(ld_ss_vcode_nfkl) = ' '.
 


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!