Service Mapping - Changing between views within the application does not workIssue <!-- 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 When viewing a Service within the Service Mapping application, switching between form views does not work. The form appears to reload but you are still redirected to the same view. Release All Cause The Service Mapping application uses the GET parameter "sysparm_userpref.cmdb_ci_service_discovered=<view_name>" in the URL it redirects to when switching between the different views of a form. https://<instance-name>.service-now.com/incident.do?sys_id=85071a1347c12200e0ef563dbb9a71c1&sysparm_userpref.cmdb_ci_services_discovered.view=questionnaire What this does is it changes your user preference "cmdb_ci_service_discovered" to the view name specified. Then, the system will open the form and look to the user preference that's just been stored to determine which view the form should be in. However, the GET parameter is being ignored. This is due to the system property "glide.ui.remember_view" being set to false. This property controls the default behavior of being redirected to the view stored in the user preference for your profile when visiting a List or Form that you've been on before. With the property set to false, the expected behavior is for the system to redirect users to the default view defined for a form rather then the one stored in the user preference. Resolution Change the system property 'glide.ui.remember_view' to true.