SAP FI_INTITIT_READ Function Module for









FI_INTITIT_READ is a standard fi intitit read 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 fi intitit read FM, simply by entering the name FI_INTITIT_READ into the relevant SAP transaction such as SE37 or SE38.

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



Function FI_INTITIT_READ 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 'FI_INTITIT_READ'"
EXPORTING
* IB_READ_ACCOUNT_TO = "

TABLES
IR_KOART = "
* IR_IGJAHR = "
* IR_USNAM = "
ET_INTITIT = "FI Item Interest Calculation: Details
IR_BUKRS = "
IR_ACCOUNT = "
* IR_ARRAY = "
* IR_CURR = "
* IR_INT_UNTIL = "
* IR_BELNR = "
* IR_GJAHR = "
* IR_IBELNR = "

EXCEPTIONS
NOT_FOUND = 1
.



IMPORTING Parameters details for FI_INTITIT_READ

IB_READ_ACCOUNT_TO -

Data type: XFELD
Optional: Yes
Call by Reference: Yes

TABLES Parameters details for FI_INTITIT_READ

IR_KOART -

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

IR_IGJAHR -

Data type: FINT_TR_GJAHR
Optional: Yes
Call by Reference: Yes

IR_USNAM -

Data type: FINT_TR_USNAM
Optional: Yes
Call by Reference: Yes

ET_INTITIT - FI Item Interest Calculation: Details

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

IR_BUKRS -

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

IR_ACCOUNT -

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

IR_ARRAY -

Data type: FINT_TR_ARRAY
Optional: Yes
Call by Reference: Yes

IR_CURR -

Data type: FINT_TR_CURR
Optional: Yes
Call by Reference: Yes

IR_INT_UNTIL -

Data type: FINT_TR_INT_UNTIL
Optional: Yes
Call by Reference: Yes

IR_BELNR -

Data type: FINT_TR_BELNR
Optional: Yes
Call by Reference: Yes

IR_GJAHR -

Data type: FINT_TR_GJAHR
Optional: Yes
Call by Reference: Yes

IR_IBELNR -

Data type: FINT_TR_BELNR
Optional: Yes
Call by Reference: Yes

EXCEPTIONS details

NOT_FOUND - Entry not found

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for FI_INTITIT_READ 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_ir_koart  TYPE STANDARD TABLE OF FINT_TR_KOART, "   
lv_not_found  TYPE FINT_TR_KOART, "   
lv_ib_read_account_to  TYPE XFELD, "   
lt_ir_igjahr  TYPE STANDARD TABLE OF FINT_TR_GJAHR, "   
lt_ir_usnam  TYPE STANDARD TABLE OF FINT_TR_USNAM, "   
lt_et_intitit  TYPE STANDARD TABLE OF INTITIT, "   
lt_ir_bukrs  TYPE STANDARD TABLE OF FINT_TR_BUKRS, "   
lt_ir_account  TYPE STANDARD TABLE OF FINT_TR_ACCOUNT, "   
lt_ir_array  TYPE STANDARD TABLE OF FINT_TR_ARRAY, "   
lt_ir_curr  TYPE STANDARD TABLE OF FINT_TR_CURR, "   
lt_ir_int_until  TYPE STANDARD TABLE OF FINT_TR_INT_UNTIL, "   
lt_ir_belnr  TYPE STANDARD TABLE OF FINT_TR_BELNR, "   
lt_ir_gjahr  TYPE STANDARD TABLE OF FINT_TR_GJAHR, "   
lt_ir_ibelnr  TYPE STANDARD TABLE OF FINT_TR_BELNR. "   

  CALL FUNCTION 'FI_INTITIT_READ'  "
    EXPORTING
         IB_READ_ACCOUNT_TO = lv_ib_read_account_to
    TABLES
         IR_KOART = lt_ir_koart
         IR_IGJAHR = lt_ir_igjahr
         IR_USNAM = lt_ir_usnam
         ET_INTITIT = lt_et_intitit
         IR_BUKRS = lt_ir_bukrs
         IR_ACCOUNT = lt_ir_account
         IR_ARRAY = lt_ir_array
         IR_CURR = lt_ir_curr
         IR_INT_UNTIL = lt_ir_int_until
         IR_BELNR = lt_ir_belnr
         IR_GJAHR = lt_ir_gjahr
         IR_IBELNR = lt_ir_ibelnr
    EXCEPTIONS
        NOT_FOUND = 1
. " FI_INTITIT_READ




ABAP code using 7.40 inline data declarations to call FM FI_INTITIT_READ

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



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!