SAP ISP_DOUBLE_ELEMENT_CHECK Function Module for
ISP_DOUBLE_ELEMENT_CHECK is a standard isp double element 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 isp double element check FM, simply by entering the name ISP_DOUBLE_ELEMENT_CHECK into the relevant SAP transaction such as SE37 or SE38.
Function Group: JS03
Program Name: SAPLJS03
Main Program: SAPLJS03
Appliation area: J
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISP_DOUBLE_ELEMENT_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 'ISP_DOUBLE_ELEMENT_CHECK'".
EXPORTING
ADRZUSATZ = "Address suppl.
KNOTENART = "
* START_INDEX = '0001' "
STOCKWERK = "Floor
VONDATUM = "From Date
VONHAUSNR = "
VONHNRZUS = "
BISDATUM = "To-Date
BISHAUSNR = "
BISHNRZUS = "
* END_INDEX = "
* FLG_STR_CHECK_OFF = "
HNRKENN = "House Number Affix
* INDEX = "
KNOTEN = "
IMPORTING
RETURNCODE = "
TABLES
AUSNAHME = "
PROTOKOLL = "
ZEITSCHEIBE = "Checklist
IMPORTING Parameters details for ISP_DOUBLE_ELEMENT_CHECK
ADRZUSATZ - Address suppl.
Data type: RJS0802-ADRZUSATZOptional: No
Call by Reference: No ( called with pass by value option)
KNOTENART -
Data type: RJS0802-STRUKNOARTOptional: No
Call by Reference: No ( called with pass by value option)
START_INDEX -
Data type: SY-TABIXDefault: '0001'
Optional: Yes
Call by Reference: No ( called with pass by value option)
STOCKWERK - Floor
Data type: RJS0802-STOCKWERKOptional: No
Call by Reference: No ( called with pass by value option)
VONDATUM - From Date
Data type: RJS0802-GUELTIGABOptional: No
Call by Reference: No ( called with pass by value option)
VONHAUSNR -
Data type: RJS0802-HAUSNRVONOptional: No
Call by Reference: No ( called with pass by value option)
VONHNRZUS -
Data type: RJS0802-HNRZUSVONOptional: No
Call by Reference: No ( called with pass by value option)
BISDATUM - To-Date
Data type: RJS0802-GUELTIGBISOptional: No
Call by Reference: No ( called with pass by value option)
BISHAUSNR -
Data type: RJS0802-HAUSNRBISOptional: No
Call by Reference: No ( called with pass by value option)
BISHNRZUS -
Data type: RJS0802-HNRZUSBISOptional: No
Call by Reference: No ( called with pass by value option)
END_INDEX -
Data type: SY-TABIXOptional: Yes
Call by Reference: No ( called with pass by value option)
FLG_STR_CHECK_OFF -
Data type: RJS0102-XMANUELLOptional: Yes
Call by Reference: No ( called with pass by value option)
HNRKENN - House Number Affix
Data type: RJS0802-HNRKENNOptional: No
Call by Reference: No ( called with pass by value option)
INDEX -
Data type: SY-TABIXOptional: Yes
Call by Reference: No ( called with pass by value option)
KNOTEN -
Data type: RJS0802-STRUKNOTENOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for ISP_DOUBLE_ELEMENT_CHECK
RETURNCODE -
Data type: SY-SUBRCOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for ISP_DOUBLE_ELEMENT_CHECK
AUSNAHME -
Data type: RJS0804Optional: No
Call by Reference: No ( called with pass by value option)
PROTOKOLL -
Data type: RJS_PROT01Optional: No
Call by Reference: No ( called with pass by value option)
ZEITSCHEIBE - Checklist
Data type: RJS0804Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISP_DOUBLE_ELEMENT_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: | ||||
| lt_ausnahme | TYPE STANDARD TABLE OF RJS0804, " | |||
| lv_adrzusatz | TYPE RJS0802-ADRZUSATZ, " | |||
| lv_returncode | TYPE SY-SUBRC, " | |||
| lv_knotenart | TYPE RJS0802-STRUKNOART, " | |||
| lv_start_index | TYPE SY-TABIX, " '0001' | |||
| lv_stockwerk | TYPE RJS0802-STOCKWERK, " | |||
| lv_vondatum | TYPE RJS0802-GUELTIGAB, " | |||
| lv_vonhausnr | TYPE RJS0802-HAUSNRVON, " | |||
| lv_vonhnrzus | TYPE RJS0802-HNRZUSVON, " | |||
| lv_bisdatum | TYPE RJS0802-GUELTIGBIS, " | |||
| lt_protokoll | TYPE STANDARD TABLE OF RJS_PROT01, " | |||
| lv_bishausnr | TYPE RJS0802-HAUSNRBIS, " | |||
| lt_zeitscheibe | TYPE STANDARD TABLE OF RJS0804, " | |||
| lv_bishnrzus | TYPE RJS0802-HNRZUSBIS, " | |||
| lv_end_index | TYPE SY-TABIX, " | |||
| lv_flg_str_check_off | TYPE RJS0102-XMANUELL, " | |||
| lv_hnrkenn | TYPE RJS0802-HNRKENN, " | |||
| lv_index | TYPE SY-TABIX, " | |||
| lv_knoten | TYPE RJS0802-STRUKNOTEN. " |
|   CALL FUNCTION 'ISP_DOUBLE_ELEMENT_CHECK' " |
| EXPORTING | ||
| ADRZUSATZ | = lv_adrzusatz | |
| KNOTENART | = lv_knotenart | |
| START_INDEX | = lv_start_index | |
| STOCKWERK | = lv_stockwerk | |
| VONDATUM | = lv_vondatum | |
| VONHAUSNR | = lv_vonhausnr | |
| VONHNRZUS | = lv_vonhnrzus | |
| BISDATUM | = lv_bisdatum | |
| BISHAUSNR | = lv_bishausnr | |
| BISHNRZUS | = lv_bishnrzus | |
| END_INDEX | = lv_end_index | |
| FLG_STR_CHECK_OFF | = lv_flg_str_check_off | |
| HNRKENN | = lv_hnrkenn | |
| INDEX | = lv_index | |
| KNOTEN | = lv_knoten | |
| IMPORTING | ||
| RETURNCODE | = lv_returncode | |
| TABLES | ||
| AUSNAHME | = lt_ausnahme | |
| PROTOKOLL | = lt_protokoll | |
| ZEITSCHEIBE | = lt_zeitscheibe | |
| . " ISP_DOUBLE_ELEMENT_CHECK | ||
ABAP code using 7.40 inline data declarations to call FM ISP_DOUBLE_ELEMENT_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 ADRZUSATZ FROM RJS0802 INTO @DATA(ld_adrzusatz). | ||||
| "SELECT single SUBRC FROM SY INTO @DATA(ld_returncode). | ||||
| "SELECT single STRUKNOART FROM RJS0802 INTO @DATA(ld_knotenart). | ||||
| "SELECT single TABIX FROM SY INTO @DATA(ld_start_index). | ||||
| DATA(ld_start_index) | = '0001'. | |||
| "SELECT single STOCKWERK FROM RJS0802 INTO @DATA(ld_stockwerk). | ||||
| "SELECT single GUELTIGAB FROM RJS0802 INTO @DATA(ld_vondatum). | ||||
| "SELECT single HAUSNRVON FROM RJS0802 INTO @DATA(ld_vonhausnr). | ||||
| "SELECT single HNRZUSVON FROM RJS0802 INTO @DATA(ld_vonhnrzus). | ||||
| "SELECT single GUELTIGBIS FROM RJS0802 INTO @DATA(ld_bisdatum). | ||||
| "SELECT single HAUSNRBIS FROM RJS0802 INTO @DATA(ld_bishausnr). | ||||
| "SELECT single HNRZUSBIS FROM RJS0802 INTO @DATA(ld_bishnrzus). | ||||
| "SELECT single TABIX FROM SY INTO @DATA(ld_end_index). | ||||
| "SELECT single XMANUELL FROM RJS0102 INTO @DATA(ld_flg_str_check_off). | ||||
| "SELECT single HNRKENN FROM RJS0802 INTO @DATA(ld_hnrkenn). | ||||
| "SELECT single TABIX FROM SY INTO @DATA(ld_index). | ||||
| "SELECT single STRUKNOTEN FROM RJS0802 INTO @DATA(ld_knoten). | ||||
Search for further information about these or an SAP related objects