cancel
Showing results for 
Search instead for 
Did you mean: 

Tax modifier effective a particular date: UMOD

Former Member
0 Kudos

We need to change a tax modifier for a certain group of employees effective a date. The payroll should default to the old configuration (Tax modifier) for retroactive pay periods prior to a given date and use the new tax modifier for payments made after a specified date.

Issue: If we use the CMPER to compare the payroll periods, the offcycle payrolls are not detected. We need a way to detect paydate of a payroll so that we can compare against the cutoff date and enable the new rule effective that date.Using the constant table also does not work since it compares the payroll run date of the payroll.

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member235056
Active Contributor
0 Kudos

Hi Shubhadeep,

Please set up a constant say ZMOD which indicates number of days from start of year which will tell you after how many days the new modifier would be required.

Once you have that constant you can use below rule oprataion to derive the same logic to arrive at day from start of year from which new modifier would impact.

NUM=F01T

NUM-F01TA

NUM?KZMOD

>

SCOND=T IF

*

SCOND=F IF

Write above rule in IF condition and process you new rule under this if rule.

Logic can be decided based on pay type for different payroll types.

The above rule gives number of days till pay period end date.

Thanks,

Ameet