In ServiceNow, lists of records from a table are accessed using the .list suffix in theFilter Navigator. The correct format is: <table_name>.list To view all records from the sys_user table, the correct navigation path issys_user.list. Explanation of Incorrect Options: sys_user.view# Invalid, .view is not a valid ServiceNow navigation path. sys_user.display# Not a standard navigation path in ServiceNow. sys_user.do# .do is used forindividual record forms, not lists. Reference: ServiceNow Docs - Navigation and Lists