ORCA-Registry v1.0 Documentation

Size: px
Start display at page:

Download "ORCA-Registry v1.0 Documentation"

Transcription

1 ORCA-Registry v1.0 Documentation Document History James Blanden 13 November 2007 Version 1.0 Initial document. Table of Contents Background...2 Document Scope...2 Requirements...2 Overview...3 Functional Specification...5 Public Access...5 Search...5 Browse...6 View Registry Object...7 Web Services...9 Administration...10 List Data Sources...10 Add Data Source...11 View Data Source...12 Edit Data Source...16 Delete Data Source...17 Brief Technical Overview...18 System Requirements...18 File Structure...18 Database...19 Schemata...19 ORCA-Registry v1.0 Documentation 13 November 2007 Page 1 of 19

2 Background The Online Research Collections Australia (ORCA)-Registry software is a product of the Australian Partnership for Sustainable Repositories (APSR) Collection Services and Infrastructures (COSI) initiatives of The ORCA-Registry is a PHP/PostgreSQL web application designed to be housed within an instance of the COSI-Framework. More information about ORCA can be found at the APSR website Document Scope This document describes the ORCA-Registry software only. It does not describe specifics of the software framework that is required to house it (see the COSI-Framework documentation for more information); issues relating to governance of an instance of the software; or provide guidelines or information for those who wish to provide data to an instance of the software. Installation instructions are provided in the software download, and so are not repeated here. A general knowledge of web application design and technologies is assumed. Requirements Requirements to be met by the ORCA-Registry web application software were defined at a high level in background and project documentation. As the development progressed, understanding and definition of the requirements became clearer these are summarised below: The registry data structures are to be based on those described in (and the schema provided by) ISO Registry Services for Libraries and Related Organisations (ISO TC46 SC4 Working Draft, 13 December 2005). Available as a Microsoft Word document at Define an XML schema (based on the above) for the import, export, and interchange of data into, out of, and between instances of the software. Provide for the import of conforming XML data over HTTP. Provide for the export of conforming XML over HTTP thus enabling the aggregation/federation of registries, and providing data for utilisation by external services. Provide public access to a web-based user interface for searching and browsing (discovery) of data in the registry. Provide restricted access to a web-based user interface for complete administration of the registry for the owners of the registry to manage the sources of data that the registry will be populated from. Provide restricted access to a web-based user interface for partial administration of a defined set of records in the registry for the owners of the sources of data that the registry will be populated from to manage some aspects of registry interaction with their data. ORCA-Registry v1.0 Documentation 13 November 2007 Page 2 of 19

3 Overview The ORCA-Registry is a PHP/PostgreSQL web application designed to be housed in an instance of the COSI-Framework (see the COSI-Framework documentation for more information). Figure 1 (below) provides a conceptual overview of the application design. Figure 1: Overview of the ORCA-Registry. ORCA-Registry v1.0 Documentation 13 November 2007 Page 3 of 19

4 The registry is a database containing Registry Object records along with some information to support the gathering of this data from data providers via their Data Sources. Registry Object records are one of four classes describing a Collection, Service, Party, or Activity. These records are defined using the ORCA-Registry Data Interchange Schema (an XML schema based on that provided in the ISO 2146 draft standard). The registry software will only import, store, and export a subset of the data that can be described using the ORCA-Registry Data Interchange Schema. This subset is referred to as the supported set (for the convenience of data providers, the supported set is defined in an other XML schema). The basic operation of the registry software can be described as follows. An organisation has data (usually housed in a repository of some description, though not necessarily) that they wish to be discoverable by users of the registry. They (the data providers) request that the owners of the registry configure their organisation s repository as a Data Source in the registry. The registry owners configure the Data Source; issuing a key (which is unique within the registry, and taking the form of the reverse domain name of the organisation); setting a URI for where to find the data that the data providers will expose; and creating roles to allow the data providers to manage and test their Data Source against the registry. The data providers now need to provide XML conforming to the ORCA- Registry Data Interchange Schema (and not bothering with more than the supported set) at the URI set for their Data Source (forming a Repository Interface for the Metadata Export box in Figure 1). The data can now be imported into the registry, where it will be discoverable by search and browse, and exposed by web services. ORCA-Registry v1.0 Documentation 13 November 2007 Page 4 of 19

5 Functional Specification Public Access The ORCA-Registry provides public access to functionality that supports discovery, exchange, and further utilisation of the data that it contains, by users and external software. Search The Search activity provides a simple form for searching the registry. The Search provides filtering by Registry Object type (using checkboxes) and a text field for entering a search term or phrase. The Search will look for a case-insensitive match of the entered text across Registry Object names, keys, identifiers, and subjects. Any resulting matches will be filtered according to which types (Collections, Services, Parties, and Activities) have been included the search. A checked checkbox next to a type indicates that objects of that type will be included in the results. The default setting has all of the checkboxes checked, and so will include objects of all types in the results. The search does not look separately at words within a search phrase. It will only return objects within which it can find the exact search phrase (ignoring case). For example: a search for 'the australian' (ignoring quotes) would return objects with the name 'The Australian National University', but would not return objects with the name 'An Australian Story', while a search for 'australian' would return both objects. Figure 2 (below) shows an example of the Search activity displaying results for a search. Figure 2: ORCA-Registry, Search example. If more results than can reasonably be displayed on one page are returned, then the bottom of the page will provide navigation between pages of results, as shown in Figure 3 (below). Figure 3: ORCA-Registry results pagination example. ORCA-Registry v1.0 Documentation 13 November 2007 Page 5 of 19

6 Any search results will consist of a list of records including the following information for each record (where available): Names. A list of all recorded names for the record. Consisting of all name values for the record, delimited by a middle dot character, not including name role or name part type, and hyperlinked to the View Registry Object activity for that record. Type Key. Registry Object type key. Source. The title of the Data Source from which the data was collected. Identifiers. A list of all recorded globally recognised identifiers for the record delimited by a middle dot character. Relations. A list of all recorded relations that the Registry Object has to other Registry Objects collected from the same Data Source. Consisting of relation type: value pairs, delimited by a middle dot character, and hyperlinked to the View Registry Object activities for the related records. Subjects. A list of all recorded subjects for the record. Consisting of subject scheme: value pairs delimited by a middle dot character. Description. All of the recorded descriptions for the record, truncated to less than 300 characters. Consisting of description role: value pairs. Browse The Browse activity provides an alternative means of finding information within the registry. Using the Browse, the entire contents of the registry are accessible by following hyperlinks for the type of Registry Object, and then alphabetical categorisation of record names. Records with a name beginning with the word The will be listed under T as well as the first letter of the first word following The. All Browse results are displayed in the same manner as the Search results. As the Browse is navigated via hyperlinks, and all records are exposed, this also provides a means for external search engines to crawl and index all of the data which can then be discovered with whatever tools they may offer. Figure 4 (below) shows an example of the Browse activity. Figure 4: ORCA-Registry, Browse example. ORCA-Registry v1.0 Documentation 13 November 2007 Page 6 of 19

