How to prevent already selected user from displaying for a list type fieldSummaryThis article guides on preventing already selected user from displaying for a list type field. For example, On a list type field that already has a user selected from the list. Even though the user has already been added, when searching the same user appears in the list. InstructionsLogin to the instance.Navigate to the field from the sys_dictionary table.Open the field which is of type "List".Click on Advanced ViewSelect " User Reference Qualifier" as Advanced.In the reference qual section, give the below script and save: javascript:var str = ''; var wl = current.watch_list.toString().split(',');for(var i = 0; i < wl.length; i++) {str += 'sys_id!=' + wl[i] + '^';}str;