Integrating Pruvan with Northsight Management

Size: px
Start display at page:

Download "Integrating Pruvan with Northsight Management"

Transcription

1 Integrating Pruvan with Northsight Management This document is a step-by-step guide on how to integrate your Pruvan account with Northsight Management s (NSM) order system. Create an NSM Client In order for your Work Orders to be automatically downloaded from PPW to Pruvan, you need to create a Pruvan Client record for PPW. 1. Login to your Pruvan account at and click on the Clients tab. 2. Click the button. 3. You will be presented with the following dialog: 4. Enter a name for your client record, something like NSM and then select Northsight Management in the drop-down box. 5. Click the button.

2 6. You will be presented with the following dialog: 7. Enter your NSM Username and Password. 8. The Push apikey is the URL that you will need to call in order to trigger a project import. You can test the apikey by simply entering it in to a browser and then checking Pruvan for new / updated projects. 9. Click on to test your login information. If it works, you should see the message: Connected successfully! 10. If you want your photos to be automatically sent back to NSM when you publish in Pruvan set the Auto Relay Photos dropdown box to Yes. The photos will sent to your NSM account. 11. Click to save the Client record. Auto-Assignment Work orders that are imported will have the status of assigned in Pruvan as long as a valid user is passed on the assigned to item. Otherwise the project will be unassigned. Importing Orders To import your NSM orders into Pruvan click on the button. This will start the order import and launch the log viewer. You can press the F5 key to refresh the log viewer if it doesn t refresh fast enough. The apikey URL can also be used to trigger a project import. The apikey will be useful for coding an automatic import from the NSM side. When using the apikey, only incremental updates should be sent to Pruvan. When getworkorders is requested Pruvan will send a UNIX timestamp of the last request. If full refreshes are sent every time an update is made the apikey may be disabled.

3 On Refresh New orders will be processed in to the system, and current orders will be updated with any chan ges made to the mapped fields. Mobile Configuration Options You can pass options at the Work Order and Service level to configure what is available on the device. This is done by adding the element options to either level. Options should be passed as a JSON string, with all appropriate quote escapes necessary. A malformed options payload will cause that work order to fail on import without affecting any good work orders. You can read all about the Mobile Configuration Options here: Example Options payload: "options":"\"camera_icon_hidden\":true,\"complete_icon_hidden\":false,\"photo_timest amp\":\"time\",\"camera_orientation\":\"auto\",\"all_required_tasks_complete\":true,\ "allow_manual_work_order_creation\":false,\"photo_size\":\"small\",\"evidencetypes\": [\"larry\",\"moe\",\"curly\"],\"upload_pics_only_when_wo_complete\":false,\"mark_comp lete_mode\":\"off\",\"mark_complete_label\":\"push Now!\",\"auto_relay\":\"on\"}" NSM Web Services Specification validate Pruvan will POST to a URL named exactly: BASE_URL/validate.html Pruvan will send the following JSON string in the POST variable named payload "username":"bigvend","password":"d28069c d2cba15f10ffdd996ec6f5"} If the username and password are valid, you should return the following as a JSON string: "error":"","validated":true} If the username and password are invalid, you should return the following as a JSON string: "error : invalid username or password","validated":false}

4 getworkorders Pruvan will POST to a URL named exactly: BASE_URL/getWorkOrders.html Pruvan will send the following JSON string in the POST variable named payload "username":"bigvend","password":"d28069c d2cba15f10ffdd996ec6f5","timestam p":" :57:50","workOrders":null} If the username and password are valid, you should return the following JSON string of orders (dates should be in UNIX timestamp format). Here s an example of two orders: "workorders": [ "workordernumber": , "state": "TX", "country": "USA", "duedate": , "reference": "XYZ Bank", "description": "Rekey", "city": "Round Rock", "zip": "78664", "instructions":"the gate key is XXXX, rekey locks" "assignedto": "nmbobr", "address1": "110 East Main Street", "address2": "", "action": "close", "gpslatitude": , "gpslongitude": , "attribute7":"internal reference", "attribute8":null, "attribute9":null, "attribute10":null, "attribute11":null, "attribute12":null, "attribute13":null, "attribute14":null, "attribute15":null, "options":"\"auto_relay\":true}" "services": [ "servicename": "rekey", "survey": "", "instructions":"on this task, do this", "attribute1":"internal reference", "attribute2":null, "attribute3":null, "attribute4":null,

5 } "attribute5":null, "attribute6":null, "attribute7":null, "attribute8":null, "attribute9":null, "attribute10":null, "attribute11":null, "attribute12":null, "attribute13":null, "attribute14":null, "attribute15":null, "options":"\"evidence_types\":[\"front\",\"back\"]}" } ] }, "workordernumber": , "state": "GA", "country": "USA", "status": "Open", "city": "Duluth", "zip": "30096", "assignedto": "nmbobr", "address1": "2975 Breckinridge Blvd", "address2": "", "action":"open", "gpslatitude": , "gpslongitude": , "services": [ "servicename": "Grasscut", "survey": "grasscut-v2", "options":"\"required\":true}" } ] } ], "error": ""

