SAP ISU_TECHINST_CHECK_PARALLEL Function Module for
ISU_TECHINST_CHECK_PARALLEL is a standard isu techinst check parallel 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 isu techinst check parallel FM, simply by entering the name ISU_TECHINST_CHECK_PARALLEL into the relevant SAP transaction such as SE37 or SE38.
Function Group: EEWM_HIK_INS
Program Name: SAPLEEWM_HIK_INS
Main Program: SAPLEEWM_HIK_INS
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function ISU_TECHINST_CHECK_PARALLEL 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 'ISU_TECHINST_CHECK_PARALLEL'".
EXPORTING
X_CAMPAIGN = "
X_CAMPAIGN_START = "
X_CAMPAIGN_END = "
* X_MONTH = "
* X_YEAR = "
* X_SO_NEXTI_LOW = "
* X_SO_NEXTI_HIGH = "
X_UNIT_MONTH = "
X_UNIT_YEAR = "
IMPORTING
ETINS_CHECKED = "
ETINS_FOUND = "
TABLES
T_ETINS = "
T_SO_CNTRY = "
T_SO_CITY = "
T_SO_STRT = "
T_SO_HNUM = "
Y_MESSAGES = "
T_EWMPERIODTI = "
* YT_EWMINSPDETAIL_NEW = "
T_SO_VBART = "
T_SO_SPART = "
T_SO_REGIO = "
T_SO_ABEIN = "
T_SO_MONTH = "
T_SO_YEAR = "
IMPORTING Parameters details for ISU_TECHINST_CHECK_PARALLEL
X_CAMPAIGN -
Data type: EEWM_CAMPAIGNOptional: No
Call by Reference: No ( called with pass by value option)
X_CAMPAIGN_START -
Data type: EEWM_CAMPAIGN_STARTOptional: No
Call by Reference: No ( called with pass by value option)
X_CAMPAIGN_END -
Data type: EEWM_CAMPAIGN_ENDOptional: No
Call by Reference: No ( called with pass by value option)
X_MONTH -
Data type: EEWM_RADIO_ONLY_MONTHOptional: Yes
Call by Reference: No ( called with pass by value option)
X_YEAR -
Data type: EEWM_RADIO_ONLY_YEAROptional: Yes
Call by Reference: No ( called with pass by value option)
X_SO_NEXTI_LOW -
Data type: EEWM_NEXT_INSPECTIONOptional: Yes
Call by Reference: No ( called with pass by value option)
X_SO_NEXTI_HIGH -
Data type: EEWM_NEXT_INSPECTIONOptional: Yes
Call by Reference: No ( called with pass by value option)
X_UNIT_MONTH -
Data type: T006-MSEHIOptional: No
Call by Reference: No ( called with pass by value option)
X_UNIT_YEAR -
Data type: T006-MSEHIOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for ISU_TECHINST_CHECK_PARALLEL
ETINS_CHECKED -
Data type: EEWM_BLOCKSIZEOptional: No
Call by Reference: No ( called with pass by value option)
ETINS_FOUND -
Data type: EEWM_BLOCKSIZEOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for ISU_TECHINST_CHECK_PARALLEL
T_ETINS -
Data type: ETINSOptional: No
Call by Reference: Yes
T_SO_CNTRY -
Data type: EEWM_COUNTRY_RANGEOptional: No
Call by Reference: Yes
T_SO_CITY -
Data type: EEWM_CITY_RANGEOptional: No
Call by Reference: Yes
T_SO_STRT -
Data type: EEWM_STREET_RANGEOptional: No
Call by Reference: Yes
T_SO_HNUM -
Data type: EEWM_HNUM_RANGEOptional: No
Call by Reference: Yes
Y_MESSAGES -
Data type: FKKMSGOptional: No
Call by Reference: Yes
T_EWMPERIODTI -
Data type: EWMPERIODTIOptional: No
Call by Reference: Yes
YT_EWMINSPDETAIL_NEW -
Data type: EWMINSPDETAILOptional: Yes
Call by Reference: Yes
T_SO_VBART -
Data type: VBSART_RANGEOptional: No
Call by Reference: Yes
T_SO_SPART -
Data type: SPARTRANGEOptional: No
Call by Reference: Yes
T_SO_REGIO -
Data type: REGIO_RANGEOptional: No
Call by Reference: Yes
T_SO_ABEIN -
Data type: ABEIN_RANGEOptional: No
Call by Reference: Yes
T_SO_MONTH -
Data type: PERIOD_MONTH_RANGEOptional: No
Call by Reference: Yes
T_SO_YEAR -
Data type: PERIOD_YEAR_RANGEOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for ISU_TECHINST_CHECK_PARALLEL 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_t_etins | TYPE STANDARD TABLE OF ETINS, " | |||
| lv_x_campaign | TYPE EEWM_CAMPAIGN, " | |||
| lv_etins_checked | TYPE EEWM_BLOCKSIZE, " | |||
| lt_t_so_cntry | TYPE STANDARD TABLE OF EEWM_COUNTRY_RANGE, " | |||
| lt_t_so_city | TYPE STANDARD TABLE OF EEWM_CITY_RANGE, " | |||
| lt_t_so_strt | TYPE STANDARD TABLE OF EEWM_STREET_RANGE, " | |||
| lt_t_so_hnum | TYPE STANDARD TABLE OF EEWM_HNUM_RANGE, " | |||
| lt_y_messages | TYPE STANDARD TABLE OF FKKMSG, " | |||
| lv_etins_found | TYPE EEWM_BLOCKSIZE, " | |||
| lt_t_ewmperiodti | TYPE STANDARD TABLE OF EWMPERIODTI, " | |||
| lv_x_campaign_start | TYPE EEWM_CAMPAIGN_START, " | |||
| lv_x_campaign_end | TYPE EEWM_CAMPAIGN_END, " | |||
| lt_yt_ewminspdetail_new | TYPE STANDARD TABLE OF EWMINSPDETAIL, " | |||
| lv_x_month | TYPE EEWM_RADIO_ONLY_MONTH, " | |||
| lt_t_so_vbart | TYPE STANDARD TABLE OF VBSART_RANGE, " | |||
| lv_x_year | TYPE EEWM_RADIO_ONLY_YEAR, " | |||
| lt_t_so_spart | TYPE STANDARD TABLE OF SPARTRANGE, " | |||
| lt_t_so_regio | TYPE STANDARD TABLE OF REGIO_RANGE, " | |||
| lv_x_so_nexti_low | TYPE EEWM_NEXT_INSPECTION, " | |||
| lt_t_so_abein | TYPE STANDARD TABLE OF ABEIN_RANGE, " | |||
| lv_x_so_nexti_high | TYPE EEWM_NEXT_INSPECTION, " | |||
| lt_t_so_month | TYPE STANDARD TABLE OF PERIOD_MONTH_RANGE, " | |||
| lv_x_unit_month | TYPE T006-MSEHI, " | |||
| lt_t_so_year | TYPE STANDARD TABLE OF PERIOD_YEAR_RANGE, " | |||
| lv_x_unit_year | TYPE T006-MSEHI. " |
|   CALL FUNCTION 'ISU_TECHINST_CHECK_PARALLEL' " |
| EXPORTING | ||
| X_CAMPAIGN | = lv_x_campaign | |
| X_CAMPAIGN_START | = lv_x_campaign_start | |
| X_CAMPAIGN_END | = lv_x_campaign_end | |
| X_MONTH | = lv_x_month | |
| X_YEAR | = lv_x_year | |
| X_SO_NEXTI_LOW | = lv_x_so_nexti_low | |
| X_SO_NEXTI_HIGH | = lv_x_so_nexti_high | |
| X_UNIT_MONTH | = lv_x_unit_month | |
| X_UNIT_YEAR | = lv_x_unit_year | |
| IMPORTING | ||
| ETINS_CHECKED | = lv_etins_checked | |
| ETINS_FOUND | = lv_etins_found | |
| TABLES | ||
| T_ETINS | = lt_t_etins | |
| T_SO_CNTRY | = lt_t_so_cntry | |
| T_SO_CITY | = lt_t_so_city | |
| T_SO_STRT | = lt_t_so_strt | |
| T_SO_HNUM | = lt_t_so_hnum | |
| Y_MESSAGES | = lt_y_messages | |
| T_EWMPERIODTI | = lt_t_ewmperiodti | |
| YT_EWMINSPDETAIL_NEW | = lt_yt_ewminspdetail_new | |
| T_SO_VBART | = lt_t_so_vbart | |
| T_SO_SPART | = lt_t_so_spart | |
| T_SO_REGIO | = lt_t_so_regio | |
| T_SO_ABEIN | = lt_t_so_abein | |
| T_SO_MONTH | = lt_t_so_month | |
| T_SO_YEAR | = lt_t_so_year | |
| . " ISU_TECHINST_CHECK_PARALLEL | ||
ABAP code using 7.40 inline data declarations to call FM ISU_TECHINST_CHECK_PARALLEL
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 MSEHI FROM T006 INTO @DATA(ld_x_unit_month). | ||||
| "SELECT single MSEHI FROM T006 INTO @DATA(ld_x_unit_year). | ||||
Search for further information about these or an SAP related objects