SAP HRFPM_PROVIDE_ACC_INT_DATA Function Module for
HRFPM_PROVIDE_ACC_INT_DATA is a standard hrfpm provide acc int data 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 hrfpm provide acc int data FM, simply by entering the name HRFPM_PROVIDE_ACC_INT_DATA into the relevant SAP transaction such as SE37 or SE38.
Function Group: RHFPM_CUSTOMIZING
Program Name: SAPLRHFPM_CUSTOMIZING
Main Program: SAPLRHFPM_CUSTOMIZING
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function HRFPM_PROVIDE_ACC_INT_DATA 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 'HRFPM_PROVIDE_ACC_INT_DATA'".
EXPORTING
* IV_ISTAT = '1' "
IS_SELPER = "
IS_HROBJECT = "
* IV_FLG_MESSAGE_IF_GAPS = ' ' "
* IV_NEED_1013 = ABAP_TRUE "
* IV_NEED_1008 = ABAP_TRUE "
IMPORTING
ET_INTEG_IV = "
EXCEPTIONS
CX_BPREP_REQ_MAN_INTERNAL = 1
IMPORTING Parameters details for HRFPM_PROVIDE_ACC_INT_DATA
IV_ISTAT -
Data type: ISTAT_DDefault: '1'
Optional: Yes
Call by Reference: Yes
IS_SELPER -
Data type: HRFPM_S_FINANCING_PERIODOptional: No
Call by Reference: Yes
IS_HROBJECT -
Data type: HROBJECTOptional: No
Call by Reference: Yes
IV_FLG_MESSAGE_IF_GAPS -
Data type: FLAGDefault: SPACE
Optional: Yes
Call by Reference: Yes
IV_NEED_1013 -
Data type: BOOLE_DDefault: ABAP_TRUE
Optional: Yes
Call by Reference: Yes
IV_NEED_1008 -
Data type: BOOLE_DDefault: ABAP_TRUE
Optional: Yes
Call by Reference: Yes
EXPORTING Parameters details for HRFPM_PROVIDE_ACC_INT_DATA
ET_INTEG_IV -
Data type: HRFPM_INTEGRATION_INTERVALS_TTOptional: No
Call by Reference: Yes
EXCEPTIONS details
CX_BPREP_REQ_MAN_INTERNAL -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for HRFPM_PROVIDE_ACC_INT_DATA 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_iv_istat | TYPE ISTAT_D, " '1' | |||
| lv_et_integ_iv | TYPE HRFPM_INTEGRATION_INTERVALS_TT, " | |||
| lv_cx_bprep_req_man_internal | TYPE HRFPM_INTEGRATION_INTERVALS_TT, " | |||
| lv_is_selper | TYPE HRFPM_S_FINANCING_PERIOD, " | |||
| lv_is_hrobject | TYPE HROBJECT, " | |||
| lv_iv_flg_message_if_gaps | TYPE FLAG, " SPACE | |||
| lv_iv_need_1013 | TYPE BOOLE_D, " ABAP_TRUE | |||
| lv_iv_need_1008 | TYPE BOOLE_D. " ABAP_TRUE |
|   CALL FUNCTION 'HRFPM_PROVIDE_ACC_INT_DATA' " |
| EXPORTING | ||
| IV_ISTAT | = lv_iv_istat | |
| IS_SELPER | = lv_is_selper | |
| IS_HROBJECT | = lv_is_hrobject | |
| IV_FLG_MESSAGE_IF_GAPS | = lv_iv_flg_message_if_gaps | |
| IV_NEED_1013 | = lv_iv_need_1013 | |
| IV_NEED_1008 | = lv_iv_need_1008 | |
| IMPORTING | ||
| ET_INTEG_IV | = lv_et_integ_iv | |
| EXCEPTIONS | ||
| CX_BPREP_REQ_MAN_INTERNAL = 1 | ||
| . " HRFPM_PROVIDE_ACC_INT_DATA | ||
ABAP code using 7.40 inline data declarations to call FM HRFPM_PROVIDE_ACC_INT_DATA
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_iv_istat) | = '1'. | |||
| DATA(ld_iv_flg_message_if_gaps) | = ' '. | |||
| DATA(ld_iv_need_1013) | = ABAP_TRUE. | |||
| DATA(ld_iv_need_1008) | = ABAP_TRUE. | |||
Search for further information about these or an SAP related objects