6 uploadpictures Pruvan will POST to a URL named exactly: BASE_URL/uploadPictures.html Pruvan will send, the following JSON string in the POST variable named payload } "timestamp": , "serviceid": "14631", "workorderid": "5018", "evidencetype": "before", "filetype": "picture", "csrcertifiedphoto": "1", "csrcertifiedtime": "1", "csrcertifiedlocation": null, "csrpicturecount": null, "uuid": "A13A55E C38-AE6F-D9D5434C9A88", "parentuuid": "5018", "filename": " jpg", "gpslatitude": " ", "gpslongitude": " ", "gpstimestamp": " ", "gpsaccuracy": " ", "key2": " ", "key4": "Rekey", "username": "bigvend", "password": " d28069c d2cba15f10ffdd996ec6f5" Pruvan will send the picture file in the POST and the information about that file will be located in the $_FILES session variable. If the username and password are valid, you should return the following as a JSON string: "status":true,"error":null}

7 Data Mapping Element Table for getworkorders Work Order Level: Data Element action address1 Address line 1 address2 Address line 2 assignedto attribute7 attribute8 attribute9 attribute10 attribute11 attribute12 attribute13 attribute14 attribute15 city country description duedate gpslatitude gpslongitude instructions options reference services state workordernumber zip Pruvan Project Field / Description 2 supported values; open will create / update a project in the system, close will set the project status to closed in Pruvan (causing it to fall off of a vendors project list) Pruvan user to assign to; this name is not verified against your sub-user list City Country Description; only viewable in Pruvan Project Management tab Due Date Coordinate latitude used to calculate location certification; if blank Pruvan will use Google to lookup the coordinates of the address entered. Coordinate longitude, same as gpslatitude Project Instructions; viewable on device A JSON string for Mobile Configuration Options set at the Work Order level Reference; only viewable in Pruvan Project Management tab An object containing the Project's Tasks; at least one service is required State Project ID Zip

8 Service Level: Data Element attribute1 attribute2 attribute3 attribute4 attribute5 attribute6 attribute7 attribute8 attribute9 attribute10 attribute11 attribute12 attribute13 attribute14 attribute15 instructions options servicename survey Description Task Instructions; visible on device A JSON string for Mobile Configuration Options set at the Service level Task Name Survey template ID

9 Element Table for uploadpictures Data Element creationdate csrcertifiedlocation csrcertifiedtime csrcertifiedphoto csrpicturecount csrtimestampsource evidencetype filename filetype gpsaccuracy gpslatitude gpslongitude gpstimestamp key2 key4 notes parentuuid password serviceid timestamp username uuid workorderid Description The date and time the file was created If the filetype = "picture", then the photo location is certified if value is "1", not certified if value is "null". If filetype = "csr", then it s a count of the number of certified location photos for the CSR. If the filetype = "picture", then the photo time is certified if value is "1", not certified if value is "0". If filetype = "csr", then it s a count of the number of certified time photos for the CSR. If the filetype = "picture", then the value is 1. If filetype = "csr", then it s a count of the number of total photos for the CSR. If the value is "mobile" or "Mobile2" then the photo was taken with the Pruvan app. The evidence type to which the photo is associated. Typical values include "before", "during" and "after." These can be altered using Mobile Configuration Options. Photos taken on a survey will have the evidencetype = survey. The low-level name of the file on Pruvan s filesystem. The filetype of the file. If the filetype = "picture", then the file is a photo. If the filetype = "csr", then the file is a Certified Service Record. The radius of uncertainty for the location, measured in meters. The latitude where the photo, CSR or survey was completed. The longitude where the photo, CSR or survey was completed. The timestamp given by the GPS receiver. The project ID visible to the user. The task name visible to the user. Notes added to the photo from the device in the field. The UUID of the parent object. For photos from assigned work orders this will equal key1, for survey photos this will equal the UUID of the survey instance they were taken on. The password for this request to authenticate to an external web service. The task ID as it is stored in the Pruvan database. The current time in UNIX timestamp. The username for this request to authenticate to an external web service. The UUID of the file. The project ID as it is stored in the Pruvan database.

10 Optional Elements not implemented at this time: Data Element attribute1 attribute2 attribute3 attribute4 attribute5 attribute6 attribute7 attribute8 attribute9 attribute10 attribute11 attribute12 attribute13 attribute14 attribute15 attribute16 attribute17 attribute18 attribute19 attribute20 attribute21 attribute22 attribute23 attribute24 attribute25 attribute26 attribute27 attribute28 attribute29 attribute30 Description Reserved for address1 from the project Reserved for address2 from the project Reserved for city from the project Reserved for state from the project Reserved for zip from the project Reserved for country from the project Work Order level attribute7 Work Order level attribute8 Work Order level attribute9 Work Order level attribute10 Work Order level attribute11 Work Order level attribute12 Work Order level attribute13 Work Order level attribute14 Work Order level attribute15 Service level attribute1 Service level attribute2 Service level attribute3 Service level attribute4 Service level attribute5 Service level attribute6 Service level attribute7 Service level attribute8 Service level attribute9 Service level attribute10 Service level attribute11 Service level attribute12 Service level attribute13 Service level attribute14 Service level attribute15

Migrating from the Standard to the Enhanced PPW Driver

Migrating from the Standard to the Enhanced PPW Driver New Driver Announcement! The Property Pres Wizard (PPW) Enhanced Integration is now live in Pruvan. We recommend that you use the new driver over the original one. If you are already using the current

More information

Integrating Pruvan and Property Pres Wizard (PPW) with the Enhanced Driver

Integrating Pruvan and Property Pres Wizard (PPW) with the Enhanced Driver Integrating Pruvan and Property Pres Wizard (PPW) with the Enhanced Driver This document is a step-by-step guide on how to integrate your Pruvan account with Property Pres Wizard using the enhanced driver.

More information

External HTTPS Trigger AXIS Camera Station 5.06 and above

