SAP ISU_S_PAYSCHEME_COMPL_VALIDATE Function Module for Check Payment Scheme Adjustment
ISU_S_PAYSCHEME_COMPL_VALIDATE is a standard isu s payscheme compl validate SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Check Payment Scheme Adjustment processing and below is the pattern details for this FM, 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 s payscheme compl validate FM, simply by entering the name ISU_S_PAYSCHEME_COMPL_VALIDATE into the relevant SAP transaction such as SE37 or SE38.
Function Group: E25SPS
Program Name: SAPLE25SPS
Main Program: SAPLE25SPS
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISU_S_PAYSCHEME_COMPL_VALIDATE 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_S_PAYSCHEME_COMPL_VALIDATE'"Check Payment Scheme Adjustment.
EXPORTING
X_CONTRACT = "Contract
* X_NO_MASS = ' ' "Indicator
* X_ADJPERCHGDAT = ' ' "Indicator
X_OPBEL = "Budget Billing Plan
X_CHNGDAT = "Date
* X_ROLLIN = 'X' "Indicator
X_TOTAMOUNT = "Payment Scheme Amount in Transaction Currency
X_CHECKTAB = "
* X_CHNGSTAT = ' ' "
* X_ONLINE = ' ' "Indicator
* X_NO_COMMIT = ' ' "Indicator
IMPORTING
Y_LIMIT = "
Y_PROTECTED = "
Y_REASSESSFAIL = "
TABLES
* XT_COMPLINES = "Line Comparison Structure for Validation
* XT_REFLINES = "Line Comparison Structure for Validation
* YT_WOULDBELINES = "
EXCEPTIONS
NOT_FOUND = 1 NOT_AUTHORIZED = 2 INVALID_KEY = 3 GENERAL_FAULT = 4 FOREIGN_LOCK = 5 DATA_ERROR = 6 SYSTEM_ERROR = 7 PROGRAMMING_ERROR = 8
IMPORTING Parameters details for ISU_S_PAYSCHEME_COMPL_VALIDATE
X_CONTRACT - Contract
Data type: EVER-VERTRAGOptional: No
Call by Reference: Yes
X_NO_MASS - Indicator
Data type: REGEN-KENNZXDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_ADJPERCHGDAT - Indicator
Data type: REGEN-KENNZXDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_OPBEL - Budget Billing Plan
Data type: EABP-OPBELOptional: No
Call by Reference: Yes
X_CHNGDAT - Date
Data type: DATUMOptional: No
Call by Reference: No ( called with pass by value option)
X_ROLLIN - Indicator
Data type: REGEN-KENNZXDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_TOTAMOUNT - Payment Scheme Amount in Transaction Currency
Data type: EABPL-BETRWOptional: No
Call by Reference: No ( called with pass by value option)
X_CHECKTAB -
Data type: COptional: No
Call by Reference: No ( called with pass by value option)
X_CHNGSTAT -
Data type: CDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_ONLINE - Indicator
Data type: REGEN-KENNZXDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_NO_COMMIT - Indicator
Data type: REGEN-KENNZXDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for ISU_S_PAYSCHEME_COMPL_VALIDATE
Y_LIMIT -
Data type: COptional: No
Call by Reference: No ( called with pass by value option)
Y_PROTECTED -
Data type: COptional: No
Call by Reference: No ( called with pass by value option)
Y_REASSESSFAIL -
Data type: COptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for ISU_S_PAYSCHEME_COMPL_VALIDATE
XT_COMPLINES - Line Comparison Structure for Validation
Data type: EABPLCOMPOptional: Yes
Call by Reference: Yes
XT_REFLINES - Line Comparison Structure for Validation
Data type: EABPLCOMPOptional: Yes
Call by Reference: Yes
YT_WOULDBELINES -
Data type: EABPLOptional: Yes
Call by Reference: Yes
EXCEPTIONS details
NOT_FOUND -
Data type:Optional: No
Call by Reference: Yes
NOT_AUTHORIZED -
Data type:Optional: No
Call by Reference: Yes
INVALID_KEY -
Data type:Optional: No
Call by Reference: Yes
GENERAL_FAULT -
Data type:Optional: No
Call by Reference: Yes
FOREIGN_LOCK -
Data type:Optional: No
Call by Reference: Yes
DATA_ERROR -
Data type:Optional: No
Call by Reference: Yes
SYSTEM_ERROR -
Data type:Optional: No
Call by Reference: Yes
PROGRAMMING_ERROR -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for ISU_S_PAYSCHEME_COMPL_VALIDATE 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_y_limit | TYPE C, " | |||
| lv_not_found | TYPE C, " | |||
| lv_x_contract | TYPE EVER-VERTRAG, " | |||
| lt_xt_complines | TYPE STANDARD TABLE OF EABPLCOMP, " | |||
| lv_x_no_mass | TYPE REGEN-KENNZX, " SPACE | |||
| lv_x_adjperchgdat | TYPE REGEN-KENNZX, " SPACE | |||
| lv_x_opbel | TYPE EABP-OPBEL, " | |||
| lt_xt_reflines | TYPE STANDARD TABLE OF EABPLCOMP, " | |||
| lv_y_protected | TYPE C, " | |||
| lv_not_authorized | TYPE C, " | |||
| lv_x_chngdat | TYPE DATUM, " | |||
| lv_invalid_key | TYPE DATUM, " | |||
| lv_y_reassessfail | TYPE C, " | |||
| lt_yt_wouldbelines | TYPE STANDARD TABLE OF EABPL, " | |||
| lv_x_rollin | TYPE REGEN-KENNZX, " 'X' | |||
| lv_general_fault | TYPE REGEN, " | |||
| lv_x_totamount | TYPE EABPL-BETRW, " | |||
| lv_foreign_lock | TYPE EABPL, " | |||
| lv_data_error | TYPE EABPL, " | |||
| lv_x_checktab | TYPE C, " | |||
| lv_x_chngstat | TYPE C, " SPACE | |||
| lv_system_error | TYPE C, " | |||
| lv_x_online | TYPE REGEN-KENNZX, " SPACE | |||
| lv_programming_error | TYPE REGEN, " | |||
| lv_x_no_commit | TYPE REGEN-KENNZX. " SPACE |
|   CALL FUNCTION 'ISU_S_PAYSCHEME_COMPL_VALIDATE' "Check Payment Scheme Adjustment |
| EXPORTING | ||
| X_CONTRACT | = lv_x_contract | |
| X_NO_MASS | = lv_x_no_mass | |
| X_ADJPERCHGDAT | = lv_x_adjperchgdat | |
| X_OPBEL | = lv_x_opbel | |
| X_CHNGDAT | = lv_x_chngdat | |
| X_ROLLIN | = lv_x_rollin | |
| X_TOTAMOUNT | = lv_x_totamount | |
| X_CHECKTAB | = lv_x_checktab | |
| X_CHNGSTAT | = lv_x_chngstat | |
| X_ONLINE | = lv_x_online | |
| X_NO_COMMIT | = lv_x_no_commit | |
| IMPORTING | ||
| Y_LIMIT | = lv_y_limit | |
| Y_PROTECTED | = lv_y_protected | |
| Y_REASSESSFAIL | = lv_y_reassessfail | |
| TABLES | ||
| XT_COMPLINES | = lt_xt_complines | |
| XT_REFLINES | = lt_xt_reflines | |
| YT_WOULDBELINES | = lt_yt_wouldbelines | |
| EXCEPTIONS | ||
| NOT_FOUND = 1 | ||
| NOT_AUTHORIZED = 2 | ||
| INVALID_KEY = 3 | ||
| GENERAL_FAULT = 4 | ||
| FOREIGN_LOCK = 5 | ||
| DATA_ERROR = 6 | ||
| SYSTEM_ERROR = 7 | ||
| PROGRAMMING_ERROR = 8 | ||
| . " ISU_S_PAYSCHEME_COMPL_VALIDATE | ||
ABAP code using 7.40 inline data declarations to call FM ISU_S_PAYSCHEME_COMPL_VALIDATE
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 VERTRAG FROM EVER INTO @DATA(ld_x_contract). | ||||
| "SELECT single KENNZX FROM REGEN INTO @DATA(ld_x_no_mass). | ||||
| DATA(ld_x_no_mass) | = ' '. | |||
| "SELECT single KENNZX FROM REGEN INTO @DATA(ld_x_adjperchgdat). | ||||
| DATA(ld_x_adjperchgdat) | = ' '. | |||
| "SELECT single OPBEL FROM EABP INTO @DATA(ld_x_opbel). | ||||
| "SELECT single KENNZX FROM REGEN INTO @DATA(ld_x_rollin). | ||||
| DATA(ld_x_rollin) | = 'X'. | |||
| "SELECT single BETRW FROM EABPL INTO @DATA(ld_x_totamount). | ||||
| DATA(ld_x_chngstat) | = ' '. | |||
| "SELECT single KENNZX FROM REGEN INTO @DATA(ld_x_online). | ||||
| DATA(ld_x_online) | = ' '. | |||
| "SELECT single KENNZX FROM REGEN INTO @DATA(ld_x_no_commit). | ||||
| DATA(ld_x_no_commit) | = ' '. | |||
Search for further information about these or an SAP related objects