SAP ISHMED_DIAG_BEW_CHECK Function Module for
ISHMED_DIAG_BEW_CHECK is a standard ishmed diag bew 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 ishmed diag bew check FM, simply by entering the name ISHMED_DIAG_BEW_CHECK into the relevant SAP transaction such as SE37 or SE38.
Function Group: N1ML
Program Name: SAPLN1ML
Main Program: SAPLN1ML
Appliation area: N
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISHMED_DIAG_BEW_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 'ISHMED_DIAG_BEW_CHECK'".
EXPORTING
SS_MANDT = "
SS_EINRI = "
SS_FALNR = "
SS_PATNR = "
* SS_LFDNR = "
* SS_REFRESH = ' ' "
* SS_UCOMM = ' ' "
* SS_FLD_SEL = ' ' "
* SS_ORGID = "
TABLES
* T_VARDATA = "
IMPORTING Parameters details for ISHMED_DIAG_BEW_CHECK
SS_MANDT -
Data type: SY-MANDTOptional: No
Call by Reference: No ( called with pass by value option)
SS_EINRI -
Data type: NBEW-EINRIOptional: No
Call by Reference: No ( called with pass by value option)
SS_FALNR -
Data type: NFAL-FALNROptional: No
Call by Reference: No ( called with pass by value option)
SS_PATNR -
Data type: NPAT-PATNROptional: No
Call by Reference: No ( called with pass by value option)
SS_LFDNR -
Data type: NBEW-LFDNROptional: Yes
Call by Reference: No ( called with pass by value option)
SS_REFRESH -
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
SS_UCOMM -
Data type: SY-UCOMMDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
SS_FLD_SEL -
Data type: RN1UEX-N_NAMEDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
SS_ORGID -
Data type: NORG-ORGIDOptional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for ISHMED_DIAG_BEW_CHECK
T_VARDATA -
Data type: RN1UEXOptional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISHMED_DIAG_BEW_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_mandt | TYPE SY-MANDT, " | |||
| lt_t_vardata | TYPE STANDARD TABLE OF RN1UEX, " | |||
| lv_ss_einri | TYPE NBEW-EINRI, " | |||
| lv_ss_falnr | TYPE NFAL-FALNR, " | |||
| lv_ss_patnr | TYPE NPAT-PATNR, " | |||
| lv_ss_lfdnr | TYPE NBEW-LFDNR, " | |||
| lv_ss_refresh | TYPE NBEW, " SPACE | |||
| lv_ss_ucomm | TYPE SY-UCOMM, " SPACE | |||
| lv_ss_fld_sel | TYPE RN1UEX-N_NAME, " SPACE | |||
| lv_ss_orgid | TYPE NORG-ORGID. " |
|   CALL FUNCTION 'ISHMED_DIAG_BEW_CHECK' " |
| EXPORTING | ||
| SS_MANDT | = lv_ss_mandt | |
| SS_EINRI | = lv_ss_einri | |
| SS_FALNR | = lv_ss_falnr | |
| SS_PATNR | = lv_ss_patnr | |
| SS_LFDNR | = lv_ss_lfdnr | |
| SS_REFRESH | = lv_ss_refresh | |
| SS_UCOMM | = lv_ss_ucomm | |
| SS_FLD_SEL | = lv_ss_fld_sel | |
| SS_ORGID | = lv_ss_orgid | |
| TABLES | ||
| T_VARDATA | = lt_t_vardata | |
| . " ISHMED_DIAG_BEW_CHECK | ||
ABAP code using 7.40 inline data declarations to call FM ISHMED_DIAG_BEW_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 MANDT FROM SY INTO @DATA(ld_ss_mandt). | ||||
| "SELECT single EINRI FROM NBEW INTO @DATA(ld_ss_einri). | ||||
| "SELECT single FALNR FROM NFAL INTO @DATA(ld_ss_falnr). | ||||
| "SELECT single PATNR FROM NPAT INTO @DATA(ld_ss_patnr). | ||||
| "SELECT single LFDNR FROM NBEW INTO @DATA(ld_ss_lfdnr). | ||||
| DATA(ld_ss_refresh) | = ' '. | |||
| "SELECT single UCOMM FROM SY INTO @DATA(ld_ss_ucomm). | ||||
| DATA(ld_ss_ucomm) | = ' '. | |||
| "SELECT single N_NAME FROM RN1UEX INTO @DATA(ld_ss_fld_sel). | ||||
| DATA(ld_ss_fld_sel) | = ' '. | |||
| "SELECT single ORGID FROM NORG INTO @DATA(ld_ss_orgid). | ||||
Search for further information about these or an SAP related objects