PCADRVE0 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 PCADRVE0 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_READ_INFOTYPE CALL FUNCTION 'HR_READ_INFOTYPE' EXPORTING PERNR = P_PERNO INFTY = C_0002 BEGDA = P_REP_DATE ENDDA = P_REP_DATE IMPORTING SUBRC = RETURN_ERROR TABLES INFTY_TAB = P0002 EXCEPTIONS INFTY_NOT_FOUND = 1 OTHERS = 2.
HRVE_GET_TIME_BETWEEN_DATES CALL FUNCTION 'HRVE_GET_TIME_BETWEEN_DATES' EXPORTING BEG_DATE = P_P0002_GBDAT END_DATE = P_DATE IMPORTING YEARS = YEARS EXCEPTIONS INVALID_PERIOD = 1 OTHERS = 2.
HR_READ_INFOTYPE CALL FUNCTION 'HR_READ_INFOTYPE' EXPORTING PERNR = P_PERNO INFTY = C_0001 BEGDA = P_REP_DATE ENDDA = P_REP_DATE IMPORTING SUBRC = RETURN_ERROR TABLES INFTY_TAB = P0001 EXCEPTIONS INFTY_NOT_FOUND = 1 OTHERS = 2.
HR_READ_INFOTYPE CALL FUNCTION 'HR_READ_INFOTYPE' EXPORTING PERNR = P_PERNO INFTY = C_0022 IMPORTING SUBRC = RETURN_ERROR TABLES INFTY_TAB = P0022 EXCEPTIONS INFTY_NOT_FOUND = 1 OTHERS = 2.
CU_READ_RGDIR CALL FUNCTION 'CU_READ_RGDIR' EXPORTING PERSNR = P_PERNR_PERNR TABLES IN_RGDIR = P_RGDIR EXCEPTIONS NO_RECORD_FOUND = 1 OTHERS = 2.
CD_SELECT_VOID CALL FUNCTION 'CD_SELECT_VOID' EXPORTING VOID_INDICATOR = SPACE TABLES IN_RGDIR = P_IN_RGDIR OUT_RGDIR = P_OUT_RGDIR EXCEPTIONS OTHERS = 1.
CD_SELECT_JUPER CALL FUNCTION 'CD_SELECT_JUPER' EXPORTING JUPER_LOW = P_EMPLOYEE_JUPER JUPER_HIGH = P_EMPLOYEE_JUPER TABLES IN_RGDIR = P_IN_RGDIR OUT_RGDIR = P_OUT_RGDIR EXCEPTIONS OTHERS = 1.
CD_SELECT_DATE_RANGE CALL FUNCTION 'CD_SELECT_DATE_RANGE' EXPORTING FPPER_BEGDA = P_BEGDA FPPER_ENDDA = P_ENDDA TABLES IN_RGDIR = P_IN_RGDIR OUT_RGDIR = P_OUT_RGDIR EXCEPTIONS OTHERS = 1.
CD_SELECT_SRTZA CALL FUNCTION 'CD_SELECT_SRTZA' EXPORTING RECORD_TYPE = C_ACTUAL TABLES IN_RGDIR = P_IN_RGDIR OUT_RGDIR = P_OUT_RGDIR EXCEPTIONS OTHERS = 1.
ADDR_GET CALL FUNCTION 'ADDR_GET' EXPORTING ADDRESS_SELECTION = GD_ADDRESS_SELECTION IMPORTING ADDRESS_VALUE = ADDRESS_DATA EXCEPTIONS PARAMETER_ERROR = 1 ADDRESS_NOT_EXIST = 2 VERSION_NOT_EXIST = 3 INTERNAL_ERROR = 4 OTHERS = 5.
HRCA_COMPANYCODE_GETDETAIL CALL FUNCTION 'HRCA_COMPANYCODE_GETDETAIL' EXPORTING LANGUAGE = SY-LANGU COMPANYCODE = P_COMPANY IMPORTING COMP_NAME = P_COMP_NAME EXCEPTIONS NOT_FOUND = 1.
HRVE_GET_CURRENCY call function 'HRVE_GET_CURRENCY' exporting iv_currency_determination_date = p_currency_determination_date IMPORTING EV_CURRENCY = p_currency EV_CURRENCY_RATE_DATE = p_currency_rate_date ev_error_text = lv_error_text EXCEPTIONS ERROR = 1 OTHERS = 2 .
H99B_OPEN_LFORM_JOB CALL FUNCTION 'H99B_OPEN_LFORM_JOB' EXPORTING i_molga = hr99b_form_sel-molga i_fogroup = hr99b_form_sel-fogroup i_folname = hr99b_form_sel-folname i_fovariant = hr99b_form_sel-fovariant options = l_options EXCEPTIONS OTHERS = 99.
H99B_OUTPUT_LFORM CALL FUNCTION 'H99B_OUTPUT_LFORM' EXPORTING i_molga = hr99b_form_sel-molga i_fogroup = hr99b_form_sel-fogroup i_folname = hr99b_form_sel-folname i_fovariant = hr99b_form_sel-fovariant i_date = pn-endda i_data_struc = gs_hrve_min_lab EXCEPTIONS OTHERS = 99.
H99B_CLOSE_LFORM_JOB CALL FUNCTION 'H99B_CLOSE_LFORM_JOB' EXCEPTIONS OTHERS = 99.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.