SAP INTEREST_CONDITIONS_LOAD Function Module for
INTEREST_CONDITIONS_LOAD is a standard interest conditions load SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 interest conditions load FM, simply by entering the name INTEREST_CONDITIONS_LOAD into the relevant SAP transaction such as SE37 or SE38.
Function Group: DUZI
Program Name: SAPLDUZI
Main Program: SAPLDUZI
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function INTEREST_CONDITIONS_LOAD 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 'INTEREST_CONDITIONS_LOAD'".
EXPORTING
* WF_BTRG_NE_0 = ' ' "' ' = only 'amount = 0' selected
* WF_BWART_HAZINS = "Transaction type for credit intere
* WF_BWART_SOZINS = "Transaction type for debit interes
WF_VZSKZ = "Interest calculation indicator
EXCEPTIONS
ERR_CREDIT_RATE = 1 ERR_DEBIT_RATE = 2
IMPORTING Parameters details for INTEREST_CONDITIONS_LOAD
WF_BTRG_NE_0 - SPACE = only 'amount = 0' selected
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
WF_BWART_HAZINS - Transaction type for credit intere
Data type: T056A-BWARTOptional: Yes
Call by Reference: No ( called with pass by value option)
WF_BWART_SOZINS - Transaction type for debit interes
Data type: T056A-BWARTOptional: Yes
Call by Reference: No ( called with pass by value option)
WF_VZSKZ - Interest calculation indicator
Data type: T056U-VZSKZOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
ERR_CREDIT_RATE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
ERR_DEBIT_RATE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for INTEREST_CONDITIONS_LOAD 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_wf_btrg_ne_0 | TYPE STRING, " SPACE | |||
| lv_err_credit_rate | TYPE STRING, " | |||
| lv_err_debit_rate | TYPE STRING, " | |||
| lv_wf_bwart_hazins | TYPE T056A-BWART, " | |||
| lv_wf_bwart_sozins | TYPE T056A-BWART, " | |||
| lv_wf_vzskz | TYPE T056U-VZSKZ. " |
|   CALL FUNCTION 'INTEREST_CONDITIONS_LOAD' " |
| EXPORTING | ||
| WF_BTRG_NE_0 | = lv_wf_btrg_ne_0 | |
| WF_BWART_HAZINS | = lv_wf_bwart_hazins | |
| WF_BWART_SOZINS | = lv_wf_bwart_sozins | |
| WF_VZSKZ | = lv_wf_vzskz | |
| EXCEPTIONS | ||
| ERR_CREDIT_RATE = 1 | ||
| ERR_DEBIT_RATE = 2 | ||
| . " INTEREST_CONDITIONS_LOAD | ||
ABAP code using 7.40 inline data declarations to call FM INTEREST_CONDITIONS_LOAD
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.| DATA(ld_wf_btrg_ne_0) | = ' '. | |||
| "SELECT single BWART FROM T056A INTO @DATA(ld_wf_bwart_hazins). | ||||
| "SELECT single BWART FROM T056A INTO @DATA(ld_wf_bwart_sozins). | ||||
| "SELECT single VZSKZ FROM T056U INTO @DATA(ld_wf_vzskz). | ||||
Search for further information about these or an SAP related objects