PCCONTBR0 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 PCCONTBR0 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_LER_FILIAL_GERAL CALL FUNCTION 'HR_BR_LER_FILIAL_GERAL' EXPORTING company_code = i7brap-bukrs branch = i7brap-filia obra = i7brap-obra date = p_endda IMPORTING cgc = p_header-cgc comp_name = p_header-empresa comp_addr = address EXCEPTIONS branch_not_found = 1 address_not_found = 2 company_not_found = 3 general_data_not_found = 4 OTHERS = 5.
MONTH_NAMES_GET * call function 'MONTH_NAMES_GET' * exporting * language = sy-langu * importing * return_code = sy-subrc * tables * month_names = it247 * exceptions * month_names_not_found = 1 * others = 2.
HR_PERSONAL_WORK_SCHEDULE CALL FUNCTION 'HR_PERSONAL_WORK_SCHEDULE' EXPORTING pernr = pernr-pernr begda = p_pn_endda "// P_PN_BEGDA - OLD! endda = p_pn_endda kug = 'ALL' TABLES perws = pws EXCEPTIONS error_occured = 1 abort_occured = 2 OTHERS = 3.
HR_ENTRY_DATE CALL FUNCTION 'HR_ENTRY_DATE' EXPORTING persnr = p_pernr_pernr IMPORTING entrydate = p_header-contr_begda1 TABLES entry_dates = it_entry_date EXCEPTIONS entry_date_not_found = 1 pernr_not_assigned = 2 OTHERS = 3.
HR_BR_CONTRACTUAL_SALARY CALL FUNCTION 'HR_BR_CONTRACTUAL_SALARY' EXPORTING begda = p_endda endda = p_endda perno = pernr-pernr fc_sw_dec = sw_dec calc_currency = pbr99_waers TABLES pp0001 = p0001 pp0007 = p0007 pp0008 = p0008 it = it EXCEPTIONS OTHERS = 1.
RP_EDIT_NAME CALL FUNCTION 'RP_EDIT_NAME' EXPORTING pp0002 = p0002 molga = pbr99_molga langu = sy-langu format = '01' IMPORTING edit_name = p_header-empregado.
HRCA_READ_BANK_ADDRESS_2 CALL FUNCTION 'HRCA_READ_BANK_ADDRESS_2' EXPORTING bank_country = p0009-banks bank_number = p0009-bankl IMPORTING bank_data = p_bnka_bf EXCEPTIONS not_found = 1 OTHERS = 2.
DDUT_DOMVALUES_GET * CALL FUNCTION 'DDUT_DOMVALUES_GET' * EXPORTING * NAME = 'PBR_CIVIL' * LANGU = SY-LANGU * TABLES * DD07V_TAB = DD07V_TAB * EXCEPTIONS * ILLEGAL_INPUT = 1 * OTHERS = 2.
HR_BR_GET_ESTADO_CIVIL CALL FUNCTION 'HR_BR_GET_ESTADO_CIVIL' EXPORTING idioma = sy-langu famst = p_p0002_famst IMPORTING civil = p_p_header_estado_civil EXCEPTIONS not_found = 1 OTHERS = 2.
HR_READ_FOREIGN_OBJECT_TEXT CALL FUNCTION 'HR_READ_FOREIGN_OBJECT_TEXT' EXPORTING otype = 'S ' objid = p_plans begda = p_begda endda = p_endda IMPORTING short_text = short_text object_text = p_text EXCEPTIONS nothing_found = 1 wrong_objecttype = 2 missing_costcenter_data = 3 missing_object_id = 4 OTHERS = 5.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.