SAP FI_INTIT_GROUP Function Module for
FI_INTIT_GROUP is a standard fi intit group 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 group FM, simply by entering the name FI_INTIT_GROUP 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_GROUP 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_GROUP'".
EXPORTING
IT_T001_GROUP = "
IT_KNA1_GROUP = "
IT_KNB1_GROUP = "
IT_LFA1_GROUP = "
IT_LFB1_GROUP = "
ID_BADISAP_GROUP = "BAdI Interface IF_EX_FI_INT_SAP01
ID_BADI_GROUP = "BAdI Interface IF_EX_FI_INT_CUS01
TABLES
IT_IPF_GROUP = "FI Item Interest Calculation: Infos per Form
IT_ITEMS_GROUP = "## AUTOMATICALLY GENERATED. DO NOT CHANGE OR RE-USE ! ##
IT_SUM_GROUP = "## AUTOMATICALLY GENERATED. DO NOT CHANGE OR RE-USE ! ##
IT_T056U_EXT_GROUP = "
IT_FRANGE_GROUP = "
IT_LOG_GROUP = "
IMPORTING Parameters details for FI_INTIT_GROUP
IT_T001_GROUP -
Data type: FINT_TT_T001Optional: No
Call by Reference: Yes
IT_KNA1_GROUP -
Data type: FINT_TT_KNA1Optional: No
Call by Reference: Yes
IT_KNB1_GROUP -
Data type: FINT_TT_KNB1Optional: No
Call by Reference: Yes
IT_LFA1_GROUP -
Data type: FINT_TT_LFA1Optional: No
Call by Reference: Yes
IT_LFB1_GROUP -
Data type: FINT_TT_LFB1Optional: No
Call by Reference: Yes
ID_BADISAP_GROUP - BAdI Interface IF_EX_FI_INT_SAP01
Data type: IF_EX_FI_INT_SAP01Optional: No
Call by Reference: Yes
ID_BADI_GROUP - BAdI Interface IF_EX_FI_INT_CUS01
Data type: IF_EX_FI_INT_CUS01Optional: No
Call by Reference: Yes
TABLES Parameters details for FI_INTIT_GROUP
IT_IPF_GROUP - FI Item Interest Calculation: Infos per Form
Data type: FINT_TT_IPFOptional: No
Call by Reference: Yes
IT_ITEMS_GROUP - ## AUTOMATICALLY GENERATED. DO NOT CHANGE OR RE-USE ! ##
Data type: FINT_TT_INTIT_EXTFOptional: No
Call by Reference: Yes
IT_SUM_GROUP - ## AUTOMATICALLY GENERATED. DO NOT CHANGE OR RE-USE ! ##
Data type: FINT_TT_INTIT_EXTFOptional: No
Call by Reference: Yes
IT_T056U_EXT_GROUP -
Data type: FINT_TT_T056U_EXTOptional: No
Call by Reference: Yes
IT_FRANGE_GROUP -
Data type: FINT_FRANGE_TOptional: No
Call by Reference: Yes
IT_LOG_GROUP -
Data type: FINT_TT_LOGOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for FI_INTIT_GROUP 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_it_ipf_group | TYPE STANDARD TABLE OF FINT_TT_IPF, " | |||
| lv_it_t001_group | TYPE FINT_TT_T001, " | |||
| lv_it_kna1_group | TYPE FINT_TT_KNA1, " | |||
| lt_it_items_group | TYPE STANDARD TABLE OF FINT_TT_INTIT_EXTF, " | |||
| lt_it_sum_group | TYPE STANDARD TABLE OF FINT_TT_INTIT_EXTF, " | |||
| lv_it_knb1_group | TYPE FINT_TT_KNB1, " | |||
| lv_it_lfa1_group | TYPE FINT_TT_LFA1, " | |||
| lt_it_t056u_ext_group | TYPE STANDARD TABLE OF FINT_TT_T056U_EXT, " | |||
| lv_it_lfb1_group | TYPE FINT_TT_LFB1, " | |||
| lt_it_frange_group | TYPE STANDARD TABLE OF FINT_FRANGE_T, " | |||
| lt_it_log_group | TYPE STANDARD TABLE OF FINT_TT_LOG, " | |||
| lv_id_badisap_group | TYPE IF_EX_FI_INT_SAP01, " | |||
| lv_id_badi_group | TYPE IF_EX_FI_INT_CUS01. " |
|   CALL FUNCTION 'FI_INTIT_GROUP' " |
| EXPORTING | ||
| IT_T001_GROUP | = lv_it_t001_group | |
| IT_KNA1_GROUP | = lv_it_kna1_group | |
| IT_KNB1_GROUP | = lv_it_knb1_group | |
| IT_LFA1_GROUP | = lv_it_lfa1_group | |
| IT_LFB1_GROUP | = lv_it_lfb1_group | |
| ID_BADISAP_GROUP | = lv_id_badisap_group | |
| ID_BADI_GROUP | = lv_id_badi_group | |
| TABLES | ||
| IT_IPF_GROUP | = lt_it_ipf_group | |
| IT_ITEMS_GROUP | = lt_it_items_group | |
| IT_SUM_GROUP | = lt_it_sum_group | |
| IT_T056U_EXT_GROUP | = lt_it_t056u_ext_group | |
| IT_FRANGE_GROUP | = lt_it_frange_group | |
| IT_LOG_GROUP | = lt_it_log_group | |
| . " FI_INTIT_GROUP | ||
ABAP code using 7.40 inline data declarations to call FM FI_INTIT_GROUP
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