A user is not being shown the expected view of a form.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; } --> A user is not being shown the expected view for a particular form. <!-- 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{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:0; } .sp td{ border-bottom: 1px solid; border-right: 1px solid; border-color:#E0E0E0; background-color: #ffffff; height: 20px; padding-top: .5em; padding-bottom: .5em; padding-left: .5em; padding-right: .5em; } .sphr td{ border-right: 1px solid; border-bottom: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .5em; padding-bottom: .5em; padding-left: .5em; padding-right: .5em; height: 20px; } .title { color: #D1232B; font-weight:; font-size:25px; } .hd1{ color: #D1232B; font-weight:; font-size:18px; } .hd2{ color: #646464; font-weight:bold; font-size:16px; } .hd3{ color: #7a7a7a; font-weight:; font-size:16 px; text-decoration:; } .hd4{ color: #000000; font-weight:bold; font-size:14 px; text-decoration:; } --> CauseThere are a number of reasons the desired view may not be shown to a user. These include: A view rule which is forcing a different view.A business rule which is forcing a different view.A user preference is setup for a different view.ResolutionThe easiest way to know if a different view is being used is to right click the record and go to the View menu and see which view is selected. However, some users do not have access to that functionality. In that case open the target record in it's own tab without the rest of the navigation pane which will allow you to see the URL for the record and see what the view is. You can do this as follows: Display a list of records from the table that you want to check (such as incident).Open one of the records in a new browser tab using a mechanism such as holding down the windows key and clicking the record ID in the list, or right clicking and choosing Open in a new window.You will then see the full URL of the record in the tab such as:https://myinstance.service-now.com/incident.do?sys_id=3ed3e2172b8631006c59ae6219da1585&sysparm_record_target=incident&sysparm_record_row=1&sysparm_record_rows=63&sysparm_record_list=active%3Dtrue%5EORDERBYDESCnumber.Check the URL and locate sysparm_view. If no view is specified then the default view should be used but if you see a different view being used then this could explain why your field is not being displayed.If a different view is being used you should check the following: Go to System UI > View Rules and check for any view rules for your table which might apply.Search business rules to see if any that are defined could impact view. These will have the text <tablename>GetViewName referenced in the script field where <tablename> would be replaced with the actual table name. For example, if it is the incident table that would be incidentGetViewName.Check if the affected user(s) have system preferences with defined view that is different than expected. User preferences will have the name <tablename>.view where <tablename> is replaced with the actual table name such as incident.view.