External HTTPS Trigger AXIS Camera Station 5.06 and above HOW TO External HTTPS Trigger AXIS Camera Station 5.06 and above Created: October 17, 2016 Last updated: November 19, 2016 Rev: 1.2 1 Please note that AXIS does not take any responsibility for how this

More information

etrac ATOM Android App Setup Guide

etrac ATOM Android App Setup Guide etrac ATOM Android App Setup Guide Version: 1.0.0 Published: 10/22/2014 Global DMS, 1555 Bustard Road, Suite 300, Lansdale, PA 19446 2014, All Rights Reserved. Table of Contents Initial Setup... 3 Settings...

More information

VisitEye Tutorial for Admins

VisitEye Tutorial for Admins VisitEye Tutorial for Admins Introduction By the end of this tutorial you will be able to: 1. Have a working account 2. Add new users manually with their respective security roles. Load locations in bulk

More information

Solution Composer. User's Guide

Solution Composer. User's Guide Solution Composer User's Guide January 2014 www.lexmark.com Contents 2 Contents Overview...4 Understanding the basics...4 System recommendations...5 Building custom solutions...6 Getting started...6 Step

More information

Extract from the ARC & RVRC Operational & Administrative Procedures

Extract from the ARC & RVRC Operational & Administrative Procedures 2.2 Configuring MASmobile 2.2.1 Configuring MASmobile settings (iphone) 2.2.2 Configuring MASmobile settings (Android) 2.2.3 Main Menu 2.2.4 Logging In 2.2.5 Managing Accounts 2.2.6 Searching for Systems

More information

Enter your Appserv username and password to sign in to the Website

Enter your Appserv username and password to sign in to the Website Appserv Desktop Access Logging on from a Windows 10 Device Step 1. To sign in to the Appserv Desktop Access website, either enter the following address into the Microsoft Edge browser address bar, or click

More information

owncloud Android App Manual

owncloud Android App Manual owncloud Android App Manual Release 2.0.0 The owncloud developers December 14, 2017 CONTENTS 1 Using the owncloud Android App 1 1.1 Getting the owncloud Android App...................................

More information

Integration tool user manual

Integration tool user manual Integration tool user manual contact@ilocksystems.com www.ilocksystems.com tel.+ (48) 61 669 06 87 technical support: support@ilocksystems.com 1 P age Table of contents I. Basic information.... 2 1. What

More information

WDC RDS Connection for Android Users

WDC RDS Connection for Android Users WDC RDS Connection for Android Users Introduction The WDC Remote Desktop Service (RDS) can be connected to most personal computer devices, including Android Smartphones and tablets, even though the RD

More information

Create CSV for Asset Import

Create CSV for Asset Import Create CSV for Asset Import Assets are tangible items, equipment, or systems that have a physical presence, such as compressors, boilers, refrigeration units, transformers, trucks, cranes, etc. that are

More information

Direct API Integration with QuickBase

Direct API Integration with QuickBase Direct API Integration with QuickBase With the wizard you can auto-generate codereadr services to enable app-users to view, add and edit records in your QuickBase tables directly from the codereadr app.

More information

DHIS 2 Android User Manual 2.22

DHIS 2 Android User Manual 2.22 DHIS 2 Android User Manual 2.22 2006-2016 DHIS2 Documentation Team Revision 1925 Version 2.22 2016-11-23 11:33:56 Warranty: THIS DOCUMENT IS PROVIDED BY THE AUTHORS ''AS IS'' AND ANY EXPRESS OR IMPLIED

More information

VisitBasis Tutorial for Admins

VisitBasis Tutorial for Admins VisitBasis Tutorial for Admins Introduction By the end of this tutorial you will be able to:. Have a working account. Create and use divisions. Add new users manually with their respective security roles

More information

EMS ROOM SIGN APP Configuration Guide

EMS ROOM SIGN APP Configuration Guide EMS ROOM SIGN APP Configuration Guide V44.1 Last Updated: November 6, 2018 EMS Software emssoftware.com/help 800.440.3994 2018 EMS Software, LLC. All Rights Reserved. Table of Contents CHAPTER 1: EMS Room

More information

Privacy and Security in Online Social Networks Department of Computer Science and Engineering Indian Institute of Technology, Madras

Privacy and Security in Online Social Networks Department of Computer Science and Engineering Indian Institute of Technology, Madras Privacy and Security in Online Social Networks Department of Computer Science and Engineering Indian Institute of Technology, Madras Lecture 07 Tutorial 2 Part 1 Facebook API Hi everyone, welcome to the

More information

Roxen Content Provider

Roxen Content Provider Roxen Content Provider Generation 3 Templates Purpose This workbook is designed to provide a training and reference tool for placing University of Alaska information on the World Wide Web (WWW) using the

More information

The Preferences link will display the following user options. These may be changed by the user at any time.

The Preferences link will display the following user options. These may be changed by the user at any time. Home Page Top Bar At the top, right-hand corner of the Home page, when logged into the Slingshot site, the user will see the name on the account, a Preferences link, and a Logout link. Preferences The

More information

Google 2 factor authentication User Guide

Google 2 factor authentication User Guide Google 2 factor authentication User Guide Description: Updated Date: This guide describes how to setup Two factor authentication for your Google account. March, 2018 Summary ITSC is pleased to launch Two

More information

2015 Mobiliya. All Rights Reserved Page 2

