HROCCIPE is a standard Executable ABAP Report 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 HROCCIPE 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.
Selection Text: P_TEST = Test run
Selection Text: P_LOG = Log processing details
Title: Update payroll results ROMANIA by SI-ER
Text Symbol: 033 = Date and time of execution start:
Text Symbol: 032 = Payment type :
Text Symbol: 031 = Payment ID :
Text Symbol: 030 = Bonus date :
Text Symbol: 029 = Period modifier:
Text Symbol: 028 = InPeriod :
Text Symbol: 027 = Update of payroll results by SI paid by ER
Text Symbol: 026 = already posted to FI/CO
Text Symbol: 025 = Payroll result
Text Symbol: 024 = Unable to restore results for current payroll
Text Symbol: 023 = Seqnr ForPer InPer Bondt Payty Payid
Text Symbol: 022 = Processing:
Text Symbol: 021 = Error writing payroll result:
Text Symbol: 020 = Error reading payroll result:
Text Symbol: 019 = Other error when flushing buffer
Text Symbol: 018 = Insert error when flushing buffer
Text Symbol: 017 = Unknown error importing buffer
Text Symbol: 016 = No authorization to read results
Text Symbol: 015 = No payroll results
Text Symbol: 014 = MOLGA of the EE is not equal to
Text Symbol: 013 = No errors occured
Text Symbol: 012 = No changes were needed
Text Symbol: 011 = not updated - test mode
Text Symbol: 010 = updated
Text Symbol: 002 = Special run
Text Symbol: 001 = Additional options
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
HR_PCLX_INIT_BUFFER CALL FUNCTION 'HR_PCLX_INIT_BUFFER'.
HR_DISPLAY_ERROR_LIST CALL FUNCTION 'HR_DISPLAY_ERROR_LIST' EXPORTING no_popup = 'X' no_print = '' TABLES error = errortab EXCEPTIONS invalid_linesize = 1 OTHERS = 2.
HR_DISPLAY_ERROR_LIST CALL FUNCTION 'HR_DISPLAY_ERROR_LIST' EXPORTING no_popup = '' no_print = '' TABLES error = errortab EXCEPTIONS invalid_linesize = 1 OTHERS = 2.
HR_IMPORT_BUFFER_FROM_PCLX CALL FUNCTION 'HR_IMPORT_BUFFER_FROM_PCLX' EXPORTING employee_number = pernr cluster_id = cluster_id TABLES rgdir = rgdir EXCEPTIONS no_results = 1 no_read_authority = 2 OTHERS = 3.
HR_FLUSH_BUFFER_UPDATE_PCLX CALL FUNCTION 'HR_FLUSH_BUFFER_UPDATE_PCLX' EXCEPTIONS insert_error = 1 no_update_authority = 2 OTHERS = 3.
PYXX_READ_PAYROLL_RESULT CALL FUNCTION 'PYXX_READ_PAYROLL_RESULT' EXPORTING clusterid = cluster_id employeenumber = pernr sequencenumber = rgdir_entry-seqnr CHANGING payroll_result = 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.
PYXX_WRITE_PAYROLL_RESULT CALL FUNCTION 'PYXX_WRITE_PAYROLL_RESULT' EXPORTING clusterid = cluster_id employeenumber = pernr sequencenumber = rgdir_entry-seqnr payroll_result = result EXCEPTIONS illegal_isocode_or_clusterid = 1 error_generating_export = 2 export_error = 3 subpool_dir_full = 4 no_update_authority = 5 incomplete_result_imported = 6 OTHERS = 7.
CU_READ_RGDIR CALL FUNCTION 'CU_READ_RGDIR' EXPORTING persnr = pernr TABLES in_rgdir = rgdir EXCEPTIONS no_record_found = 1 OTHERS = 2.
CD_EVALUATION_PERIODS CALL FUNCTION 'CD_EVALUATION_PERIODS' EXPORTING bonus_date = bondt inper = pn-paper "#EC * inper_modif = pn-permo pay_type = payty pay_ident = payid TABLES rgdir = rgdir evpdir = evpdir iabkrs = pnpabkrs EXCEPTIONS no_record_found = 1 OTHERS = 2.
RP_HIRE_FIRE CALL FUNCTION 'RP_HIRE_FIRE' TABLES pphifi = hifi pp0000 = p0000 pp0001 = p0001.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.