PCSENVE0 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 PCSENVE0 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!
HRVE_READ_T512W_VKLAS call function 'HRVE_READ_T512W_VKLAS' EXPORTING lgart = it-lgart endda = aper-endda pclas = c_pclass_sen_adv_num IMPORTING pvalu = pclass_val EXCEPTIONS not_found = 1 others = 2.
HRVE_GET_EVAL_BALANCES call function 'HRVE_GET_EVAL_BALANCES' IMPORTING seniority_balance = sen_balance TABLES sen_eval = sen_eval.
HRVE_READ_T596F call function 'HRVE_READ_T596F' EXPORTING sname = p_name endda = p_date IMPORTING pgmna = p_prg_name modna = p_rou_name EXCEPTIONS not_found = 1 others = 2.
HRVE_RETRIEVE_T511K_BY_MOLGA call function 'HRVE_RETRIEVE_T511K_BY_MOLGA' EXPORTING p_molga = calcmolga p_begda = p_sen_input-anniv_date p_endda = p_sen_input-anniv_date TABLES local_t511k = vet511k EXCEPTIONS not_found = 1 others = 2.
HRVE_PROCESS_SENIORITY CALL FUNCTION 'HRVE_PROCESS_SENIORITY' EXPORTING pernr = pernr-pernr PERIOD_BEGDA = p_sen_input-beg_peri PERIOD_ENDDA = p_sen_input-end_peri hiring_date = ve_hiring_date absence_days = acum_abs_days IMPORTING SENIORITY_DATE = p_sen_input-initial_date EXCEPTIONS NOT_PROCESS_SENIORITY = 1 OTHERS = 2.
HR_99S_GET_PERMO CALL FUNCTION 'HR_99S_GET_PERMO' EXPORTING p_pernr = pv_pernr p_begda = pv_date p_endda = pv_date IMPORTING p_t549a = ls_t549a p_return_code = lv_returncode.
HRVE_GET_TIME_BETWEEN_DATES CALL FUNCTION 'HRVE_GET_TIME_BETWEEN_DATES' EXPORTING beg_date = ps_sen_input-last_sen_date end_date = ps_sen_input-end_peri IMPORTING months = cv_prov_month EXCEPTIONS invalid_period = 1 OTHERS = 2.
HR_CONVERT_CURRENCY_RESULT CALL FUNCTION 'HR_CONVERT_CURRENCY_RESULT' EXPORTING country_grouping = calcmolga conversion_date = pv_endda foreign_currency = oversc-waers local_currency = calc_currency TABLES result_table = ct_ort EXCEPTIONS OTHERS = 99.
HRVE_GET_TIME_BETWEEN_DATES CALL FUNCTION 'HRVE_GET_TIME_BETWEEN_DATES' EXPORTING beg_date = ps_seniority-last_sen_date end_date = ps_seniority-end_peri IMPORTING days = lv_days months = lv_months EXCEPTIONS invalid_period = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.