HARCLSTRA2 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for With this report you can display the data and the results of the final calculation of Income tax for the fiscal year indicated in the selection screen...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter HARCLSTRA2 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
PC00_M29_CLSTRA2 - Display earn. final settl. results
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.
Selection Text: PERIOD = Fiscal year
Title: Reading of Cluster A2 (ARGENTINA)
Text Symbol: 002 = There is no entry in cluster A2 for the year
Text Symbol: 003 = There is no entry in cluster A2 for the fiscal year
Text Symbol: 004 = Personnel number
Text Symbol: 005 = Personnel number w/o data
Text Symbol: HEG = Fiscal yr
Text Symbol: T01 = Fiscal period
INCLUDE HARCLSTRDATA.
No SAP DATABASE tables are accessed within this REPORT code!
HR_PAL_CREATE_NODE_CATEG CALL FUNCTION 'HR_PAL_CREATE_NODE_CATEG' EXPORTING I_CATEG_ID = 'PERNR' I_STRUCTURE_NAME = 'LT_PERNR' EXCEPTIONS PROGRAM_ERROR = 1 OTHERS = 2.
HR_PAL_CREATE_NODE_CATEG CALL FUNCTION 'HR_PAL_CREATE_NODE_CATEG' EXPORTING I_CATEG_ID = 'ARIMPF' I_STRUCTURE_NAME = 'PC2QG' EXCEPTIONS PROGRAM_ERROR = 1 OTHERS = 2.
HR_PAL_CREATE_NODE_CATEG CALL FUNCTION 'HR_PAL_CREATE_NODE_CATEG' EXPORTING I_CATEG_ID = 'CIMPF' I_STRUCTURE_NAME = 'PC2QH' EXCEPTIONS PROGRAM_ERROR = 1 OTHERS = 2.
HR_PAL_CREATE_NODE_CATEG CALL FUNCTION 'HR_PAL_CREATE_NODE_CATEG' EXPORTING I_CATEG_ID = 'DIMPF' I_STRUCTURE_NAME = 'PC2QI' EXCEPTIONS PROGRAM_ERROR = 1 OTHERS = 2.
HR_PAL_CREATE_NODE_CATEG CALL FUNCTION 'HR_PAL_CREATE_NODE_CATEG' EXPORTING I_CATEG_ID = 'OIMPF' I_STRUCTURE_NAME = 'PC2QT' EXCEPTIONS PROGRAM_ERROR = 1 OTHERS = 2.
HR_PAL_NODE_ADD CALL FUNCTION 'HR_PAL_NODE_ADD' EXPORTING I_RELATKEY = 'ROOT' I_NODE_TXT = text-004 IMPORTING E_NODE_KEY = my_first_node EXCEPTIONS PROGRAM_ERROR = 1 OTHERS = 2.
HR_PAL_NODE_ADD CALL FUNCTION 'HR_PAL_NODE_ADD' EXPORTING I_RELATKEY = 'ROOT' I_NODE_TXT = text-005 IMPORTING E_NODE_KEY = my_first_node0 EXCEPTIONS PROGRAM_ERROR = 1 OTHERS = 2.
HR_PAL_STATS_STANDARD_MSG_ADD call function 'HR_PAL_STATS_STANDARD_MSG_ADD' EXPORTING i_selected_ee = gv_selected_ee i_successful_ee = gv_success_ee i_erroneous_ee = gv_error_ee IMPORTING e_stats_node_key = g_stats_node_key EXCEPTIONS program_error = 1 others = 2.
HR_PAL_STATS_MSG_ADD call function 'HR_PAL_STATS_MSG_ADD' exporting i_node_key = g_stats_node_key i_stcnt = gv_no_cluster_ee i_msgid = 'BL' i_msgty = 'W' i_msgno = '001' i_msgv1 = lv_msgv1 exceptions program_error = 1 others = 2.
HR_PAL_LOG_DISPLAY CALL FUNCTION 'HR_PAL_LOG_DISPLAY' EXPORTING I_S_DISPLAY_PROFILE = lv_display_profile.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.