1. CONNECTING NODE MCU TO IBM BLUEMIX AND SENDING SENSORS DATA TO IBM CLOUD

Size: px
Start display at page:

Download "1. CONNECTING NODE MCU TO IBM BLUEMIX AND SENDING SENSORS DATA TO IBM CLOUD"

Transcription

1 1. CONNECTING NODE MCU TO IBM BLUEMIX AND SENDING SENSORS DATA TO IBM CLOUD CLOUD Clud resurces make it pssible t bring tgether multiple data surces, scale systems, and incrprate cgnitive services t drive business value quickly and inexpensively. Integrate high-perfrmance clud infrastructure and cutting-edge services int yur IT envirnment with the IBM Bluemix clud platfrm. The IBM Bluemix clud platfrm helps yu slve real prblems and drive business value with applicatins, infrastructure and services. Weaves tgether the services, infrastructure and data t rapidly bring yur ideas t prductin. Manages and scales yur business frm day 1 t year 105. Simplifies the prcess f building systems that use data t understand, reasn, and learn. IOT in Bluemix Rapidly cmpse and extend apps that take advantage f data and analytics frm yur cnnected devices and sensrs. Yur device r gateway Start with yur device- whether it s a sensr, gateway, r smething else-and let us help yu cnnect it with ne f ur recipes. MQTT and HTTP Yur device data is always secure when yu cnnect t the clud using pen, lightweight MQTT messaging prtcl r HTTP. IBM Watsn IT Platfrm The hub f the IBM IT apprach set up and manage yur cnnected devices s yur apps can access live and histrical data. REST and real-time APIs Use ur secure APIs t cnnect yur apps with data frm yur devices. Yur applicatin and analytics Creating applicatins within IBM Bluemix, anther clud, r yur wn servers t interpret data

2 2. PROTOCOLS INVOLVED IN DATA TRANSFER HTTP: Stands fr "Hypertext Transfer Prtcl." HTTP is the prtcl used t transfer data ver the web. It is part f the Internet prtcl suite and defines cmmands and services used fr transmitting webpage data. MQTT: MQTT (Message Queuing Telemetry Transprt) is a lightweight messaging prtcl that prvides resurcecnstrained netwrk clients with a simple way t distribute telemetry infrmatin. The prtcl, which uses a publish/subscribe cmmunicatin pattern, is used fr machine-t-machine (M2M) cmmunicatin and plays an imprtant rle in the Internet f Things (IT).

3 3. STEPS INVOLVED IN INSTALLING MQTT PUB SUB CLIENT LIBRARY IN ARDUINO IDE CODE Add the MQTT PubSubClient library The IBM Watsn IT Platfrm uses the MQTT prtcl s next add the MQTT PubSubClient library t the Arduin IDE. Yu can imprt a library zip t the Arduin IDE frm the IDE menu ptin ( Sketch -> Include Library -> Add.ZIP Library) Add the ArduinJsn library The IBM Watsn IT Platfrm uses Jsn frmatted messages s it makes the Arduin cde simpler t use a Jsn parsing library, I've used ArduinJsn, s add that t the Arduin IDE. The link fr the dwnlad f file is The next step is ( Sketch -> Include Library -> Add.ZIP Library)

4 Cpy the fllwing sketch t the Arduin IDE: /** IBM IT Fundatin managed Device 4. CODE FOR NODE MCU Authr: Ant Elder License: Apache License v2 */ #include <ESP8266WiFi.h> #include <PubSubClient.h> // #include <ArduinJsn.h> // // Custmise these values cnst char* ssid = "<yurwifissid>";(yur Wifi s SSID) cnst char* passwrd = "<yurwifipasswrd>";(yur Wifi s Passwrd) #define ORG "<yurorg>" (Yur rganizatin ID) #define DEVICE_TYPE "yurdevicetype" (Yur Device Type) #define DEVICE_ID "yurdevice" (Yur Device ID) #define TOKEN "yurdevicetken" (Yur Authrizatin Tken) char server[] = ORG ".messaging.internetfthings.ibmclud.cm"; char authmethd[] = "use-tken-auth"; char tken[] = TOKEN; char clientid[] = "d:" ORG ":" DEVICE_TYPE ":" DEVICE_ID; cnst char publishtpic[] = "it-2/evt/status/fmt/jsn"; cnst char respnsetpic[] = "itdm-1/respnse"; cnst char managetpic[] = "itdevice-1/mgmt/manage"; cnst char updatetpic[] = "itdm-1/device/update"; cnst char rebttpic[] = "itdm-1/mgmt/initiate/device/rebt"; vid callback(char* tpic, byte* paylad, unsigned int payladlength); WiFiClient wificlient; PubSubClient client(server, 1883, callback, wificlient); int publishinterval = 30000; // 30 secnds lng lastpublishmillis; vid setup() { pinmde(ultrasundsignal,output); (It can be fr any sensr) Serial.begin(115200); Serial.println(); wificnnect(); mqttcnnect(); initmanageddevice(); vid lp() { if (millis() - lastpublishmillis > publishinterval) { publishdata(); lastpublishmillis = millis(); if (!client.lp()) { mqttcnnect(); initmanageddevice(); vid wificnnect() { Serial.print("Cnnecting t "); Serial.print(ssid); WiFi.begin(ssid, passwrd); while (WiFi.status()!= WL_CONNECTED) { delay(500);

