PCEDXBR1 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 PCEDXBR1 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 = wpbp-werks p_btrtl = wpbp-btrtl IMPORTING branch = l_branch EXCEPTIONS OTHERS = 1.
HR_BR_LER_FILIAL_GERAL CALL FUNCTION 'HR_BR_LER_FILIAL_GERAL' EXPORTING company_code = wpbp-bukrs branch = l_branch date = pn-endda IMPORTING comp_addr = l_address EXCEPTIONS branch_not_found = 1 address_not_found = 2 company_not_found = 3 general_data_not_found = 4 OTHERS = 5.
HRCA_COMPANYCODE_GETDETAIL CALL FUNCTION 'HRCA_COMPANYCODE_GETDETAIL' EXPORTING COMPANYCODE = WPBP-BUKRS LANGUAGE = SY-LANGU IMPORTING ADDRESS = GD_ADDRESS EXCEPTIONS NOT_FOUND = 1 OTHERS = 2.
ADDR_GET CALL FUNCTION 'ADDR_GET' EXPORTING ADDRESS_SELECTION = GD_ADDRESS_SELECTION IMPORTING ADDRESS_VALUE = GD_ADDRESS_DATA EXCEPTIONS PARAMETER_ERROR = 1 ADDRESS_NOT_EXIST = 2 VERSION_NOT_EXIST = 3 INTERNAL_ERROR = 4 OTHERS = 5.
HR_BR_GET_FILIAL_PER_AREA call function 'HR_BR_GET_FILIAL_PER_AREA' EXPORTING p_werks = wpbp-werks p_btrtl = wpbp-btrtl IMPORTING branch = l_branch obra = l_obra EXCEPTIONS others = 1.
HR_BR_LER_FILIAL_GERAL call function 'HR_BR_LER_FILIAL_GERAL' exporting company_code = wpbp-bukrs branch = l_branch date = pn-endda importing comp_addr = l_address * comp_name = name cgc = l_cgc exceptions branch_not_found = 1 address_not_found = 2 company_not_found = 3 general_data_not_found = 4 others = 5.
HR_BR_LER_EMPRESA call function 'HR_BR_LER_EMPRESA' EXPORTING company_code = wpbp-bukrs IMPORTING company_cgc = l_cgc EXCEPTIONS company_not_found = 1 cgc_contains_characters = 2 others = 3.
HR_READ_INFOTYPE CALL FUNCTION 'HR_READ_INFOTYPE' EXPORTING PERNR = PERNR-PERNR INFTY = '0465' "#EC NOTEXT TABLES INFTY_TAB = L_P0465 EXCEPTIONS OTHERS = 1.
HR_READ_INFOTYPE CALL FUNCTION 'HR_READ_INFOTYPE' EXPORTING PERNR = PERNR-PERNR INFTY = '0465' "#EC NOTEXT TABLES INFTY_TAB = L_P0465 EXCEPTIONS OTHERS = 1.
HR_READ_INFOTYPE CALL FUNCTION 'HR_READ_INFOTYPE' EXPORTING PERNR = PERNR-PERNR INFTY = '0465' "#EC NOTEXT TABLES INFTY_TAB = L_P0465 EXCEPTIONS OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.