RPCAIDPF is a standard ABAP INCLUDE available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter RPCAIDPF into the relevant SAP transactions such as SE38 or SE80
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
Title: Include RPCAIDPF
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
HR_GET_BUSINESS_ADD_IN CALL FUNCTION 'HR_GET_BUSINESS_ADD_IN' EXPORTING exit_name = 'HR_PT_RPCAIDP0' IMPORTING is_implemented = lv_is_implemented CHANGING instance = lr_badi_instance.
HR_99S_COPY_TABLE1_TABLE2 CALL FUNCTION 'HR_99S_COPY_TABLE1_TABLE2' EXPORTING table1 = tab_qstre[] TABLES table2 = lt_qstre[].
HR_PT_GET_PAYROLL_RESULTS CALL FUNCTION 'HR_PT_GET_PAYROLL_RESULTS' EXPORTING p_pernr = pernr-pernr fpper_begda = l_begda fpper_endda = l_endda TABLES result_tab = l_tab_pay_result EXCEPTIONS no_results = 1 no_read_authority = 2 import_mismatch_error = 3 t500l_entry_not_found = 4 OTHERS = 5.
HR_99S_GET_EVAL_CLASS_VALUE CALL FUNCTION 'HR_99S_GET_EVAL_CLASS_VALUE' EXPORTING p_molga = pptgs_molga p_lgart = p_lgart p_eval_class = gc_wage_type_class_eval p_keydate = pn-endda IMPORTING p_value = l_eval_class_value p_return_code = l_ret_code.
RP_LAST_DAY_OF_MONTHS CALL FUNCTION 'RP_LAST_DAY_OF_MONTHS' EXPORTING day_in = l_payroll_begda IMPORTING last_day_of_month = l_payroll_endda.
HR_PT_GET_PAYROLL_RESULTS CALL FUNCTION 'HR_PT_GET_PAYROLL_RESULTS' EXPORTING p_pernr = pernr-pernr fpper_begda = l_payroll_begda fpper_endda = l_payroll_endda TABLES result_tab = lt_temp_pay_result EXCEPTIONS no_results = 1 no_read_authority = 2 import_mismatch_error = 3 t500l_entry_not_found = 4 OTHERS = 5.
HR_99B_GET_WAGETYPE_LIST CALL FUNCTION 'HR_99B_GET_WAGETYPE_LIST' EXPORTING i_molga = pptgs_molga i_eval_class = p_evaluation_class i_eval_value = p_evaluation_value i_date = p_date TABLES t_wagetype_range = lt_wagetype_range EXCEPTIONS no_records_found = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.