HROCSI10 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 HROCSI10 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_FILE = File name
Selection Text: P_INSUA = D Grouping A Unemp ER
Title: SI - EE Unemployment contribution
Text Symbol: 001 = Transfer options
Text Symbol: E01 = Cannot create personal work schedule for PERNR =
Text Symbol: E02 = No Day in PWS for PERNR =
Text Symbol: H10 = Restriction
Text Symbol: S01 = Display output data
Text Symbol: S02 = ALV variant
Text Symbol: S03 = Download
Text Symbol: S04 = Professional Activities
INCLUDE HROIREP0.
No SAP DATABASE tables are accessed within this REPORT code!
HR_RO_READ_PYRES_INTERVAL CALL FUNCTION 'HR_RO_READ_PYRES_INTERVAL' EXPORTING pernr = pernr-pernr * mode = 'R' "nt1427089 mode = 'M' "nt1427089 begda = pn-begda endda = pn-endda * bondt = bondt * payty = payty * payid = payid tprun = '' tpall = '' TABLES runs = it_runs myrg = it_myrg rtdet = it_rtdet.
HR_RO_GENWS_IN_INTERVAL CALL FUNCTION 'HR_RO_GENWS_IN_INTERVAL' EXPORTING begda = wa_myrg-fpbeg endda = wa_myrg-fpend mofid = wa_t001p-mofid TABLES i0000 = p0000 "im76566 i2003 = p2003 gpsp = gws.
HR_PERSONAL_WORK_SCHEDULE CALL FUNCTION 'HR_PERSONAL_WORK_SCHEDULE' EXPORTING pernr = pernr-pernr begda = wa_myrg-fpbeg endda = wa_myrg-fpend TABLES i0000 = p0000 i0001 = p0001 i0002 = p0002 i0007 = p0007 perws = pws EXCEPTIONS error_occured = 1 abort_occured = 2 OTHERS = 3.
HR_RO_AB_CHECK_PERIODS CALL FUNCTION 'HR_RO_AB_CHECK_PERIODS' TABLES ab = wa_rtdet-inter-ab abc = it_ab.
HR_RO_WORKDAYS_IN_INTERVAL CALL FUNCTION 'HR_RO_WORKDAYS_IN_INTERVAL' EXPORTING begda = wa_549q-begda endda = wa_549q-endda mofid = t001p-mofid TABLES i2003 = p2003 CHANGING wrkdays = lv_pwk.
HR_RO_DOWNLOAD CALL FUNCTION 'HR_RO_DOWNLOAD' EXPORTING filename = write_file filetype = 'DBF' filetype_no_show = 'X' TABLES data_tab = it_dbf2 fieldnames = it_header.
HR_RO_DOWNLOAD CALL FUNCTION 'HR_RO_DOWNLOAD' EXPORTING filename = write_file filetype = 'DBF' filetype_no_show = 'X' TABLES data_tab = it_dbf2 fieldnames = it_header.
REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING i_callback_program = repid it_fieldcat = fc[] is_variant = alvari i_save = 'X' TABLES t_outtab = it_dbf.
HR_RO_READ_PYRES_INTERVAL CALL FUNCTION 'HR_RO_READ_PYRES_INTERVAL' EXPORTING pernr = pernr-pernr mode = 'A' begda = wa_549q-begda endda = wa_549q-endda inper = paipe tprun = '' tpall = '' TABLES runs = lv_it_runs myrg = lv_it_myrg rtdet = lv_it_rtdet.
HR_RO_AB_CHECK_PERIODS CALL FUNCTION 'HR_RO_AB_CHECK_PERIODS' TABLES ab = lv_wa_rtdet-inter-ab abc = lv_it_ab.
HR_RO_AB_CONCAT CALL FUNCTION 'HR_RO_AB_CONCAT' EXPORTING begda = wa_549q-begda endda = wa_549q-endda TABLES ab = pa_ab pab = lv_pab ablog = ablog.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.