You can create a custom form that includes an employee's average monthly hours. There are two different applications of this field, depending on the type of custom form that you create:
- For forms such as New Hire for new employees with no history in Dayforce, a blank text field is added to the form to enter monthly hours.
- For forms such as Compensation Change for existing employees, an editable text field is added to the form that populates the employee's current monthly hours.
For more information about monthly hours calculations in Dayforce, see List of Employment Status Settings in the HR Administration Guide.
The following sample demonstrates the addition of a Monthly Hours field:
Copy
<!-- Monthly Hours -->
<Label>
<Style>IVLabel</Style>
<Caption>lblMonthlyHours</Caption>
<MarkAsRequired>false</MarkAsRequired>
<Row>11</Row>
<Column>3</Column>
<AuthorizationKey>HRMS_HOURS_FORMS</AuthorizationKey>
<ForFieldId>TextMonthlyHours</ForFieldId>
</Label>
<Field>
<FieldId>TextMonthlyHours</FieldId>
<Style>IVTextBoxRight</Style>
<Row>12</Row>
<Column>3</Column>
<AuthorizationKey>HRMS_HOURS_FORMS</AuthorizationKey>
<IsRequired>false</IsRequired>
<BindingProperty>List_EmployeeEmploymentStatus.MonthlyHours</BindingProperty>
</Field>