7 View Registry Object The View Registry Object activity displays all of the data held in the registry for a Registry Object. That is, all of the data for a Registry Object within the supported set collected from a Data Source. The data is displayed as follows: Type. The heading for the record is the Registry Object type of the record. Key. The Registry Object key. Source. The title of the Data Source from which the data was collected. Identifiers. A list of all recorded globally recognised identifiers for the record delimited by line breaks. Relations. A list of all recorded relations that the Registry Object has to other Registry Objects collected from the same Data Source. Consisting of relation type: value pairs, delimited by line breaks, and hyperlinked to the View Registry Object activities for the related records. Physical Addresses. A list of all recorded physical addresses for the record. Consisting of physical address part part type: value sequences (with part type being optional) delimited by line breaks. Electronic Addresses. A list of all recorded electronic addresses for the record. Consisting of electronic address part part type: value sequences (with part type being optional) delimited by line breaks. Subjects. A list of all recorded subjects for the record. Consisting of subject scheme: value pairs delimited by line breaks. Description. All of the recorded descriptions for the record. Consisting of description role: value pairs delimited by line breaks. Activity Type. The Activity type. Group Type. The Group type. Person Type. The Person type. Collection Type. The Collection type. Service Type. The Service type. ORCA-Registry v1.0 Documentation 13 November 2007 Page 7 of 19

8 Figure 5 (below) shows an example of the View Registry Object activity. Figure 5: ORCA-Registry, View Registry Object example. ORCA-Registry v1.0 Documentation 13 November 2007 Page 8 of 19

9 Web Services The Web Services activity displays information and links to the data export services provided by an instance of the registry. As well as supporting the transfer and aggregation of data between and among multiple instances of the ORCA-Registry software, these services also provide a means for external (or downstream ) services to utilise the data (as per the overview diagram in figure 1). The Get Data Source List service retrieves a list of the Data Sources that the registry is configured to gather data from. The response (described by the ORCA-Registry Data Source List Schema) provides the key for each Data Source along with URIs that can be used to retrieve all of the data that the registry has gathered from that source (the instancedatauri), or directly from the source itself (the sourcedatauri). The Get Registry Objects service retrieves all of the supported set of data (described by the ORCA- Registry Data Interchange Schema) that this registry has gathered from the identified Data Source. Figure 6 (below) shows an example of the Web Services activity. Figure 6: ORCA-Registry, Web Services example. ORCA-Registry v1.0 Documentation 13 November 2007 Page 9 of 19

10 Administration The ORCA-Registry installation creates two functional roles in the COSI-Framework, ORCA Administrator and ORCA Data Source Administrator. Members of the ORCA Administrator functional role will have access to all administrative activities, and all Data Source records. Members of the ORCA Data Source Administrator functional role will not be able to add or delete data source records, and will only have access to Data Source records that are owned by organisational roles that they are a member of. List Data Sources The List Data Sources activity displays a list of the all of the Data Sources that the registry is configured to collect data from. ORCA Data Source Administrators will only see Data Sources that are owned by organisational roles that they are a member of. The Data Source list can be filtered by title using the form at the top of the page. If the List Data Sources list contains only one record, then the user will be taken to the View Data Source activity for that record. Figure 7 (below) shows an example of the List Data Sources activity. Figure 7: ORCA-Registry, List Data Sources example. ORCA-Registry v1.0 Documentation 13 November 2007 Page 10 of 19

11 Add Data Source The Add Data Source activity (only accessible by ORCA Administrators) displays a form for adding a new Data Source to the registry. The form indicates that key, title, and URI are mandatory. Key must be unique for an instance of the framework, and it is recommended that it take the form of the reverse domain name of the organisation for which the Data Source is being configured. All Registry Objects at this Data Source will be tested to make sure that their key is prefixed by the Data Source key before they are imported into the registry (or they won t be imported). This is to ensure that all records in the registry have a unique key. URI is the location at which the data (conforming to the ORCA-Registry Data Interchange Schema) is located. If the URI is not yet known, just enter as a placeholder. Figure 8 (below) shows an example of the Add Data Source activity. Figure 8: ORCA-Registry, Add Data Source example. ORCA-Registry v1.0 Documentation 13 November 2007 Page 11 of 19

12 View Data Source The View Data Source activity displays detailed information for a Data Source. This information includes details of the last interaction between the registry and the Data Source (the last run). Figure 9 (below) shows an example of the View Data Source activity in which there have been no interactions with the registry since the creation of the Data Source. Figure 9: ORCA-Registry, View Data Source example. Clicking the Edit button will take the user to the Edit Data Source activity for this record. Clicking the Delete button (only available to ORCA Administrators) will take the user to the Delete Data Source activity for this record. The Test and Import buttons control interaction between the registry and the Data Source. The Clear button removes all records collected from this Data Source from the registry. ORCA-Registry v1.0 Documentation 13 November 2007 Page 12 of 19

13 Clicking the Test button will cause the registry to attempt a connection to the Data Source at its configured URI, and then to validate the data contained in the response against the ORCA-Registry Data Interchange Schema. The results of this test will be displayed at the bottom of the page, but will not be recorded. This provides a test of the Data Source that can be used by ORCA Data Source Administrators to assist in the development of their interfaces, or to assist in troubleshooting a Data Source without risk of modifying data in the registry. Figure 10 (below) shows an example of the View Data Source activity displaying the results of a test of the Data Source. Figure 10: ORCA-Registry, View Data Source, Test example. ORCA-Registry v1.0 Documentation 13 November 2007 Page 13 of 19

14 Clicking the Import button will cause the registry to attempt a connection to the Data Source at its configured URI, validate the data in the response against the ORCA-Registry Data Interchange Schema, and then import the Registry Objects contained in the data into the registry. Each Registry Object described in the data is checked to ensure that its Registry Object key is prefixed by the Data Source key (to make sure that it will be unique in the registry); any existing Registry Object in the registry with the same key is deleted; and the Registry Object is inserted into the registry. The results of this activity are recorded and the page updated to show them. Figure 11 (below) shows an example of the View Data Source activity displaying the results of an import run against the Data Source. Figure 11: ORCA-Registry, View Data Source, Import example. ORCA-Registry v1.0 Documentation 13 November 2007 Page 14 of 19

15 Clicking the Clear button will remove all Registry Objects collected from the Data Source from the registry. Figure 12 (below) shows an example of the View Data Source activity displaying the results of clearing the registry of objects collected from the Data Source. Figure 12: ORCA-Registry, View Data Source, Clear example. ORCA-Registry v1.0 Documentation 13 November 2007 Page 15 of 19

