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>



Prerequisites


(warning) First, you will need to install the Perspectium DataSync Express application.

(warning) For domain-separated instances, you must be in the global domain to install the application. 


Procedure

To set the initial configurations after installing the DataSync Express app into your instance, follow these steps:



UI Tab
title8.0.0


UI Steps


UI Step

Switch to the Perspectium DataSync Express Application Scope

The DataSync Express app requires your ServiceNow instance to be in its scope during registration. Navigate to Image Removedon the top-right corner of your instance.

Image Removed

Then, on the Developer tab, select Perspectium DataSync Express as the Application.

 

Image Added


(info) NOTE: This action is only required for users with the admin role since admin users have the ability to choose different application scopes (non-admin users will automatically be in the DataSync Express scope).

Image Removed


UI Step

Navigate to the Perspectium DataSync Express application

In the Filter Navigator of the ​Application Navigator​, type in “perspectium” to find the Perspectium DataSync Express application:


UI Step

Navigate to the Setup module and

start

complete Setup

Navigate to Perspectium DataSync Express > Setup to access the Welcome Setup page. Then, read through and start complete the setup for DataSync Express by clicking Start Setup Confirm at the bottom of the page.Image Removed

Image Added



UI Step

Register your Perspectium account

On the DataSync Express Registration & Setup page, type your first and last name, company name, and email in the appropriate fields. Then, create a password. Your password must be 8+ characters, including at least one uppercase letter, one lowercase letter, and one special character with no whitespace. 

(info) NOTE: This password will be used to connect to both the Perspectium Integration Mesh and the Perspectium Cloud database.

Image Removed

UI Step

Consent to submit your information and click Finish Setup

Finally accept the terms for submitting the form and click Finish Setup at the bottom of the form to submit your information to the Perspectium Integration Mesh and setup your account.

Image Removed

UI Step

Receive information to connect to your database

The setup will take a few minutes and you will be emailed with your database URL after successful registration. While the setup is taking place, you can start using the DataSync Express app to start sharing data from your ServiceNow instance.

To learn how to share data from your ServiceNow instance, see creating a bulk share and scheduled bulk share.

UI Step

View your data on a database viewer or reporting tool

Access and view the Perspectium Cloud database by clicking on the URL provided in the email or use a database viewer or reporting tool (such as Tableau) of your choice. You can then connect to this database to view data and run your own reports using your reporting tools. 

(info) NOTEYou must use the password you created during DataSync Express registration to connect to both the Perspectium Integration Mesh and the Perspectium Cloud database

HTML

Complete Setup

The action will take a few seconds to complete. You will be notified on screen with a success message once the setup has been complete.

Once the setup has complete, the Setup module will be made inactive and the other modules of the Perspectium DataSync Express application will be enabled so you can start using the application.

Next, setup your application properties to start using the application.

<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>