SAP ISB_GET_INTEREST_DATES Function Module for IS-B: RM Zinstermine für simulierte Zinsen feststellen
ISB_GET_INTEREST_DATES is a standard isb get interest dates 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: RM Zinstermine für simulierte Zinsen feststellen 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 get interest dates FM, simply by entering the name ISB_GET_INTEREST_DATES into the relevant SAP transaction such as SE37 or SE38.
Function Group: JBR0
Program Name: SAPLJBR0
Main Program: SAPLJBR0
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISB_GET_INTEREST_DATES 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_GET_INTEREST_DATES'"IS-B: RM Zinstermine für simulierte Zinsen feststellen.
EXPORTING
I_FIRST_DATE = "Ab diesem Datum Zinstermine ermitteln
I_LAST_DATE = "Datum letzte Zahlung, danach noch 1 Zinstermin
I_BEWERTUNGSREGEL = "Bewertungsregel
I_AUSWERTUNG = "Auswertungsart
IMPORTING
E_SZBMETH = "Zinsberechnungsmethode
TABLES
E_IT_INTEREST_DATES = "Ermittelte Zinstermine
EXCEPTIONS
NO_SIMZ = 1 INCONSISTENT_DATA = 2 WRONG_DEFINITION = 3
IMPORTING Parameters details for ISB_GET_INTEREST_DATES
I_FIRST_DATE - Ab diesem Datum Zinstermine ermitteln
Data type: SY-DATUMOptional: No
Call by Reference: No ( called with pass by value option)
I_LAST_DATE - Datum letzte Zahlung, danach noch 1 Zinstermin
Data type: SY-DATUMOptional: No
Call by Reference: No ( called with pass by value option)
I_BEWERTUNGSREGEL - Bewertungsregel
Data type: JBRBRFS-RMBEWREGOptional: No
Call by Reference: No ( called with pass by value option)
I_AUSWERTUNG - Auswertungsart
Data type: JBRBRFS-AUSWERTUNGOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for ISB_GET_INTEREST_DATES
E_SZBMETH - Zinsberechnungsmethode
Data type: JBRSIMZ-SZBMETHOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for ISB_GET_INTEREST_DATES
E_IT_INTEREST_DATES - Ermittelte Zinstermine
Data type: JBRDATESOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NO_SIMZ - Keine Angaben zu sim. Zinszahlungen gefunden
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
INCONSISTENT_DATA - Angelieferte Daten sind inkonstent
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
WRONG_DEFINITION - Definition Zinszahlung falsch o. nicht vorh.
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISB_GET_INTEREST_DATES 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_no_simz | TYPE STRING, " | |||
| lv_e_szbmeth | TYPE JBRSIMZ-SZBMETH, " | |||
| lv_i_first_date | TYPE SY-DATUM, " | |||
| lt_e_it_interest_dates | TYPE STANDARD TABLE OF JBRDATES, " | |||
| lv_i_last_date | TYPE SY-DATUM, " | |||
| lv_inconsistent_data | TYPE SY, " | |||
| lv_wrong_definition | TYPE SY, " | |||
| lv_i_bewertungsregel | TYPE JBRBRFS-RMBEWREG, " | |||
| lv_i_auswertung | TYPE JBRBRFS-AUSWERTUNG. " |
|   CALL FUNCTION 'ISB_GET_INTEREST_DATES' "IS-B: RM Zinstermine für simulierte Zinsen feststellen |
| EXPORTING | ||
| I_FIRST_DATE | = lv_i_first_date | |
| I_LAST_DATE | = lv_i_last_date | |
| I_BEWERTUNGSREGEL | = lv_i_bewertungsregel | |
| I_AUSWERTUNG | = lv_i_auswertung | |
| IMPORTING | ||
| E_SZBMETH | = lv_e_szbmeth | |
| TABLES | ||
| E_IT_INTEREST_DATES | = lt_e_it_interest_dates | |
| EXCEPTIONS | ||
| NO_SIMZ = 1 | ||
| INCONSISTENT_DATA = 2 | ||
| WRONG_DEFINITION = 3 | ||
| . " ISB_GET_INTEREST_DATES | ||
ABAP code using 7.40 inline data declarations to call FM ISB_GET_INTEREST_DATES
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 SZBMETH FROM JBRSIMZ INTO @DATA(ld_e_szbmeth). | ||||
| "SELECT single DATUM FROM SY INTO @DATA(ld_i_first_date). | ||||
| "SELECT single DATUM FROM SY INTO @DATA(ld_i_last_date). | ||||
| "SELECT single RMBEWREG FROM JBRBRFS INTO @DATA(ld_i_bewertungsregel). | ||||
| "SELECT single AUSWERTUNG FROM JBRBRFS INTO @DATA(ld_i_auswertung). | ||||
Search for further information about these or an SAP related objects