Versions Compared

Key

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


HTML
<style>
.release-box {
	height: 30px; 
	width: 100px; 
	padding-top: 8px;
	text-align: center; 
	border-radius: 5px; 
	font-weight: bold; 
	background-color: #8efeb3;  
	border-color: #FCE28A;
}

.release-box:hover {
  	cursor: hand;
    cursor: pointer;
    opacity: .9; 
}
</style>
<meta name="robots" content="noindex">

<div class="release-box">
<a href="https://docs.perspectium.com/display/krypton" style="text-decoration: none; color: #FFFFFF; display: block;">
Krypton
</a>
</div>





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="8.0.0">8.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>



Perspectium DataSync Express runs several scheduled jobs in the background of your instance. To view the scheduled jobs associated with DataSync Express in your ServiceNow instance, navigate to Perspectium DataSync ExpressControl and ConfigurationAll Scheduled Jobs

Anchor
all+scheduled+jobs
all+scheduled+jobs

However, if Perspectium scheduled jobs start to affect your instance's performance, you may want to stop your Perspectium scheduled jobs and then start them again. 



UI Tab
title8.0.0

Stopping and starting your Perspectium scheduled jobs


To stop your Perspectium scheduled jobs, navigate to the Start/Stop All Jobs module under Perspectium DataSync Express > Control and Configuration. Read through what will be done and what will not be done on the under the Stop All Jobs section. Click Stop All Jobs under this section to stop all of your Perspectium scheduled jobs.

(info) NOTE: The Stop All Jobs action will be unavailable when all Perspectium scheduled jobs are already inactive.


To start your Perspectium scheduled jobs, navigate to the Start/Stop All Jobs module under Perspectium DataSync Express > Control and Configuration. Read through what will be done and what will not be done on the under the Start All Jobs section. Click Start All Jobs under this section to start all of your Perspectium scheduled jobs.

(info) NOTE: The Start All Jobs action will be unavailable when all Perspectium scheduled jobs are already active.


If all Perspectium scheduled jobs are not in the same state (i.e. some are active while some are inactive), both Start All Jobs and Stop All Jobs will be available and a message will display up top to provide context on why both options are available:



UI Tab
title5.0.0

Stopping and starting your Perspectium scheduled jobs


To stop your Perspectium scheduled jobs, click the Stop All Jobs module under Perspectium DataSync Express > Control and Configuration. Read through what will be done and what will not be done on the resulting page, and then click Confirm to stop all of your Perspectium scheduled jobs.

To start your Perspectium scheduled jobs, click the Start All Jobs module under Perspectium DataSync Express Control and Configuration. Read through what will be done and what will not be done on the resulting page, and then click Confirm to start all of your Perspectium scheduled jobs.



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