16 Edit Data Source The Edit Data Source activity provides a form for modifying a Data Source. Only ORCA Administrators will be able to modify the Record Owner attribute. The key cannot be changed if there is an error with the key, then the record must be deleted and a new one with the correct key created using the Add Data Source activity. After successfully saving the changes, the user will be taken to the View Data Source activity for that record. Clicking the Cancel button will take the user back to the View Data Source activity for this record (without saving any changes). Figure 13 (below) shows an example of the Edit Data Source activity. Figure 13: ORCA-Registry, Edit Data Source example. ORCA-Registry v1.0 Documentation 13 November 2007 Page 16 of 19

17 Delete Data Source The Delete Data Source activity prompts for confirmation that a Data Source is to be deleted. Clicking the Delete button will remove all Registry Objects collected from the Data Source from the registry, and then delete the Data Source from the registry. Clicking the Cancel button will take the user to the View Data Source activity for that record (without deleting any records). Figure 14 (below) shows an example of the Delete Data Source activity. Figure 14: ORCA-Registry, Delete Data Source example. ORCA-Registry v1.0 Documentation 13 November 2007 Page 17 of 19

18 Brief Technical Overview System Requirements The ORCA-Registry is a PHP/PostgreSQL web application built to utilise the COSI-Framework (an install of which is a prerequisite). System and web browser requirements are the same as those for the COSI-Framework (see the COSI-Framework documentation for more information). File Structure The ORCA-Registry file structure is similar to that of the COSI-Framework within which it is housed. Activities are defined in files at the application root, and within folders that are not prefixed with an underscore ( _ ). Folders that are prefixed with an underscore are used to hold function libraries, help content etc. Function library files are prefixed with orca to prevent name clashes with other files included in the COSI-Framework. Figure 15 (below) shows the ORCA-Registry file structure. Figure 15: ORCA-Registry file structure. The file orca_init.php at the root of the application contains the environment settings for an installed instance of the ORCA-Registry consisting of the location of the schemata that are to be used by the instance. The ORCA-Registry defines some Cascading Stylesheet (CSS) styles for its own use in orca.css. These are included into the response in orca_init.php via the COSI-Framework API. The installation process makes changes to the application_config.php and database_env.php files in the housing COSI-Framework. ORCA-Registry v1.0 Documentation 13 November 2007 Page 18 of 19

19 Database The registry database (named dbs_orca) contains just under one hundred tables, plus supporting views and user-defined functions. The table structure has been designed to hold the complete set of data described by the ORCA-Registry Data Interchange Schema, though only the tables required for the supported set of this data are used by the current version of the application. The accompanying document ORCA-Registry.1.0.DatabaseSchema.pdf shows the complete table structure, and identifies (via orange highlight) all of the fields that the application uses. All access to data is via parameterised calls to user-defined functions. Schemata The ORCA-Registry relies on three XML schemata: ORCA-Registry Data Interchange Schema. Defines the structure of an XML document containing data for import into, or export from, an instance of the ORCA-Registry. ORCA-Registry Data Interchange Schema (supported set). Defines the subset of elements from the ORCA-Registry Data Interchange Schema that is currently supported by the application (i.e. the subset of data that will be imported, stored, displayed, and exported). This is provided for use by developers in exposing repository data, as it s smaller and easier to read than the complete set. Finalised interfaces should not reference this schema, they should reference the complete schema. ORCA-Registry Data Source List Schema. Defines the structure of the XML document listing the Data Sources in an instance of the ORCA-Registry, including URIs for retrieving data from either the registry or the original Data Source itself. These schemata are provided with the installation files. For stand-alone use, the schemata can be located on the same web server as the ORCA-Registry, and the registry configured to utilise the files at that location. The XML from Data Sources configured in an instance must also reference the schemata at that location in their xsi:nonamespaceschemalocation. For use in a federation, the schemata can be located in an agreed location, and all member instances of an ORCA-Registry can be configured to utilise the schemata at that location. In this case the XML from all Data Sources configured within the member registries would also reference the schema at that location. The accompanying document orca.xsd.pdf shows the XML schema for the ORCA-Registry Data Interchange Schema, and identifies (via yellow highlight) the supported subset. ORCA-Registry v1.0 Documentation 13 November 2007 Page 19 of 19

Chapter 15: Forms. User Guide. 1 P a g e

Chapter 15: Forms. User Guide. 1 P a g e User Guide Chapter 15 Forms Engine 1 P a g e Table of Contents Introduction... 3 Form Building Basics... 4 1) About Form Templates... 4 2) About Form Instances... 4 Key Information... 4 Accessing the Form

More information

How To Set Up A Scopdial On A Pc Or Macbook Or Ipod (For A Pc) With A Cell Phone (For Macbook) With An Ipod Or Ipo (For An Ipo) With Your Cell Phone Or

How To Set Up A Scopdial On A Pc Or Macbook Or Ipod (For A Pc) With A Cell Phone (For Macbook) With An Ipod Or Ipo (For An Ipo) With Your Cell Phone Or SCOPSERV DIALER USER DOCUMENTATION Last updated on : 2014-11-18 Installation Step 1: You must agree to the License terms and conditions before you can install ScopDial. Step 2: You can select the features

More information

Endnote Web: Beginners Guide to Using Endnote Web and the Cite While You Write Function

Endnote Web: Beginners Guide to Using Endnote Web and the Cite While You Write Function 1 Endnote Web: Beginners Guide to Using Endnote Web and the Cite While You Write Function 1 Endnote Web User Guide Version 3.4 Created: June 2012 Author: Jessica Eustace-Cook 1 Table of Contents 1. About

More information

Qlik REST Connector Installation and User Guide

Qlik REST Connector Installation and User Guide Qlik REST Connector Installation and User Guide Qlik REST Connector Version 1.0 Newton, Massachusetts, November 2015 Authored by QlikTech International AB Copyright QlikTech International AB 2015, All

More information

ThirtySix Software WRITE ONCE. APPROVE ONCE. USE EVERYWHERE. www.thirtysix.net SMARTDOCS 2014.1 SHAREPOINT CONFIGURATION GUIDE THIRTYSIX SOFTWARE

ThirtySix Software WRITE ONCE. APPROVE ONCE. USE EVERYWHERE. www.thirtysix.net SMARTDOCS 2014.1 SHAREPOINT CONFIGURATION GUIDE THIRTYSIX SOFTWARE ThirtySix Software WRITE ONCE. APPROVE ONCE. USE EVERYWHERE. www.thirtysix.net SMARTDOCS 2014.1 SHAREPOINT CONFIGURATION GUIDE THIRTYSIX SOFTWARE UPDATED MAY 2014 Table of Contents Table of Contents...

