SAP ISB_LOAN_UPDATE Function Module for IS-B: Update von IS-B-Tabellen mit Treasury-Information
ISB_LOAN_UPDATE is a standard isb loan 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 IS-B: Update von IS-B-Tabellen mit Treasury-Information 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 loan update FM, simply by entering the name ISB_LOAN_UPDATE into the relevant SAP transaction such as SE37 or SE38.
Function Group: JBTR
Program Name: SAPLJBTR
Main Program: SAPLJBTR
Appliation area: J
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISB_LOAN_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_LOAN_UPDATE'"IS-B: Update von IS-B-Tabellen mit Treasury-Information.
TABLES
* SAV_VDARL = "
* SAV_VZZKOKO = "
* SAV_VZZKOPO = "
* SAV_VZZBEPP = "
* SAV_VDBEPI = "
* SAV_VZZEFFZ = "
* SAV_VVZZKOPO = "
* SAV_VDBEPP = "
* SAV_IOTAB = "
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_SAPLJBTR_001 User Exit for Balance Formation
EXIT_SAPLJBTR_002 User Exit for Average Volumes
EXIT_SAPLJBTR_003 User Exit for Interest Contribution
EXIT_SAPLJBTR_004 User Exit for Opportunity Interest Contribution
EXIT_SAPLJBTR_005 User Exit for Calculating NPV Margin
EXIT_SAPLJBTR_006 User Exit for Period Distribution of NPV Margin
EXIT_SAPLJBTR_007 User Exit for Calculating NPV of Average Effective Capital
EXIT_SAPLJBTR_008 User Exit for Calculating Market Volume
EXIT_SAPLJBTR_009 User Exit for Calculating Opportunity Volume
EXIT_SAPLJBTR_010 User Exit for Calculating Contract Volume
EXIT_SAPLJBTR_011 User Exit for Calculating Unrealised Exchange Gains/Losses
EXIT_SAPLJBTR_012 User Exit for Average Customer Interest
EXIT_SAPLJBTR_013 User Exit for Net Interest Margin
EXIT_SAPLJBTR_014 User Exit for Opportunity Interest
EXIT_SAPLJBTR_015 User Exit for Currency Transformation Contribution
EXIT_SAPLJBTR_016 User Exit for Minimum Reserve Costs
EXIT_SAPLJBTR_101 User Exit BEFORE Call of Fixed Procedures with Standard Value Fields
EXIT_SAPLJBTR_102 User Exit AFTER Call of Fixed Processes with Standard Value Fields
EXIT_SAPLJBTR_201 User Exit BEFORE Call Up of Flexible Procedures with Line Items
EXIT_SAPLJBTR_202 User Exit BEFORE Posting Line Items
EXIT_SAPLJBTR_301 User Exit for Isolating the Effect of Currency on Loans
TABLES Parameters details for ISB_LOAN_UPDATE
SAV_VDARL -
Data type: VDARLOptional: Yes
Call by Reference: No ( called with pass by value option)
SAV_VZZKOKO -
Data type: VZZKOKOOptional: Yes
Call by Reference: No ( called with pass by value option)
SAV_VZZKOPO -
Data type: VZZKOPOOptional: Yes
Call by Reference: No ( called with pass by value option)
SAV_VZZBEPP -
Data type: VZZBEPPOptional: Yes
Call by Reference: No ( called with pass by value option)
SAV_VDBEPI -
Data type: VDBEPIOptional: Yes
Call by Reference: No ( called with pass by value option)
SAV_VZZEFFZ -
Data type: VZZEFFZOptional: Yes
Call by Reference: No ( called with pass by value option)
SAV_VVZZKOPO -
Data type: VVZZKOPOOptional: Yes
Call by Reference: No ( called with pass by value option)
SAV_VDBEPP -
Data type: VDBEPPOptional: Yes
Call by Reference: No ( called with pass by value option)
SAV_IOTAB -
Data type: RMF60IOOptional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISB_LOAN_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: | ||||
| lt_sav_vdarl | TYPE STANDARD TABLE OF VDARL, " | |||
| lt_sav_vzzkoko | TYPE STANDARD TABLE OF VZZKOKO, " | |||
| lt_sav_vzzkopo | TYPE STANDARD TABLE OF VZZKOPO, " | |||
| lt_sav_vzzbepp | TYPE STANDARD TABLE OF VZZBEPP, " | |||
| lt_sav_vdbepi | TYPE STANDARD TABLE OF VDBEPI, " | |||
| lt_sav_vzzeffz | TYPE STANDARD TABLE OF VZZEFFZ, " | |||
| lt_sav_vvzzkopo | TYPE STANDARD TABLE OF VVZZKOPO, " | |||
| lt_sav_vdbepp | TYPE STANDARD TABLE OF VDBEPP, " | |||
| lt_sav_iotab | TYPE STANDARD TABLE OF RMF60IO. " |
|   CALL FUNCTION 'ISB_LOAN_UPDATE' "IS-B: Update von IS-B-Tabellen mit Treasury-Information |
| TABLES | ||
| SAV_VDARL | = lt_sav_vdarl | |
| SAV_VZZKOKO | = lt_sav_vzzkoko | |
| SAV_VZZKOPO | = lt_sav_vzzkopo | |
| SAV_VZZBEPP | = lt_sav_vzzbepp | |
| SAV_VDBEPI | = lt_sav_vdbepi | |
| SAV_VZZEFFZ | = lt_sav_vzzeffz | |
| SAV_VVZZKOPO | = lt_sav_vvzzkopo | |
| SAV_VDBEPP | = lt_sav_vdbepp | |
| SAV_IOTAB | = lt_sav_iotab | |
| . " ISB_LOAN_UPDATE | ||
ABAP code using 7.40 inline data declarations to call FM ISB_LOAN_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.Search for further information about these or an SAP related objects