You can add a Transfer In Date field to custom forms to comply with Transfer of Undertakings (TUPE) regulations in the United Kingdom and Ireland. TUPE applies to employees when a new employer takes over their current employer’s business under a legal merger or transfer. The Transfer In Date field saves the date that the employee transferred to the new organization so that you can track employees who are covered by TUPE legislation.
The following sample demonstrates the addition of a Transfer In Date field:
Copy
<WF_DynamicForm>
<DataClass>Employee</DataClass>
<FormHeader>
<Style>header</Style>
<Title>Form</Title>
</FormHeader>
<FormBody>
<Label>
<Style>IVLabel</Style>
<Caption>lblTransferInDate</Caption>
<Row>2</Row>
<Column>0</Column>
</Label>
<Field>
<Style>IVDatePicker</Style>
<Row>3</Row>
<Column>0</Column>
<BindingProperty>TransferInDate</BindingProperty>
<Visible>true</Visible>
<FieldId>TransferInDate</FieldId>
</Field>