The lookup for Locations on the Asset form doesn't contain the added field on sys_ref_list view.Issue <!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } span { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } h2 { font-size: 24pt; font-family: Lato; color: var(--now-color--text-primary, black); } h3 { font-size: 18pt; font-family: Lato; color: var(--now-color--text-primary, black); } h4 { font-size: 14pt; font-family: Lato; color: var(--now-color--text-primary, black); } a { font-size: 12pt; font-family: Lato; color: var(--now-color--link-primary, #00718F); } a:hover { font-size: 12pt; color: var(--now-color--link-primary, #024F69); } a:target { font-size: 12pt; color: var(--now-color--link-primary, #032D42); } a:visited { font-size: 12pt; color: var(--now-color--link-primary, #00718f); } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } We are looking to add additional information to the sys_ref_list for cmn_locations to the Locations Lookup Hierarchy, such as the Account on the Asset form.When in the Asset form and looking up locations, we are presented with a Locations Hierarchy.We have added the "Account" field to the sys_ref_list view. But this is not appearing in the Locations Hierarchy.Release<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } span { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } h2 { font-size: 24pt; font-family: Lato; color: var(--now-color--text-primary, black); } h3 { font-size: 18pt; font-family: Lato; color: var(--now-color--text-primary, black); } h4 { font-size: 14pt; font-family: Lato; color: var(--now-color--text-primary, black); } a { font-size: 12pt; font-family: Lato; color: var(--now-color--link-primary, #00718F); } a:hover { font-size: 12pt; color: var(--now-color--link-primary, #024F69); } a:target { font-size: 12pt; color: var(--now-color--link-primary, #032D42); } a:visited { font-size: 12pt; color: var(--now-color--link-primary, #00718f); } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } AllResolution<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } span { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } h2 { font-size: 24pt; font-family: Lato; color: var(--now-color--text-primary, black); } h3 { font-size: 18pt; font-family: Lato; color: var(--now-color--text-primary, black); } h4 { font-size: 14pt; font-family: Lato; color: var(--now-color--text-primary, black); } a { font-size: 12pt; font-family: Lato; color: var(--now-color--link-primary, #00718F); } a:hover { font-size: 12pt; color: var(--now-color--link-primary, #024F69); } a:target { font-size: 12pt; color: var(--now-color--link-primary, #032D42); } a:visited { font-size: 12pt; color: var(--now-color--link-primary, #00718f); } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } 1. The location field on alm_asset is a reference field with tree_picker= true. https://<instance>.service-now.com/now/nav/ui/classic/params/target/sys_dictionary.do%3Fsysparm_query%3Dname%253dalm_asset%255eelement%253dlocation%26sysparm_query_encoded%3Dname%253dalm_asset%255eelement%253dlocation%26sysparm_referring_url%3Dalm_asset.do%253fsys_id%253d4a2252111be66050506ba8217e4bcb8a%254099%2540sysparm_record_rows%253d4873%254099%2540sysparm_record_target%253dalm_asset%254099%2540sysparm_record_list%253dORDERBYaccount%254099%2540sysparm_record_row%253d1%26sysparm_view%3Dadvanced%26sysparm_view_forced%3Dtrue 2. This means that reference lookup is rendered in the tree picker format and by default the name field on cmn_location is used for display. Below is the documentation on the Tree picker. https://www.servicenow.com/docs/bundle/yokohama-platform-administration/page/administer/field-administration/concept/c_TreePickerLookup.html 3. When the tree_picker is set to true, the sys_ref_list view is not honored. 4. In case you want to use the sys_ref_list view, then we need to remove the "tree_picker= true" attribute from the above dictionary record. Once removed, on clicking the Location lookup field, the location hierarchy is not displayed, instead, the sys_ref_list ( which has the account field) view is displayed.