5 Serial.print("."); Serial.print("nWiFi cnnected, IP address: "); Serial.println(WiFi.lcalIP()); vid mqttcnnect() { if (!!!client.cnnected()) { Serial.print("Recnnecting MQTT client t "); Serial.println(server); while (!!!client.cnnect(clientid, authmethd, tken)) { Serial.print("."); delay(500); Serial.println(); vid initmanageddevice() { if (client.subscribe("itdm-1/respnse")) { Serial.println("subscribe t respnses OK"); else { Serial.println("subscribe t respnses FAILED"); if (client.subscribe(rebttpic)) { Serial.println("subscribe t rebt OK"); else { Serial.println("subscribe t rebt FAILED"); if (client.subscribe("itdm-1/device/update")) { Serial.println("subscribe t update OK"); else { Serial.println("subscribe t update FAILED"); StaticJsnBuffer<300> jsnbuffer; JsnObject& rt = jsnbuffer.createobject(); JsnObject& d = rt.createnestedobject("d"); JsnObject& metadata = d.createnestedobject("metadata"); metadata["publishinterval"] = publishinterval; JsnObject& supprts = d.createnestedobject("supprts"); supprts["deviceactins"] = true; char buff[300]; rt.printt(buff, sizef(buff)); Serial.println("publishing device metadata:"); Serial.println(buff); if (client.publish(managetpic, buff)) { Serial.println("device Publish k"); else { Serial.print("device Publish failed:"); vid publishdata() { String paylad = "{\"d\":{\"cunter\":"; paylad += millis() / 1000; paylad += ""; Serial.print("Sending paylad: "); Serial.println(paylad); if (client.publish(publishtpic, (char*) paylad.c_str())) { Serial.println("Publish OK"); else { Serial.println("Publish FAILED");

6 vid callback(char* tpic, byte* paylad, unsigned int payladlength) { Serial.print("callback invked fr tpic: "); Serial.println(tpic); if (strcmp (respnsetpic, tpic) == 0) { return; // just print f respnse fr nw if (strcmp (rebttpic, tpic) == 0) { Serial.println("Rebting..."); ESP.restart(); if (strcmp (updatetpic, tpic) == 0) { handleupdate(paylad); vid handleupdate(byte* paylad) { StaticJsnBuffer<300> jsnbuffer; JsnObject& rt = jsnbuffer.parseobject((char*)paylad); if (!rt.success()) { Serial.println("handleUpdate: paylad parse FAILED"); return; Serial.println("handleUpdate paylad:"); rt.prettyprintt(serial); Serial.println(); JsnObject& d = rt["d"]; JsnArray& fields = d["fields"]; fr (JsnArray::iteratr it = fields.begin(); it!= fields.end(); ++it) { JsnObject& field = *it; cnst char* fieldname = field["field"]; if (strcmp (fieldname, "metadata") == 0) { JsnObject& fieldvalue = field["value"]; if (fieldvalue.cntainskey("publishinterval")) { publishinterval = fieldvalue["publishinterval"]; Serial.print("publishInterval:"); Serial.println(publishInterval);

7 1. Create IBM Watsn IT Platfrm Organizatin 5. CREATING A DEVICE IN IBM BLUEMIX When yu create a service Internet f Things Platfrm in IBM Bluemix, a new Organizatin will be created fr yu. This IBM Watsn IT Platfrm rganizatin is a space used fr cnnecting and managing devices t the IBM Watsn IT Platfrm, s that yur applicatins can access their live and histrical data. Yu can create an IBM Watsn IT Platfrm rganizatin by using IBM Bluemix. Fllw the belw steps t d the same, Open yur favrite brwser and g t Bluemix. If yu are an existing Bluemix user, lg in as usual. If yu are new t Bluemix yu can sign up fr a free 30 day trial. Once yu signed up t Bluemix, click this link t create the Watsn IT Platfrm service in Bluemix. Type a name fr yur service and click Create buttn as shwn belw, Observe a Welcme page, click n Launch buttn t enter int the IBM Watsn IT Platfrm rganizatin space. The IT rganizatin is a space used fr cnnecting and managing devices t the IBM Watsn IT Platfrm, s that yur applicatins can access their live and histrical data. Observe that a new Organizatin is created where yu can add, cnnect and manage IT devices. At this step, we have successfully created the IBM Watsn IT Platfrm rganizatin. 2. Create Device Type Each device cnnected t the IBM Watsn IT Platfrm is assciated with a device type. Device types are intended t be grups f devices which share cmmn characteristics. S in rder t add devices in IBM Watsn IT Platfrm, ne need t create a device type. Fllwing are the instructins fr creating a Device Type G back t the IBM Watsn IT Platfrm dashbard, click Devices tab, device types tab, then click n the Create Type buttn as shwn belw,

8 Observe that there are 2 ptins prvided nw, namely Create device type and Create gateway type. As this recipe fcuses n adding a device and nt a gateway, click Create device type and prceed, (Gateways are a specialized class f devices in the IIBM Watsn IT Platfrm. Gateways are devices which serve as access pints t the IBM Watsn IT Platfrm fr ther devices. Gateway devices can register new devices and can send and receive data n behalf f devices cnnected t them. Refer t the dcumentatin fr mre infrmatin abut the Gateway), Specify a name fr the device type t be added and ptinally a descriptin as shwn belw and clieck next, Observe that a template page is given where yu can select and define ne r mre attributes. All f these attributes are ptinal. They will be used as a template fr new devices that are assigned this device type. Attributes that yu d nt define may still be edited individually later when yu add the device. Yu can define ne r mre attributes by selecting them and clicking Next as shwn belw,

9 Define the selected attributes Manufacturer and Mdel as shwn belw, then click next, Define ptinal Metadata in JSON frmat as shwn belw, yu can chse nt t set this attribute as its ptinal, then click Create, Observe that a new device type is added in the IBM Watsn IT Platfrm Organizatin, At this step, we have successfully created a device type in IBM Watsn IT Platfrm rganizatin. 3. Add Device in IBM Watsn IT Platfrm A device can be defined that has a cnnectin t the internet and has data it wants t get int the clud. And devices can accept cmmands frm applicatins as well. Yu need t add the device in IBM Watsn IT Platfrm Organizatin befre cnnecting it t the IT. Carry ut the fllwing steps t add the device in IBM Watsn IT Platfrm, In the IBM Watsn IT Platfrm dashbard, click Brwse tab and then Add Device buttn as shwn belw,

10 Chse the device type it-sample-device-type that we created in the last step, then click Next as shwn belw, Enter a unique device id, which will distinguish yur device frm all ther devices that yu might cnnect t the IT (yu can use 1 r smething mre sphisticated like yur devices MAC address), then click Next as shwn belw. Als nte that the values f Manufacturer and Mdel attributes are ppulated frm the device type itsample-devicetype. These values can be verridden, attributes nt set in the device type can be added as well. Add a Metadata and click next, (yu can chse nt t add Metadata as its ptinal), In the next page, yu can either add yur wn authenticatin tken, r allw the IBM Watsn IT Platfrmt generate a tken fr yu. The IBM Watsn IT Platfrm generated tken will be 18 characters lng and will cntain a mix f alphanumeric characters and symbls. The tken will be returned t yu at the end f the registratin prcess. In case if yu want t add yur wn tken, enter the tken as shwn belw, then click Next,

11 As shwn belw, yu will be given a summary page t verify the details befre adding the device t IBM Watsn IT Platfrm. Verify and click Add, At this step, the device is registered t yur Organizatin and yu will be prvided with the registratin details as marked belw. T get yur device cnnected, yu need t add the credentials t yur device. S make a nte f Click the crss buttn t get back t the main dashbard and bserve that the device is added in yur Organizatin,

12 S, nw we have successfully added a device in the IBM Watsn IT Platfrm rganizatin. 4. Generate API Keys The earlier sectins in this recipe helped yu t create a Device-Type and add a Device t it. The Device credentials enables the cnnectivity frm the Device side. T initiate a cnnectin frm the Applicatin side, yu wuld need API-Keys and the assciated Authenticatin Tkens. The fllwing set f steps shall help yu t generate a set f API-Key and it s assciated Tken. In the Watsn IT Platfrm Dashbard, click n Apps ptin, as available n the left hand side clumn Click n the API Keys tab, ne available in the listed ptins Yu shuld nw see a Generate API Key ptin available n the right hand side, as depicted in the fllwing image. Yu are nw prvided with the API Key & Authenticatin Tken Infrmatin, that gets generated fr yu. Optinally add a cmment Click n Generate t cmplete the prcess f generated API Key and it s assciated Authenticatin Tken, as shwn in the fllwing image Yu have nw successfully generated API credentials that enables yu t initiate Applicatin side cnnectivity.

13 6. Register yur Smart phne in the Watsn IT Platfrm Yu need t register yur smartphne in the Watsn IT Platfrm befre yu can cnnect it t the IT. The Bluemix IT Platfrm service autmatically allcates an IT rganizatin t yu. An IT rganizatin is a space that is used fr cnnecting and managing devices t the IBM Watsn IT Platfrm s that yur applicatins can access their live and histrical data. 1. Frm yur Bluemix dashbard, select the Internet f Things Platfrm service. Then, click Launch dashbard. The dashbard fr IBM Watsn IT Platfrm pens in a new brwser tab. The rganizatin ID is assigned t yur app and is displayed in the upper right. 2. In the Bards page, which is where yu manage yur devices and data, hver ver the menu n the left and select Devices. On the Devices page, click Add Device. 3. In the Add Device page, click Create device type. The name fr the device type is case-sensitive and must be either Andrid r iphne. The IT Starter Mbile app expects ne f these wrds as the device type. That's it! Yur smartphne has been registered with Watsn IT Platfrm. Yu still need t cnnect it t the Watsn IT Platfrm, but befre yu can d that, yu need t install and cnfigure the IT Starter Mbile app n yur smartphne.

To start your custom application development, perform the steps below.

To start your custom application development, perform the steps below. Get Started T start yur custm applicatin develpment, perfrm the steps belw. 1. Sign up fr the kitewrks develper package. Clud Develper Package Develper Package 2. Sign in t kitewrks. Once yu have yur instance

More information

Campuses that access the SFS nvision Windows-based client need to allow outbound traffic to:

Campuses that access the SFS nvision Windows-based client need to allow outbound traffic to: Summary This dcument is a guide intended t guide yu thrugh the prcess f installing and cnfiguring PepleTls 8.55.27 (r current versin) via Windws Remte Applicatin (App). Remte App allws the end user t run

More information

ClassFlow Administrator User Guide

ClassFlow Administrator User Guide ClassFlw Administratr User Guide ClassFlw User Engagement Team April 2017 www.classflw.cm 1 Cntents Overview... 3 User Management... 3 Manual Entry via the User Management Page... 4 Creating Individual

More information

VMware AirWatch Certificate Authentication for Cisco IPSec VPN

VMware AirWatch Certificate Authentication for Cisco IPSec VPN VMware AirWatch Certificate Authenticatin fr Cisc IPSec VPN Fr VMware AirWatch Have dcumentatin feedback? Submit a Dcumentatin Feedback supprt ticket using the Supprt Wizard n supprt.air-watch.cm. This

More information

Using the Swiftpage Connect List Manager

Using the Swiftpage Connect List Manager Quick Start Guide T: Using the Swiftpage Cnnect List Manager The Swiftpage Cnnect List Manager can be used t imprt yur cntacts, mdify cntact infrmatin, create grups ut f thse cntacts, filter yur cntacts

More information

ONLINE GRANT APPLICATION INSTRUCTIONS

ONLINE GRANT APPLICATION INSTRUCTIONS Overview ONLINE GRANT APPLICATION INSTRUCTIONS This dcument is designed t prvide grant applicants with instructins fr use f the Fundant Grant Lifecycle Manager applicatin fr grants frm the Oberktter Fundatin.

More information

SmartPass User Guide Page 1 of 50

SmartPass User Guide Page 1 of 50 SmartPass User Guide Table f Cntents Table f Cntents... 2 1. Intrductin... 3 2. Register t SmartPass... 4 2.1 Citizen/Resident registratin... 4 2.1.1 Prerequisites fr Citizen/Resident registratin... 4

More information

Using the Swiftpage Connect List Manager

Using the Swiftpage Connect List Manager Quick Start Guide T: Using the Swiftpage Cnnect List Manager The Swiftpage Cnnect List Manager can be used t imprt yur cntacts, mdify cntact infrmatin, create grups ut f thse cntacts, filter yur cntacts

More information

User Guide. Document Version: 1.0. Solution Version:

User Guide. Document Version: 1.0. Solution Version: User Guide Dcument Versin: 1.0 Slutin Versin: 365.082017.3.1 Table f Cntents Prduct Overview... 3 Hw t Install and Activate Custmer Satisfactin Survey Slutin?... 4 Security Rles in Custmer Satisfactin

More information

Integrating QuickBooks with TimePro

Integrating QuickBooks with TimePro Integrating QuickBks with TimePr With TimePr s QuickBks Integratin Mdule, yu can imprt and exprt data between TimePr and QuickBks. Imprting Data frm QuickBks The TimePr QuickBks Imprt Facility allws data

More information

Launching Xacta 360 Marketplace AMI Guide June 2017

Launching Xacta 360 Marketplace AMI Guide June 2017 Launching Xacta 360 Marketplace AMI Guide June 2017 Tels Crpratin 2017. All rights reserved. U.S. patents Ns. 6,901,346; 6,980,927; 6,983,221; 6,993,448; and 7,380,270. Xacta is a registered trademark

More information

AT&T Corporate Voice Mail Unified Messaging (CVM-UM) Quick Start

AT&T Corporate Voice Mail Unified Messaging (CVM-UM) Quick Start AT&T Crprate Vice Mail Unified Messaging (CVM-UM) Quick Start 2011 AT&T Intellectual Prperty. All rights reserved. AT&T the lg and all ther AT&T marks cntained herein are trademarks f AT&T Intellectual

More information

IMPORTING INFOSPHERE DATA ARCHITECT MODELS INFORMATION SERVER V8.7

IMPORTING INFOSPHERE DATA ARCHITECT MODELS INFORMATION SERVER V8.7 IMPORTING INFOSPHERE DATA ARCHITECT MODELS INFORMATION SERVER V8.7 Prepared by: March Haber, march@il.ibm.cm Last Updated: January, 2012 IBM MetaData Wrkbench Enablement Series Table f Cntents: Table f

More information

These tasks can now be performed by a special program called FTP clients.

These tasks can now be performed by a special program called FTP clients. FTP Cmmander FAQ: Intrductin FTP (File Transfer Prtcl) was first used in Unix systems a lng time ag t cpy and mve shared files. With the develpment f the Internet, FTP became widely used t uplad and dwnlad

More information

CaseWare Working Papers. Data Store user guide

CaseWare Working Papers. Data Store user guide CaseWare Wrking Papers Data Stre user guide Index 1. What is a Data Stre?... 3 1.1. When using a Data Stre, the fllwing features are available:... 3 1.1.1.1. Integratin with Windws Active Directry... 3

More information

Secure File Transfer Protocol (SFTP) Interface for Data Intake User Guide

Secure File Transfer Protocol (SFTP) Interface for Data Intake User Guide Secure File Transfer Prtcl (SFTP) Interface fr Data Intake User Guide Cntents Descriptin... 2 Steps fr firms new t batch submissin... 2 Acquiring necessary FINRA accunts... 2 SFTP Access t FINRA... 2 SFTP

More information

Upgrade Guide. Medtech Evolution General Practice. Version 1.9 Build (March 2018)

Upgrade Guide. Medtech Evolution General Practice. Version 1.9 Build (March 2018) Upgrade Guide Medtech Evlutin General Practice Versin 1.9 Build 1.9.0.312 (March 2018) These instructins cntain imprtant infrmatin fr all Medtech Evlutin users and IT Supprt persnnel. We suggest that these

More information

Kaltura Video Extension for SharePoint 2013 Deployment Guide for Microsoft Office 365. Version: 1.0

Kaltura Video Extension for SharePoint 2013 Deployment Guide for Microsoft Office 365. Version: 1.0 Kaltura Vide Extensin fr SharePint 2013 Deplyment Guide fr Micrsft Office 365 Versin: 1.0 Kaltura Business Headquarters 250 Park Avenue Suth, 10th Flr, New Yrk, NY 10003 Tel.: +1 800 871 5224 Cpyright

More information

DIVAR IP 3000 Field Installation Guide

DIVAR IP 3000 Field Installation Guide CCTV IP Netwrk Vide Technical Brief DIVAR IP 3000 Field Installatin Guide 1 DIVAR IP 3000 Field Installatin Guide Overview The purpse f this guide is t prvide the step-by-step prcess f installing a DIVAR

More information

Establishing two-factor authentication with FortiGate and HOTPin authentication server from Celestix Networks

Establishing two-factor authentication with FortiGate and HOTPin authentication server from Celestix Networks Establishing tw-factr authenticatin with FrtiGate and HOTPin authenticatin server frm Celestix Netwrks Cntact Infrmatin www.celestix.cm Celestix Netwrks USA Celestix Netwrks EMEA Celestix Netwrks APAC

More information

Date: October User guide. Integration through ONVIF driver. Partner Self-test. Prepared By: Devices & Integrations Team, Milestone Systems

Date: October User guide. Integration through ONVIF driver. Partner Self-test. Prepared By: Devices & Integrations Team, Milestone Systems Date: Octber 2018 User guide Integratin thrugh ONVIF driver. Prepared By: Devices & Integratins Team, Milestne Systems 2 Welcme t the User Guide fr Online Test Tl The aim f this dcument is t prvide guidance

More information

My Dashboard Instructions

My Dashboard Instructions Welcme t Keep America Beautiful s. The is a ne- stp spt fr: Keeping yur affiliate infrmatin up t date fr Keep America Beautiful. Cmpleting yur required reprts t keep yur affiliate in Gd Standing. Registering

More information

Upgrading Kaltura MediaSpace TM Enterprise 1.0 to Kaltura MediaSpace TM Enterprise 2.0

Upgrading Kaltura MediaSpace TM Enterprise 1.0 to Kaltura MediaSpace TM Enterprise 2.0 Upgrading Kaltura MediaSpace TM Enterprise 1.0 t Kaltura MediaSpace TM Enterprise 2.0 Assumptins: The existing cde was checked ut f: svn+ssh://mediaspace@kelev.kaltura.cm/usr/lcal/kalsurce/prjects/m ediaspace/scial/branches/production/website/.

More information

Towne Information Systems, Inc. Inter-Office Correspondence

Towne Information Systems, Inc. Inter-Office Correspondence Twne Infrmatin Systems, Inc. Inter-Office Crrespndence Date: 2/25/2019 Frm: Bill Salyers Subject: Getting Started with O365 By nw yu shuld have read abut ur mve t Micrsft O365 a new versin f Micrsft Office.

More information

Deploy Your First Cloud Foundry App to Any Cloud Foundry Service Provider

Deploy Your First Cloud Foundry App to Any Cloud Foundry Service Provider Deply Yur First Clud Fundry App t Any Clud Fundry Service Prvider cludwrkshp.rg/cludfundry Presenter: Dave Nielsen Clud Cmputing Evangelist @davenielsen May 2015 Dave Nielsen dnielsen@gmail.cm twitter.cm/davenielsen

More information

1 Getting and Extracting the Upgrader

1 Getting and Extracting the Upgrader Hughes BGAN-X 9202 Upgrader User Guide (Mac) Rev 1.0 (23-Feb-12) This dcument explains hw t use the Hughes BGAN Upgrader prgram fr the 9202 User Terminal using a Mac Nte: Mac OS X Versin 10.4 r newer is

More information

Upgrade Guide. Medtech Evolution Specialist. Version 1.11 Build (October 2018)

Upgrade Guide. Medtech Evolution Specialist. Version 1.11 Build (October 2018) Upgrade Guide Medtech Evlutin Specialist Versin 1.11 Build 1.11.0.4 (Octber 2018) These instructins cntain imprtant infrmatin fr all Medtech Evlutin users and IT Supprt persnnel. We suggest that these

More information

Your New Service Request Process: Technical Support Reference Guide for Cisco Customer Journey Platform

Your New Service Request Process: Technical Support Reference Guide for Cisco Customer Journey Platform Supprt Guide Yur New Service Request Prcess: Technical Supprt Reference Guide fr Cisc Custmer Jurney Platfrm September 2018 2018 Cisc and/r its affiliates. All rights reserved. This dcument is Cisc Public

More information

Using MeetingSquared as an Administrator

Using MeetingSquared as an Administrator Using MeetingSquared as an Administratr Use the MeetingSquared web interface t set up and manage yur meeting. MeetingSquared is part f SharePint within Office 365 s yu use a web brwser t lg in using yur

More information

Anonymous User Manual

Anonymous User Manual Annymus User Manual esuppliercnnect Versin 9.4 January 15 th, 2017 Page 1/32 January 15 th, 2017 v9.4 Table f cntents: 1 Intrductin 3 2 Abut esuppliercnnect 5 2.1 Prtal Access 6 2.1 Prtal Structure 7 2.2

More information

Please contact technical support if you have questions about the directory that your organization uses for user management.

Please contact technical support if you have questions about the directory that your organization uses for user management. Overview ACTIVE DATA CALENDAR LDAP/AD IMPLEMENTATION GUIDE Active Data Calendar allws fr the use f single authenticatin fr users lgging int the administrative area f the applicatin thrugh LDAP/AD. LDAP

More information

Entering an NSERC CCV: Step by Step

Entering an NSERC CCV: Step by Step Entering an NSERC CCV: Step by Step - 2018 G t CCV Lgin Page Nte that usernames and passwrds frm ther NSERC sites wn t wrk n the CCV site. If this is yur first CCV, yu ll need t register: Click n Lgin,

More information

Remote Document Delivery

Remote Document Delivery Yu will have the ptin t electrnically deliver the Cntract Package t yur custmers via a Dcument Delivery website, rather than printing them in the reviewing r printing steps f the ecntracting prcess. The

More information

ROCK-POND REPORTING 2.1

ROCK-POND REPORTING 2.1 ROCK-POND REPORTING 2.1 AUTO-SCHEDULER USER GUIDE Revised n 08/19/2014 OVERVIEW The purpse f this dcument is t describe the prcess in which t fllw t setup the Rck-Pnd Reprting prduct s that users can schedule

More information

VISITSCOTLAND - TOURS MANAGEMENT SYSTEM Manual for Tour Operators

VISITSCOTLAND - TOURS MANAGEMENT SYSTEM Manual for Tour Operators VISITSCOTLAND - TOURS MANAGEMENT SYSTEM Manual fr Tur Operatrs 1 CONTENTS GETTING STARTED... 3 REGISTER AND CREATE YOUR ACCOUNT... 3 OPERATOR PROFILE... 4 Create yur Operatr Prfile... 4 ADD A TOUR LISTING...

More information

SAS Viya 3.2 Administration: Mobile Devices

SAS Viya 3.2 Administration: Mobile Devices SAS Viya 3.2 Administratin: Mbile Devices Mbile Devices: Overview As an administratr, yu can manage a device s access t SAS Mbile BI, either by exclusin r inclusin. If yu manage by exclusin, all devices

More information

I - EDocman Installation EDocman component EDocman Categories module EDocman Documents Module...2

I - EDocman Installation EDocman component EDocman Categories module EDocman Documents Module...2 I - EDcman Installatin...2 1 - EDcman cmpnent...2 2 - EDcman Categries mdule...2 3 - EDcman Dcuments Mdule...2 4 - EDcman Search Plugin...3 5 - SH404 SEF plugin...3 II - Using EDcman extensin...3 I - EDcman

More information

CREATING A DONOR ACCOUNT

CREATING A DONOR ACCOUNT CREATING A DONOR ACCOUNT An Online Giving Accunt shuld be created t have the ability t set-up recurring dnatins, pledges and be able t view and print histry. Setting up an accunt will als allw yu t set-up

More information

BMC Remedyforce Integration with Remote Support

BMC Remedyforce Integration with Remote Support BMC Remedyfrce Integratin with Remte Supprt 2003-2018 BeyndTrust, Inc. All Rights Reserved. BEYONDTRUST, its lg, and JUMP are trademarks f BeyndTrust, Inc. Other trademarks are the prperty f their respective

More information

BMC Remedyforce Integration with Bomgar Remote Support

BMC Remedyforce Integration with Bomgar Remote Support BMC Remedyfrce Integratin with Bmgar Remte Supprt 2017 Bmgar Crpratin. All rights reserved wrldwide. BOMGAR and the BOMGAR lg are trademarks f Bmgar Crpratin; ther trademarks shwn are the prperty f their

More information

1 Getting and Extracting the Upgrader

1 Getting and Extracting the Upgrader Hughes BGAN-X 9202 Upgrader User Guide (PC) Rev 1.0 (23-Feb-12) This dcument explains hw t use the Hughes BGAN-X Upgrader prgram fr the 9202 User Terminal using a PC. 1 Getting and Extracting the Upgrader

More information

WorldShip PRE-INSTALLATION INSTRUCTIONS: INSTALLATION INSTRUCTIONS: Window (if available) Install on a Single or Workgroup Workstation

WorldShip PRE-INSTALLATION INSTRUCTIONS: INSTALLATION INSTRUCTIONS: Window (if available) Install on a Single or Workgroup Workstation PRE-INSTALLATION INSTRUCTIONS: This dcument discusses using the WrldShip DVD t install WrldShip. Yu can als install WrldShip frm the Web. G t the fllwing Web page and click the apprpriate dwnlad link:

More information

Municode Website Instructions

Municode Website Instructions Municde Website instructins Municde Website Instructins The new and imprved Municde site allws yu t navigate t, print, save, e-mail and link t desired sectins f the Online Cde f Ordinances with greater

More information

APPLY PAGE: LOGON PAGE:

APPLY PAGE: LOGON PAGE: APPLY PAGE: Upn accessing the system fr the first time, yu will land n the Apply Page. This page will shw yu any currently pen pprtunities that yu can apply fr, as well as any relevant deadlines r ther

More information

Release Notes. Dell SonicWALL Security BETA

Release Notes. Dell SonicWALL  Security BETA Release Ntes Email Security Dell SnicWALL Email Security 7.4.1 BETA SnicOS Cntents System Cmpatibility... 1 Enhancements in Email Security 7.4.1... 2 Upgrading t Email Security 7.4.1... 3 Related Technical

More information

Configuring Database & SQL Query Monitoring With Sentry-go Quick & Plus! monitors

Configuring Database & SQL Query Monitoring With Sentry-go Quick & Plus! monitors Cnfiguring Database & SQL Query Mnitring With Sentry-g Quick & Plus! mnitrs 3Ds (UK) Limited, Nvember, 2013 http://www.sentry-g.cm Be Practive, Nt Reactive! One f the best ways f ensuring a database is

More information

Quick Start Guide for EAB Campus Advisors

Quick Start Guide for EAB Campus Advisors Student Success Cllabrative Quick Start Guide fr EAB Campus Advisrs Clemsn has launched the EAB Campus platfrm fr advisrs and thers, with the gal f helping students explre a path t timely graduatin cmpletin

More information

Release Notes. Dell SonicWALL Security firmware is supported on the following appliances: Dell SonicWALL Security 200

Release Notes. Dell SonicWALL  Security firmware is supported on the following appliances: Dell SonicWALL  Security 200 Release Ntes Email Security Dell SnicWALL Email Security 8.0.1 SnicOS Cntents System Cmpatibility... 1 Enhancements in Email Security 8.0.1... 2 Reslved Issues... 3 Upgrading t Email Security 8.0.1...

More information

Enterprise Installation

Enterprise Installation Enterprise Installatin Mnnit Crpratin Versin 3.6.0.0 Cntents Prerequisites... 3 Web Server... 3 SQL Server... 3 Installatin... 4 Activatin Key... 4 Dwnlad... 4 Cnfiguratin Wizard... 4 Activatin... 4 Create

More information

istartsmart 3.5 Upgrade - Installation Instructions

istartsmart 3.5 Upgrade - Installation Instructions istartsmart 3.5 Upgrade - Installatin Instructins Minimum System Requirements: Hatch All-In-One istartsmart Cmputer Learning Center v1.0 r v1.1 Internet access - either hard-wired r wireless cnnectin is

More information

Sircon User Guide A Guide to Using the Vertafore Sircon Self-Service Portal

Sircon User Guide A Guide to Using the Vertafore Sircon Self-Service Portal Sircn User Guide A Guide t Using the Vertafre Sircn Self-Service Prtal September 2016 Versin 16.8 Cntents Cntents Using the Vertafre Sircn Self-Service Prtal... 3 Lg In... 3 Hme Page... 4 Lg New Cases...

More information

Firmware Update. This utility installs an updated version of the Wireless Earbuds firmware and provides the following changes and benefits:

Firmware Update. This utility installs an updated version of the Wireless Earbuds firmware and provides the following changes and benefits: What Des This D? Firmware Update This utility installs an updated versin f the Wireless Earbuds firmware and prvides the fllwing changes and benefits: Imprves audi stability when cnnected t a device Reslves

More information

Welcome to Remote Access Services (RAS) Virtual Desktop vs Extended Network. General

Welcome to Remote Access Services (RAS) Virtual Desktop vs Extended Network. General Welcme t Remte Access Services (RAS) Our gal is t prvide yu with seamless access t the TD netwrk, including the TD intranet site, yur applicatins and files, and ther imprtant wrk resurces -- whether yu

More information

Evidence.com 1.30 Release Notes

Evidence.com 1.30 Release Notes Evidence.cm 1.30 Release Ntes December 8, 2015 Dcument Versin 1.3 Apple is a trademark f Apple, Inc., registered in the U.S. and ther cuntries. Windws is a registered trademark f Micrsft Crpratin in the

More information

University Facilities

University Facilities 1 University Facilities WebTMA Requestr Training Manual WebTMA is Drexel University s nline wrk rder management system. The fllwing instructins will walk yu thrugh the steps n hw t: 1. Submit a wrk request

More information

Extended Vendors lets you: Maintain vendors across multiple Sage 300 companies using the Copy Vendors functionality. o

Extended Vendors lets you: Maintain vendors across multiple Sage 300 companies using the Copy Vendors functionality. o Extended Vendrs Extended Vendrs is an enhanced replacement fr the Sage Vendrs frm. It prvides yu with mre infrmatin while entering a PO and fast access t additinal PO, Vendr, and Item infrmatin. Extended

More information

Configure Data Source for Automatic Import from CMDB

Configure Data Source for Automatic Import from CMDB AvailabilityGuard TM Cnfigure Data Surce fr Autmatic Imprt frm CMDB AvailabilityGuard allws yu t cnfigure business entities (such as services, divisins, and applicatins) and assign hsts, databases, and

More information

PAY EQUITY HEARINGS TRIBUNAL. Filing Guide. A Guide to Preparing and Filing Forms and Submissions with the Pay Equity Hearings Tribunal

PAY EQUITY HEARINGS TRIBUNAL. Filing Guide. A Guide to Preparing and Filing Forms and Submissions with the Pay Equity Hearings Tribunal PAY EQUITY HEARINGS TRIBUNAL Filing Guide A Guide t Preparing and Filing Frms and Submissins with the Pay Equity Hearings Tribunal This Filing Guide prvides general infrmatin nly and shuld nt be taken

More information

Design Document: LinkedIn Basics

Design Document: LinkedIn Basics Design Dcument: LinkedIn Basics Class Descriptin Learn hw LinkedIn--the Internet's number ne prfessinal netwrking website--allws yu t create and prmte wrkplace skills, experience, and successes in this

More information

Log in with your WUSTL Key and password If you have forgotten your WUSTL Key or password, see

Log in with your WUSTL Key and password If you have forgotten your WUSTL Key or password, see Student Help Manual fr CrnerstneCnnect Accmmdate Accessing Accmmdate G t URL https://crnerstne.wustl.edu/crnerstnecnnect.aspx Click the link at tp right fr Accmmdate Lg in with yur WUSTL Key and passwrd

More information

Paraben s Phone Recovery Stick

Paraben s Phone Recovery Stick Paraben s Phne Recvery Stick v. 3.0 User manual Cntents Abut Phne Recvery Stick... 3 What s new!... 3 System Requirements... 3 Applicatin User Interface... 4 Understanding the User Interface... 4 Main

More information

OATS Registration and User Entitlement Guide

OATS Registration and User Entitlement Guide OATS Registratin and User Entitlement Guide The OATS Registratin and Entitlement Guide prvides the fllwing infrmatin: OATS Registratin The prcess and dcumentatin required fr a firm r Service Prvider t

More information

Stock Affiliate API workflow

Stock Affiliate API workflow Adbe Stck Stck Affiliate API wrkflw The purpse f this dcument is t illustrate the verall prcess and technical wrkflw fr Adbe Stck partners wh want t integrate the Adbe Stck Search API int their applicatins.

More information

OASIS SUBMISSIONS FOR FLORIDA: SYSTEM FUNCTIONS

OASIS SUBMISSIONS FOR FLORIDA: SYSTEM FUNCTIONS OASIS SUBMISSIONS FOR FLORIDA: SYSTEM FUNCTIONS OASIS SYSTEM FUNCTIONS... 2 ESTABLISHING THE COMMUNICATION CONNECTION... 2 ACCESSING THE OASIS SYSTEM... 3 SUBMITTING OASIS DATA FILES... 5 OASIS INITIAL

More information

Telkom VPN-Lite router setup User Manual Billion 800VGT

Telkom VPN-Lite router setup User Manual Billion 800VGT Telkm VPN-Lite ruter setup User Manual Billin 800VGT Cntents 1. Intrductin... 3 2. Befre yu start... 4 3. VPN-Lite Setup Using Windws Utility... 5 4. VPN-Lite Setup using yur web brwser... 7 5. VPN-Lite

More information

BI Publisher TEMPLATE Tutorial

BI Publisher TEMPLATE Tutorial PepleSft Campus Slutins 9.0 BI Publisher TEMPLATE Tutrial Lessn T2 Create, Frmat and View a Simple Reprt Using an Existing Query with Real Data This tutrial assumes that yu have cmpleted BI Publisher Tutrial:

More information

1 Getting and Extracting the Upgrader

1 Getting and Extracting the Upgrader Hughes BGAN-X 9211 Upgrader User Guide (Mac) Rev 1.2 (6-Jul-17) This dcument explains hw t use the Hughes BGAN Upgrader prgram fr the 9211 User Terminal using a Mac Nte: Mac OS X Versin 10.4 r newer is

More information

AvePoint Pipeline Pro 2.0 for Microsoft Dynamics CRM

AvePoint Pipeline Pro 2.0 for Microsoft Dynamics CRM AvePint Pipeline Pr 2.0 fr Micrsft Dynamics CRM Installatin and Cnfiguratin Guide Revisin E Issued April 2014 1 Table f Cntents Abut AvePint Pipeline Pr... 3 Required Permissins... 4 Overview f Installatin

More information

UBC BLOGS NSYNC PLUGIN

UBC BLOGS NSYNC PLUGIN UBC BLOGS NSYNC PLUGIN THE NSYNC 1.1 PLUGIN IN UBC BLOGS ALLOWS YOU TO PERMIT OTHER SITES TO PUSH CONTENT FROM THEIR SITE TO YOUR SITE BY ASSIGNING POSTS TO PRE-DETERMINED CATEGORIES. As shwn belw, psts

More information

Dear Milestone Customer,

Dear Milestone Customer, Dear Milestne Custmer, With the purchase f Milestne Xprtect Transact yu have chsen a very flexible ptin t yur Milestne Xprtect Business slutin. Milestne Xprtect Transact enables yu t stre a serial data

More information

Planning, installing, and configuring IBM CMIS for Content Manager OnDemand

Planning, installing, and configuring IBM CMIS for Content Manager OnDemand Planning, installing, and cnfiguring IBM CMIS fr Cntent Manager OnDemand Cntents IBM CMIS fr Cntent Manager OnDemand verview... 4 Planning fr IBM CMIS fr Cntent Manager OnDemand... 5 Prerequisites fr installing

More information

ONTARIO LABOUR RELATIONS BOARD. Filing Guide. A Guide to Preparing and Filing Forms and Submissions with the Ontario Labour Relations Board

ONTARIO LABOUR RELATIONS BOARD. Filing Guide. A Guide to Preparing and Filing Forms and Submissions with the Ontario Labour Relations Board ONTARIO LABOUR RELATIONS BOARD Filing Guide A Guide t Preparing and Filing Frms and Submissins with the Ontari Labur Relatins Bard This Filing Guide prvides general infrmatin nly and shuld nt be taken

More information

Class Roster. Curriculum Class Roster Step-By-Step Procedure

Class Roster. Curriculum Class Roster Step-By-Step Procedure Imprtant Infrmatin The page prvides faculty and staff a list f students wh are enrlled and waitlisted in a particular class. Instructrs are given access t each class fr which they are listed as an instructr,

More information

Managing Your Access To The Open Banking Directory How To Guide

Managing Your Access To The Open Banking Directory How To Guide Managing Yur Access T The Open Banking Directry Hw T Guide Date: June 2018 Versin: v2.0 Classificatin: PUBLIC OPEN BANKING LIMITED 2018 Page 1 f 32 Cntents 1. Intrductin 3 2. Signing Up 4 3. Lgging In

More information

Proper Document Usage and Document Distribution. TIP! How to Use the Guide. Managing the News Page

Proper Document Usage and Document Distribution. TIP! How to Use the Guide. Managing the News Page Managing the News Page TABLE OF CONTENTS: The News Page Key Infrmatin Area fr Members... 2 Newsletter Articles... 3 Adding Newsletter as Individual Articles... 3 Adding a Newsletter Created Externally...

More information

Cisco Tetration Analytics, Release , Release Notes

Cisco Tetration Analytics, Release , Release Notes Cisc Tetratin Analytics, Release 1.102.21, Release Ntes This dcument describes the features, caveats, and limitatins fr the Cisc Tetratin Analytics sftware. Additinal prduct Release ntes are smetimes updated

More information

Custodial Integrator. Release Notes. Version 3.11 (TLM)

Custodial Integrator. Release Notes. Version 3.11 (TLM) Custdial Integratr Release Ntes Versin 3.11 (TLM) 2018 Mrningstar. All Rights Reserved. Custdial Integratr Prduct Versin: V3.11.001 Dcument Versin: 020 Dcument Issue Date: December 14, 2018 Technical Supprt:

More information

Using UB Stream and UBlearns

Using UB Stream and UBlearns Using UB Stream and UBlearns Instructrs can nw uplad vides/audi r create a vide using their webcam in UBLearns. There is a new mashup tl (MEDIAL) that allws yu t uplad yur media files t UB s streaming

More information

Getting Started with the SDAccel Environment on Nimbix Cloud

Getting Started with the SDAccel Environment on Nimbix Cloud Getting Started with the SDAccel Envirnment n Nimbix Clud Revisin Histry The fllwing table shws the revisin histry fr this dcument. Date Versin Changes 09/17/2018 201809 Updated figures thrughut Updated

More information

Test Pilot User Guide

Test Pilot User Guide Test Pilt User Guide Adapted frm http://www.clearlearning.cm Accessing Assessments and Surveys Test Pilt assessments and surveys are designed t be delivered t anyne using a standard web brwser and thus

More information

SafeDispatch SDR Gateway for MOTOROLA TETRA

SafeDispatch SDR Gateway for MOTOROLA TETRA SafeDispatch SDR Gateway fr MOTOROLA TETRA SafeMbile ffers a wrld f wireless applicatins that help rganizatins better manage their mbile assets, fleet and persnnel. Fr mre infrmatin, see www.safembile.cm.

More information

Dolby Conference Phone Support Frequently Asked Questions

Dolby Conference Phone Support Frequently Asked Questions Dlby Cnference Phne Supprt Frequently Asked Questins Versin 1.0, 1 Intrductin This dcument prvides sme answers t frequently asked questins abut the Dlby Cnference Phne. Fr mre detailed infrmatin n any

More information

Telkom VPN-Lite router setup User Manual Billion 810VGTX

Telkom VPN-Lite router setup User Manual Billion 810VGTX Telkm VPN-Lite ruter setup User Manual Billin 810VGTX Cntents Intrductin... 3 Befre yu start... 4 VPN-Lite Setup Using Windws Utility... 5 VPN-Lite Setup using yur web brwser... 7 VPN-Lite Manual Setup

More information

Ephorus Integration Kit

Ephorus Integration Kit Ephrus Integratin Kit Authr: Rbin Hildebrand Versin: 2.0 Date: May 9, 2007 Histry Versin Authr Cmment v1.1 Remc Verhef Created. v1.2 Rbin Hildebrand Single Sign On (Remved v1.7). v1.3 Rbin Hildebrand Reprting

More information

RISKMAN REFERENCE GUIDE TO USER MANAGEMENT (Non-Network Logins)

RISKMAN REFERENCE GUIDE TO USER MANAGEMENT (Non-Network Logins) Intrductin This reference guide is aimed at managers wh will be respnsible fr managing users within RiskMan where RiskMan is nt cnfigured t use netwrk lgins. This guide is used in cnjunctin with the respective

More information

Dynamic Storage (ECS)

Dynamic Storage (ECS) User Guide Dynamic Strage (ECS) Swisscm (Schweiz) AG 1 / 10 Cntent 1 Abut Dynamic Strage... 3 2 Virtual drive, the EMC CIFS-ECS Tl... 4 3 Amazn S3 Brwer... 6 4 Strage Gateway Appliance... 9 5 Amazn S3

More information

TRAINING GUIDE. Overview of Lucity Spatial

TRAINING GUIDE. Overview of Lucity Spatial TRAINING GUIDE Overview f Lucity Spatial Overview f Lucity Spatial In this sessin, we ll cver the key cmpnents f Lucity Spatial. Table f Cntents Lucity Spatial... 2 Requirements... 2 Setup... 3 Assign

More information

Exporting and Importing the Blackboard Vista Grade Book

Exporting and Importing the Blackboard Vista Grade Book Exprting and Imprting the Blackbard Vista Grade Bk Yu can use the Blackbard Vista Grade Bk with a spreadsheet prgram, such as Micrsft Excel, in a number f different ways. Many instructrs wh have used Excel

More information

Delivering StreetLinks Orders WinTotal. Total... 2 Aurora... 6 Athena... 9

Delivering StreetLinks Orders WinTotal. Total... 2 Aurora... 6 Athena... 9 Delivering StreetLinks Orders WinTtal Ttal... 2 Aurra... 6 Athena... 9 1 Delivering StreetLinks Orders WinTtal (Ttal) http://help.alamde.cm/plugins/streetlinks/ Installing XSite Order Manager In rder t

More information

Concentrix University Learning Portal FAQ Document

Concentrix University Learning Portal FAQ Document Cncentrix University Learning Prtal FAQ Dcument Belw are answers t sme cmmnly asked questins abut the Cncentrix University Learning Prtal. If yu d nt see an answer t yur questin, there are cntacts fr additinal

More information

Client Configurations

Client Configurations Email Client Cnfiguratins Chse ne f the links belw fr yur particular email client. Easy t use instructins will help yu change the settings n yur email client t ur settings. Recmmended Email Settings Incming

More information

AtHoc MASS WARNING AND NOTIFICATION

AtHoc MASS WARNING AND NOTIFICATION AtHc MASS WARNING AND NOTIFICATION ALC Mass Warning and Ntificatin (MWN) System ALC s emergency mass ntificatin system (knwn as AtHc the manufacturer s cmpany name) prvides the installatin with an effective

More information

Enterprise Chat and Developer s Guide to Web Service APIs for Chat, Release 11.6(1)

Enterprise Chat and  Developer s Guide to Web Service APIs for Chat, Release 11.6(1) Enterprise Chat and Email Develper s Guide t Web Service APIs fr Chat, Release 11.6(1) Fr Unified Cntact Center Enterprise August 2017 Americas Headquarters Cisc Systems, Inc. 170 West Tasman Drive San

More information

WebEx Web Conferencing Quick Start Guide

WebEx Web Conferencing Quick Start Guide WebEx Web Cnferencing Quick Start Guide WebEx allws the curse instructr and participants t cnnect using web cnferencing and VIP using yur cmputer r smart device. WebEx's allws yu t share cntent, chat,

More information

Verifone MX850 All-In-One Device: Before connecting the MX850 to your PC, the MX850 Driver CD will need to be installed.

Verifone MX850 All-In-One Device: Before connecting the MX850 to your PC, the MX850 Driver CD will need to be installed. Befre the installatin and cnfiguratin f the required prcessing hardware, McAllister Payment Slutins (MPS), and AVImark, the McAllister Payment Slutins PA-DSS Implementatin Guide must be reviewed in its

More information

AvePoint Timeline Enterprise for Microsoft Dynamics CRM

AvePoint Timeline Enterprise for Microsoft Dynamics CRM AvePint Timeline Enterprise 1.0.2 fr Micrsft Dynamics CRM Installatin and Cnfiguratin Guide Revisin B Issued Nvember 2013 Timeline Enterprise fr Micrsft Dynamics CRM Install and Cnfig 1 Table f Cntents

More information

USING THE ACCOUNT MANAGER. Getting started. Logging in and out. Welcome screen

USING THE ACCOUNT MANAGER. Getting started. Logging in and out. Welcome screen USING THE ACCOUNT MANAGER Use the Accunt Manager t request the fllwing accunt types: Guest (up t 5 accunts) 1 External External + SharePint Prject Fr a full descriptin f these accunt types and what yu

More information

Create your Applicant Area

Create your Applicant Area Research psitins 2018 - Applicant Area Guide Create yur Applicant Area Click n the link "Create my Applicant Area". Fill in the infrmatin required t create an accunt and "Validate". Passwrds - Infrmatin

More information

Model WM100. Product Manual

Model WM100. Product Manual Mdel WM100 Prduct Manual Table f Cntents Sectin Page 1. Hardware... 3 2. Sftware... 4 3. Features... 5 4. Installatin... 6 5. App Devices... 9 6. App Rms... 12 7. App Scenes... 14 8. App Setup... 18 Cntents

More information

Users, groups, collections and submissions in DSpace. Contents

Users, groups, collections and submissions in DSpace. Contents Users, grups, cllectins and submissins in DSpace Cntents Key cncepts... 2 User accunts and authenticatin... 2 Authrisatin and privileges... 2 Resurce plicies... 2 User rles and grups... 3 Submissin wrkflws...

More information