2015 Mobiliya. All Rights Reserved Page 2 Contents About this Guide... 3 Getting Started... 3 About Mobiliya Shoonya... 3 Key Features... 3 Add-on Features... 4 1. Sign In... 5 2. Admin Dashboard... 6 1. Licenses... 6 2. Users... 7 3. Devices...

More information

RouteMobile Mobile Client Manual for Android Version: 2.0

RouteMobile Mobile Client Manual for Android Version: 2.0 RouteMobile Mobile Client Manual for Android Version: 2.0 Route Mobile Limited 2018. All rights reserved 1 Contents Installation... 3 Getting Started... 5 Login Page... 6 Main Screen... 7 Send SMS... 9

More information

reinsight Mobile Quick Start Guide

reinsight Mobile Quick Start Guide reinsight Mobile Quick Start Guide Overview The purpose of this document is to provide an overview of the features in reinsight Mobile. This document will review the process to access reinsight Mobile,

More information

1. INTRODUCTION to Object Storage

1. INTRODUCTION to Object Storage 1. INTRODUCTION to Object Storage Welcome to AURO Enterprise Cloud! This document will be help you get started using our Object Storage service. Object Storage is a storage system where objects are stored

More information

ipass Open Mobile 2.10.x for Android Quick Start Guide

ipass Open Mobile 2.10.x for Android Quick Start Guide ipass Open Mobile 2.10.x for Android Quick Start Guide V E R S I O N 1. 0, MAY 2 0 1 4 Corporate Headquarters ipass Inc. 3800 Bridge Parkway Redwood Shores, CA 94065 USA www.ipass.com +1 650-232-4100 +1

More information

Site Diary with Attachments

Site Diary with Attachments Site Diary with Attachments Introduction 1 Site Diary Settings 2 Thresholds 2 Checkboxes and Notes 2 Creating a Site Diary Entry 3 Web App (via the web browser) 3 Mobile App 4 Adding Attachments 5 Computer

More information

Release 28 - Alpha Tracker Release Notes

Release 28 - Alpha Tracker Release Notes Release 28 - Alpha Tracker Release Notes New Features / Changes (from SVN2841 to SVN3056) 1. With the introduction of GDPR, there are some important new features now available in Alpha Tracker. There is

More information

WebEx Integration User Guide. Cvent, Inc 1765 Greensboro Station Place McLean, VA

WebEx Integration User Guide. Cvent, Inc 1765 Greensboro Station Place McLean, VA WebEx Integration User Guide 2018 Cvent, Inc 1765 Greensboro Station Place McLean, VA 22102 www.cvent.com Contents WebEx Integration User Guide... 3 Enabling WebEx Integration in Your Account... 4 Setting

More information

Nextiva Drive The Setup Process Mobility & Storage Option

Nextiva Drive The Setup Process Mobility & Storage Option Nextiva Drive The Setup Process The Setup Process Adding Users 1. Login to your account and click on the Account icon at the top of the page (this is only visible to the administrator). 2. Click Create

More information

ACCOUNT INFORMATION... 1

ACCOUNT INFORMATION... 1 Account Information Account Information Account Information provides access to manage contact information, passwords, and other account settings for CTB Quote Plus. Account Information is located on the

More information

CONTROL Installation and Basic-configuration Guide Contents

CONTROL Installation and Basic-configuration Guide Contents CONTROL Installation and Basic-configuration Guide Contents Installation and Basic-configuration Guide... 1 1. Overview... 2 2. Intro... 3 3. CONTROL installation steps:... 3 3.1 CONTROL installation requirements...

More information

DHIS 2 Android User Manual 2.23

DHIS 2 Android User Manual 2.23 DHIS 2 Android User Manual 2.23 2006-2016 DHIS2 Documentation Team Revision 2174 2016-11-23 11:23:21 Version 2.23 Warranty: THIS DOCUMENT IS PROVIDED BY THE AUTHORS ''AS IS'' AND ANY EXPRESS OR IMPLIED

More information

FreeRangeRemote Access

FreeRangeRemote Access City of Westminster User Guide to FreeRangeRemote Access For Android tablets using the native browser (Chrome) https://freerange.cityofwestminster.us IMPORTANT! Some versions of Chrome on Android are unable

More information

Chopra Teachers Directory Listing Manual

Chopra Teachers Directory Listing Manual Chopra Teachers Directory Listing Manual Table of Contents Introduction... 1 Login... 2 Managing your Directory Listing... 3 Locations... 3 Adding or Editing a Location... 4 Managing Featured Teacher Information...

More information

MYOB EXO Business Services

MYOB EXO Business Services MYOB EXO Business Services Release Notes 1.3 SP1 Contents Introduction 1 What s New in this Release?... 1 Installation 2 Pre-Install Requirements... 2 Installing the EXO Business Services... 2 Setting

More information

Store Locator. Release Notes Version 2.0

Store Locator. Release Notes Version 2.0 Store Locator Release Notes Version 2.0 Application Data Structure Name Type Purpose SL_Admins Table Administrators of this applications. SL_Stores Table Primary table for Stores. SL_Contacts Table Table

More information

Dynamics CRM Integration for Gmail. User Manual. Akvelon, Inc. 2017, All rights reserved

Dynamics CRM Integration for Gmail. User Manual. Akvelon, Inc. 2017, All rights reserved User Manual Akvelon, Inc. 2017, All rights reserved Contents Overview... 3 Installation of Dynamics CRM Integration for Gmail 2.0... 3 Buying app subscription... 4 Remove the extension from Chrome... 5

More information

Clearspan OpEasy Basic Provisioning User Guide MAY Release

