PCCEDBR0 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 PCCEDBR0 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_BR_GET_FILIAL_PER_AREA CALL FUNCTION 'HR_BR_GET_FILIAL_PER_AREA' EXPORTING p_werks = pernr-werks p_btrtl = pernr-btrtl IMPORTING bukrs = bukrs branch = branch obra = obra.
HR_BR_LER_FILIAL_GERAL CALL FUNCTION 'HR_BR_LER_FILIAL_GERAL' EXPORTING company_code = bukrs branch = branch obra = obra date = pnpendda IMPORTING cgc = company_data-cgc_number comp_name = company_data-name comp_addr = address EXCEPTIONS branch_not_found = 1 address_not_found = 2 company_not_found = 3 general_data_not_found = 4 OTHERS = 5.
RP_EDIT_NAME CALL FUNCTION 'RP_EDIT_NAME' EXPORTING pp0002 = p0002 molga = pbr99_molga langu = sy-langu format = '01' IMPORTING edit_name = hcc-nome_empr.
HR_BR_DEPENDENTES_PENSIONISTAS CALL FUNCTION 'HR_BR_DEPENDENTES_PENSIONISTAS' EXPORTING personnel_number = pernr-pernr validity_date = sy-datum IMPORTING dependant_ids = itb_dependants TABLES infotype_0021 = p0021 infotype_0397 = p0397 EXCEPTIONS error = 1 OTHERS = 2.
GUI_DOWNLOAD CALL FUNCTION 'GUI_DOWNLOAD' EXPORTING filename = file_name filetype = file_type TABLES data_tab = ced_ee EXCEPTIONS file_write_error = 1 invalid_type = 2 no_batch = 3 unknown_error = 4 gui_refuse_filetransfer = 5 OTHERS = 6.
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.
H99B_OPEN_LFORM_JOB CALL FUNCTION 'H99B_OPEN_LFORM_JOB' EXPORTING i_molga = pbr99_molga i_fogroup = pv_fogroup i_folname = pv_form OPTIONS = ls_options EXCEPTIONS fotype_invalid = 1 job_not_opened = 2 OTHERS = 3.
H99B_OUTPUT_LFORM CALL FUNCTION 'H99B_OUTPUT_LFORM' EXPORTING i_molga = pbr99_molga i_fogroup = pv_fogroup i_folname = pv_form i_data_struc = ls_data EXCEPTIONS error = 1 fotype_invalid = 2 OTHERS = 3.
H99B_CLOSE_LFORM_JOB CALL FUNCTION 'H99B_CLOSE_LFORM_JOB' EXCEPTIONS fotype_invalid = 1 closing_error = 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.