RPSSICS0_FORMS 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 RPSSICS0_FORMS 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 RPSSICS0_FORMS
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
TR_SYS_PARAMS CALL FUNCTION 'TR_SYS_PARAMS' IMPORTING systemtype = systemtype EXCEPTIONS no_systemname = 1 no_systemtype = 2 OTHERS = 3.
HR_PCLX_INIT_BUFFER CALL FUNCTION 'HR_PCLX_INIT_BUFFER'. "Initialisierung des PCLX-Puffers
CU_READ_RGDIR CALL FUNCTION 'CU_READ_RGDIR' "Read RGDIR, Cluster CU EXPORTING persnr = persnr TABLES in_rgdir = rgdir EXCEPTIONS no_record_found = 1 OTHERS = 2.
PYXX_GET_EVALUATION_PERIODS CALL FUNCTION 'PYXX_GET_EVALUATION_PERIODS' EXPORTING clusterid = 'RS' employeenumber = persnr inper_modif = rgdir-permo inper = rgdir-inper * <
>MS996765-Offcycle Implementaion TABLES evaluated_periods = periods EXCEPTIONS no_payroll_results = 1 no_entry_found_on_cu = 2 import_error = 3 OTHERS = 4.
HR_TIME_RESULTS_GET CALL FUNCTION 'HR_TIME_RESULTS_GET' EXPORTING get_pernr = pernr-pernr get_pabrj = get_abrj get_pabrp = get_abrp TABLES get_psp = psp get_zes = zes EXCEPTIONS no_period_specified = 1 wrong_cluster_version = 2 no_read_authority = 3 cluster_archived = 4 technical_error = 5 OTHERS = 6.
REUSE_ALV_COMMENTARY_WRITE CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE' EXPORTING it_list_commentary = header_alv.
HR_DISPLAY_ERROR_LIST CALL FUNCTION 'HR_DISPLAY_ERROR_LIST' EXPORTING no_popup = 'X' no_print = space TABLES error = p_errtab.
HR_DISPLAY_ERROR_LIST CALL FUNCTION 'HR_DISPLAY_ERROR_LIST' TABLES error = p_errtab.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_callback_program = cprog i_callback_top_of_page = 'TOP_OF_PAGE' is_layout = is_layout it_fieldcat = fieldcat i_save = 'X' is_variant = is_variant TABLES t_outtab = p_output_table EXCEPTIONS program_error = 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.