Why is the sys_id displayed on reference Glide List field?Issue <!-- 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; } --> The <sys_id> is being displayed on Glide List reference field instead of display value as shown in below screenshot ReleaseAny release.CauseGlide List can display a sys_id of a data from referenced table due to one of the following: Reference data doesn't exist in the referenced table:For example consider a field called group on the incident table which refers sys_user_group table, and it has a value called "Test Group" with certain sys_id. When this "Test group" was deleted from the systems, incident record which refers the deleted group, will display its sys_id.Referenced data is not accessible:For example, when on the incident record, logged in user doesn't have access to the sys_user_group, system will display sys_id instead of display value of the data as it couldn't resolve the reference.When the referenced table is set with display value as "sys id":Display value of the referenced table should not be set to sys id, else system will display sys_id on the reference Glide list field.When the referenced table is set with default value, but field is set as read-only on the dictionary level:The Glide list reference field will resolve the reference at the server level to the default value, only if the field is editable on the server level, else system will not be able to resolve to the reference of the sys id set in the default value of the dictionary entry and would show sys id on the user interface. In this scenario, to work-around the issue, you can set the field as editable on the dictionary/ACL (server) level and make it as read-only at the client side ( UI policy / client script), so that reference will be resolved at the server level and then field will be set as ready-only at the client level. Below screenshot demonstrate this scenario, When the referenced table is not writable due to customization:Customer can have customization at the reference table in terms of ACL with scripts coming from script include or system properties, this can restrict accessibility to the field and can cause the sys id to be shown on the form. You need to review the custom script / properties to identify the cause of the issue.ResolutionCheck the possible caused mentioned above and take next steps accordingly.Related Linkshttps://docs.servicenow.com/csh?topicname=r_AdministerServiceNow.html&version=latest https://docs.servicenow.com/csh?topicname=c_ReferenceField.html&version=latest