SAP ISH_PERFORM_SCORING_MULTIPLE Function Module for
ISH_PERFORM_SCORING_MULTIPLE is a standard ish perform scoring multiple 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 perform scoring multiple FM, simply by entering the name ISH_PERFORM_SCORING_MULTIPLE into the relevant SAP transaction such as SE37 or SE38.
Function Group: NASS
Program Name: SAPLNASS
Main Program: SAPLNASS
Appliation area: N
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISH_PERFORM_SCORING_MULTIPLE 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_PERFORM_SCORING_MULTIPLE'".
EXPORTING
EINRI = "
* I_OPTIMIZE = 'X' "
* I_MODEL2004 = 'X' "
* I_INTENSMSG = 'X' "
TABLES
T_NFAL = "
* T_NBEW = "
* T_NLEI = "
* T_VNDIA = "
* T_VNWAT_SCO_MEL = "
* T_SCO_MSG = "
* T_SCO_ERF = "
* T_SCO_MAX = "
EXCEPTIONS
SCORING_PARM_NOT_VALID = 1 SCORING_FAILED = 2
IMPORTING Parameters details for ISH_PERFORM_SCORING_MULTIPLE
EINRI -
Data type: NDIA-EINRIOptional: No
Call by Reference: No ( called with pass by value option)
I_OPTIMIZE -
Data type: ISH_ON_OFFDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_MODEL2004 -
Data type: ISH_ON_OFFDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_INTENSMSG -
Data type: ISH_ON_OFFDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for ISH_PERFORM_SCORING_MULTIPLE
T_NFAL -
Data type: NFALOptional: No
Call by Reference: Yes
T_NBEW -
Data type: ISH_YT_NBEWOptional: Yes
Call by Reference: Yes
T_NLEI -
Data type: ISH_YT_NLEIOptional: Yes
Call by Reference: Yes
T_VNDIA -
Data type: ISHMED_T_VNDIAOptional: Yes
Call by Reference: Yes
T_VNWAT_SCO_MEL -
Data type: ISH_T_VNWAT_SCO_MELOptional: Yes
Call by Reference: Yes
T_SCO_MSG -
Data type: ISH_AT_YT_SCO_MSGOptional: Yes
Call by Reference: Yes
T_SCO_ERF -
Data type: RNASCO01Optional: Yes
Call by Reference: Yes
T_SCO_MAX -
Data type: RNASCO01Optional: Yes
Call by Reference: Yes
EXCEPTIONS details
SCORING_PARM_NOT_VALID -
Data type:Optional: No
Call by Reference: Yes
SCORING_FAILED -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for ISH_PERFORM_SCORING_MULTIPLE 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_einri | TYPE NDIA-EINRI, " | |||
| lt_t_nfal | TYPE STANDARD TABLE OF NFAL, " | |||
| lv_scoring_parm_not_valid | TYPE NFAL, " | |||
| lt_t_nbew | TYPE STANDARD TABLE OF ISH_YT_NBEW, " | |||
| lv_i_optimize | TYPE ISH_ON_OFF, " 'X' | |||
| lv_scoring_failed | TYPE ISH_ON_OFF, " | |||
| lt_t_nlei | TYPE STANDARD TABLE OF ISH_YT_NLEI, " | |||
| lv_i_model2004 | TYPE ISH_ON_OFF, " 'X' | |||
| lt_t_vndia | TYPE STANDARD TABLE OF ISHMED_T_VNDIA, " | |||
| lv_i_intensmsg | TYPE ISH_ON_OFF, " 'X' | |||
| lt_t_vnwat_sco_mel | TYPE STANDARD TABLE OF ISH_T_VNWAT_SCO_MEL, " | |||
| lt_t_sco_msg | TYPE STANDARD TABLE OF ISH_AT_YT_SCO_MSG, " | |||
| lt_t_sco_erf | TYPE STANDARD TABLE OF RNASCO01, " | |||
| lt_t_sco_max | TYPE STANDARD TABLE OF RNASCO01. " |
|   CALL FUNCTION 'ISH_PERFORM_SCORING_MULTIPLE' " |
| EXPORTING | ||
| EINRI | = lv_einri | |
| I_OPTIMIZE | = lv_i_optimize | |
| I_MODEL2004 | = lv_i_model2004 | |
| I_INTENSMSG | = lv_i_intensmsg | |
| TABLES | ||
| T_NFAL | = lt_t_nfal | |
| T_NBEW | = lt_t_nbew | |
| T_NLEI | = lt_t_nlei | |
| T_VNDIA | = lt_t_vndia | |
| T_VNWAT_SCO_MEL | = lt_t_vnwat_sco_mel | |
| T_SCO_MSG | = lt_t_sco_msg | |
| T_SCO_ERF | = lt_t_sco_erf | |
| T_SCO_MAX | = lt_t_sco_max | |
| EXCEPTIONS | ||
| SCORING_PARM_NOT_VALID = 1 | ||
| SCORING_FAILED = 2 | ||
| . " ISH_PERFORM_SCORING_MULTIPLE | ||
ABAP code using 7.40 inline data declarations to call FM ISH_PERFORM_SCORING_MULTIPLE
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 EINRI FROM NDIA INTO @DATA(ld_einri). | ||||
| DATA(ld_i_optimize) | = 'X'. | |||
| DATA(ld_i_model2004) | = 'X'. | |||
| DATA(ld_i_intensmsg) | = 'X'. | |||
Search for further information about these or an SAP related objects