SAPMESSREP 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 SAPMESSREP into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
PZSU53 - ESS Display Authorization Errors
HRESSCA_TFR - Tax Form Reprint
HRESSDE_ATZ - ESS: Semiretirement Simulation
HRESSDE_AVST - CPS: Status of Future Pension Rights
HRESSDE_CNET - HR-ESS-DE: Monthly Net Income
HRESSHK_IR56B - End of Tax Year Form
HRESSHK_IR56F - Ceased to be Employed Form
PZ11_PL_PDF - Remuneration Statement
PZ11_PL - Remuneration Statement
PZ11_PDF - Remuneration Statement
PZ04 - Time statement
PZ11 - Remuneration Statement
HRESSHK_IR56G - Employee Departing Hong Kong Form
HRESSIN_F16 - Display Form 16
HRESSMY_EA - EA Form
HRESSMY_PCB2 - PCB 2(II) Form
PACG - HR-CH-PF ESS-Online Simulation
PFDESS_02PKB1 - ESS Insurance Statement
PFDESS_02PKB4 - ESS Simulated Leaving
PFDESS_02PKB8 - ESS Advance
PFDESS_02PKM1 - ESS Insurance Statement
PFDESS_02PKM4 - ESS Simulated Leaving
PFDESS_02PKM8 - ESS Advance
PFDESS_12PKB1 - HR-PF-BE: ESS Pension Certificate
PFDESS_12PKB3 - HR-PF-BE: ESS Retirement Statement
HRESSPT_IID - Individual income declaration
HRESSSG_IR21 - Tax form IR21
HRESSSG_IR8A - Tax form IR8A
HRESSSG_IR8E - Tax form 8E
PZ17 - Work Schedule
HRESSSG_IR8S - Tax form IR8S
HRESS_PAYSIMU - HR-ESS: Payroll Simulation (Demo)
PZ61 - Benefit request query report
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: ESS Report Container
INCLUDE RHEHCONS.
No SAP DATABASE tables are accessed within this REPORT code!
HR_GETEMPLOYEEDATA_FROMUSER call function 'HR_GETEMPLOYEEDATA_FROMUSER' exporting username = sy-uname importing employeenumber = pernr countrygrouping = molga name = ename personnelarea = persa accountedto = abrdt exceptions user_not_found = 1 countrygrouping_not_found = 2 others = 3.
HR_ESS_REPORTS call function 'HR_ESS_REPORTS' exporting tcode = tcode pernr = pernr name = ename.
HR_ESS_CHANGE_MOLGA call function 'HR_ESS_CHANGE_MOLGA' changing molga = molga.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.