SAP ISH_GET_KLASSIFIKATION_FALL Function Module for









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

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



Function ISH_GET_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_GET_KLASSIFIKATION_FALL'"
EXPORTING
SS_AUFNDT = "Admission date of case
* SS_FKLEZT = '240000' "Validity end time of case classification
* SS_KLFART_INTERN = '00' "Seq. no. of internal classification type -> F2
* SS_KLFTYP_INTERN = '00' "Seq. no. of internal classification cat. -> F2
SS_AUFNZT = "Admission time of case
SS_EINRI = "Institution ID
* SS_ENTLDT = '00000000' "Discharge date of case
* SS_ENTLZT = '240000' "Discharge time of case
SS_FALNR = "Case No.
* SS_FKLBDT = '00000000' "Validity start date of case classification
* SS_FKLBZT = '000000' "Validity start time of case classification
* SS_FKLEDT = '00000000' "Validity end date of case classification

TABLES
KLF_GET = "Determine case classification of case

EXCEPTIONS
KLFART_INTERN_FALSE = 1 KLFTYP_INTERN_FALSE = 2
.



IMPORTING Parameters details for ISH_GET_KLASSIFIKATION_FALL

SS_AUFNDT - Admission date of case

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

SS_FKLEZT - Validity end time of case classification

Data type: NFKL-FKLEZT
Default: '240000'
Optional: Yes
Call by Reference: No ( called with pass by value option)

SS_KLFART_INTERN - Seq. no. of internal classification type -> F2

Data type: TNKLA-KLFART_INT
Default: '00'
Optional: Yes
Call by Reference: No ( called with pass by value option)

SS_KLFTYP_INTERN - Seq. no. of internal classification cat. -> F2

Data type: TNKLA-KLFART_INT
Default: '00'
Optional: Yes
Call by Reference: No ( called with pass by value option)

SS_AUFNZT - Admission time of case

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

SS_EINRI - Institution ID

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

SS_ENTLDT - Discharge date of case

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

SS_ENTLZT - Discharge time of case

Data type: NBEW-BWIZT
Default: '240000'
Optional: Yes
Call by Reference: No ( called with pass by value option)

SS_FALNR - Case No.

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

SS_FKLBDT - Validity start date of case classification

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

SS_FKLBZT - Validity start time of case classification

Data type: NFKL-FKLBZT
Default: '000000'
Optional: Yes
Call by Reference: No ( called with pass by value option)

SS_FKLEDT - Validity end date of case classification

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

TABLES Parameters details for ISH_GET_KLASSIFIKATION_FALL

KLF_GET - Determine case classification of case

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

EXCEPTIONS details

KLFART_INTERN_FALSE - IS-H internal class. type incorrect

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

KLFTYP_INTERN_FALSE - IS-H internal class. cat. incorrect

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

Copy and paste ABAP code example for ISH_GET_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:
lt_klf_get  TYPE STANDARD TABLE OF RNFKL_S, "   
lv_ss_aufndt  TYPE NBEW-BWIDT, "   
lv_klfart_intern_false  TYPE NBEW, "   
lv_ss_fklezt  TYPE NFKL-FKLEZT, "   '240000'
lv_ss_klfart_intern  TYPE TNKLA-KLFART_INT, "   '00'
lv_ss_klftyp_intern  TYPE TNKLA-KLFART_INT, "   '00'
lv_ss_aufnzt  TYPE NBEW-BWIZT, "   
lv_klftyp_intern_false  TYPE NBEW, "   
lv_ss_einri  TYPE NFKL-EINRI, "   
lv_ss_entldt  TYPE NBEW-BWIDT, "   '00000000'
lv_ss_entlzt  TYPE NBEW-BWIZT, "   '240000'
lv_ss_falnr  TYPE NFKL-FALNR, "   
lv_ss_fklbdt  TYPE NFKL-FKLBDT, "   '00000000'
lv_ss_fklbzt  TYPE NFKL-FKLBZT, "   '000000'
lv_ss_fkledt  TYPE NFKL-FKLEDT. "   '00000000'

  CALL FUNCTION 'ISH_GET_KLASSIFIKATION_FALL'  "
    EXPORTING
         SS_AUFNDT = lv_ss_aufndt
         SS_FKLEZT = lv_ss_fklezt
         SS_KLFART_INTERN = lv_ss_klfart_intern
         SS_KLFTYP_INTERN = lv_ss_klftyp_intern
         SS_AUFNZT = lv_ss_aufnzt
         SS_EINRI = lv_ss_einri
         SS_ENTLDT = lv_ss_entldt
         SS_ENTLZT = lv_ss_entlzt
         SS_FALNR = lv_ss_falnr
         SS_FKLBDT = lv_ss_fklbdt
         SS_FKLBZT = lv_ss_fklbzt
         SS_FKLEDT = lv_ss_fkledt
    TABLES
         KLF_GET = lt_klf_get
    EXCEPTIONS
        KLFART_INTERN_FALSE = 1
        KLFTYP_INTERN_FALSE = 2
. " ISH_GET_KLASSIFIKATION_FALL




ABAP code using 7.40 inline data declarations to call FM ISH_GET_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 BWIDT FROM NBEW INTO @DATA(ld_ss_aufndt).
 
 
"SELECT single FKLEZT FROM NFKL INTO @DATA(ld_ss_fklezt).
DATA(ld_ss_fklezt) = '240000'.
 
"SELECT single KLFART_INT FROM TNKLA INTO @DATA(ld_ss_klfart_intern).
DATA(ld_ss_klfart_intern) = '00'.
 
"SELECT single KLFART_INT FROM TNKLA INTO @DATA(ld_ss_klftyp_intern).
DATA(ld_ss_klftyp_intern) = '00'.
 
"SELECT single BWIZT FROM NBEW INTO @DATA(ld_ss_aufnzt).
 
 
"SELECT single EINRI FROM NFKL INTO @DATA(ld_ss_einri).
 
"SELECT single BWIDT FROM NBEW INTO @DATA(ld_ss_entldt).
DATA(ld_ss_entldt) = '00000000'.
 
"SELECT single BWIZT FROM NBEW INTO @DATA(ld_ss_entlzt).
DATA(ld_ss_entlzt) = '240000'.
 
"SELECT single FALNR FROM NFKL INTO @DATA(ld_ss_falnr).
 
"SELECT single FKLBDT FROM NFKL INTO @DATA(ld_ss_fklbdt).
DATA(ld_ss_fklbdt) = '00000000'.
 
"SELECT single FKLBZT FROM NFKL INTO @DATA(ld_ss_fklbzt).
DATA(ld_ss_fklbzt) = '000000'.
 
"SELECT single FKLEDT FROM NFKL INTO @DATA(ld_ss_fkledt).
DATA(ld_ss_fkledt) = '00000000'.
 


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!