Clearspan OpEasy Basic Provisioning User Guide MAY Release Clearspan OpEasy Basic Provisioning User Guide MAY 2015 Release 4.2 2827-008 NOTICE The information contained in this document is believed to be accurate in all respects but is not warranted by Mitel Communications,

More information

DHIS2 Android user guide 2.26

DHIS2 Android user guide 2.26 DHIS2 Android user guide 2.26 2006-2016 DHIS2 Documentation Team Revision HEAD@02efc58 2018-01-02 00:22:07 Version 2.26 Warranty: THIS DOCUMENT IS PROVIDED BY THE AUTHORS ''AS IS'' AND ANY EXPRESS OR IMPLIED

More information

Appserv Internal Desktop Access Mac OS Device with Safari Browser. Enter your Appserv username and password to sign in to the Website

Appserv Internal Desktop Access Mac OS Device with Safari Browser. Enter your Appserv username and password to sign in to the Website Appserv Desktop Access Logging on from a Mac OS device Step 1. To sign in to the Appserv Desktop Access website, enter the following address into the Safari browser address bar. Please Note: This documentation

More information

Created: 8/16/2013 North Schuylkill School District Page 1

Created: 8/16/2013 North Schuylkill School District Page 1 Parents Request Portal Accounts Step 1: Parents will need to go to https://web4.schoolport.org/plexus/parentportal/ Parents will view this screen as their log on screen. If they already have accounts,

More information

SharePoint. Team Site End User Guide. Table of Contents

SharePoint. Team Site End User Guide. Table of Contents Table of Contents Introduction... 1 Logging in for the First Time:... 1 Areas of the team site:... 2 Navigating the team site:... 3 Adding Content to the team site:... 3 The Ribbon:... 3 Adding a Link:...

More information

CardValet Self-Service FAQs

CardValet Self-Service FAQs CardValet Self-Service FAQs General Questions What types of phones are supported by CardValet? What Citizens Bank cards are available within CardValet? How much does CardValet cost? Can I unsubscribe from

More information

Completing Baseline s Site Survey Request Form

Completing Baseline s Site Survey Request Form Completing Baseline s Site Survey Request Form The first step in successfully implementing a radio network for your irrigation controllers is to identify the proposed locations for each radio. These radios

More information

Drupal 7 Template. Page 1 of 27. Site Title. Navigation Tabs. Homepage Slide. Social Media. News article. Events. Links. Contact Information

Drupal 7 Template. Page 1 of 27. Site Title. Navigation Tabs. Homepage Slide. Social Media. News article. Events. Links. Contact Information Site Title Navigation Tabs Homepage Slide News article Social Media Events Contact Information Links Page 1 of 27 Table of Contents USER ACCOUNT... 3 Edit Profile... 3 CONTENT... 5 ADD CONTENT... 5 BASIC

More information

DocAve. Release Notes. Governance Automation Service Pack 5 Cumulative Update 2. For Microsoft SharePoint

DocAve. Release Notes. Governance Automation Service Pack 5 Cumulative Update 2. For Microsoft SharePoint DocAve Governance Automation Service Pack 5 Cumulative Update 2 Release Notes For Microsoft SharePoint Released March 10, 2015 Governance Automation SP5 CU2 Update Details Refer to the Updating Governance

More information

Edge App User Guide V 4.5

Edge App User Guide V 4.5 Edge App User Guide V 4.5 Table of Contents Introduction... 4 Trial Version... 4 Logging In... 5 1. Home... 7 2. View Notes... 8 2.1. View Notes List & Tab View... 8 2.2. View Notes Map View... 17 3. View

More information

Table of contents. DMXzone Google Maps 2 DMXzone

Table of contents. DMXzone Google Maps 2 DMXzone Table of contents Table of contents... 1 About... 2 Features in Detail... 3 The Basics: Inserting Google Maps on a Page... 20 Advanced: Control Google Maps with Behaviors... 27 Advanced: Track Your Current

More information

Online Employment Application Guide

Online Employment Application Guide Online Employment Application Guide This guide describes how to apply for jobs using the Government Jobs web site. The process consists of the following steps: Create An Account Find Jobs Apply for a Job

More information

Veracity LRS Usage Documentation

Veracity LRS Usage Documentation https://lrs.veracity.it Veracity LRS Usage Documentation LRS Version Beta 1 (Hosted) Document Version 1.0 Table of Contents 1. Create and Configure LRS 3 1.1. Create an LRS Instance 3 1.2. Create Access

More information

HP ALM Overview. Exercise Outline. Administration and Customization Lab Guide

HP ALM Overview. Exercise Outline. Administration and Customization Lab Guide HP ALM 11.00 Administration and Customization Lab Guide Overview This Lab Guide contains the exercises for Administration and Customization of HP ALM 11 Essentials training. The labs are designed to enhance

More information

ipass Open Mobile 3.1.x for Android Quick Start Guide

ipass Open Mobile 3.1.x for Android Quick Start Guide ipass Open Mobile 3.1.x for Android Quick Start Guide V E R S I O N 1. 0, J A N U A R Y 2 0 1 5 Corporate Headquarters ipass Inc. 3800 Bridge Parkway Redwood Shores, CA 94065 USA www.ipass.com +1 650-232-4100

More information

Axon Capture for Android Devices User Manual

Axon Capture for Android Devices User Manual Axon Capture for Android Devices User Manual IMPORTANT SAFETY INSTRUCTIONS Read all warnings and instructions. Save these Instructions. The most up-to-date warnings and instructions are available at www.taser.com.

More information

