HBRCCED0 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This report is used to run the document "Statement of Paid Income and Withholding Tax", annualy issued by the employer...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 HBRCCED0 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_CCED - Income Declaration 37
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.
Income statement - Certificate C
Selection Text: TITULO1 = Exempt income title
Selection Text: RESPCC = PersonResp.
Selection Text: P_WRITE = View
Selection Text: P_TECH = Detailed information
Selection Text: P_SERVER = Save in application server
Selection Text: P_PRINT = Print
Selection Text: P_FORM = Logical form
Selection Text: P_EXPORT = Export file
Selection Text: OCCAT = Off-cycle
Selection Text: NATUR = Income nature
Selection Text: FILENAME = File for export
Selection Text: DATACC = Processing data
Selection Text: COMPLEM2 = Additional message 2
Selection Text: COMPLEM1 = Additional message 1
Selection Text: ANO = Reference year
Title: Income Declaration
Text Symbol: SEL = Number of selected employees
Text Symbol: S01 = Other options
Text Symbol: S00 = Options for Form
Text Symbol: RES = Responsible for information
Text Symbol: R00 = Responsible person
Text Symbol: PRS = Processing
Text Symbol: PRO = Progress
Text Symbol: PRC = Number of processed employees
Text Symbol: PES = Responsible person
Text Symbol: OCC = Relevant off-cycles for deductions
Text Symbol: NAT = Wage earner work incentive
Text Symbol: ISE = Exempt and not taxable income (others field)
Text Symbol: EXP = Data to export
Text Symbol: E08 = POP UP error
Text Symbol: E02 = Error inserting in error message list
Text Symbol: COM = Additional information
Text Symbol: CM2 = Difference value of medical expense
Text Symbol: CM1 = Value regarding nursing care
Text Symbol: 002 = Fill in data
Text Symbol: 001 = Responsible person
INCLUDE HBRADDRS.
No SAP DATABASE tables are accessed within this REPORT code!
FILE_GET_NAME CALL FUNCTION 'FILE_GET_NAME' EXPORTING logical_filename = gc_logical_fname including_dir = 'X' IMPORTING file_name = filename EXCEPTIONS file_not_found = 1 OTHERS = 2.
FILE_VALIDATE_NAME CALL FUNCTION 'FILE_VALIDATE_NAME' EXPORTING logical_filename = gc_logical_fname CHANGING physical_filename = filename EXCEPTIONS logical_filename_not_found = 1 validation_failed = 2 OTHERS = 3.
HR_BR_PREPARE_LOG CALL FUNCTION 'HR_BR_PREPARE_LOG' EXPORTING iv_use_pal_log = pbr99_use_pal_log.
HR_BR_DISPLAY_LOG CALL FUNCTION 'HR_BR_DISPLAY_LOG' EXPORTING sw_prot = p_tech.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.