SAP ISB_CF_PAYMENTS_UPDATE Function Module for Zahlungsstromgeschäft: Auszahlung verändern
ISB_CF_PAYMENTS_UPDATE is a standard isb cf payments update SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Zahlungsstromgeschäft: Auszahlung verändern 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 isb cf payments update FM, simply by entering the name ISB_CF_PAYMENTS_UPDATE into the relevant SAP transaction such as SE37 or SE38.
Function Group: JBCFTRANSACTION
Program Name: SAPLJBCFTRANSACTION
Main Program: SAPLJBCFTRANSACTION
Appliation area: J
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISB_CF_PAYMENTS_UPDATE 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 'ISB_CF_PAYMENTS_UPDATE'"Zahlungsstromgeschäft: Auszahlung verändern.
EXPORTING
I_OBJNR = "Objektnummer
I_STUFE = "Stufennummer
I_DDISPO = "Zahlungstag
I_DVALUT = "Berechnungstag
I_SINCL = "Inklusivkennzeichen
I_SVULT = "Ultimokennzeichen
I_BBETRAG = "Zahlbetrag
I_WWAERS = "Währung
* I_CHECK_ONLY = ' ' "nur Prüfungen durchführen
EXCEPTIONS
OBJNR_NOT_IN_GLOBAL_MEMORY = 1 SUM_ERROR = 10 ENTRY_NOT_IN_GLOBAL_MEMORY = 2 ENTRY_LOCKED = 3 DATE_ERROR = 4 SIGN_INCL_ERROR = 5 SIGN_ULT_ERROR = 6 AMOUNT_ERROR = 7 CURRENCY_ERROR = 8 PERIOD_ERROR = 9
Customer Function user exits
Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.EXIT_SAPLJBCFTRANSACTION_001 User Exit: Additional Opportunity Interest Rates from Cashflow
IMPORTING Parameters details for ISB_CF_PAYMENTS_UPDATE
I_OBJNR - Objektnummer
Data type: JBTCFINFO-OBJNROptional: No
Call by Reference: No ( called with pass by value option)
I_STUFE - Stufennummer
Data type: JBTCFINFO-STUFEOptional: No
Call by Reference: No ( called with pass by value option)
I_DDISPO - Zahlungstag
Data type: JBTCFINFO-DDISPOOptional: No
Call by Reference: No ( called with pass by value option)
I_DVALUT - Berechnungstag
Data type: JBTCFINFO-DVALUTOptional: No
Call by Reference: No ( called with pass by value option)
I_SINCL - Inklusivkennzeichen
Data type: JBTCFINFO-SINCLOptional: No
Call by Reference: No ( called with pass by value option)
I_SVULT - Ultimokennzeichen
Data type: JBTCFINFO-SVULTOptional: No
Call by Reference: No ( called with pass by value option)
I_BBETRAG - Zahlbetrag
Data type: JBTCFINFO-BBETRAGOptional: No
Call by Reference: No ( called with pass by value option)
I_WWAERS - Währung
Data type: JBTCFINFO-WWAERSOptional: No
Call by Reference: No ( called with pass by value option)
I_CHECK_ONLY - nur Prüfungen durchführen
Data type: CDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
OBJNR_NOT_IN_GLOBAL_MEMORY - Geschäft nicht im globalen Gedächtnis
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
SUM_ERROR - Auszahlungsverpflichtung überschritten
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
ENTRY_NOT_IN_GLOBAL_MEMORY - Eintrag zum Verändern nicht vorhanden
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
ENTRY_LOCKED - Eintrag darf nicht verändert werden
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
DATE_ERROR - Zahlungs- und/oder Berechnungstag nicht gefüllt
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
SIGN_INCL_ERROR - Inklusivkennzeichen fehlerhaft
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
SIGN_ULT_ERROR - Ultimokennzeichen fehlerhaft
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
AMOUNT_ERROR - Betrag nicht positiv
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
CURRENCY_ERROR - keine Geschäftswährung
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
PERIOD_ERROR - Zahlungstag außerhalb des aktuellen FSZR
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISB_CF_PAYMENTS_UPDATE 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_i_objnr | TYPE JBTCFINFO-OBJNR, " | |||
| lv_objnr_not_in_global_memory | TYPE JBTCFINFO, " | |||
| lv_sum_error | TYPE JBTCFINFO, " | |||
| lv_i_stufe | TYPE JBTCFINFO-STUFE, " | |||
| lv_entry_not_in_global_memory | TYPE JBTCFINFO, " | |||
| lv_i_ddispo | TYPE JBTCFINFO-DDISPO, " | |||
| lv_entry_locked | TYPE JBTCFINFO, " | |||
| lv_i_dvalut | TYPE JBTCFINFO-DVALUT, " | |||
| lv_date_error | TYPE JBTCFINFO, " | |||
| lv_i_sincl | TYPE JBTCFINFO-SINCL, " | |||
| lv_sign_incl_error | TYPE JBTCFINFO, " | |||
| lv_i_svult | TYPE JBTCFINFO-SVULT, " | |||
| lv_sign_ult_error | TYPE JBTCFINFO, " | |||
| lv_i_bbetrag | TYPE JBTCFINFO-BBETRAG, " | |||
| lv_amount_error | TYPE JBTCFINFO, " | |||
| lv_i_wwaers | TYPE JBTCFINFO-WWAERS, " | |||
| lv_currency_error | TYPE JBTCFINFO, " | |||
| lv_i_check_only | TYPE C, " ' ' | |||
| lv_period_error | TYPE C. " |
|   CALL FUNCTION 'ISB_CF_PAYMENTS_UPDATE' "Zahlungsstromgeschäft: Auszahlung verändern |
| EXPORTING | ||
| I_OBJNR | = lv_i_objnr | |
| I_STUFE | = lv_i_stufe | |
| I_DDISPO | = lv_i_ddispo | |
| I_DVALUT | = lv_i_dvalut | |
| I_SINCL | = lv_i_sincl | |
| I_SVULT | = lv_i_svult | |
| I_BBETRAG | = lv_i_bbetrag | |
| I_WWAERS | = lv_i_wwaers | |
| I_CHECK_ONLY | = lv_i_check_only | |
| EXCEPTIONS | ||
| OBJNR_NOT_IN_GLOBAL_MEMORY = 1 | ||
| SUM_ERROR = 10 | ||
| ENTRY_NOT_IN_GLOBAL_MEMORY = 2 | ||
| ENTRY_LOCKED = 3 | ||
| DATE_ERROR = 4 | ||
| SIGN_INCL_ERROR = 5 | ||
| SIGN_ULT_ERROR = 6 | ||
| AMOUNT_ERROR = 7 | ||
| CURRENCY_ERROR = 8 | ||
| PERIOD_ERROR = 9 | ||
| . " ISB_CF_PAYMENTS_UPDATE | ||
ABAP code using 7.40 inline data declarations to call FM ISB_CF_PAYMENTS_UPDATE
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 OBJNR FROM JBTCFINFO INTO @DATA(ld_i_objnr). | ||||
| "SELECT single STUFE FROM JBTCFINFO INTO @DATA(ld_i_stufe). | ||||
| "SELECT single DDISPO FROM JBTCFINFO INTO @DATA(ld_i_ddispo). | ||||
| "SELECT single DVALUT FROM JBTCFINFO INTO @DATA(ld_i_dvalut). | ||||
| "SELECT single SINCL FROM JBTCFINFO INTO @DATA(ld_i_sincl). | ||||
| "SELECT single SVULT FROM JBTCFINFO INTO @DATA(ld_i_svult). | ||||
| "SELECT single BBETRAG FROM JBTCFINFO INTO @DATA(ld_i_bbetrag). | ||||
| "SELECT single WWAERS FROM JBTCFINFO INTO @DATA(ld_i_wwaers). | ||||
| DATA(ld_i_check_only) | = ' '. | |||
Search for further information about these or an SAP related objects