882 questions
Hello Khalil,
To achieve that, you should update the RCDC for user creation. You have the full documentation here: https://learn.microsoft.com/en-us/microsoft-identity-manager/reference/rcd-configuration-xml-reference
You should add/update the Property Required in the Control for EmployeeType
Here is an example:
<my:Control my:Name="EmployeeType" my:TypeName="UocTextBox" my:Caption="{Binding Source=schema, Path=EmployeeType.DisplayName}" my:Description="{Binding Source=schema, Path=EmployeeType.Description}">
<my:Properties>
<my:Property my:Name="Required" my:Value="True"/>
<my:Property my:Name="Columns" my:Value="34"/>
<my:Property my:Name="MaxLength" my:Value="64"/>
<my:Property my:Name="Text" my:Value="{Binding Source=object, Path=EmployeeType, Mode=TwoWay}"/>
</my:Properties>
</my:Control>
BR, Sylvain