More information

ORACLE USER PRODUCTIVITY KIT USAGE TRACKING ADMINISTRATION & REPORTING RELEASE 3.6 PART NO. E17087-01

ORACLE USER PRODUCTIVITY KIT USAGE TRACKING ADMINISTRATION & REPORTING RELEASE 3.6 PART NO. E17087-01 ORACLE USER PRODUCTIVITY KIT USAGE TRACKING ADMINISTRATION & REPORTING RELEASE 3.6 PART NO. E17087-01 FEBRUARY 2010 COPYRIGHT Copyright 1998, 2009, Oracle and/or its affiliates. All rights reserved. Part

More information

Stored Documents and the FileCabinet

Stored Documents and the FileCabinet Stored Documents and the FileCabinet Introduction The stored document features have been greatly enhanced to allow easier storage and retrieval of a clinic s electronic documents. Individual or multiple

More information

UF Health SharePoint 2010 Introduction to Content Administration

UF Health SharePoint 2010 Introduction to Content Administration UF Health SharePoint 2010 Introduction to Content Administration Email: training@health.ufl.edu Web Page: http://training.health.ufl.edu Last Updated 2/7/2014 Introduction to SharePoint 2010 2.0 Hours

More information

Phone Inventory 1.0 (1000) Installation and Administration Guide

Phone Inventory 1.0 (1000) Installation and Administration Guide Phone Inventory 1.0 (1000) Installation and Administration Guide 2010 VoIP Integration June 23, 2010 Table of Contents Product Overview... 3 Requirements... 3 Application Requirements... 3 Call Manager...

More information

Cloud Services. Email Archiving. End User Guide

Cloud Services. Email Archiving. End User Guide Cloud Services Email Archiving End User Guide 10/17/2014 CONTENTS Introduction... 2 Intended Audience... 2 Prerequisites... 2 Email Client Integration... 2 Supported Web Browsers... 3 My Archive... 4 Overview...

More information

Audit Management Reference

Audit Management Reference www.novell.com/documentation Audit Management Reference ZENworks 11 Support Pack 3 February 2014 Legal Notices Novell, Inc., makes no representations or warranties with respect to the contents or use of

More information

BLUECIELO MERIDIAN ASSET MANAGEMENT MODULE 2014

BLUECIELO MERIDIAN ASSET MANAGEMENT MODULE 2014 BLUECIELO MERIDIAN ASSET MANAGEMENT MODULE 2014 User's Guide Manual BlueCielo ECM Solutions bluecieloecm.com December 09 2014 LEGAL NOTICE 2014 BlueCielo ECM Solutions B. V. Polarisavenue 1 2132 JH Hoofddorp

More information

+27O.557+! RM Auditor Additions - Web Monitor. Contents

+27O.557+! RM Auditor Additions - Web Monitor. Contents RM Auditor Additions - Web Monitor Contents RM Auditor Additions - Web Monitor... 1 Introduction... 2 Installing Web Monitor... 2 Overview... 2 Pre-requisites for installation... 2 Server installation...

More information

