A blank screen appears when trying to access certain tables and listsDescription<!-- div.margin{ padding: 10px 40px 10px 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; text-decoration: underline; } .hd3{ color: #7a7a7a; font-weight:; font-size:16 px; text-decoration:; } .hd4{ color: #000000; font-weight:bold; font-size:14 px; text-decoration:; } --> A blank screen appears when trying to access certain tables and lists Symptom When trying to access certain tables and lists, a blank screen appears. This issue can be experienced when accessing the module from the navigation pane, or typing table or list name directly in the filter text. The blank page is caused when the audit property is enabled on virtual tables. Virtual tables are those that start with ‘v_’, for example [v_field_editor]. Enabling the audit property causes the code to make incremental selections and deletions rather than deleting all, so that it captures the state of the record before and after an update. Release Any release Environment Any O/S or browser Cause When virtual tables are selected, the first action is to delete all records and rebuild them from memory. This causes an infinite loop, resulting in stack overflow and a failure to perform the action. Resolution To resolve this issue, update the virtual tables to disable the audit property, then revert all other tables to the same auditing scenario as the base system before deciding which additional tables should have the auditing function enabled. Auditing should be enabled for a specific reason and not to audit all tables. For more information, see Enable auditing for a table in the ServiceNow product documentation.