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