SAP ISB_INTEREST_RECEIVE_EFF_CAP Function Module for IS-B: Berechnung des Zins-/Opportunitätsbeitrages
ISB_INTEREST_RECEIVE_EFF_CAP is a standard isb interest receive eff cap 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: Berechnung des Zins-/Opportunitätsbeitrages 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 interest receive eff cap FM, simply by entering the name ISB_INTEREST_RECEIVE_EFF_CAP into the relevant SAP transaction such as SE37 or SE38.
Function Group: JBTM
Program Name: SAPLJBTM
Main Program: SAPLJBTM
Appliation area: J
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISB_INTEREST_RECEIVE_EFF_CAP 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_INTEREST_RECEIVE_EFF_CAP'"IS-B: Berechnung des Zins-/Opportunitätsbeitrages.
EXPORTING
IEFFZS = "Effektivzins
PERBEG = "Periodenbeginn
PEREND = "Periodenende
SZBMETH = "Zinsberechnungsmethode
* WDETAIL = "Währung für Detailprotokoll
IMPORTING
BINTREC = "Durchschnittlich effektiv gebundenes Kapital
TABLES
WRK_JBDZSTR = "Zahlungsstromtabelle (Effektivkapitalien)
EXCEPTIONS
NO_EFFCAP = 1 NO_IMPORT = 2 PERIOD_ERROR = 3 PERIOD_WARNING = 4
IMPORTING Parameters details for ISB_INTEREST_RECEIVE_EFF_CAP
IEFFZS - Effektivzins
Data type: JBDZSKO-IEFFZSOptional: No
Call by Reference: No ( called with pass by value option)
PERBEG - Periodenbeginn
Data type: JBDZSTR-DZSBEWOptional: No
Call by Reference: No ( called with pass by value option)
PEREND - Periodenende
Data type: JBDZSTR-DZSBEWOptional: No
Call by Reference: No ( called with pass by value option)
SZBMETH - Zinsberechnungsmethode
Data type: JBDKOKO-SZBMETHOptional: No
Call by Reference: No ( called with pass by value option)
WDETAIL - Währung für Detailprotokoll
Data type: JBIXGSC-WGWAEROptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for ISB_INTEREST_RECEIVE_EFF_CAP
BINTREC - Durchschnittlich effektiv gebundenes Kapital
Data type: JBDWFF-BZINBEOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for ISB_INTEREST_RECEIVE_EFF_CAP
WRK_JBDZSTR - Zahlungsstromtabelle (Effektivkapitalien)
Data type: JBDZSTROptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NO_EFFCAP - Kein Effektivkapital gefunden/berechnet
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_IMPORT - Import-Parameter nicht definiert
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
PERIOD_ERROR - Fehler bei Periodendaten
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
PERIOD_WARNING - Fehler bei Periodendaten ; nur Warnung
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISB_INTEREST_RECEIVE_EFF_CAP 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_ieffzs | TYPE JBDZSKO-IEFFZS, " | |||
| lv_bintrec | TYPE JBDWFF-BZINBE, " | |||
| lv_no_effcap | TYPE JBDWFF, " | |||
| lt_wrk_jbdzstr | TYPE STANDARD TABLE OF JBDZSTR, " | |||
| lv_perbeg | TYPE JBDZSTR-DZSBEW, " | |||
| lv_no_import | TYPE JBDZSTR, " | |||
| lv_perend | TYPE JBDZSTR-DZSBEW, " | |||
| lv_period_error | TYPE JBDZSTR, " | |||
| lv_szbmeth | TYPE JBDKOKO-SZBMETH, " | |||
| lv_period_warning | TYPE JBDKOKO, " | |||
| lv_wdetail | TYPE JBIXGSC-WGWAER. " |
|   CALL FUNCTION 'ISB_INTEREST_RECEIVE_EFF_CAP' "IS-B: Berechnung des Zins-/Opportunitätsbeitrages |
| EXPORTING | ||
| IEFFZS | = lv_ieffzs | |
| PERBEG | = lv_perbeg | |
| PEREND | = lv_perend | |
| SZBMETH | = lv_szbmeth | |
| WDETAIL | = lv_wdetail | |
| IMPORTING | ||
| BINTREC | = lv_bintrec | |
| TABLES | ||
| WRK_JBDZSTR | = lt_wrk_jbdzstr | |
| EXCEPTIONS | ||
| NO_EFFCAP = 1 | ||
| NO_IMPORT = 2 | ||
| PERIOD_ERROR = 3 | ||
| PERIOD_WARNING = 4 | ||
| . " ISB_INTEREST_RECEIVE_EFF_CAP | ||
ABAP code using 7.40 inline data declarations to call FM ISB_INTEREST_RECEIVE_EFF_CAP
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 IEFFZS FROM JBDZSKO INTO @DATA(ld_ieffzs). | ||||
| "SELECT single BZINBE FROM JBDWFF INTO @DATA(ld_bintrec). | ||||
| "SELECT single DZSBEW FROM JBDZSTR INTO @DATA(ld_perbeg). | ||||
| "SELECT single DZSBEW FROM JBDZSTR INTO @DATA(ld_perend). | ||||
| "SELECT single SZBMETH FROM JBDKOKO INTO @DATA(ld_szbmeth). | ||||
| "SELECT single WGWAER FROM JBIXGSC INTO @DATA(ld_wdetail). | ||||
Search for further information about these or an SAP related objects