SAP ISH_SCORING_SYNCHRON Function Module for









ISH_SCORING_SYNCHRON is a standard ish scoring synchron 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 scoring synchron FM, simply by entering the name ISH_SCORING_SYNCHRON into the relevant SAP transaction such as SE37 or SE38.

Function Group: NACE
Program Name: SAPLNACE
Main Program: SAPLNACE
Appliation area: N
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function ISH_SCORING_SYNCHRON 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_SCORING_SYNCHRON'"
EXPORTING
* PROG = "
* PROGPATH = "
PROGMODUS = "
* DATAPATH = "
PERIODE = "
* FILEPATH = "
* RFCDEST = 'ISH_SCORING_NET' "

TABLES
SCORING_INPUT = "
SCORING_OUTPUT = "
SCORING_ERRORS = "
SCORING_WARNINGS = "
SCORING_HINTS = "

EXCEPTIONS
BAD_PROG = 1 UPLOAD_FAILED = 10 RFC_ERROR = 11 BAD_PROGPATH = 2 BAD_PROGMODUS = 3 BAD_DATAPATH = 4 BAD_PERIODE = 5 BAD_FILEPATH = 6 BAD_SCORING_INPUT = 7 PROGRAM_NOT_FOUND = 8 DOWNLOAD_FAILED = 9
.



IMPORTING Parameters details for ISH_SCORING_SYNCHRON

PROG -

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

PROGPATH -

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

PROGMODUS -

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

DATAPATH -

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

PERIODE -

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

FILEPATH -

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

RFCDEST -

Data type: RFCDEST
Default: 'ISH_SCORING_NET'
Optional: Yes
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for ISH_SCORING_SYNCHRON

SCORING_INPUT -

Data type:
Optional: No
Call by Reference: Yes

SCORING_OUTPUT -

Data type: NLKF_TY_OUT_TAB
Optional: No
Call by Reference: Yes

SCORING_ERRORS -

Data type: NLKF_TY_ERR_TAB
Optional: No
Call by Reference: Yes

SCORING_WARNINGS -

Data type: NLKF_TY_WARN_TAB
Optional: No
Call by Reference: Yes

SCORING_HINTS -

Data type: NLKF_TY_HINT_TAB
Optional: No
Call by Reference: Yes

EXCEPTIONS details

BAD_PROG -

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

UPLOAD_FAILED -

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

RFC_ERROR -

Data type:
Optional: No
Call by Reference: Yes

BAD_PROGPATH -

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

BAD_PROGMODUS -

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

BAD_DATAPATH -

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

BAD_PERIODE -

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

BAD_FILEPATH -

Data type:
Optional: No
Call by Reference: Yes

BAD_SCORING_INPUT -

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

PROGRAM_NOT_FOUND -

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

DOWNLOAD_FAILED -

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

Copy and paste ABAP code example for ISH_SCORING_SYNCHRON 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_prog  TYPE RNSTAT-FILENAME, "   
lv_bad_prog  TYPE RNSTAT, "   
lt_scoring_input  TYPE STANDARD TABLE OF RNSTAT, "   
lv_upload_failed  TYPE RNSTAT, "   
lv_rfc_error  TYPE RNSTAT, "   
lv_progpath  TYPE RLGRAP-FILENAME, "   
lv_bad_progpath  TYPE RLGRAP, "   
lt_scoring_output  TYPE STANDARD TABLE OF NLKF_TY_OUT_TAB, "   
lv_progmodus  TYPE RLGRAP-FILENAME, "   
lv_bad_progmodus  TYPE RLGRAP, "   
lt_scoring_errors  TYPE STANDARD TABLE OF NLKF_TY_ERR_TAB, "   
lv_datapath  TYPE RLGRAP-FILENAME, "   
lv_bad_datapath  TYPE RLGRAP, "   
lt_scoring_warnings  TYPE STANDARD TABLE OF NLKF_TY_WARN_TAB, "   
lv_periode  TYPE RNSTAT-FILENAME, "   
lv_bad_periode  TYPE RNSTAT, "   
lt_scoring_hints  TYPE STANDARD TABLE OF NLKF_TY_HINT_TAB, "   
lv_filepath  TYPE RLGRAP-FILENAME, "   
lv_bad_filepath  TYPE RLGRAP, "   
lv_rfcdest  TYPE RFCDEST, "   'ISH_SCORING_NET'
lv_bad_scoring_input  TYPE RFCDEST, "   
lv_program_not_found  TYPE RFCDEST, "   
lv_download_failed  TYPE RFCDEST. "   

  CALL FUNCTION 'ISH_SCORING_SYNCHRON'  "
    EXPORTING
         PROG = lv_prog
         PROGPATH = lv_progpath
         PROGMODUS = lv_progmodus
         DATAPATH = lv_datapath
         PERIODE = lv_periode
         FILEPATH = lv_filepath
         RFCDEST = lv_rfcdest
    TABLES
         SCORING_INPUT = lt_scoring_input
         SCORING_OUTPUT = lt_scoring_output
         SCORING_ERRORS = lt_scoring_errors
         SCORING_WARNINGS = lt_scoring_warnings
         SCORING_HINTS = lt_scoring_hints
    EXCEPTIONS
        BAD_PROG = 1
        UPLOAD_FAILED = 10
        RFC_ERROR = 11
        BAD_PROGPATH = 2
        BAD_PROGMODUS = 3
        BAD_DATAPATH = 4
        BAD_PERIODE = 5
        BAD_FILEPATH = 6
        BAD_SCORING_INPUT = 7
        PROGRAM_NOT_FOUND = 8
        DOWNLOAD_FAILED = 9
. " ISH_SCORING_SYNCHRON




ABAP code using 7.40 inline data declarations to call FM ISH_SCORING_SYNCHRON

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 FILENAME FROM RNSTAT INTO @DATA(ld_prog).
 
 
 
 
 
"SELECT single FILENAME FROM RLGRAP INTO @DATA(ld_progpath).
 
 
 
"SELECT single FILENAME FROM RLGRAP INTO @DATA(ld_progmodus).
 
 
 
"SELECT single FILENAME FROM RLGRAP INTO @DATA(ld_datapath).
 
 
 
"SELECT single FILENAME FROM RNSTAT INTO @DATA(ld_periode).
 
 
 
"SELECT single FILENAME FROM RLGRAP INTO @DATA(ld_filepath).
 
 
DATA(ld_rfcdest) = 'ISH_SCORING_NET'.
 
 
 
 


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!