Real Estate Mobile App Features

Real Estate Mobile App Features Real Estate Mobile App Features How To Review The App Demo On Your Device Download the Preview Your App app today on your ios or Android Devices from the App Store or Google Play Store. To view this demo

More information

Faculty Web Page Management System. Help Getting Started

Faculty Web Page Management System. Help Getting Started Faculty Web Page Management System Help Getting Started 2 Table of Contents Faculty Web Page Management System...1 Help Getting Started...1 Table of Contents...2 Manage My Personal Information...3 Creating

More information

Starting the KVM Console

Starting the KVM Console Starting the KVM Console This chapter includes the following sections: KVM Console, page 1 Starting the KVM Console from a Server, page 5 Starting the KVM Console from a Service Profiles, page 5 Starting

More information

ipass Open Mobile Quick Start Guide for Android

ipass Open Mobile Quick Start Guide for Android ipass Open Mobile 3.2.1 Quick Start Guide for Android VERSION 1.0, SEPTEMBER 2015 Corporate Headquarters ipass Inc. 3800 Bridge Parkway Redwood Shores, CA 94065 USA www.ipass.com +1 650-232-4100 +1 650-232-0227

More information

Junos Pulse Mobile Security Dashboard

Junos Pulse Mobile Security Dashboard Junos Pulse Mobile Security Dashboard User Guide Release 4.1 October 2012 R1 Copyright 2012, Juniper Networks, Inc. . Junos Pulse Mobile Security Dashboard Juniper Networks, Inc. 1194 North Mathilda Avenue

More information

Zoho Integration. Installation Manual Release. 1 P a g e

Zoho Integration. Installation Manual Release. 1 P a g e Zoho Integration Installation Manual Release 1 P a g e Table of Contents Zoho Integration... 3 Customizing the settings in LeadForce1... 6 Configuration Settings... 7 Schedule Settings... 8 2 P a g e Zoho

More information

MERCATOR TASK MASTER TASK MANAGEMENT SCREENS:- LOGIN SCREEN:- APP LAYOUTS:-

MERCATOR TASK MASTER TASK MANAGEMENT SCREENS:- LOGIN SCREEN:- APP LAYOUTS:- MERCATOR TASK MASTER TASK MANAGEMENT SCREENS:- LOGIN SCREEN:- APP LAYOUTS:- This is Navigation bar where you have 5 Menus and App Name. This Section I will discuss in brief in the Navigation Bar Section.

More information

User Guide. Version R94. English

User Guide. Version R94. English AuthAnvil User Guide Version R94 English March 8, 2017 Copyright Agreement The purchase and use of all Software and Services is subject to the Agreement as defined in Kaseya s Click-Accept EULATOS as updated

More information

Integration with third party evidence analyzers. Ver 9.6.0

Integration with third party evidence analyzers. Ver 9.6.0 Integration with third party evidence analyzers Ver 9.6.0 Configuration: To configure the RCS system to export the evidence to a third party solution, you must configure a connector. Under the System >

More information

B737 ipad EFB - FLTOPS User Guide Version Jan-2016

B737 ipad EFB - FLTOPS User Guide Version Jan-2016 B737 ipad EFB - FLTOPS User Guide B737 ipad EFB FLTOPS app User Guide is available at http://fltops.jetairways.com / http://fltops.jetlite.com. Textual changes and addition of explanatory material are

More information

User Guide. Version

User Guide. Version User Guide Version 0.19 2-11-2008 StormPro Max User Guide Page 1 of 69 5/10/2008 Table of Contents 1. Overview... 4 1.1 Definition of StormPro Max Terms... 4 2. Accessing StormPro Max... 5 3. Navigating

More information

Software Release Communication 02/07/2014. Topics covered. Solutions You Can Count On

Software Release Communication 02/07/2014. Topics covered. Solutions You Can Count On Topics covered Vea Web... 2 User Access Changes... 4 Dashboard Sharing... 7 Component Upgrade... 8 System Manager Geocode Function... 9 Installer Changes... 11 VEA WEB The initial version of Vea Web, included

More information

Tutorial on Getting Started. Section 1 Getting started All users read this section 2

Tutorial on Getting Started. Section 1 Getting started All users read this section 2 Tutorial on Getting Started Section 1 Getting started All users read this section 2 Section 2 Exploring the database as a GUEST Recommended that all new users read this demonstration section to become

More information

Google Authenticator User Guide

Google Authenticator User Guide The Google Authenticator app on your mobile phone will generate time based one time verification codes, each of which is valid only for thirty seconds. These verification codes are used to log in to the

More information

Welcome to the supplier training session

Welcome to the supplier training session Welcome to the supplier training session 1 INDEX 2 Open a Browser and enter the URL https://css.gesupplier.com Login with the USER ID and Password sent by the GE Supplier Team Refer to the snapshot below:

More information

e2e etrac to etrac Setup and Configuration

e2e etrac to etrac Setup and Configuration e2e etrac to etrac Setup and Configuration Version: 1.5 Publish Date: 05/29/2014 Global DMS, 1555 Bustard Road, Suite 300, Lansdale, PA 19446 2014, All Rights Reserved. Table of Contents Introduction to

More information

Vodafone Secure Device Manager Administration User Guide

Vodafone Secure Device Manager Administration User Guide Vodafone Secure Device Manager Administration User Guide Vodafone New Zealand Limited. Correct as of June 2017. Vodafone Ready Business Contents Introduction 3 Help 4 How to find help in the Vodafone Secure

More information

