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-MANDT
Optional: No
Call by Reference: No ( called with pass by value option)

SS_EINRI -

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

SS_FALNR -

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

SS_PATNR -

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

SS_LFDNR -

Data type: NBEW-LFDNR
Optional: 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-UCOMM
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

SS_FLD_SEL -

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

SS_ORGID -

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

TABLES Parameters details for ISHMED_DIAG_BEW_CHECK

T_VARDATA -

Data type: RN1UEX
Optional: 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



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!