SAP FVD_IOA_OL_CREATE_INT_ITEM Function Module for Create Items for Which Interest Is to Be Calculated









FVD_IOA_OL_CREATE_INT_ITEM is a standard fvd ioa ol create int item SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Create Items for Which Interest Is to Be Calculated 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 fvd ioa ol create int item FM, simply by entering the name FVD_IOA_OL_CREATE_INT_ITEM into the relevant SAP transaction such as SE37 or SE38.

Function Group: FVD_IOA_P_OL
Program Name: SAPLFVD_IOA_P_OL
Main Program: SAPLFVD_IOA_P_OL
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function FVD_IOA_OL_CREATE_INT_ITEM 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 'FVD_IOA_OL_CREATE_INT_ITEM'"Create Items for Which Interest Is to Be Calculated
EXPORTING
I_S_VZZBEPP = "Transaction Data - Planned and Actual Item
I_VALID_FROM = "
I_VALID_TO = "Date and Time, Current (Application Server) Date
I_INTEREST = "Interest Rate

IMPORTING
E_S_ITEM = "## AUTOMATICALLY GENERATED. DO NOT CHANGE OR RE-USE ! ##
.



IMPORTING Parameters details for FVD_IOA_OL_CREATE_INT_ITEM

I_S_VZZBEPP - Transaction Data - Planned and Actual Item

Data type: VZZBEPP
Optional: No
Call by Reference: Yes

I_VALID_FROM -

Data type: SY-DATUM
Optional: No
Call by Reference: Yes

I_VALID_TO - Date and Time, Current (Application Server) Date

Data type: SY-DATUM
Optional: No
Call by Reference: Yes

I_INTEREST - Interest Rate

Data type: AZINSSATZ
Optional: No
Call by Reference: Yes

EXPORTING Parameters details for FVD_IOA_OL_CREATE_INT_ITEM

E_S_ITEM - ## AUTOMATICALLY GENERATED. DO NOT CHANGE OR RE-USE ! ##

Data type: INTIT_EXTF
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for FVD_IOA_OL_CREATE_INT_ITEM 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_e_s_item  TYPE INTIT_EXTF, "   
lv_i_s_vzzbepp  TYPE VZZBEPP, "   
lv_i_valid_from  TYPE SY-DATUM, "   
lv_i_valid_to  TYPE SY-DATUM, "   
lv_i_interest  TYPE AZINSSATZ. "   

  CALL FUNCTION 'FVD_IOA_OL_CREATE_INT_ITEM'  "Create Items for Which Interest Is to Be Calculated
    EXPORTING
         I_S_VZZBEPP = lv_i_s_vzzbepp
         I_VALID_FROM = lv_i_valid_from
         I_VALID_TO = lv_i_valid_to
         I_INTEREST = lv_i_interest
    IMPORTING
         E_S_ITEM = lv_e_s_item
. " FVD_IOA_OL_CREATE_INT_ITEM




ABAP code using 7.40 inline data declarations to call FM FVD_IOA_OL_CREATE_INT_ITEM

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 DATUM FROM SY INTO @DATA(ld_i_valid_from).
 
"SELECT single DATUM FROM SY INTO @DATA(ld_i_valid_to).
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!