Versions Compared

Key

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



App 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="5.0.2">5.0.2</option>
    <option value="5.0.0">5.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>



DataSync Express shares your ServiceNow instance’s data to a Cloud Database (MariaDB) supported by Perspectium.

To get started, you will need to install and register the DataSync Express application.

Feel free to explore the instructions linked below, or find a downloadable user guide here.


Procedure

To set up the DataSync Express configuration, follow these steps: 



UI Tab
title5.0.2


UI Steps


UI Step

DataSync Express registration


UI Step

Connect to a database




UI Tab
title5.0.0


UI Steps


UI Step

ServiceNow dependencies 


UI Step

DataSync Express registration


UI Step

Connect to a database




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