RPCBURF0PBS 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 RPCBURF0PBS 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!
HR_PSF_GET_TRENT_IN_PERIOD CALL FUNCTION 'HR_PSF_GET_TRENT_IN_PERIOD' EXPORTING imp_begda = p_wpbp_sv_prov_itab-begda imp_endda = p_wpbp_sv_prov_itab-endda IMPORTING exp_trentnb = p_wpbp_sv_prov_itab-trent EXCEPTIONS NOT_IN_THE_SAME_PAYROLL_PERIOD = 1 NOT_IN_THE_RIGHT_ORDER = 2 OTHERS = 3 .
HR_FR_PBS_RE5FPBS1A CALL FUNCTION 'HR_FR_PBS_RE5FPBS1A' EXPORTING imp_psstt = fpwp-psstt imp_psadm = fpwp-psadm IMPORTING exp_sprul = l_sprul EXCEPTIONS no_entry_in_t5fpbs1a = 1 OTHERS = 2.
HR_PSF_GET_TRENT_IN_PERIOD CALL FUNCTION 'HR_PSF_GET_TRENT_IN_PERIOD' EXPORTING imp_begda = fpwp-begda imp_endda = fpwp-endda IMPORTING exp_trentnb = l_nb_trent EXCEPTIONS not_in_the_same_payroll_period = 1 not_in_the_right_order = 2 OTHERS = 3.
HR_FR_PBS_RE5FPBS1S CALL FUNCTION 'HR_FR_PBS_RE5FPBS1S' EXPORTING imp_psstt = fpwp-psstt IMPORTING exp_payst = l_flag_payst EXCEPTIONS no_entry_in_t5fpbs1s = 1 OTHERS = 2.
HR_PSF_GET_TRENT_IN_PERIOD CALL FUNCTION 'HR_PSF_GET_TRENT_IN_PERIOD' EXPORTING imp_begda = wpbp-begda imp_endda = wpbp-endda IMPORTING exp_trentnb = l_nb_trent EXCEPTIONS not_in_the_same_payroll_period = 1 not_in_the_right_order = 2 OTHERS = 3.
HR_PSF_ADJUST_TRENT_IN_PERIOD CALL FUNCTION 'HR_PSF_ADJUST_TRENT_IN_PERIOD' EXPORTING IMP_BEGDA = wpbp-begda IMP_ENDDA = wpbp-endda IMP_AKTIVJN = wpbp-aktivjn IMP_TOT_TRENT = trentieme-totale IMP_CORRN = corrn CHANGING CHG_TRENTNB = l_nb_trent.
HR_FR_PBS_RE5FPBS1S CALL FUNCTION 'HR_FR_PBS_RE5FPBS1S' EXPORTING imp_psstt = fpwp-psstt IMPORTING exp_payst = l_flag_payst EXCEPTIONS no_entry_in_t5fpbs1s = 1 OTHERS = 2.
HR_PSF_GET_TRENT_IN_PERIOD CALL FUNCTION 'HR_PSF_GET_TRENT_IN_PERIOD' EXPORTING imp_begda = zl-datum imp_endda = zl-datum IMPORTING exp_trentnb = l_nb_trent EXCEPTIONS not_in_the_same_payroll_period = 1 not_in_the_right_order = 2 OTHERS = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.