Add Employee Property Fields

Dayforce Implementation Guide

Version
R2025.1.1
Add Employee Property Fields

You can add employee properties as fields in custom Candidate Hire forms, which allows you to gather additional information for the candidate when the form is submitted in Recruiting.

Before You Begin: Employee properties are configured in the HR Admin > Employee Properties feature. See Employee Property Setup.

To add an employee property to a custom Candidate Hire form:

  1. Go to Workflow Administration > Form Builder and select an existing custom Candidate Hire form, or create one. See Create Custom Candidate Hire Forms.
  2. In the XML tab, add the following code before the <FormBody> tag to define the UsedClass for employee properties:
  3. <!-- Used Class for Employee Property -->

    <UsedClass>

    <Name>List_EmployeeProperty</Name>

    <AddNewInstanceIfEmpty>true</AddNewInstanceIfEmpty>

    </UsedClass>

  4. Add the XML code for the employee property and style the field as needed. See “Setting Up Form Elements” in the XML Forms Guide.
  5. The following example shows the code you might add to display the Category employee property as a drop-down list in the form:
  6. <Label>

  7. <Style>IVLabel</Style>

  8. <Caption>Category</Caption>

  9. <MarkAsRequired>true</MarkAsRequired>

  10. <Row>60</Row>

  11. <Column>0</Column>

  12. <ColumnSpan>2</ColumnSpan>

  13. </Label>

  14. <EmployeeProperty>

  15. <Style>IVComboBox</Style>

  16. <Row>61</Row>

  17. <Column>0</Column>

  18. <PropertyXRefCode>EmployeePropertyXrefCode8</PropertyXRefCode>

  19. <Visible>true</Visible>

  20. <IsRequired>true</IsRequired>

  21. <DisplayName>Category</DisplayName>

  22. </EmployeeProperty>

  23. Note: The PropertyXRefCode that you enter should be the same as the reference code of the property in HR Admin > Employee Properties.
  24. The following form styles are available for employee properties with each data type:
  25. Available form styles for employee properties with each data type
    Employee Properties Data Type Form Style
    String IVTextBox
    Pick List IVComboBox
    Date IVDatePicker
    Numeric IVTextBox
    Time IVTimeTextBox
    Boolean IVCheckBox
  26. Click Save. Dayforce adds the employee property and shows it when you open the form for candidates in Recruiting. Continuing the configuration example above, the Category field is displayed in the Candidate Hire form as follows:
  27. Category field appearing as a drop-down list on the form.

When the form is processed, Dayforce shows any added employee properties in the employee’s record in People, in the Employment > Employee Properties screen. These properties are listed with the form Hire Date value as their Effective From date.