PCFTXAR2 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 PCFTXAR2 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
HR_AR_HIRE_FIRE call function 'HR_AR_HIRE_FIRE' exporting beg = of_begda_in end = of_endda_in juper_is_relevant = sw_juper_change_relevant importing fire_date = of_fire_date hire_date = of_hire_date tables pphifi = phifi pp0000 = p0000 pp0001 = p0001 exceptions others = 1.
HR_READ_INFOTYPE CALL FUNCTION 'HR_READ_INFOTYPE' EXPORTING PERNR = vf_pernr INFTY = '0014' BEGDA = vf_begda ENDDA = vf_endda IMPORTING SUBRC = subrc TABLES INFTY_TAB = asig_p0014.
HRAR_READ_T512W_VKLAS CALL FUNCTION 'HRAR_READ_T512W_VKLAS' EXPORTING LGART = asig_p0014-lgart ENDDA = vf_endda PCLAS = '65' IMPORTING PVALU = proc_class_value EXCEPTIONS NOT_FOUND = 1 NOT_MAINTAINED = 2 OTHERS = 3.
CD_PAYROLL_UNTIL call function 'CD_PAYROLL_UNTIL' importing payroll_until = cd_last_payroll_date tables rgdir = rgdir_01 exceptions no_record_found = 1 others = 2.
CD_SELECT_VOID call function 'CD_SELECT_VOID' exporting void_indicator = cd_c-void_false tables in_rgdir = rgdir out_rgdir = gr_rgdir_01 exceptions others = 1.
CD_SELECT_DATE_RANGE call function 'CD_SELECT_DATE_RANGE' exporting fpper_begda = gr_begda fpper_endda = gr_endda tables in_rgdir = gr_rgdir_01 out_rgdir = gr_rgdir_02 exceptions others = 1.
CD_SELECT_SRTZA call function 'CD_SELECT_SRTZA' exporting record_type = cd_c-actual tables in_rgdir = gr_rgdir_02 out_rgdir = gr_rgdir exceptions others = 1.
PYXX_READ_PAYROLL_RESULT CALL FUNCTION 'PYXX_READ_PAYROLL_RESULT' EXPORTING CLUSTERID = 'AR' EMPLOYEENUMBER = pernr-pernr SEQUENCENUMBER = rgdir-seqnr CHANGING PAYROLL_RESULT = pft_payar_result EXCEPTIONS ILLEGAL_ISOCODE_OR_CLUSTERID = 1 ERROR_GENERATING_IMPORT = 2 IMPORT_MISMATCH_ERROR = 3 SUBPOOL_DIR_FULL = 4 NO_READ_AUTHORITY = 5 NO_RECORD_FOUND = 6 VERSIONS_DO_NOT_MATCH = 7 OTHERS = 8.
HR_DISPLAY_BASIC_LIST call function 'HR_DISPLAY_BASIC_LIST' exporting lay_out = 0 head_line1 = header1 head_line2 = header2 basic_list_title = sy-title file_name = myreport foot_note1 = footnote1 foot_note2 = footnote2 foot_note3 = footnote3 dyn_pushbutton_text1 = 'Ejecutar BI'(007) dyn_pushbutton_text2 = 'Generar BI'(008) current_report = myreport list_level = '01' no_alv_grid = 'X' importing return_code = returncode tables data_tab = tax_results select_tab = selected_payments fieldname_tab = fieldname error_tab = error exceptions print_problems = 5 others = 1.
HRAR_READ_CLUSTER_FINAL_TAX CALL FUNCTION 'HRAR_READ_CLUSTER_FINAL_TAX' EXPORTING pernr = iv_pernr year = '2010' IMPORTING seqnr = lv_seqnr TABLES p_arimpf = lt_arimpf p_arcimpf = lt_arcimpf p_ardimpf = lt_ardimpf p_aroimpf = lt_aroimpf EXCEPTIONS no_record_found = 1 OTHERS = 2.
HRAR_UPDATE_CLUSTER_FINAL_TAX CALL FUNCTION 'HRAR_UPDATE_CLUSTER_FINAL_TAX' EXPORTING P_A2KEY = ls_a2key pernr = iv_pernr TABLES p_arimpf = lt_arimpf p_arcimpf = lt_arcimpf p_ardimpf = lt_ardimpf p_aroimpf = lt_aroimpf EXCEPTIONS no_record_found = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.