HBRCEDT1 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This report creates the employee's remuneration statement...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter HBRCEDT1 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
PC00_M37_CEDT1 - Monthly remuneration statement
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: Monthly remuneration statement
Text Symbol: E08 = POP UP error
Text Symbol: T01 = Name of form
Text Symbol: X01 = General program control
Text Symbol: X10 = General program control
Text Symbol: X11 = For-period
Text Symbol: X12 = Orig.per.
Text Symbol: X13 = Alternative currency
Text Symbol: X99 = Special run
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
F4_POPUP_FORML CALL FUNCTION 'F4_POPUP_FORML' EXPORTING molga = molga fclass = 'CEDT' * SPRSL = SY-LANGU IMPORTING forml = formular * vtext = fedt_txt EXCEPTIONS OTHERS = 1.
HR_LEAVING_DATE CALL FUNCTION 'HR_LEAVING_DATE' EXPORTING persnr = pernr-pernr IMPORTING leavingdate = l_fire TABLES leaving_dates = l_entry_dates EXCEPTIONS leaving_date_not_found = 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.