Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Version 

HTML
<style> 
.version {
	height: 25px;
    width: 200px;
    border-radius: 5px;
    border: 1px solid #ddd;
}
</style>
<select class="version" id="version" onchange="showContent()">
	<option value="6.0.1" selected>6.0.1</option>
    <option value="6.0.0">6.0.0</option>
</select>
<script> 
function showContent() {
	var dropdown = document.getElementById("version"); 
	var tabs = document.getElementsByClassName("rwui_tab_content");
	for (var i = 0; i < tabs.length; i++) {
		if (tabs[i].getAttribute("data-name") == dropdown.value) {
			tabs[i].style.display = "";
		}
		else {
			tabs[i].style.display = "none";
		}
	}
}
</script>



UI Tab
title6.0.1

Release Date:

TBD

April 28, 2021

(info) NOTEServiceInsight 6.0.1 does not require the 6.0.0 version in your ServiceNow instance, only the Perspectium Core Helium update set.

Bug Fixes

The ServiceInsight portal url property no longer points to the incorrect Perspectium Portal url. 

Show If
special@authenticated

Jira
serverJIRA
columnskey,summary,type,created,updated,due,assignee,reporter,priority,status,resolution
serverIde15725ca-3b2b-32f6-914c-89477a90901d
keyDEV-18641





UI Tab
title6.0.0

Release Date: March 25, 2021

New Features

With ServiceInsight installed, you will be able to gain access to Tableau dashboards displaying KPIs for ITSM, HR, CSM, and ITOM/ITAM
Easily create Group Shares and download Tableau dashboards from your ServiceNow instance with ServiceInsight
Once ServiceInsight setup is complete, you will have Group Shares that will run automatically based on the share schedule selected and populate the tables necessary for the dashboards
View your previously created ServiceInsight entries for easy access to your Group Shares and corresponding Tableau dashboards





HTML
<script>
	var tabs = document.getElementsByClassName("rwui_tab_content");
	for (var i = 0; i < tabs.length; i++) {
		if (tabs[i].getAttribute("data-name") == "6.0.1") {
			tabs[i].style.display = "";
		}
		else {
			tabs[i].style.display = "none";
		}
	}
</script>