AristoTelos Academy

External Export Job for Export Payroll Time Rules

External Export Job for Export Payroll Time Rules

Use Case

PayrollParameters.SkipLastDaysInMonth and PayrollParameters.OvertimeExportDay fields control which time period is included in the payroll export.

Exclude last days of month from payroll export

Useful when payroll exports should ignore the last days of the month during payroll closing.

{
"PayrollParameters": {
"SkipLastDaysInMonth": 3
}
}

Set overtime export cutoff day

Useful when overtime calculations use a custom payroll cutoff date instead of the calendar month.

{
"PayrollParameters": {
"OvertimeExportDay": 26
}
}

Combine payroll cutoff day with excluded end-of-month days

Useful when payroll exports follow custom payroll periods

{
"PayrollParameters": {
"OvertimeExportDay": 26,
"SkipLastDaysInMonth": 3
}
}

Was this helpful?