Adobe Document Cloud esign Services. for Salesforce Version 17 Installation and Customization Guide

Adobe Document Cloud esign Services. for Salesforce Version 17 Installation and Customization Guide Adobe Document Cloud esign Services for Salesforce Version 17 Installation and Customization Guide 2015 Adobe Systems Incorporated. All rights reserved. Last Updated: August 28, 2015 Table of Contents

More information

Citrix Analytics Data Governance Collection, storage, and retention of logs generated in connection with Citrix Analytics service.

Citrix Analytics Data Governance Collection, storage, and retention of logs generated in connection with Citrix Analytics service. Citrix Analytics Data Governance Collection, storage, and retention of logs generated in connection with Citrix Analytics service. Citrix.com Data Governance For up-to-date information visit: This section

More information

owncloud Android App Manual

owncloud Android App Manual owncloud Android App Manual Release 2.7.0 The owncloud developers October 30, 2018 CONTENTS 1 Release Notes 1 1.1 Changes in 2.7.0............................................. 1 1.2 Changes in 2.6.0.............................................

More information

ISL01: Transparently Authenticating Tablets, Smartphones and Laptops with Symantec Managed PKI Service

ISL01: Transparently Authenticating Tablets, Smartphones and Laptops with Symantec Managed PKI Service ISL01: Transparently Authenticating Tablets, Smartphones and Laptops with Symantec Managed PKI Service Hands-On Lab Description In this session, you will take a free test drive of Symantec Managed PKI

More information

BlackBerry Developer Summit. A02: Rapid Development Leveraging BEMS Services and the AppKinetics Framework

BlackBerry Developer Summit. A02: Rapid Development Leveraging BEMS Services and the AppKinetics Framework BlackBerry Developer Summit A02: Rapid Development Leveraging BEMS Services and the AppKinetics Framework Page 2 of 21 Table of Contents 1. Workbook Scope... 4 2. Compatibility... 4 3. Source code download

More information

BeetleEye Application User Documentation

BeetleEye Application User Documentation BeetleEye Application User Documentation BeetleEye User Documentation 1 Table of Contents Welcome to the BeetleEye Application... 6 Overview... 6 Navigation... 6 Access BeetleEye... 6 Update account information...

More information

Store Locator Magento 2 USER MANUAL E: P: +1-(248)

Store Locator Magento 2 USER MANUAL E:  P: +1-(248) Store Locator Magento 2 USER MANUAL MAGEDELIGHT.COM SUPPORT E: INFO@MAGEDELIGHT.COM SUPPORT@MAGEDELIGHT.COM P: +1-(248)-275-1202 P: License Key After successfully installing the Store Locator extension

More information

Best Practices for Security Certificates w/ Connect

Best Practices for Security Certificates w/ Connect Application Note AN17038 MT AppNote 17038 (AN 17038) September 2017 Best Practices for Security Certificates w/ Connect Description: This Application Note describes the process and best practices for using

More information

PLEASE KEEP IN MIND THERE ARE TWO WAYS TO UPDATE A STUDENT S ATTENDANCE STATUS:

PLEASE KEEP IN MIND THERE ARE TWO WAYS TO UPDATE A STUDENT S ATTENDANCE STATUS: CERTIFYING ROSTERS 1. Browse to https://tim.txstate.edu/classrosters or click the Certify Rosters link on the Faculty Services tab. 2. Log in using your NetID and password. 3. The Home navigational menu

More information

User Guide. Version R92. English

User Guide. Version R92. English AuthAnvil User Guide Version R92 English October 9, 2015 Agreement The purchase and use of all Software and Services is subject to the Agreement as defined in Kaseya s Click-Accept EULATOS as updated from

More information

Launch code for all secondary apps (oppm, opdoc, etc.) will now open these other apps at uniform size with updated opcv launch

Launch code for all secondary apps (oppm, opdoc, etc.) will now open these other apps at uniform size with updated opcv launch Portal (OPPORTAL) OPPortal E Meta tag info for Skill Add metatag information in CustomUiSkill ProfileList and CustomUiSkillprofile 6114 Profiles returned data to support custom portals OPPortal E Meta

More information

Mobile App User Guide

Mobile App User Guide Mobile App User Guide Introduction The Farmers Trust & Savings Bank Mobile Banking App is a downloadable application that is compatible with numerous mobile devices. These devices include Android phones,

More information

BOULDER IRB era InfoEd Amendments

BOULDER IRB era InfoEd Amendments BOULDER IRB era InfoEd Amendments Last Update: 2017/12/06 Preface: This guide explains how to submit an Amendment to modify an approved study. If you already have a submission pending review do not submit

More information

Debit CardValet FAQs. Table of Contents. General... 2 Registration... 2 Controls and Alerts... 3 Transactions Debit CardValet FAQs Page 1

Debit CardValet FAQs. Table of Contents. General... 2 Registration... 2 Controls and Alerts... 3 Transactions Debit CardValet FAQs Page 1 Debit CardValet FAQs Table of Contents General... 2 Registration... 2 Controls and Alerts... 3 Transactions... 4 Debit CardValet FAQs Page 1 General Q1: Does CardValet work on Android phones and iphones?

More information

VMware Skyline Collector Installation and Configuration Guide. VMware Skyline Collector 2.0

VMware Skyline Collector Installation and Configuration Guide. VMware Skyline Collector 2.0 VMware Skyline Collector Installation and Configuration Guide VMware Skyline Collector 2.0 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If

More information

Pushing Data to WITSML Server(s)

