The Recruiter field of the system Job Requisition form is empty by default. Dayforce recruiters need to select their name from its drop-down list, or the name of another recruiter. However, you can customize this field so that it’s prefilled with the name of the recruiter who is logged in. This person must be an active recruiter, as configured in Recruiting Setup > Recruiters. To make this customization, you must use a custom form.
To update the Recruiter field for new or existing custom Job Requisition forms, you need to update the XML code in the XML tab of Workflow Administration > Form Builder. Add the following XML property in the <RecruiterPicker> section if it's not already there and set it to True:
<SetCurrentlyLoggedInUserAsRecruiter>True</SetCurrentlyLoggedInUserAsRecruiter>
<InitialValue>function:currentuserifrecruiter</InitialValue>
This new property is set to False by default to preserve current functionality.
The following is an example of the XML code when configured to prefill the name of the current user in the Recruiter field:
<RecruiterPicker>
<Style>IVAutoCompleteBox</Style>
<Row>7</Row>
<Column>2</Column>
<ItemForeground>Black</ItemForeground>
<Limit>10</Limit>
<CacheServerAnswers>True</CacheServerAnswers>
<SearchFilter>Contains</SearchFilter>
<BindingProperty>List_JobReq.RecruiterId</BindingProperty>
<IsReadOnly>false</IsReadOnly>
<Caption>lblRecruiter</Caption>
<SetCurrentlyLoggedInUserAsRecruiter>False</SetCurrentlyLoggedInUserAsRecruiter>
<InitialValue>function:currentuserifrecruiter</InitialValue>
</RecruiterPicker>