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

Function ISU_EVALLOG_FOR_INST 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_EVALLOG_FOR_INST'".
EXPORTING
X_ANLAGE = "
X_SETNO = "
IMPORTING
Y_ENDABRPE_OLD = "
Y_ENDABRPE_NEW = "
Y_ENDABRPE_ACT = "
Y_ACTCAT = "
Y_LAUFD = "
Y_LAUFI = "
TABLES
Y_ERCH = "
EXCEPTIONS
GENERAL_FAULT = 1
IMPORTING Parameters details for ISU_EVALLOG_FOR_INST
X_ANLAGE -
Data type: INSTSET-ANLAGEOptional: No
Call by Reference: Yes
X_SETNO -
Data type: INSTSET-SETNOOptional: No
Call by Reference: Yes
EXPORTING Parameters details for ISU_EVALLOG_FOR_INST
Y_ENDABRPE_OLD -
Data type: ERCH-ENDABRPEOptional: No
Call by Reference: Yes
Y_ENDABRPE_NEW -
Data type: ERCH-ENDABRPEOptional: No
Call by Reference: Yes
Y_ENDABRPE_ACT -
Data type: ERCH-ENDABRPEOptional: No
Call by Reference: Yes
Y_ACTCAT -
Data type: E_ACTCATOptional: No
Call by Reference: Yes
Y_LAUFD -
Data type: LAUFD_KKOptional: No
Call by Reference: Yes
Y_LAUFI -
Data type: LAUFI_KKOptional: No
Call by Reference: Yes
TABLES Parameters details for ISU_EVALLOG_FOR_INST
Y_ERCH -
Data type: ERCHOptional: No
Call by Reference: Yes
EXCEPTIONS details
GENERAL_FAULT -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for ISU_EVALLOG_FOR_INST 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_y_erch | TYPE STANDARD TABLE OF ERCH, " | |||
| lv_x_anlage | TYPE INSTSET-ANLAGE, " | |||
| lv_general_fault | TYPE INSTSET, " | |||
| lv_y_endabrpe_old | TYPE ERCH-ENDABRPE, " | |||
| lv_x_setno | TYPE INSTSET-SETNO, " | |||
| lv_y_endabrpe_new | TYPE ERCH-ENDABRPE, " | |||
| lv_y_endabrpe_act | TYPE ERCH-ENDABRPE, " | |||
| lv_y_actcat | TYPE E_ACTCAT, " | |||
| lv_y_laufd | TYPE LAUFD_KK, " | |||
| lv_y_laufi | TYPE LAUFI_KK. " |
|   CALL FUNCTION 'ISU_EVALLOG_FOR_INST' " |
| EXPORTING | ||
| X_ANLAGE | = lv_x_anlage | |
| X_SETNO | = lv_x_setno | |
| IMPORTING | ||
| Y_ENDABRPE_OLD | = lv_y_endabrpe_old | |
| Y_ENDABRPE_NEW | = lv_y_endabrpe_new | |
| Y_ENDABRPE_ACT | = lv_y_endabrpe_act | |
| Y_ACTCAT | = lv_y_actcat | |
| Y_LAUFD | = lv_y_laufd | |
| Y_LAUFI | = lv_y_laufi | |
| TABLES | ||
| Y_ERCH | = lt_y_erch | |
| EXCEPTIONS | ||
| GENERAL_FAULT = 1 | ||
| . " ISU_EVALLOG_FOR_INST | ||
ABAP code using 7.40 inline data declarations to call FM ISU_EVALLOG_FOR_INST
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 ANLAGE FROM INSTSET INTO @DATA(ld_x_anlage). | ||||
| "SELECT single ENDABRPE FROM ERCH INTO @DATA(ld_y_endabrpe_old). | ||||
| "SELECT single SETNO FROM INSTSET INTO @DATA(ld_x_setno). | ||||
| "SELECT single ENDABRPE FROM ERCH INTO @DATA(ld_y_endabrpe_new). | ||||
| "SELECT single ENDABRPE FROM ERCH INTO @DATA(ld_y_endabrpe_act). | ||||
Search for further information about these or an SAP related objects