Agent workspace - Dependent field doesn't filter the results properlyDescriptionWhen the parent field has a default value, the dependent field doesn't filter the results accordingly in Agent workspace.Steps to Reproduce Dictionary Entry Override record for Incident table's 'assignment_group' <instancename>/nav_to.do?uri=sys_dictionary_override.do?sys_id=9bf97551c3a32200b6dcdfdc64d3ae64Mark 'Override default value' true and enter 'd625dccec0a8016700a222a0f7900d06'(Service Desk's sys_id) to 'default value'Go to Agent Workspace > Incidents > All and click New'Assignment group' is seen as Service DeskClick on 'Assigned to' field Actual behavior:All users can be seen regardless of groupExpected behavior:Only Service Desk users can be seenWorkaroundInstead of using a default value for parent field, create an onLoad client script to set the parent field. For the example scenario given above, use the below workaround; Go to System Definition > Client Scripts and click NewEnter the information below and Save Name: <name>Table: IncidentType: onLoadScript: function onLoad() { if (g_form.isNewRecord()){ g_form.setValue('assignment_group', 'd625dccec0a8016700a222a0f7900d06'); }} Related Problem: PRB1347354