You can create a custom form that saves the date that an employee last worked. An employee’s last date worked is their last active status date or terminated date. This field can help you track an employee’s last day for internal reporting purposes.
Note: The Last Date Worked field doesn't affect payroll.
The following sample demonstrates the addition of a Last Date Worked field:
Copy
<WF_DynamicForm>
<DataClass>Employee</DataClass>
<FormHeader>
<Style>header</Style>
<Title>Form</Title>
</FormHeader>
<FormBody>
<Label>
<Style>IVLabel</Style>
<Caption>lblLastDateWorked</Caption>
<Row>2</Row>
<Column>0</Column>
</Label>
<Field>
<Style>IVDatePicker</Style>
<Row>3</Row>
<Column>0</Column>
<BindingProperty>LastDateWorked</BindingProperty>
<Visible>true</Visible>
<FieldId>LastDateWorked</FieldId>
</Field>