Multiple Assignments and Absence Setup
Follow these steps for the setup that is required for the correct calculation and reporting of absences if you use multiple assignments, each of which may or may not have the same absence payment factor associated with it.
The formula changes described will ensure that the payment factor specific to each assignment is used to determine the contribution base and tier for each assignment. For example, if the member has 2 assignments, and assignment 1 is still paid at a rate of 50% and assignment 2 has dropped to zero pay, each assignment will be assessed according to its own factor.
Prerequisites
This restriction applies whether the employee has one or multiple assignments. When multiple assignments exist, each assignment can have its own occupational plan, or multiple assignments can share the same occupational plan.
Before making the changes described below, make a copy of your statutory and occupational sickness and familyrelated leave formulas and pension scheme formulas:
- Entitlement Result formulas (<Absence Element Name> Entitlement Result) for both statutory and occupational family-related and sickness absences
- MyCSP pension calculator formulas (<MyCSP Scheme Name> Calculator)
Once you’ve backed up your existing formulas, edit the absence entitlement and pension scheme formulas as shown in this document, commenting lines as described, removing any code that is shown here as strikethrough text and inserting the code that’s highlighted in the position shown in the formula. Then recompile your formula.
The formula changes are also listed in a text file attached to this document. (Note that the text file includes both the lines to remove and the lines to insert.)
Statutory and Occupational Absence Entitlement Result Formula Changes
- Search for this text:
IF IS_EXECUTABLE('ORA_HRX_GB_ABS_PEN') THEN
And replace with this:IF IS_EXECUTABLE('ORA_HRX_GB_ABS_ASG_PEN') THEN
- Search for this text:
EXECUTE('ORA_HRX_GB_ABS_PEN')
And replace with this:EXECUTE('ORA_HRX_GB_ABS_ASG_PEN')
Pension Scheme Calculator Formula
MyCSP pension scheme calculator formula changes are needed to support absences for multiple assignments if your pension scheme elements were created before release 23A. These changes are described below.
- Search for this text and comment it out:
CALL_FORMULA('ORA_HRX_GB_ABS_PEN_DTL', l_csp_app_day_count < 'l_csp_app_day_count' default 0, l_csp_non_app_day_count < 'l_csp_non_app_day_count' default 0, l_csp_unpaid_day_count < 'l_csp_unpaid_day_count' default 0, l_csp_reg_day_count < 'l_csp_reg_day_count' default 0)
- Then, add the following lines after the commented out text:
change_contexts(DIR_CARD_COMP_ID = DEDUCTION_COMPONENT_BY_EE) (z = ALL_ASGS_LINK_TO_DEDUCTION_COMPONENT.first(-1) while ALL_ASGS_LINK_TO_DEDUCTION_COMPONENT.exists(z) loop ( change_contexts(PAYROLL_ASSIGNMENT_ID = ALL_ASGS_LINK_TO_DEDUCTION_COMPONENT[z]) ( CALL_FORMULA('ORA_HRX_GB_CSP_ABS_ASG_PEN_DTL', l_csp_app_day_count < 'l_csp_app_day_count' default 0, l_csp_non_app_day_count < 'l_csp_non_app_day_count' default 0, l_csp_unpaid_day_count < 'l_csp_unpaid_day_count' default 0, l_csp_reg_day_count < 'l_csp_reg_day_count' default 0) ) z = ALL_ASGS_LINK_TO_DEDUCTION_COMPONENT.next(z, -1) ) )