How To Enable A Websphere To Communicate With Ssl On An Ipad From Aaya One X Portal 1.1.3 On A Pc Or Macbook Or Ipad (For Acedo) On A Network With A Password Protected (

How To Enable A Websphere To Communicate With Ssl On An Ipad From Aaya One X Portal 1.1.3 On A Pc Or Macbook Or Ipad (For Acedo) On A Network With A Password Protected ( Avaya one X Portal 1.1.3 Lightweight Directory Access Protocol (LDAP) over Secure Socket Layer (SSL) Configuration This document provides configuration steps for Avaya one X Portal s 1.1.3 communication

More information

IBM Information Server

IBM Information Server IBM Information Server Version 8 Release 1 IBM Information Server Administration Guide SC18-9929-01 IBM Information Server Version 8 Release 1 IBM Information Server Administration Guide SC18-9929-01

More information

OvidSP Quick Reference Guide

OvidSP Quick Reference Guide OvidSP Quick Reference Guide Opening an OvidSP Session Open the OvidSP URL with a browser or Follow a link on a web page or Use Athens or Shibboleth access Select Resources to Search In the Select Resource(s)

More information

The LSUHSC N.O. Email Archive

The LSUHSC N.O. Email Archive The LSUHSC N.O. Email Archive Introduction The LSUHSC N.O. email archive permanently retains a copy of all email items sent and received by LSUHSC N.O. Academic email users. Email items will be accessible

More information

Quote to Cloud Connecting QuoteWerks and Xero

Quote to Cloud Connecting QuoteWerks and Xero Quote to Cloud Connecting QuoteWerks and Xero Contents Setup Guide... 3 Pre-requisite:... 3 Quote to Cloud Installation and Configuration... 3 Xero Application Setup... 5 QuoteWerks Configuration... 7

More information

Oracle Service Bus Examples and Tutorials

Oracle Service Bus Examples and Tutorials March 2011 Contents 1 Oracle Service Bus Examples... 2 2 Introduction to the Oracle Service Bus Tutorials... 5 3 Getting Started with the Oracle Service Bus Tutorials... 12 4 Tutorial 1. Routing a Loan

More information

Add external resources to your search by including Universal Search sites in either Basic or Advanced mode.

Add external resources to your search by including Universal Search sites in either Basic or Advanced mode. Opening a Nursing@Ovid Session Open the Nursing@Ovid URL with a browser or Follow a link on a web page or Use Athens or Shibboleth access Select Resources to Search On login, Nursing@Ovid may take you

More information

Documentum Content Distribution Services TM Administration Guide

Documentum Content Distribution Services TM Administration Guide Documentum Content Distribution Services TM Administration Guide Version 5.3 SP5 August 2007 Copyright 1994-2007 EMC Corporation. All rights reserved. Table of Contents Preface... 7 Chapter 1 Introducing

More information

Richmond SupportDesk Web Reports Module For Richmond SupportDesk v6.72. User Guide

Richmond SupportDesk Web Reports Module For Richmond SupportDesk v6.72. User Guide Richmond SupportDesk Web Reports Module For Richmond SupportDesk v6.72 User Guide Contents 1 Introduction... 4 2 Requirements... 5 3 Important Note for Customers Upgrading... 5 4 Installing the Web Reports

More information

Alfresco Online Collaboration Tool

Alfresco Online Collaboration Tool Alfresco Online Collaboration Tool USER MANUAL BECOMING FAMILIAR WITH THE USER INTERFACE... 4 MY DASHBOARD... 4 MY PROFILE... 6 VIEWING YOUR FULL PROFILE... 6 EDITING YOUR PROFILE... 7 CHANGING YOUR PASSWORD...

More information

Queensland recordkeeping metadata standard and guideline

Queensland recordkeeping metadata standard and guideline Queensland recordkeeping metadata standard and guideline June 2012 Version 1.1 Queensland State Archives Department of Science, Information Technology, Innovation and the Arts Document details Security

More information

Microsoft Expression Web

Microsoft Expression Web Microsoft Expression Web Microsoft Expression Web is the new program from Microsoft to replace Frontpage as a website editing program. While the layout has changed, it still functions much the same as

More information

Deploying System Center 2012 R2 Configuration Manager

Deploying System Center 2012 R2 Configuration Manager Deploying System Center 2012 R2 Configuration Manager This document is for informational purposes only. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED, OR STATUTORY, AS TO THE INFORMATION IN THIS DOCUMENT.

More information

MaxSea TZ: Microsoft SQL Server problems End User

MaxSea TZ: Microsoft SQL Server problems End User MaxSea TZ: Microsoft SQL Server problems End User This TechNote applies to MaxSea TimeZero Navigator and Explorer v1.9.5 and above Description: TimeZero uses Microsoft SQL server to manage routes, marks,

More information

Support/ User guide HMA Content Management System

Support/ User guide HMA Content Management System Support/ User guide HMA Content Management System 1 Contents: Access Page 3 Editing Pages Page 4 Adding/Editing Text Page 7 Adding/Editing Images Page 9 Adding/Editing Files Page 11 Adding a Page Page

More information

User Documentation. Administrator Manual. www.proposalsoftware.com

User Documentation. Administrator Manual. www.proposalsoftware.com User Documentation Administrator Manual Proposal Software 1140 US Highway 287, Suite 400-102 Broomfield, CO 80020 USA Tel: 203.604.6597 www.proposalsoftware.com Table of Contents Open the WebPro Viewer...

More information

Umbraco v4 Editors Manual

Umbraco v4 Editors Manual Umbraco v4 Editors Manual Produced by the Umbraco Community Umbraco // The Friendly CMS Contents 1 Introduction... 3 2 Getting Started with Umbraco... 4 2.1 Logging On... 4 2.2 The Edit Mode Interface...

More information

Richmond Systems. Self Service Portal

Richmond Systems. Self Service Portal Richmond Systems Self Service Portal Contents Introduction... 4 Product Overview... 4 What s New... 4 Configuring the Self Service Portal... 6 Web Admin... 6 Launching the Web Admin Application... 6 Setup

More information

Legal-X Help. Line Item Tax

Legal-X Help. Line Item Tax S Legal-X Help Line Item Tax Copyright Information: Legal-X, Allegient, Legal exchange, Bottomline Technologies and the BT logo are the trademarks or service marks of Bottomline Technologies (de), Inc.

More information

DbSchema Tutorial with Introduction in SQL Databases

DbSchema Tutorial with Introduction in SQL Databases DbSchema Tutorial with Introduction in SQL Databases Contents Connect to the Database and Create First Tables... 2 Create Foreign Keys... 7 Create Indexes... 9 Generate Random Data... 11 Relational Data

More information

Microsoft Office. Mail Merge in Microsoft Word

Microsoft Office. Mail Merge in Microsoft Word Microsoft Office Mail Merge in Microsoft Word TABLE OF CONTENTS Microsoft Office... 1 Mail Merge in Microsoft Word... 1 CREATE THE SMS DATAFILE FOR EXPORT... 3 Add A Label Row To The Excel File... 3 Backup

More information

EUR-Lex 2012 Data Extraction using Web Services

EUR-Lex 2012 Data Extraction using Web Services DOCUMENT HISTORY DOCUMENT HISTORY Version Release Date Description 0.01 24/01/2013 Initial draft 0.02 01/02/2013 Review 1.00 07/08/2013 Version 1.00 -v1.00.doc Page 2 of 17 TABLE OF CONTENTS 1 Introduction...

More information

BulkSMS Text Messenger Product Manual

BulkSMS Text Messenger Product Manual BulkSMS Text Messenger Product Manual 1. Installing the software 1.1. Download the BulkSMS Text Messenger Go to www.bulksms.com and choose your country. process. Click on products on the top menu and select

More information

StreamServe Persuasion SP4 StreamServe Connect for SAP - Business Processes

StreamServe Persuasion SP4 StreamServe Connect for SAP - Business Processes StreamServe Persuasion SP4 StreamServe Connect for SAP - Business Processes User Guide Rev A StreamServe Persuasion SP4StreamServe Connect for SAP - Business Processes User Guide Rev A SAP, mysap.com,

More information

HOW TO SILENTLY INSTALL CLOUD LINK REMOTELY WITHOUT SUPERVISION

HOW TO SILENTLY INSTALL CLOUD LINK REMOTELY WITHOUT SUPERVISION HOW TO SILENTLY INSTALL CLOUD LINK REMOTELY WITHOUT SUPERVISION Version 1.1 / Last updated November 2012 INTRODUCTION The Cloud Link for Windows client software is packaged as an MSI (Microsoft Installer)

More information

SharePoint 2007 Get started User Guide. Team Sites

SharePoint 2007 Get started User Guide. Team Sites SharePoint 2007 Get started User Guide Team Sites Contents 1. Overview... 2 1.1 What is SharePoint?... 2 1.2 What is a SharePoint Team Site?... 2 1.3 SharePoint user permissions... 2 2. Team Site features...

More information

Manual English KOI Desktop App 2.0.x

Manual English KOI Desktop App 2.0.x Manual English KOI Desktop App 2.0.x KOI Kommunikation, Organisation, Information Comm-Unity EDV GmbH 2010 Contents Introduction... 3 Information on how to use the documentation... 3 System requirements:...

More information

Email Address Collector. - Tutorial -

Email Address Collector. - Tutorial - Email Address Collector - Tutorial - How to extract email addresses from mail folders 1. Open Email Address Collector Once the product is installed and your license is activated, you can start extracting

More information

Introduction to Mobile Access Gateway Installation

Introduction to Mobile Access Gateway Installation Introduction to Mobile Access Gateway Installation This document describes the installation process for the Mobile Access Gateway (MAG), which is an enterprise integration component that provides a secure

More information

Business Portal for Microsoft Dynamics GP 2010. User s Guide Release 5.1

Business Portal for Microsoft Dynamics GP 2010. User s Guide Release 5.1 Business Portal for Microsoft Dynamics GP 2010 User s Guide Release 5.1 Copyright Copyright 2011 Microsoft. All rights reserved. Limitation of liability This document is provided as-is. Information and

More information

Inventory Manager. Getting started Usage and general How-To

Inventory Manager. Getting started Usage and general How-To Getting started Usage and general How-To Before you begin: Prerequisites: o SQL Server 2008 R2 Express Edition with the default SQLEXPRESS instance MUST be installed in order to use. If you do not have

More information

Monitoring Replication

Monitoring Replication Monitoring Replication Article 1130112-02 Contents Summary... 3 Monitor Replicator Page... 3 Summary... 3 Status... 3 System Health... 4 Replicator Configuration... 5 Replicator Health... 6 Local Package

More information

EMC Documentum Repository Services for Microsoft SharePoint

EMC Documentum Repository Services for Microsoft SharePoint EMC Documentum Repository Services for Microsoft SharePoint Version 6.5 SP2 Installation Guide P/N 300 009 829 A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com

More information

OpenIMS 4.2. Document Management Server. User manual

OpenIMS 4.2. Document Management Server. User manual OpenIMS 4.2 Document Management Server User manual OpenSesame ICT BV Index 1 INTRODUCTION...4 1.1 Client specifications...4 2 INTRODUCTION OPENIMS DMS...5 2.1 Login...5 2.2 Language choice...5 3 OPENIMS

More information

Navigating Microsoft Word 2007

Navigating Microsoft Word 2007 Navigating Microsoft Word 2007 Subject Descriptors: Microsoft Office Word 2007, Interface Application (Version): Microsoft Word 2007 for Windows Task Description: I am new to Microsoft Word 2007. How do

More information

Collaboration Technology Support Center Microsoft Collaboration Brief

Collaboration Technology Support Center Microsoft Collaboration Brief Collaboration Technology Support Center Microsoft Collaboration Brief September 2005 HOW TO INTEGRATE MICROSOFT EXCHANGE SERVER INTO SAP ENTERPRISE PORTAL Authors Robert Draken, Solution Architect, Comma

More information

Config Guide. Gimmal Smart Tiles (SharePoint-Hosted) Software Release 4.4.0

Config Guide. Gimmal Smart Tiles (SharePoint-Hosted) Software Release 4.4.0 Config Guide Gimmal Smart Tiles (SharePoint-Hosted) Software Release 4.4.0 November 2014 Title: Gimmal Smart Tiles (SharePoint-Hosted) Configuration Guide Copyright 2014 Gimmal, All Rights Reserved. Gimmal

More information

User Guide - Exchange Public Folder idataagent

User Guide - Exchange Public Folder idataagent Page 1 of 191 User Guide - Exchange Public Folder idataagent TABLE OF CONTENTS OVERVIEW Introduction Key Features Add-On Components Terminology SYSTEM REQUIREMENTS - EXCHANGE PUBLIC FOLDER IDATAAGENT DEPLOYMENT

More information

Shavlik Patch for Microsoft System Center

Shavlik Patch for Microsoft System Center Shavlik Patch for Microsoft System Center User s Guide For use with Microsoft System Center Configuration Manager 2012 Copyright and Trademarks Copyright Copyright 2014 Shavlik. All rights reserved. This

More information

Table of Contents. Chapter 1: Getting Started. Chapter 2: Using Mass Mailer TABLE OF CONTENTS. About This Manual... 4

Table of Contents. Chapter 1: Getting Started. Chapter 2: Using Mass Mailer TABLE OF CONTENTS. About This Manual... 4 TABLE OF CONTENTS Table of Contents Contents 1 Chapter 1: Getting Started About This Manual... 4 Installing Mass Mailer... Manually Opening the Setup Wizard... Mass Mailer Setup Wizard... Chapter 2: Using

More information

Adam Rauch Partner, LabKey Software adam@labkey.com. Extending LabKey Server Part 1: Retrieving and Presenting Data

Adam Rauch Partner, LabKey Software adam@labkey.com. Extending LabKey Server Part 1: Retrieving and Presenting Data Adam Rauch Partner, LabKey Software adam@labkey.com Extending LabKey Server Part 1: Retrieving and Presenting Data Extending LabKey Server LabKey Server is a large system that combines an extensive set

More information

Using XML Notepad to Read, Edit, and Parse FGDC-CSDGM XML Metadata.

Using XML Notepad to Read, Edit, and Parse FGDC-CSDGM XML Metadata. Using XML Notepad to Read, Edit, and Parse FGDC-CSDGM XML Metadata. Currently many tools exist that allow a user to work with XML metadata files. However, most of the main metadata creation/editing tools

More information

Embed BA into Web Applications

Embed BA into Web Applications Embed BA into Web Applications This document supports Pentaho Business Analytics Suite 5.0 GA and Pentaho Data Integration 5.0 GA, documentation revision June 15, 2014, copyright 2014 Pentaho Corporation.

More information

Content Management System User Guide

Content Management System User Guide Content Management System User Guide support@ 07 3102 3155 Logging in: Navigate to your website. Find Login or Admin on your site and enter your details. If there is no Login or Admin area visible select

More information

CIAOPS Office 365 and SharePoint Guide

CIAOPS Office 365 and SharePoint Guide 1 CIAOPS Office 365 and SharePoint Guide Getting Started Introduction The CIAOPS SharePoint Guide was created in 2008 to fill a void in the market for material about Windows SharePoint Service v3. Being

More information

Coveo Platform 7.0. Microsoft Dynamics CRM Connector Guide

Coveo Platform 7.0. Microsoft Dynamics CRM Connector Guide Coveo Platform 7.0 Microsoft Dynamics CRM Connector Guide Notice The content in this document represents the current view of Coveo as of the date of publication. Because Coveo continually responds to changing

More information

DIIMS Records Classifier Guide

DIIMS Records Classifier Guide DIIMS Records Classifier Guide Featuring Content Server 10 Second Edition, November 2012 Table of Contents Contents 1. DIIMS Overview... 3 1.1 An Overview of DIIMS within the GNWT... 3 1.1.1 Purpose of

More information

Configuring Data Masking

Configuring Data Masking Configuring Data Masking Intellicus Web-based Reporting Suite Version 4.5 Enterprise Professional Smart Developer Smart Viewer Intellicus Technologies info@intellicus.com www.intellicus.com Copyright 2009

More information

How to Use Swiftpage for SageCRM

How to Use Swiftpage for SageCRM How to Use Swiftpage for SageCRM 1 Table of Contents Basics of the Swiftpage for SageCRM Integration 3 How to Install Swiftpage for SageCRM and Set Up Your Account...4 Accessing Swiftpage s Online Editor

More information

NS DISCOVER 4.0 ADMINISTRATOR S GUIDE. July, 2015. Version 4.0

NS DISCOVER 4.0 ADMINISTRATOR S GUIDE. July, 2015. Version 4.0 NS DISCOVER 4.0 ADMINISTRATOR S GUIDE July, 2015 Version 4.0 TABLE OF CONTENTS 1 General Information... 4 1.1 Objective... 4 1.2 New 4.0 Features Improvements... 4 1.3 Migrating from 3.x to 4.x... 5 2

More information

Citrix Systems, Inc.

Citrix Systems, Inc. Citrix Password Manager Quick Deployment Guide Install and Use Password Manager on Presentation Server in Under Two Hours Citrix Systems, Inc. Notice The information in this publication is subject to change

More information

Vodafone PC SMS 2010. (Software version 4.7.1) User Manual

Vodafone PC SMS 2010. (Software version 4.7.1) User Manual Vodafone PC SMS 2010 (Software version 4.7.1) User Manual July 19, 2010 Table of contents 1. Introduction...4 1.1 System Requirements... 4 1.2 Reply-to-Inbox... 4 1.3 What s new?... 4 2. Installation...6

More information

Backing up IMail Server using Altaro Backup FS

Backing up IMail Server using Altaro Backup FS Backing up IMail Server using Altaro Backup FS Purpose The purpose of this document is to provide guidelines and procedures for backing up IMail server system data and user data in case of a hardware or

More information

Cascade Server CMS Quick Start Guide

Cascade Server CMS Quick Start Guide Cascade Server CMS Quick Start Guide 1. How to log in 2. How to open page 3. How to edit a page 4. How to create a new page 5. How to publish a page 6. How to change settings to view publish status page

More information

ACR Triad Web Client. User s Guide. Version 2.5. 20 October 2008. American College of Radiology 2007 All rights reserved.

ACR Triad Web Client. User s Guide. Version 2.5. 20 October 2008. American College of Radiology 2007 All rights reserved. ACR Triad Web Client Version 2.5 20 October 2008 User s Guide American College of Radiology 2007 All rights reserved. CONTENTS ABOUT TRIAD...3 USER INTERFACE...4 LOGIN...4 REGISTER REQUEST...5 PASSWORD

More information

Embed BA into Web Applications

Embed BA into Web Applications Embed BA into Web Applications This document supports Pentaho Business Analytics Suite 5.0 GA and Pentaho Data Integration 5.0 GA, documentation revision February 3, 2014, copyright 2014 Pentaho Corporation.

More information

De La Salle University Information Technology Center. Microsoft Windows SharePoint Services and SharePoint Portal Server 2003 READER / CONTRIBUTOR

De La Salle University Information Technology Center. Microsoft Windows SharePoint Services and SharePoint Portal Server 2003 READER / CONTRIBUTOR De La Salle University Information Technology Center Microsoft Windows SharePoint Services and SharePoint Portal Server 2003 READER / CONTRIBUTOR User s Guide Microsoft Windows SharePoint Services and

More information

SES Project v 9.0 SES/CAESAR QUERY TOOL. Running and Editing Queries. PS Query

SES Project v 9.0 SES/CAESAR QUERY TOOL. Running and Editing Queries. PS Query SES Project v 9.0 SES/CAESAR QUERY TOOL Running and Editing Queries PS Query Table Of Contents I - Introduction to Query:... 3 PeopleSoft Query Overview:... 3 Query Terminology:... 3 Navigation to Query

More information

Once logged in you will have two options to access your e mails

Once logged in you will have two options to access your e mails How do I access Webmail? Webmail You can access web mail at:- http://stu.utt.edu.tt:2095 or https://stu.utt.edu.tt:2096 Enter email address i.e. user name (full email address needed eg. fn.ln@stu.utt.edu.tt

More information

TARGETPROCESS HELP DESK PORTAL

TARGETPROCESS HELP DESK PORTAL TARGETPROCESS HELP DESK PORTAL v.2.17 User Guide This document describes TargetProcess Help Desk Portal functionality and provides information about TargetProcess Help Desk Portal usage. 1 HELP DESK PORTAL...2

More information

FmPro Migrator - FileMaker to SQL Server

FmPro Migrator - FileMaker to SQL Server FmPro Migrator - FileMaker to SQL Server FmPro Migrator - FileMaker to SQL Server 1 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.8 1.9 1.10 1.11 1.12 1.13 1.14 1.15 FmPro Migrator - FileMaker to SQL Server Migration

More information

Education Solutions Development, Inc. APECS Navigation: Business Systems Getting Started Reference Guide

Education Solutions Development, Inc. APECS Navigation: Business Systems Getting Started Reference Guide Education Solutions Development, Inc. APECS Navigation: Business Systems Getting Started Reference Guide March 2013 Education Solutions Development, Inc. What s Inside The information in this reference

More information

E-commerce Website Manual

E-commerce Website Manual E-commerce Version 2, July 2014 800 Viewfield Road Victoria, BC V9A 4V1 Local: (250) 384-0565 Toll Free: 1-800-735-3433 sales@monk.ca service@monk.ca Monk Office s new e-commerce site is your personalized

More information

CRM Global Search: Installation & Configuration

CRM Global Search: Installation & Configuration Installation ***Important: It is highly recommended that you first take a backup of your current CRM Application Ribbons prior to importing this solution. Please do so by navigating to Settings > Solutions

More information

VMware Software Manager - Download Service User's Guide

VMware Software Manager - Download Service User's Guide VMware Software Manager - Download Service User's Guide VMware Software Manager 1.1 This document supports the version of each product listed and supports all subsequent versions until the document is

More information

Jeremy Kashel Tim Kent Martyn Bullerwell. Chapter No.2 "Master Data Services Overview"

Jeremy Kashel Tim Kent Martyn Bullerwell. Chapter No.2 Master Data Services Overview Jeremy Kashel Tim Kent Martyn Bullerwell Chapter No.2 "Master Data Services Overview" Master Data Services Overview In this chapter, we will provide an overview of SQL Server 2008 R2 Master Data Services

More information

Table of Contents. 1. Content Approval...1 EVALUATION COPY

Table of Contents. 1. Content Approval...1 EVALUATION COPY Table of Contents Table of Contents 1. Content Approval...1 Enabling Content Approval...1 Content Approval Workflows...4 Exercise 1: Enabling and Using SharePoint Content Approval...9 Exercise 2: Enabling

More information

Web services with WebSphere Studio: Deploy and publish

Web services with WebSphere Studio: Deploy and publish Web services with WebSphere Studio: Deploy and publish Table of Contents If you're viewing this document online, you can click any of the topics below to link directly to that section. 1. Introduction...

More information

ABB solar inverters. User s manual ABB Remote monitoring portal

ABB solar inverters. User s manual ABB Remote monitoring portal ABB solar inverters User s manual ABB Remote monitoring portal List of related manuals Title ABB Remote monitoring portal User s manual NETA-01 Ethernet adapter module User s manual Code (English) 3AUA0000098904

More information

How To Use Cleanersmate Software On A Pc Or Mac Or Macbook Or Macintosh (For Pc Or Pc) With A Computer Or Mac (For Mac) With An Ipa Or Mac Xp (For A Mac) On A Computer With

How To Use Cleanersmate Software On A Pc Or Mac Or Macbook Or Macintosh (For Pc Or Pc) With A Computer Or Mac (For Mac) With An Ipa Or Mac Xp (For A Mac) On A Computer With User Guide Installation... 2 Using CleanersMate... 3 Initial Settings... 3 Clients... 3 Clients Summary Screen... 4 Adding a New Client... 4 Deleting an Existing Client... 4 Editing an Existing Client...

More information

Inventory Computers Using TechAtlas for Libraries

Inventory Computers Using TechAtlas for Libraries Inventory Computers Using TechAtlas for Libraries WebJunction.org 9/11/2008 Table of Contents Introduction... 3 Additional Resources... 3 Your Computer Login... 3 TechAtlas Login... 3 Browser Options...

More information

ADFS Integration Guidelines

ADFS Integration Guidelines ADFS Integration Guidelines Version 1.6 updated March 13 th 2014 Table of contents About This Guide 3 Requirements 3 Part 1 Configure Marcombox in the ADFS Environment 4 Part 2 Add Relying Party in ADFS

More information

Mobile device management

Mobile device management Mobile device management The Mobility management tool is an add-on to LANDesk Management Suite that lets you discover mobile devices that access Microsoft Outlook mailboxes on your system. The tool does

More information

Usage Guide on Business Information Modeling (BIM) Spreadsheet (v1.1)

Usage Guide on Business Information Modeling (BIM) Spreadsheet (v1.1) Usage Guide on Business Information Modeling (BIM) Spreadsheet (v1.1) Table of Contents 1. INTRODUCTION...3 1.1 ABOUT THIS DOCUMENT...3 1.2 WHAT IS BIM SPREADSHEET...3 1.3 MAJOR FEATURES OF BIM SPREADSHEET...3

More information

AnswerPath Version 5 User Guide Copyright 2014 Hindin Solutions Ltd. User Guide

AnswerPath Version 5 User Guide Copyright 2014 Hindin Solutions Ltd. User Guide AnswerPath Version 5 User Guide User Guide Disclaimer Copyright 2014 by Hindin Solutions Ltd. All rights reserved. This manual may not be copied, photocopied, reproduced, translated, or converted to any

More information

How To Manage Your Email On A Microsoft Powerbook 2.5 (For Microsoft) On A Macbook 2 (For A Mac) On An Iphone Or Ipad (For An Ipad) On Your Pc Or Macbook

How To Manage Your Email On A Microsoft Powerbook 2.5 (For Microsoft) On A Macbook 2 (For A Mac) On An Iphone Or Ipad (For An Ipad) On Your Pc Or Macbook Page 1 of 285 User Guide - Exchange Mailbox idataagent TABLE OF CONTENTS OVERVIEW Introduction Key Features Add-On Components Terminology SYSTEM REQUIREMENTS - EXCHANGE MAILBOX IDATAAGENT DEPLOYMENT -

More information

LMS 365 Learning Module Builder Add-in User Guide VERSION 1.5.0.X

LMS 365 Learning Module Builder Add-in User Guide VERSION 1.5.0.X LMS 365 Learning Module Builder Add-in User Guide VERSION 1.5.0.X CONTENTS LMS 365 Learning Module Builder Add-in User Guide Version 1.5.0.x... 1 Contents... 2 1. The LMS365 Learning Module Builder Add-in...

More information

Creating Connection with Hive

Creating Connection with Hive Creating Connection with Hive Intellicus Enterprise Reporting and BI Platform Intellicus Technologies info@intellicus.com www.intellicus.com Creating Connection with Hive Copyright 2010 Intellicus Technologies

More information

Richmond Systems. SupportDesk Web Interface User Guide

Richmond Systems. SupportDesk Web Interface User Guide Richmond Systems SupportDesk Web Interface User Guide 1 Contents SUPPORTDESK WEB INTERFACE...3 INTRODUCTION TO THE WEB INTERFACE...3 FEATURES OF THE WEB INTERFACE...3 HELPDESK SPECIALIST LOGIN...4 SEARCHING

More information

Best Practices. Understanding BeyondTrust Patch Management

Best Practices. Understanding BeyondTrust Patch Management Best Practices Understanding BeyondTrust Patch Management February 2014 Contents Overview... 3 1 - Configure Retina CS... 4 2 - Enable Patch Management for Smart Groups... 6 3 Identify and Approve Patches...

More information

Synchronizer Installation

Synchronizer Installation Synchronizer Installation Synchronizer Installation Synchronizer Installation This document provides instructions for installing Synchronizer. Synchronizer performs all the administrative tasks for XenClient

More information

SAS Business Data Network 3.1

SAS Business Data Network 3.1 SAS Business Data Network 3.1 User s Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2014. SAS Business Data Network 3.1: User's Guide. Cary,

More information

Web Dashboard. User Manual. Build 2.0 2015-09-17

Web Dashboard. User Manual. Build 2.0 2015-09-17 Web Dashboard User Manual Build 2.0 2015-09-17 This is the official user manual on using SAMLite web dashboard to perform reporting and administrative tasks. This manual describes each section of reporting

More information

United States Department of Agriculture (USDA) Food and Nutrition Services

United States Department of Agriculture (USDA) Food and Nutrition Services United States Department of Agriculture (USDA) Food and Nutrition Services April 15, 2015 1212 New York Avenue NW, Suite 400, Washington, DC 20005 Contents 1. Introduction... 3 1. Microsoft Access Installation...

More information

Version 1.0 January 2011. Xerox Phaser 3635MFP Extensible Interface Platform

Version 1.0 January 2011. Xerox Phaser 3635MFP Extensible Interface Platform Version 1.0 January 2011 Xerox Phaser 3635MFP 2011 Xerox Corporation. XEROX and XEROX and Design are trademarks of Xerox Corporation in the United States and/or other countries. Changes are periodically

More information

Form Builder - User Guide

Form Builder - User Guide Composite 2015-12-07 Composite A/S Nygårdsvej 16 DK-2100 Copenhagen Phone +45 3915 7600 www.composite.net Contents 1 INTRODUCTION... 3 1.1 Who Should Read This Guide? 5 1.2 Getting Started 5 2 INSERTING

More information

Administrator s Guide

Administrator s Guide SEO Toolkit 1.3.0 for Sitecore CMS 6.5 Administrator s Guide Rev: 2011-06-07 SEO Toolkit 1.3.0 for Sitecore CMS 6.5 Administrator s Guide How to use the Search Engine Optimization Toolkit to optimize your

More information