SAP FI_INTIT_POST Function Module for









FI_INTIT_POST is a standard fi intit post 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 intit post FM, simply by entering the name FI_INTIT_POST 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_INTIT_POST 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_INTIT_POST'"
EXPORTING
IT_T001 = "
IT_KNA1 = "
IT_KNB1 = "
IT_LFA1 = "
IT_LFB1 = "
ID_BADISAP = "BAdI Interface IF_EX_FI_INT_SAP01
ID_BADI = "BAdI Interface IF_EX_FI_INT_CUS01

TABLES
CT_IPF = "FI Item Interest Calculation: Infos per Form
IT_ITEMS = "## AUTOMATICALLY GENERATED. DO NOT CHANGE OR RE-USE ! ##
IT_SUM = "## AUTOMATICALLY GENERATED. DO NOT CHANGE OR RE-USE ! ##
IT_T056U_EXT = "
IT_FRANGE = "
IT_LOG = "
.



IMPORTING Parameters details for FI_INTIT_POST

IT_T001 -

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

IT_KNA1 -

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

IT_KNB1 -

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

IT_LFA1 -

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

IT_LFB1 -

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

ID_BADISAP - BAdI Interface IF_EX_FI_INT_SAP01

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

ID_BADI - BAdI Interface IF_EX_FI_INT_CUS01

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

TABLES Parameters details for FI_INTIT_POST

CT_IPF - FI Item Interest Calculation: Infos per Form

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

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

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

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

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

IT_T056U_EXT -

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

IT_FRANGE -

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

IT_LOG -

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

Copy and paste ABAP code example for FI_INTIT_POST 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_ct_ipf  TYPE STANDARD TABLE OF FINT_TT_IPF, "   
lv_it_t001  TYPE FINT_TT_T001, "   
lv_it_kna1  TYPE FINT_TT_KNA1, "   
lt_it_items  TYPE STANDARD TABLE OF FINT_TT_INTIT_EXTF, "   
lt_it_sum  TYPE STANDARD TABLE OF FINT_TT_INTIT_EXTF, "   
lv_it_knb1  TYPE FINT_TT_KNB1, "   
lv_it_lfa1  TYPE FINT_TT_LFA1, "   
lt_it_t056u_ext  TYPE STANDARD TABLE OF FINT_TT_T056U_EXT, "   
lv_it_lfb1  TYPE FINT_TT_LFB1, "   
lt_it_frange  TYPE STANDARD TABLE OF FINT_FRANGE_T, "   
lt_it_log  TYPE STANDARD TABLE OF FINT_TT_LOG, "   
lv_id_badisap  TYPE IF_EX_FI_INT_SAP01, "   
lv_id_badi  TYPE IF_EX_FI_INT_CUS01. "   

  CALL FUNCTION 'FI_INTIT_POST'  "
    EXPORTING
         IT_T001 = lv_it_t001
         IT_KNA1 = lv_it_kna1
         IT_KNB1 = lv_it_knb1
         IT_LFA1 = lv_it_lfa1
         IT_LFB1 = lv_it_lfb1
         ID_BADISAP = lv_id_badisap
         ID_BADI = lv_id_badi
    TABLES
         CT_IPF = lt_ct_ipf
         IT_ITEMS = lt_it_items
         IT_SUM = lt_it_sum
         IT_T056U_EXT = lt_it_t056u_ext
         IT_FRANGE = lt_it_frange
         IT_LOG = lt_it_log
. " FI_INTIT_POST




ABAP code using 7.40 inline data declarations to call FM FI_INTIT_POST

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!