SAP ISH_DIAGNOSIS_ICD10_CHECK Function Module for









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

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



Function ISH_DIAGNOSIS_ICD10_CHECK 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_DIAGNOSIS_ICD10_CHECK'"
EXPORTING
SS_ACTIVITY = "
* SS_ONLY_FLAG = OFF "
* SS_ONLY_LOCAL = OFF "
* SS_ONLY_GLOBAL = OFF "
* SS_DIALOG = ON "

IMPORTING
SS_OKAY = "
SS_LINK_SET = "

CHANGING
SS_ICD10_DIA = "

TABLES
SS_OTHER_DIAS = "

EXCEPTIONS
NO_FURTHER_FLAGS = 1 DIFFERENT_TYPE = 2 STAR_WITHOUT_CROSS = 3 CROSS_WITHOUT_STAR = 4 DELETE_CROSS_WITH_STAR = 5 WRONG_ACTIVITY = 6
.




Customer Function user exits

Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.
EXIT_SAPLN00D_001 IS-H: Process Diagnosis Data During Entry via Transaction NP61

IMPORTING Parameters details for ISH_DIAGNOSIS_ICD10_CHECK

SS_ACTIVITY -

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

SS_ONLY_FLAG -

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

SS_ONLY_LOCAL -

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

SS_ONLY_GLOBAL -

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

SS_DIALOG -

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

EXPORTING Parameters details for ISH_DIAGNOSIS_ICD10_CHECK

SS_OKAY -

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

SS_LINK_SET -

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

CHANGING Parameters details for ISH_DIAGNOSIS_ICD10_CHECK

SS_ICD10_DIA -

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

TABLES Parameters details for ISH_DIAGNOSIS_ICD10_CHECK

SS_OTHER_DIAS -

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

EXCEPTIONS details

NO_FURTHER_FLAGS -

Data type:
Optional: No
Call by Reference: Yes

DIFFERENT_TYPE -

Data type:
Optional: No
Call by Reference: Yes

STAR_WITHOUT_CROSS -

Data type:
Optional: No
Call by Reference: Yes

CROSS_WITHOUT_STAR -

Data type:
Optional: No
Call by Reference: Yes

DELETE_CROSS_WITH_STAR -

Data type:
Optional: No
Call by Reference: Yes

WRONG_ACTIVITY -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for ISH_DIAGNOSIS_ICD10_CHECK 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_okay  TYPE ISH_TRUE_FALSE, "   
lv_ss_activity  TYPE TNDYM-VCODE, "   
lv_ss_icd10_dia  TYPE RNDIA, "   
lt_ss_other_dias  TYPE STANDARD TABLE OF RNDIA, "   
lv_no_further_flags  TYPE RNDIA, "   
lv_ss_link_set  TYPE ISH_TRUE_FALSE, "   
lv_ss_only_flag  TYPE NPDOK-XFELD, "   OFF
lv_different_type  TYPE NPDOK, "   
lv_ss_only_local  TYPE NPDOK-XFELD, "   OFF
lv_star_without_cross  TYPE NPDOK, "   
lv_ss_only_global  TYPE NPDOK-XFELD, "   OFF
lv_cross_without_star  TYPE NPDOK, "   
lv_ss_dialog  TYPE NPDOK-XFELD, "   ON
lv_delete_cross_with_star  TYPE NPDOK, "   
lv_wrong_activity  TYPE NPDOK. "   

  CALL FUNCTION 'ISH_DIAGNOSIS_ICD10_CHECK'  "
    EXPORTING
         SS_ACTIVITY = lv_ss_activity
         SS_ONLY_FLAG = lv_ss_only_flag
         SS_ONLY_LOCAL = lv_ss_only_local
         SS_ONLY_GLOBAL = lv_ss_only_global
         SS_DIALOG = lv_ss_dialog
    IMPORTING
         SS_OKAY = lv_ss_okay
         SS_LINK_SET = lv_ss_link_set
    CHANGING
         SS_ICD10_DIA = lv_ss_icd10_dia
    TABLES
         SS_OTHER_DIAS = lt_ss_other_dias
    EXCEPTIONS
        NO_FURTHER_FLAGS = 1
        DIFFERENT_TYPE = 2
        STAR_WITHOUT_CROSS = 3
        CROSS_WITHOUT_STAR = 4
        DELETE_CROSS_WITH_STAR = 5
        WRONG_ACTIVITY = 6
. " ISH_DIAGNOSIS_ICD10_CHECK




ABAP code using 7.40 inline data declarations to call FM ISH_DIAGNOSIS_ICD10_CHECK

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 VCODE FROM TNDYM INTO @DATA(ld_ss_activity).
 
 
 
 
 
"SELECT single XFELD FROM NPDOK INTO @DATA(ld_ss_only_flag).
DATA(ld_ss_only_flag) = OFF.
 
 
"SELECT single XFELD FROM NPDOK INTO @DATA(ld_ss_only_local).
DATA(ld_ss_only_local) = OFF.
 
 
"SELECT single XFELD FROM NPDOK INTO @DATA(ld_ss_only_global).
DATA(ld_ss_only_global) = OFF.
 
 
"SELECT single XFELD FROM NPDOK INTO @DATA(ld_ss_dialog).
DATA(ld_ss_dialog) = ON.
 
 
 


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!