PCLPHVE1 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 PCLPHVE1 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.
Title: Housing Policy Act (LPH) calculation routines
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
HRVE_GET_PAYROLL_FREQUENCY CALL FUNCTION 'HRVE_GET_PAYROLL_FREQUENCY' EXPORTING BEGIN = P_LPH_INPUT-PVEHP_BEGIN END = P_LPH_INPUT-PVEHP_END ABKRS = P_LPH_INPUT-PVEHP_ABKRS IMPORTING PAYROLL_FREQ = P_PAY_FREQ EXCEPTIONS NOT_FOUND = 1 OTHERS = 2.
HRVE_RETRIEVE_T511K_BY_MOLGA CALL FUNCTION 'HRVE_RETRIEVE_T511K_BY_MOLGA' EXPORTING P_MOLGA = PVE00_MOLGA P_BEGDA = P_LPH_INPUT-PVEHP_BEGIN P_ENDDA = P_LPH_INPUT-PVEHP_END TABLES LOCAL_T511K = P_IT511K EXCEPTIONS OTHERS = 1.
HR_99S_APPCORRONDA call function 'HR_99S_APPCORRONDA' exporting p_molga = '17' p_cogrp = 'VLC' p_corr_nr = '00000001' P_val_date = P_LPH_INPUT-PVEHP_BEGIN p_act_date = P_LPH_INPUT-PVEHP_BEGIN p_simulation = 'X' importing p_aplicate = CONDITION_AP EXCEPTIONS ERROR_LOCKING = 1 OTHERS = 2.
HR_FEATURE_BACKFIELD call function 'HR_FEATURE_BACKFIELD' exporting feature = 'VETRA' struc_content = pme01 importing back = input exceptions dummy = 1 error_operation = 2 no_backvalue = 3 feature_not_generated = 4 invalid_sign_in_funid = 5 field_in_report_tab_in_pe03 = 6 others = 7.
HRVE_RETRIEVE_T511P_BY_MOLGA CALL FUNCTION 'HRVE_RETRIEVE_T511P_BY_MOLGA' EXPORTING P_MOLGA = PVE00_MOLGA P_BEGDA = P_LPH_INPUT-PVEHP_BEGIN P_ENDDA = P_LPH_INPUT-PVEHP_END TABLES LOCAL_T511P = P_IT511P EXCEPTIONS OTHERS = 1.
REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING I_BUFFER_ACTIVE = 'X' I_CALLBACK_PROGRAM = G_REPID I_STRUCTURE_NAME = 'WA_ALV' IS_LAYOUT = G_LAYOUT IT_FIELDCAT = FIELDCAT IT_EVENTS = IT_EVENTS TABLES T_OUTTAB = IT_ALV EXCEPTIONS PROGRAM_ERROR = 1 OTHERS = 2.
HRVE_SALARY_CONVERSION call function 'HRVE_SALARY_CONVERSION' EXPORTING amount = p_lph_max salary_from = 'M' salary_to = p_frequency IMPORTING amount_conv = p_lph_max EXCEPTIONS invalid_parameters = 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.