Field lookup button (magnifying glass icon) does not work for a particular user on a formIssue When a particular user opens a form with one or more fields that have a lookup button, the button does nothing when they click on it.ReleaseAnyCauseA custom UI Policy on the form contained a script that referenced form sections: sections[2].style.display = 'none'; This was causing this error in the browser console:Uncaught TypeError: Cannot read properties of undefined (reading 'style')at onCondition_a405638d1bf61010867c4112fa4bcb67_true ({form-table}.do?sys_id={record-sys_id}&sysparm_view={view-name}&sysparm_record_target={form-table} etc. (redacted)This error was 'corrupting' the form and preventing some form functions from working properly. In this case, script fails in the selected view because there is no section with index number 2 in the view. This only occurred for a particular user because the user had a User Preference set for a that view on that form. [form_name].view Sample search URL to return all users who have a saved User Preference for any view on a particular form: https://{instance}.service-now.com/sys_user_preference_list.do?sysparm_query=name%3D{table-name}.view%5EvalueISNOTEMPTY&sysparm_view= (Replace URL text in curly braces as indicated.)ResolutionDo not reference form sections or other form elements in a UI Policy or Client Script unless you are certain it will work with all views on the form.