Form Builder

Dayforce Release Notes version 2025.1.0, Patch 1

Version
R2025.1.0 Patch 1

GL-14331

Updated Workflow Administration > Form Builder to enable you to create a custom XML 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 prepopulates the employee's current monthly hours.

The following sample demonstrates the addition of a Monthly Hours field to a custom form:

<!-- 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>