PCCLSVE2 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 PCCLSVE2 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!
CU_READ_RGDIR CALL FUNCTION 'CU_READ_RGDIR' EXPORTING PERSNR = P_PERNR_PERNR TABLES IN_RGDIR = RGDIR EXCEPTIONS NO_RECORD_FOUND = 1 OTHERS = 2.
CD_SELECT_VOID CALL FUNCTION 'CD_SELECT_VOID' EXPORTING VOID_INDICATOR = SPACE TABLES IN_RGDIR = RGDIR OUT_RGDIR = RGDIR_WITHOUT_VOID EXCEPTIONS OTHERS = 1.
CD_SELECT_DATE_RANGE CALL FUNCTION 'CD_SELECT_DATE_RANGE' EXPORTING FPPER_BEGDA = P_D_FROM FPPER_ENDDA = P_D_UNTIL TABLES IN_RGDIR = RGDIR_WITHOUT_VOID OUT_RGDIR = RGDIR_SELECTED_DATES EXCEPTIONS OTHERS = 1.
CD_SELECT_SRTZA CALL FUNCTION 'CD_SELECT_SRTZA' EXPORTING RECORD_TYPE = C_ACTUAL_RECORD TABLES IN_RGDIR = RGDIR_SELECTED_DATES OUT_RGDIR = NEW_RGDIR EXCEPTIONS OTHERS = 1.
HR_CONVERT_CURRENCY_RESULT call function 'HR_CONVERT_CURRENCY_RESULT' exporting country_grouping = '17' conversion_date = p_currency_rate_date foreign_currency = versc-waers local_currency = p_target_curr * PERNR = * SEQNR = TABLES RESULT_TABLE = rt CUMULATED_RESULT_TABLE = crt * SUBSEQUENT_TIME_TICKET_TABLE = * ARREARS_TABLE = * DEDUCTION_TABLE = * AVERAGE_TABLE = * CHANGING * P_BUFFER_T512W = EXCEPTIONS INVALID_WAGETYPE = 1 ERROR_CONVERSION = 2 OTHERS = 3 .
HR_CONVERT_CURRENCY_RESULT call function 'HR_CONVERT_CURRENCY_RESULT' exporting country_grouping = '17' conversion_date = p_currency_rate_date foreign_currency = versc-waers local_currency = p_target_curr * PERNR = * SEQNR = TABLES RESULT_TABLE = rt CUMULATED_RESULT_TABLE = crt * SUBSEQUENT_TIME_TICKET_TABLE = * ARREARS_TABLE = * DEDUCTION_TABLE = * AVERAGE_TABLE = * CHANGING * P_BUFFER_T512W = EXCEPTIONS INVALID_WAGETYPE = 1 ERROR_CONVERSION = 2 OTHERS = 3 .
HRVE_CONVERT_CURR_NAT_PAY_TABS call function 'HRVE_CONVERT_CURR_NAT_PAY_TABS' exporting iv_target_currency = p_target_curr iv_currency_rate_date = p_currency_rate_date CHANGING CT_SI_EVAL = si_eval[] CT_TAX = tax[] CT_TAX_EVAL = TAX_EVAL[] CT_SEN_EVAL = SEN_EVAL[] CT_PS_EVAL = PS_EVAL[] CT_INC_EVAL = INC_EVAL[] CT_LPH_EVAL = LPH_EVAL[] CT_INT_EVAL = INT_EVAL[] CT_ABS_EVAL = ABS_EVAL[] EXCEPTIONS ERROR = 1 OTHERS = 2 .
HR_CONVERT_CURRENCY_RESULT call function 'HR_CONVERT_CURRENCY_RESULT' exporting country_grouping = '17' conversion_date = p_currency_rate_date foreign_currency = versc-waers local_currency = p_target_curr * PERNR = * SEQNR = TABLES RESULT_TABLE = rt CUMULATED_RESULT_TABLE = crt * SUBSEQUENT_TIME_TICKET_TABLE = * ARREARS_TABLE = * DEDUCTION_TABLE = * AVERAGE_TABLE = * CHANGING * P_BUFFER_T512W = EXCEPTIONS INVALID_WAGETYPE = 1 ERROR_CONVERSION = 2 OTHERS = 3 .
HRVE_CONVERT_CURR_NAT_PAY_TABS call function 'HRVE_CONVERT_CURR_NAT_PAY_TABS' exporting iv_target_currency = p_target_curr iv_currency_rate_date = p_currency_rate_date CHANGING CT_SI_EVAL = si_eval[] CT_TAX = tax[] CT_TAX_EVAL = TAX_EVAL[] CT_SEN_EVAL = SEN_EVAL[] CT_PS_EVAL = PS_EVAL[] CT_INC_EVAL = INC_EVAL[] CT_LPH_EVAL = LPH_EVAL[] CT_INT_EVAL = INT_EVAL[] CT_ABS_EVAL = ABS_EVAL[] EXCEPTIONS ERROR = 1 OTHERS = 2 .
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 .
CU_READ_RGDIR CALL FUNCTION 'CU_READ_RGDIR' EXPORTING PERSNR = P_PERNR_PERNR TABLES IN_RGDIR = RGDIR EXCEPTIONS NO_RECORD_FOUND = 1 OTHERS = 2.
CD_SELECT_VOID CALL FUNCTION 'CD_SELECT_VOID' EXPORTING VOID_INDICATOR = SPACE TABLES IN_RGDIR = RGDIR OUT_RGDIR = RGDIR_WITHOUT_VOID EXCEPTIONS OTHERS = 1.
CD_SELECT_DATE_RANGE CALL FUNCTION 'CD_SELECT_DATE_RANGE' EXPORTING FPPER_BEGDA = P_D_FROM FPPER_ENDDA = P_D_UNTIL TABLES IN_RGDIR = RGDIR_WITHOUT_VOID OUT_RGDIR = RGDIR_SELECTED_DATES EXCEPTIONS OTHERS = 1.
CD_SELECT_SRTZA CALL FUNCTION 'CD_SELECT_SRTZA' EXPORTING RECORD_TYPE = C_ACTUAL_RECORD TABLES IN_RGDIR = RGDIR_SELECTED_DATES OUT_RGDIR = NEW_RGDIR 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.