Pushing Data to WITSML Server(s) Pushing Data to WITSML Server(s) Updated Feb. 4 th, 2014 For a quick info on WITSML, please see this Wikipedia entry [ http://en.wikipedia.org/wiki/wellsite_information_transfer_standard_markup_language].

More information

Clearspan OpEasy Basic Provisioning Guide NOVEMBER Release

Clearspan OpEasy Basic Provisioning Guide NOVEMBER Release Clearspan OpEasy Basic Provisioning Guide NOVEMBER 2016 Release 4.6 2827-012 NOTICE The information contained in this document is believed to be accurate in all respects but is not warranted by Mitel Communications,

More information

New NATE Testing Portal. Guide to using the new mynate website

New NATE Testing Portal. Guide to using the new mynate website New NATE Testing Portal Guide to using the new mynate website Login Go to www.mynate.org. Your original mynate login still works on the new site. If you do not recall your password, you can use the Lost/Forgotten

More information

MapSend Lite. Quick Reference* * For Magellan exploristtm 210, explorist 400, explorist 500, explorist 600 and explorist XL GPS Receivers

MapSend Lite. Quick Reference* * For Magellan exploristtm 210, explorist 400, explorist 500, explorist 600 and explorist XL GPS Receivers MapSend Lite Quick Reference* * For Magellan exploristtm 210, explorist 400, explorist 500, explorist 600 and explorist XL GPS Receivers 2006 Thales Navigation, Inc. All rights reserved. The Magellan logo,

More information

QUICKBOOKS ONLINE PLUS: A COMPLETE COURSE 2016

QUICKBOOKS ONLINE PLUS: A COMPLETE COURSE 2016 QUICKBOOKS ONLINE PLUS: A COMPLETE COURSE 2016 Chapter 2: Create a Company Part 1: Create Email, Access Trial Version, Download Files Lecture Focus 2 Create a QuickBooks Online Email Account Activate Educational

More information

Axon Capture for Android Devices User Manual

Axon Capture for Android Devices User Manual Axon Capture for Android Devices User Manual Document Revision: E Product functions and specifications may change without notice and the actual product may vary from the illustrations in this manual. Google,

More information

Lucid CMS User Guide

Lucid CMS User Guide "We create exceptional business solutions for cash-pay healthcare professionals that enable them to realize their full potential." Lucid CMS User Guide Version 1.2 3/13/2012 1 Table of Contents Table of

More information

Managing Your Website with Convert Community. My MU Health and My MU Health Nursing

Managing Your Website with Convert Community. My MU Health and My MU Health Nursing Managing Your Website with Convert Community My MU Health and My MU Health Nursing Managing Your Website with Convert Community LOGGING IN... 4 LOG IN TO CONVERT COMMUNITY... 4 LOG OFF CORRECTLY... 4 GETTING

More information

Eloqua Integration User Guide. Cvent, Inc 1765 Greensboro Station Place McLean, VA

Eloqua Integration User Guide. Cvent, Inc 1765 Greensboro Station Place McLean, VA Eloqua Integration User Guide 2017 Cvent, Inc 1765 Greensboro Station Place McLean, VA 22102 www.cvent.com Contents Eloqua Integration User Guide... 3 Enabling Eloqua Integration in Your Account... 4 Helpful

More information

Nintex Forms 2010 Help

Nintex Forms 2010 Help Nintex Forms 2010 Help Last updated: Monday, April 20, 2015 1 Administration and Configuration 1.1 Licensing settings 1.2 Activating Nintex Forms 1.3 Web Application activation settings 1.4 Manage device

More information

ACTS O&G Release Notes Release Notes Last Updated: May 15, 2015

ACTS O&G Release Notes Release Notes Last Updated: May 15, 2015 ACTS O&G Release Notes Release Notes Last Updated: May 15, 2015 REPORTING ISSUES If you encounter any issues, please contact Ecocion IT. For after hour service, a support ticket can be opened at http://support.ecocion.com.

More information

Contents. SSL-Based Services: HTTPS and FTPS 2. Generating A Certificate 2. Creating A Self-Signed Certificate 3. Obtaining A Signed Certificate 4

Contents. SSL-Based Services: HTTPS and FTPS 2. Generating A Certificate 2. Creating A Self-Signed Certificate 3. Obtaining A Signed Certificate 4 Contents SSL-Based Services: HTTPS and FTPS 2 Generating A Certificate 2 Creating A Self-Signed Certificate 3 Obtaining A Signed Certificate 4 Enabling Secure Services 5 A Note About Ports 5 Connecting

More information

Perceptive Nolij Web. Release Notes. Version: 6.8.x

Perceptive Nolij Web. Release Notes. Version: 6.8.x Perceptive Nolij Web Release Notes Version: 6.8.x Written by: Product Knowledge, R&D Date: June 2018 Copyright 2014-2018 Hyland Software, Inc. and its affiliates. Table of Contents Perceptive Nolij Web

More information

[SETUP DELEGATION IN GOOGLE APPS]

[SETUP DELEGATION IN GOOGLE APPS] Google allows for the delegation of email accounts between users. This will allow a user access to another user s inbox and enable the user to send mail as them. The following steps explain how to configure

More information

Salesman Mode For epart Mobile Setup. Table of Contents

Salesman Mode For epart Mobile Setup. Table of Contents Table of Contents Step 1: Login To epartconnection Setup... 2 Step 2: Setup Users And Roles... 3 Step 3: Login To epartconnection Setup As A Salesman... Error! Bookmark not defined. Step 4: Setting Up

More information