ISSUE: Vacation Pay is not calculating when running Pay
Common Issues:
- No CURRENT record under Accumulator Schedule > Employee Group, for VACPAY
- Subject Entity Maintenance record missing VACPAY
Troubleshooting Steps:
- Use PayRunLog File to view the ACCUMULATOR section
- Check if the system recognizes any ‘GrossAmount’
- If No - refer to Common Issue #2 above
- Verify the system recognizes a ‘VacPayPercentage’
- If No - refer to Common Issue #1 above
- Check if the system recognizes any ‘GrossAmount’
Applicable Scripts:
select * from EC_ACCUMULATION_SCHEDULE
where EMP_GROUP_CODE in ('XXXXX', 'YYYYY', 'ZZZZZ')
- This allows you to see Accumulation entry setup for the Employee groups in question
select * from EC_SUBJECT_ENTITY
where EMP_GROUP_CODE in ('XXXXX', 'YYYYY', 'ZZZZZ')
- This allows you to see applicable subject entity maintenance for Employee Groups in question
select top 100 * from EC_BOARD_AUDIT
where TABLE_NAME = 'EC_SUBJECT_ENTITY'
order by ID desc
- This allows you to check changes made in order to cross reference for other areas to be fixed once the issue has been identified