Caller (caller_id) field does not return all user records on mobile as compared to desktop where it doesIssue <!-- div.margin{ padding: 10px 40px 40px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.internaltable { white-space:nowrap; text-align:left; border-width: 1px; border-collapse: collapse; font-size:14px; width: 85%; } table.internaltable th { border-width: 1px; padding: 5px; border-style: solid; border-color: rgb(245, 245, 245); background-color: rgb(245, 245, 245); } table.internaltable td { border-width: 1px; padding: 5px; border-style: solid; border-color: #E0E0E0; color: #000000; } .title { color: #D1232B; font-weight:normal; font-size:28px; } h1{ color: #D1232B; font-weight:normal; font-size:21px; margin-bottom:-5px } h2{ color: #646464; font-weight:bold; font-size:18px; } h3{ color: #000000; font-weight:BOLD; font-size:16px; text-decoration:underline; } h4{ color: #646464; font-weight:BOLD; font-size:15px; text-decoration:; } h5{ color: #000000; font-weight:BOLD; font-size:13px; text-decoration:; } h6{ color: #000000; font-weight:BOLD; font-size:14px; text-decoration:; } ul{ list-style: disc outside none; margin-left: 0; } li { padding-left: 1em; } --> Symptoms On mobile, when the Caller (caller_id) field lookup button is used it does not return all user records on sys_user as compared to desktop version where it does return all sys_user records. Release All releases Environment This issue is application only for mobile web and mobile app Cause Working as designed due to the caller_id field being dependent upon the company field. For example, if the company of an incident record is "XYZ" and there are 20 users whose company is set to it then caller_id would only return 20 records (instead of all records in sys_user) because of the dependency. Resolution If the expected behavior is not desirable the dependency to the company field on caller_id can be removed so that caller_id would return all records from sys_user instead. Additional Information The reason why on desktop version it returns all user records for caller_id even if the company dependency is in place is due to company field not being added to the form. When this is the case it ignores the dependency and thus all user records are returned. PRB601488 is currently opened to address this behavior.