RPCCESPB 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 RPCCESPB 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!
HR99L00_GET_RETRO_MONTH_DIFF CALL FUNCTION 'HR99L00_GET_RETRO_MONTH_DIFF' EXPORTING pernr = iv_pernr month = iv_endda+4(2) year = iv_endda(4) sel_date = 'B' TABLES lgart = it_range retro_month_diff = ct_retro EXCEPTIONS t500l_not_maintained = 1 no_read_authority = 2 import_error = 3 others = 4.
HR_APPL_T596IJ_READ CALL FUNCTION 'HR_APPL_T596IJ_READ' EXPORTING i_molga = '19' i_appl = 'TCES' i_date = iv_begda TABLES tab_sel_t596j = ct_t596j tab_sel_t596i = ct_t596i EXCEPTIONS no_application = 1 no_assignment_wagetype = 2 no_wagetype_found = 3 OTHERS = 4.
HR_FEATURE_BACKFIELD CALL FUNCTION 'HR_FEATURE_BACKFIELD' EXPORTING feature = lc_pentt struc_content = ls_pentt IMPORTING back = lv_return EXCEPTIONS dummy = 1 error_operation = 2 no_backvalue = 3 feature_not_generated = 4 invalid_sign_in_funid = 5 field_in_report_tab_in_pe03 = 6 OTHERS = 7.
HR_FEATURE_BACKFIELD CALL FUNCTION 'HR_FEATURE_BACKFIELD' EXPORTING feature = lc_psscn struc_content = ls_psscn IMPORTING back = lv_return EXCEPTIONS dummy = 1 error_operation = 2 no_backvalue = 3 feature_not_generated = 4 invalid_sign_in_funid = 5 field_in_report_tab_in_pe03 = 6 OTHERS = 7.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.