MP00084T 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 MP00084T 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_CZ_PS_TARIFST_CHG_DATE CALL FUNCTION 'HR_CZ_PS_TARIFST_CHG_DATE' EXPORTING C_PERNR = P0008-PERNR C_DATUM = P0008-BEGDA IMPORTING TAB_TRFST = cz_act_trfst NXT_CHGDAT = cz_datpp NXT_TRFST = cz_nxt_trfst OVER_NXT_CHGDAT = cz_dat_ov_pp OVER_NXT_TRFST = cz_ov_nxt_trfst CRUCIAL_DATE = cz_cruc_day TRFST_MISMATCH = cz_TRFST_MISMATCH EXCEPTIONS PERNR_DOES_NOT_EXIST = 1 NO_DATA = 2 CRUCIAL_DAY_IN_PAST = 3 * OTHERS = 4. "csbs180912
HR_CZ_PS_TARIFST_CHG_DATE CALL FUNCTION 'HR_CZ_PS_TARIFST_CHG_DATE' EXPORTING C_PERNR = P0008-PERNR C_DATUM = P0008-BEGDA IMPORTING * TAB_CHGDAT = TAB_TRFST = P0008-TRFST NXT_CHGDAT = n_chgdat NXT_TRFST = n_trfst CRUCIAL_DATE = cruc_date * INCL_YEAR = * INCL_DAYS = * CALE_YEAR = * CALE_DAYS = * WAS_NOT_ACTIVE = * MAX_EDUC = OVER_NXT_CHGDAT = cz_dat_ov_pp OVER_NXT_TRFST = cz_ov_nxt_trfst * EDUC_EXCEPT = TABLES C_0008 = l_0008 EXCEPTIONS PERNR_DOES_NOT_EXIST = 1 NO_DATA = 2 CRUCIAL_DAY_IN_PAST = 3 OTHERS = 4.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.