PerfectForms SharePoint Integration

Size: px
Start display at page:

Download "PerfectForms SharePoint Integration"

Transcription

1 PerfectForms SharePoint Integration Accessing Lists from PerfectForms AUTHOR: KEITH LEWIS DATE: 6/15/2011 Date of Last Revision: 6/15/11 Page 1 of 16

2 Contents Introduction... 3 Purpose... 3 Querying SharePoint using XPath A Walkthrough... 4 Create a Web Services Connection... 4 Create a Query Request Action... 5 Using the Connection... 7 Improving Presentation Sorting the Response... 8 Querying By Field Values... 9 Retrieving Only a Few Fields Advanced List Manipulation Creating the Connection Getting a List of the Available Lists Getting All Records in a List Getting Only Certain Records from a List Adding a Row to a List Appendix A PerfectForms XPath SOAP Header and Body Elements Attributes Appendix B Determining the GUID of a list in SharePoint... 16

3 Introduction Purpose With the release of Version 2.0 of PerfectForms, it is now possible to access the Microsoft SharePoint API Web services from within your form. This document shows you how to use two of the SharePoint APIs from your form: Querying lists using XPath (dspsts.asmx) This is most useful when you have data held in SharePoint lists that you wish to use in your PerfectForms project, such as for populating dropdowns or lists. Although it requires knowledge of xpath, it can be used quite effectively with no knowledge of CAML. Accessing and Manipulating Lists (list.asmx) While it is possible to obtain data from SharePoint lists using dspsts.asmx, it is a query-only interface. List.asmx provides much richer functionality, but requires an understanding of CAML and how to produce a CAML query in PerfectForms. Date of Last Revision: 6/15/11 Page 3 of 16

4 Querying SharePoint using XPath A Walkthrough In this section, we take you through configuring a connection and using it to populate a dropdown from data held in a SharePoint list. The list we are using is a list of departments in a fictional company: Figure 1 Departments List in SharePoint PerfectForms cannot interpret the WSDL produced by dspsts.asmx so we have to manually configure the connection and its actions. Create a Web Services Connection Complete the steps below to create a Web Services connection. 1. Enter the details for the connection. Service URL URL Encode Params Use Proxy http//yoursharepoint.yourdomain.com/_vti_bin/dspsts.asmx Yes Yes (Currently required for authentication.) 2. Specify the Service WSDL information. Implementation WSDL URL.NET Leave this blank. Date of Last Revision: 6/15/11 Page 4 of 16

5 Use Proxy Yes (Currently required for Authentication) 3. Provide basic authentication details. Username Password a user that has access to the SharePoint list(s) you wish to query http//yoursharepoint.yourdomain.com/_vti_bin/dspsts.asmx?wsdl 4. Save the connection. Create a Query Request Action Once the connection has been created, you must create a new action. To create this new action, complete the steps below. 1. Specify the type as XML Result. 2. Select SOAP under Service Method. This will produce the following error message: Figure 2 Error message getting WSDL from dspsts.asmx 3. Click OK on the error message dialog. The service operation will now be editable. Enter queryrequest. 4. Under Send Parameters enter the following for a Simple Query: RequestDocument RequestMethod Requestspace Versionsspace Version Query Service Parameter *request@document *request@method *request@xmlns *versions@xmlns *versions.version dsquery@select Table 1 Send Parameters for a Simple Query Date of Last Revision: 6/15/11 Page 5 of 16

6 5. Apply Changes, then click Test and enter the following values to be used to query the Department List: Value RequestDocument content RequestMethod query Requestspace Versionsspace Version 1.0 Query 1 /list[@id='{86c369dc-2d59-4a19-857c-c99912dc6b6b}'] Table 2 Parameter Values to Query the Departments List Apart from the query value, the values never change. To load from your own list, you will need to find the GUID for the list you wish to query (see Appendix B). 6. After entering the values listed above click Connect. The SOAP response will be displayed in the Result Log. 7. Close the Test Action form and click Auto Complete for the return parameters. You will be prompted for a sample response that has already been populated with the response from your previous test: Figure 3 SOAP Response Example Used to Auto Complete Return Fields 1 The query can be any XPath that refers to a list e.g. /list[@name= Announcements ] Date of Last Revision: 6/15/11 Page 6 of 16

7 8. Click OK and return parameters will be added for every node in the SOAP response body. Many of these nodes will be of no use to us and can be deleted. 9. In this case, we want the following return parameters (so remove the others): XPath 2 Title dsqueryresponse.departments.departments_row.title Manager dsqueryresponse.departments.departments_row.manager Manager_x0020_ dsqueryresponse.departments.departments_row.manager _x0020_ ID dsqueryresponse.departments.departments_row.id Modified dsqueryresponse.departments.departments_row.modified Table 3 Return Parameters Note: In the SharePoint list, the Manager column has a space in its name. Since this is not valid in the XML response, the space has been replaced with _x0020_ (the 16 bit hexadecimal character code for space). Some other characters are also escaped similarly. This is documented in the SharePoint Dirty Characters blog. Using the Connection Once you have applied your changes, your new connection is ready for use on a form. Your form developer must supply the SharePoint query values using a formula as shown in the images below. Figure 4 Connect Command to Populate a Dropdown 2 PerfectForms uses a modified version of XPath to reference a node in an XML Document (See Appendix A) Date of Last Revision: 6/15/11 Page 7 of 16

8 Figure 5 Example of Using a Formula to Pass a Fixed Value The values for each Send Parameter should be entered as shown in Table 2. In this example, the Department drop-down is populated with Title in its caption and ID in its Value. Figure 6 A Dropdown Populated from a SharePoint List Improving Presentation Sorting the Response As you can see, the departments are not listed alphabetically. We can ask SharePoint to sort the result set by a specified column. To do this, we add the following parameters to the SOAP Call: Order OrderType OrderDirection Service Parameter dsquery.query.orderby.orderfield@ dsquery.query.orderby.orderfield@type dsquery.query.orderby.orderfield@direction Date of Last Revision: 6/15/11 Page 8 of 16

9 Table 1 Additional Send Parameters to Sort the Result Set Apply changes and test the action with the following values: Value RequestDocument content RequestMethod query Requestspace Versionsspace Version 1.0 Query /list[@id='{86c369dc-2d59-4a19-857c-c99912dc6b6b}'] Order Title OrderType xsd:string OrderDirection ASC Table 5 Parameter Values For Retrieving A Sorted Result Set Order is the name of the field to sort by (remember to escape the spaces and other characters as necessary). OrderType is the data type of the Field you are sorting by. Possible values are documented in the Microsoft documentation for dspsts. OrderDirection can be either ASC or DESC. Add these additional values to the Connect command in the form and preview: Figure 7 Departments Are Now Sorted Querying By Field Values In addition to populating a list or drop-down from a SharePoint list, you may also need to look up one or more entries from the list depending on the value of a field. Using our example, you may want to look up the staff in a department selected in the drop-down. To do this, we create another action on our connection in the same way as above. The new action has the following Service Parameters: RequestDocument Service Parameter *request@document Date of Last Revision: 6/15/11 Page 9 of 16

10 RequestMethod Requestspace Versionsspace Version Query Field Value ValueType AllFields RowLimit *versions.version dsquery.query.where.eq.value dsquery.query.fields.allfields This implements a simple where clause testing a single field for equality. More complex where clauses can be constructed using AND and OR constructs (see the Microsoft CAML Query Schema Web site page for additional information). Apply Changes and test with the following values: Value RequestDocument content RequestMethod query Requestspace Versionsspace Version 1.0 Query /list[@id='{ e b-8c4f-8ae0b11948e4}'] Field Department Value Accounts ValueType text Again, Auto Complete the Return Parameters and remove the unnecessary fields. In our example, we have the following return parameters: Surname Forename Extension Office Full XPath dsqueryresponse.staff.staff_row.title dsqueryresponse.staff.staff_row.forename dsqueryresponse.staff.staff_row.extension dsqueryresponse.staff.staff_row.office dsqueryresponse.staff.staff_row.full_x0020_ dsqueryresponse.staff.staff_row. Date of Last Revision: 6/15/11 Page 10 of 16

11 This can be sorted as shown above. Retrieving Only a Few Fields The examples above will return all fields from the selected rows in the list. It is also possible to restrict the columns returned using the following Service Parameters. Field1 Field1 Field2 Field2 Field3 Field3 Field4 Field4 Service Parameter dsquery.query.fields.field dsquery.query.fields.field@ dsquery.query.fields.field dsquery.query.fields.field@ dsquery.query.fields.field dsquery.query.fields.field@ dsquery.query.fields.field dsquery.query.fields.field@ Date of Last Revision: 6/15/11 Page 11 of 16

12 Advanced List Manipulation While dspsts.asmx provides a simple interface that can only retrieve data from SharePoint, List.asmx has a far more feature-rich interface. However, for all but the simplest of operations, an understanding of CAML (Collaborative Application Markup Language) is required. For more information on CAML, you can review the Microsoft article titled Introduction to Collaborative Application Markup Language. The examples below are not exhaustive, but by following the examples, someone experienced in the use of the Lists.asmx API should be able to perform most operations using PerfectForms. Creating the Connection PerfectForms is able to interpret the WSDL from lists.asmx, so creating a connection is straightforward. You can review this process in the Creating PerfectForms Connections topic of the PerfectForms Help Guide. You should, however, select Use Proxy and supply credentials for Basic Authentication. Getting a List of the Available Lists Create an action on your Lists connection: Type Service Method Operation XML Result SOAP GetListCollection Apply Changes and test the action, then auto-complete the Return Parameters. It should be noted that you may not need all the fields that are returned. You may remove any return parameters you feel are not needed. Getting All Records in a List Create an action on your Lists connection: Type Service Method Operation XML Result SOAP GetListItems Add a single Send Parameter called list. Apply Changes and test the action using the name of the list (do not escape any spaces, etc). Next auto-complete the Return Parameters and remove those that are not needed. Getting Only Certain Records from a List Date of Last Revision: 6/15/11 Page 12 of 16

13 This example retrieves rows from a calendar list that fall between two dates. Create an action on your Lists connection: Type Service Method Operation XML Result SOAP GetListItems list DateFromRef DateFromValue DateFromType DateToRef DateToValue DateToType Service Parameter list query.query.where.and.geq.fieldref@ query.query.where.and.geq.value query.query.where.and.geq.value@type query.query.where.and.leq.fieldref@ query.query.where.and.leq.value query.query.where.and.leq.value@type This builds to the following CAML in the soap query: <query> <Query> <Where> <And> <Geq> <FieldRef = [DateFromRef] /> <Value Type= [DateFromType] > [DateFromValue] </Value> </Geq> <Leq> <FieldRef = [DateToRef] /> <Value Type= [DateToType] > [DateToValue] </Value> </Leq> </And> </Where> </Query> </query> Apply Changes and test using the name of the list (do not escape any spaces, etc) and values similar to those in the table below. Next, auto-complete the Return Parameters and remove those that are not needed. list DateFromRef DateFromValue DateFromType DateToRef DateToValue DateToType Value Calendar EventDate A date in the format YYYY-mm-ddThh:mm:ss DateTime EventDate A date in the format YYYY-mm-ddThh:mm:ss DateTime Date of Last Revision: 6/15/11 Page 13 of 16

14 Adding a Row to a List Create an action on your Lists connection: Type Service Method Operation XML Result SOAP UpdateListItems list Value 1 Field 1 Value 2 Field 2 Value 3 Field 3 Value 4 Field 4 updates.batch.method@id updates.batch.method@cmd updates.batch@onerror Service Parameter list updates.batch.method.field updates.batch.method.field@ updates.batch.method.field updates.batch.method.field@ updates.batch.method.field updates.batch.method.field@ updates.batch.method.field updates.batch.method.field@ updates.batch.method@id updates.batch.method@cmd updates.batch@onerror Apply Changes and test using the name of the list (do not escape any spaces, etc) and values similar to those in the table below. Next, auto-complete the Return Parameters and remove those that are not needed. Value list Calendar Value 1 A date in the format YYYY-mm-ddThh:mm:ss Field 1 StartTime Value 2 A date in the format YYYY-mm-ddThh:mm:ss Field 2 EndTime Value 3 An Event Field 3 Title Value 4 An Organiser Field 4 BookedBy updates.batch.method@id 1 updates.batch.method@cmd New updates.batch@onerror Continue Date of Last Revision: 6/15/11 Page 14 of 16

15 Appendix A PerfectForms XPath In PerfectForms, all references to XPath refer to a proprietary language loosely based on the XPath standard. The main difference is that / is replaced with. and that all paths are absolute. SOAP Header and Body Elements A node in a SOAP Header is referenced to by prefixing the path with an asterisk. So for the following SOAP Envelope: <soap:envelope xmlns:xsi=" xmlns:xsd=" xmlns:soap=" <soap:header> <request document="content" method="query" xmlns=" /> <versions xmlns=" <version>1.0</version> </versions> </soap:header> <soap:body> <queryrequest xmlns=" <dsquery select="/list[@id='{86c369dc-2d59-4a19-857c-c99912dc6b6b}'] > </dsquery> </queryrequest> </soap:body> </soap:envelope> *request refers to request element in the SOAP Header. dsquery refers to the dsquery element in the SOAP body. Attributes Just as in standard XPath, attributes are indicated using symbol. This symbol should not be prefixed by a period. In the above SOAP request, *request@document refers to the document attribute of the request element in the SOAP Header, which has a value of content. In addition, dsquery@select refers to the select attribute of the dsquery element in the body of the SOAP request. <Fields> <Field id= field1 >Value1</Field> <Field id= field2 >Value2</Field> <Field id= field3 >Value3</Field> </Fields> An attempt to produce the above results in all fields having the same ID (the last value set). This has implications for updating SharePoint Lists and for specifying the fields that should be returned from a list. Date of Last Revision: 6/15/11 Page 15 of 16

16 Appendix B Determining the GUID of a list in SharePoint While it is possible to use the Lists.asmx API to iterate the lists and determine the GUID of any given list, it is unlikely that your forms will need to determine the GUID at run-time. Doing so would degrade performance of your form. Alternatively, while accessing a list from a browser you can determine the GUID in a more straightforward manner: 1. Connect to your SharePoint portal. 2. Open the list you wish to access. 3. On the Settings menu select List Settings 4. The list customization page will display. 5. Look in the address bar and you will see the List ID: 6. Copy the GUID and substitute for the GUID s given in this document. Date of Last Revision: 6/15/11 Page 16 of 16

INTEGRATING MICROSOFT DYNAMICS CRM WITH SIMEGO DS3

INTEGRATING MICROSOFT DYNAMICS CRM WITH SIMEGO DS3 INTEGRATING MICROSOFT DYNAMICS CRM WITH SIMEGO DS3 Often the most compelling way to introduce yourself to a software product is to try deliver value as soon as possible. Simego DS3 is designed to get you

More information

SharePoint Integration Framework Developers Cookbook

SharePoint Integration Framework Developers Cookbook Sitecore CMS 6.3 to 6.6 and SIP 3.2 SharePoint Integration Framework Developers Cookbook Rev: 2013-11-28 Sitecore CMS 6.3 to 6.6 and SIP 3.2 SharePoint Integration Framework Developers Cookbook A Guide

More information

Creating a Participants Mailing and/or Contact List:

Creating a Participants Mailing and/or Contact List: Creating a Participants Mailing and/or Contact List: The Limited Query function allows a staff member to retrieve (query) certain information from the Mediated Services system. This information is from

More information

IP Phone Services Configuration

IP Phone Services Configuration CHAPTER 96 Using Cisco Unified Communications Manager Administration, you define and maintain the list of IP phone services to which users can subscribe at their site. IP phone services comprise XML applications

More information

kalmstrom.com Business Solutions

kalmstrom.com Business Solutions HelpDesk OSP User Manual Content 1 INTRODUCTION... 3 2 REQUIREMENTS... 4 3 THE SHAREPOINT SITE... 4 4 THE HELPDESK OSP TICKET... 5 5 INSTALLATION OF HELPDESK OSP... 7 5.1 INTRODUCTION... 7 5.2 PROCESS...

More information

MEDIAplus administration interface

MEDIAplus administration interface MEDIAplus administration interface 1. MEDIAplus administration interface... 5 2. Basics of MEDIAplus administration... 8 2.1. Domains and administrators... 8 2.2. Programmes, modules and topics... 10 2.3.

More information

Lesson 07: MS ACCESS - Handout. Introduction to database (30 mins)

Lesson 07: MS ACCESS - Handout. Introduction to database (30 mins) Lesson 07: MS ACCESS - Handout Handout Introduction to database (30 mins) Microsoft Access is a database application. A database is a collection of related information put together in database objects.

More information

PowerSchool Parent Portal User Guide. PowerSchool 7.x Student Information System

PowerSchool Parent Portal User Guide. PowerSchool 7.x Student Information System PowerSchool 7.x Student Information System Released December 2011 Document Owner: Documentation Services This edition applies to Release 7.1 of the [product name] software and to all subsequent releases

More information

Using SQL Reporting Services with Amicus

Using SQL Reporting Services with Amicus Using SQL Reporting Services with Amicus Applies to: Amicus Attorney Premium Edition 2011 SP1 Amicus Premium Billing 2011 Contents About SQL Server Reporting Services...2 What you need 2 Setting up SQL

More information

WEB USER GUIDE VAULT MEDIA STORAGE

WEB USER GUIDE VAULT MEDIA STORAGE BUSINESS DATA RECORD SERVICES WEB USER GUIDE VAULT MEDIA STORAGE TABLE OF CONTENTS Log In Screen/Home Page Rotation Services-Request Media Rotation Services-View List Rotation Services-Miscellaneous Query

More information

A database is a collection of data organised in a manner that allows access, retrieval, and use of that data.

A database is a collection of data organised in a manner that allows access, retrieval, and use of that data. Microsoft Access A database is a collection of data organised in a manner that allows access, retrieval, and use of that data. A Database Management System (DBMS) allows users to create a database; add,

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

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

metaengine DataConnect For SharePoint 2007 Configuration Guide

metaengine DataConnect For SharePoint 2007 Configuration Guide metaengine DataConnect For SharePoint 2007 Configuration Guide metaengine DataConnect for SharePoint 2007 Configuration Guide (2.4) Page 1 Contents Introduction... 5 Installation and deployment... 6 Installation...

More information

Kaldeera Workflow Designer 2010 User's Guide

Kaldeera Workflow Designer 2010 User's Guide Kaldeera Workflow Designer 2010 User's Guide Version 1.0 Generated May 18, 2011 Index 1 Chapter 1: Using Kaldeera Workflow Designer 2010... 3 1.1 Getting Started with Kaldeera... 3 1.2 Importing and exporting

More information

Note: With v3.2, the DocuSign Fetch application was renamed DocuSign Retrieve.

Note: With v3.2, the DocuSign Fetch application was renamed DocuSign Retrieve. Quick Start Guide DocuSign Retrieve 3.2.2 Published April 2015 Overview DocuSign Retrieve is a windows-based tool that "retrieves" envelopes, documents, and data from DocuSign for use in external systems.

More information

WatchDox for Windows. User Guide. Version 3.9.5

WatchDox for Windows. User Guide. Version 3.9.5 WatchDox for Windows User Guide Version 3.9.5 Notice Confidentiality This document contains confidential material that is proprietary WatchDox. The information and ideas herein may not be disclosed to

More information

The Welcome screen displays each time you log on to PaymentNet; it serves as your starting point or home screen.

The Welcome screen displays each time you log on to PaymentNet; it serves as your starting point or home screen. PaymentNet Cardholder Quick Reference Card Corporate Card ffwelcome to PaymentNet The Welcome screen displays each time you log on to PaymentNet; it serves as your starting point or home screen. PaymentNet

More information

Charter Business Phone. Online Control Panel Getting Started Guide. Document Version 1.0

Charter Business Phone. Online Control Panel Getting Started Guide. Document Version 1.0 Charter Business Phone Online Control Panel Getting Started Guide Document Version 1.0 Table of Contents 1 About This Guide...4 2 Overview...5 2.1 Online Control Panel and Call Manager... 5 3 Manual and

More information

In This Issue: Excel Sorting with Text and Numbers

In This Issue: Excel Sorting with Text and Numbers In This Issue: Sorting with Text and Numbers Microsoft allows you to manipulate the data you have in your spreadsheet by using the sort and filter feature. Sorting is performed on a list that contains

More information

Welcome to Collage (Draft v0.1)

Welcome to Collage (Draft v0.1) Welcome to Collage (Draft v0.1) Table of Contents Welcome to Collage (Draft v0.1)... 1 Table of Contents... 1 Overview... 2 What is Collage?... 3 Getting started... 4 Searching for Images in Collage...

More information

Corporate Telephony Toolbar User Guide

Corporate Telephony Toolbar User Guide Corporate Telephony Toolbar User Guide 1 Table of Contents 1 Introduction...6 1.1 About Corporate Telephony Toolbar... 6 1.2 About This Guide... 6 1.3 Accessing The Toolbar... 6 1.4 First Time Login...

More information

Assistant Enterprise. User Guide. www.lumosnetworks.com 3-27-08

Assistant Enterprise. User Guide. www.lumosnetworks.com 3-27-08 Assistant Enterprise User Guide www.lumosnetworks.com 3-27-08 Assistant Enterprise (Toolbar) Guide Copyright Notice Trademarks Copyright 2007 BroadSoft, Inc. All rights reserved. Any technical documentation

More information

Spectrum Technology Platform. Version 9.0. Administration Guide

Spectrum Technology Platform. Version 9.0. Administration Guide Spectrum Technology Platform Version 9.0 Administration Guide Contents Chapter 1: Getting Started...7 Starting and Stopping the Server...8 Installing the Client Tools...8 Starting the Client Tools...9

More information

Microsoft Windows SharePoint

Microsoft Windows SharePoint Microsoft Windows SharePoint SharePoint Basics Introduction What is Microsoft SharePoint? SharePoint is a tool to connect people and information. It provides a central site for sharing information with

More information

Windows XP Exchange Client Installation Instructions

Windows XP Exchange Client Installation Instructions WINDOWS XP with Outlook 2003 or Outlook 2007 1. Click the Start button and select Control Panel: 2. If your control panel looks like this: Click Switch to Classic View. 3. Double click Mail. 4. Click show

More information

Teacher Activities Page Directions

Teacher Activities Page Directions Teacher Activities Page Directions The Teacher Activities Page provides teachers with access to student data that is protected by the federal Family Educational Rights and Privacy Act (FERPA). Teachers

More information

Jet Data Manager 2012 User Guide

Jet Data Manager 2012 User Guide Jet Data Manager 2012 User Guide Welcome This documentation provides descriptions of the concepts and features of the Jet Data Manager and how to use with them. With the Jet Data Manager you can transform

More information

Enterprise Toolbar User s Guide. Revised March 2015

Enterprise Toolbar User s Guide. Revised March 2015 Revised March 2015 Copyright Notice Trademarks Copyright 2007 DSCI, LLC All rights reserved. Any technical documentation that is made available by DSCI, LLC is proprietary and confidential and is considered

More information

One of the fundamental kinds of Web sites that SharePoint 2010 allows

One of the fundamental kinds of Web sites that SharePoint 2010 allows Chapter 1 Getting to Know Your Team Site In This Chapter Requesting a new team site and opening it in the browser Participating in a team site Changing your team site s home page One of the fundamental

More information

Telephony Toolbar Corporate. User Guide

Telephony Toolbar Corporate. User Guide Telephony Toolbar Corporate User Guide Release 7.1 March 2011 Table of Contents 1 About This Guide...7 1.1 Open Telephony Toolbar - Corporate... 7 1.2 First Time Login... 8 1.3 Subsequent Use... 11 2 Using

More information

Workflow Conductor Widgets

Workflow Conductor Widgets Workflow Conductor Widgets Workflow Conductor widgets are the modular building blocks used to create workflows in Workflow Conductor Studio. Some widgets define the flow, or path, of a workflow, and others

More information

Knowledgebase Article

Knowledgebase Article Company web site: Support email: Support telephone: +44 20 3287-7651 +1 646 233-1163 2 EMCO Network Inventory allows you to manage alternative credentials to use while performing different

More information

ibolt V3.2 Release Notes

ibolt V3.2 Release Notes ibolt V3.2 Release Notes Welcome to ibolt V3.2, which has been designed to deliver an easy-touse, flexible, and cost-effective business integration solution. This document highlights the new and enhanced

More information

Microsoft Office 365 Portal

Microsoft Office 365 Portal Microsoft Office 365 Portal Once you logon, you are placed in the Admin page if you are an adminstrator. Here you will manage permissions for SharePoint, install Office Professional for Windows users,

More information

Intranet Website Solution Based on Microsoft SharePoint Server Foundation 2010

Intranet Website Solution Based on Microsoft SharePoint Server Foundation 2010 December 14, 2012 Authors: Wilmer Entena 128809 Supervisor: Henrik Kronborg Pedersen VIA University College, Horsens Denmark ICT Engineering Department Table of Contents List of Figures and Tables... 3

More information

Get Started. Log in to PowerSchool Parent Portal. PowerSchool Parent Portal Start Page

Get Started. Log in to PowerSchool Parent Portal. PowerSchool Parent Portal Start Page Get Started To get started, you must log in to PowerSchool Parent Portal Log in to PowerSchool Parent Portal Before you can log in to PowerSchool Parent Portal, you will need your school s PowerSchool

More information

WatchDox for Windows User Guide. Version 3.9.0

WatchDox for Windows User Guide. Version 3.9.0 Version 3.9.0 Notice Confidentiality This document contains confidential material that is proprietary WatchDox. The information and ideas herein may not be disclosed to any unauthorized individuals or

More information

OUTLOOK ANYWHERE CONNECTION GUIDE FOR USERS OF OUTLOOK 2010

OUTLOOK ANYWHERE CONNECTION GUIDE FOR USERS OF OUTLOOK 2010 OUTLOOK ANYWHERE CONNECTION GUIDE FOR USERS OF OUTLOOK 2010 CONTENTS What is Outlook Anywhere? Before you begin How do I configure Outlook Anywhere with Outlook 2010? How do I use Outlook Anywhere? I already

More information

Guarantee Trust Life Insurance Company. Agent Portal www.gtlic.com. Agent Portal Guide

Guarantee Trust Life Insurance Company. Agent Portal www.gtlic.com. Agent Portal Guide Guarantee Trust Life Insurance Company Agent Portal www.gtlic.com Agent Portal Guide Rev. 3/2014 Table of Contents Log in to Agent Portal... 3 Obtain Quote... 4 Print Quote... 5 Save and Retrieve Quote...

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

ECAT SWE Exchange Customer Administration Tool Web Interface User Guide Version 6.7

ECAT SWE Exchange Customer Administration Tool Web Interface User Guide Version 6.7 ECAT SWE Exchange Customer Administration Tool SWE - Exchange Customer Administration Tool (ECAT) Table of Contents About this Guide... 3 Audience and Purpose... 3 What is in this Guide?... 3 CA.mail Website...

More information

This tutorial provides detailed instructions to help you download and configure Internet Explorer 6.0 for use with Web Commerce application.

This tutorial provides detailed instructions to help you download and configure Internet Explorer 6.0 for use with Web Commerce application. IE 6.0 Download and Set-up To use the Web Commerce e-commerce service, you need to: Gain access to the Internet Install Microsoft Internet Explorer 6.0 Configure Temporary Internet files in Internet Explorer.

More information

How to set up Outlook Anywhere on your home system

How to set up Outlook Anywhere on your home system How to set up Outlook Anywhere on your home system The Outlook Anywhere feature for Microsoft Exchange Server 2007 allows Microsoft Office Outlook 2007 and Outlook 2003 users to connect to their Outlook

More information

Egnyte Single Sign-On (SSO) Installation for OneLogin

Egnyte Single Sign-On (SSO) Installation for OneLogin Egnyte Single Sign-On (SSO) Installation for OneLogin To set up Egnyte so employees can log in using SSO, follow the steps below to configure OneLogin and Egnyte to work with each other. 1. Set up OneLogin

More information

Datasharp Optimum Connect Toolbar

Datasharp Optimum Connect Toolbar Datasharp Optimum Connect Toolbar User Guide Release 17 Document Version 1 WWW.DATASHARP.CO.UK Table of Contents 1 About This Guide...6 1.1 Open Datasharp Optimum Connect Toolbar... 6 1.2 First Time Login...

More information

MySphere Assistant User Guide

MySphere Assistant User Guide MySphere Assistant User Guide Release 070420 Document Version 1 TeleSphere 9237 E. Via de Ventura Blvd. 2 nd Floor Scottsdale, AZ 85258 888-MYSPHERE 480.385.7007 WWW.TELESPHERE.COM Page 1 of 44 Table of

More information

Quick Start SAP Sybase IQ 16.0

Quick Start SAP Sybase IQ 16.0 Quick Start SAP Sybase IQ 16.0 UNIX/Linux DOCUMENT ID: DC01687-01-1600-01 LAST REVISED: February 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This publication pertains to Sybase software and

More information

Forefront Online Protection for Exchange (FOPE) User documentation

Forefront Online Protection for Exchange (FOPE) User documentation Forefront Online Protection for Exchange (FOPE) User documentation About Your FOPE Quarantine Mailbox Applies To: Forefront Online Protection for Exchange This document will help you get started with the

More information

1. Linking among several worksheets in the same workbook 2. Linking data from one workbook to another

1. Linking among several worksheets in the same workbook 2. Linking data from one workbook to another Microsoft Excel 2003: Part V Advanced Custom Tools Windows XP (I) Linking Data from Several Worksheets and Workbooks In Excel Level III, we have learned and seen examples of how to link data from one worksheet

More information

Human Resources (HR) Query Basics

Human Resources (HR) Query Basics Human Resources (HR) Query Basics This course will teach you the concepts and procedures involved in finding public queries, creating private queries, and running queries in PeopleSoft 9.1 Query Manager.

More information

SharePoint 2010. Rollins College 2011

SharePoint 2010. Rollins College 2011 SharePoint 2010 Rollins College 2011 1 2 Contents Overview... 5 Accessing SharePoint... 6 Departmental Site - User Interface... 7 Permissions... 8 Site Actions: Site Administrator... 8 Site Actions: General

More information

Table of Contents INTRODUCTION... 2 HOME... 3. Dashboard... 5 Reminders... 8 Announcements... 12 Preferences... 13 Recent Items... 15 REQUESTS...

Table of Contents INTRODUCTION... 2 HOME... 3. Dashboard... 5 Reminders... 8 Announcements... 12 Preferences... 13 Recent Items... 15 REQUESTS... Table of Contents INTRODUCTION... 2 HOME... 3 Dashboard... 5 Reminders... 8 Announcements... 12 Preferences... 13 Recent Items... 15 REQUESTS... 16 Request List View... 17 Requests based on Filters...

More information

CRM Migration Manager 3.1.1 for Microsoft Dynamics CRM. User Guide

CRM Migration Manager 3.1.1 for Microsoft Dynamics CRM. User Guide CRM Migration Manager 3.1.1 for Microsoft Dynamics CRM User Guide Revision D Issued July 2014 Table of Contents About CRM Migration Manager... 4 System Requirements... 5 Operating Systems... 5 Dynamics

More information

Sharepoint. Overview. Key features of SharePoint:

Sharepoint. Overview. Key features of SharePoint: Sharepoint Overview Sharepoint is a complex enterprise-level collaboration tool that will require some effor to use effectively. If you choose to make it work for you, be prepared to spend some time learning

More information

econtrol 3.5 for Active Directory & Exchange Administrator Guide

econtrol 3.5 for Active Directory & Exchange Administrator Guide econtrol 3.5 for Active Directory & Exchange Administrator Guide This Guide Welcome to the econtrol 3.5 for Active Directory and Exchange Administrator Guide. This guide is for system administrators and

More information

Fairsail PDF Template Generator: A Complete Guide

Fairsail PDF Template Generator: A Complete Guide Fairsail PDF Template Generator: A Complete Guide Version 12 FS-HCM-PTG-COMP-201506--R012.00 Fairsail 2015. All rights reserved. This document contains information proprietary to Fairsail and may not be

More information

17 March 2013 NIEM Web Services API Version 1.0 URI: http://reference.niem.gov/niem/specification/web-services-api/1.0/

17 March 2013 NIEM Web Services API Version 1.0 URI: http://reference.niem.gov/niem/specification/web-services-api/1.0/ 17 March 2013 NIEM Web Serv vices API Version 1.0 URI: http://reference.niem.gov/niem/specification/web-services-api/1.0/ i Change History No. Date Reference: All, Page, Table, Figure, Paragraph A = Add.

More information

Troubleshooting Account Lockouts/Password Resets

Troubleshooting Account Lockouts/Password Resets Troubleshooting Account Lockouts/Password Resets Contents Your mobile phone is using your old password... 1 Your computer password has not been changed... 2 Citrix has cached your old password... 2 Your

More information

Appendix A How to create a data-sharing lab

Appendix A How to create a data-sharing lab Appendix A How to create a data-sharing lab Creating a lab involves completing five major steps: creating lists, then graphs, then the page for lab instructions, then adding forms to the lab instructions,

More information

SHAREPOINT 2010 FOUNDATION FOR END USERS

SHAREPOINT 2010 FOUNDATION FOR END USERS SHAREPOINT 2010 FOUNDATION FOR END USERS WWP Training Limited Page i SharePoint Foundation 2010 for End Users Fundamentals of SharePoint... 6 Accessing SharePoint Foundation 2010... 6 Logging in to your

More information

Startup guide for Zimonitor

Startup guide for Zimonitor Page 1 of 5 Startup guide for Zimonitor This is a short introduction to get you started using Zimonitor. Start by logging in to your version of Zimonitor using the URL and username + password sent to you.

More information

How To Set Up Total Recall Web On A Microsoft Memorybook 2.5.2.2 (For A Microtron)

How To Set Up Total Recall Web On A Microsoft Memorybook 2.5.2.2 (For A Microtron) Total Recall Web Web Module Manual and Customer Quick Reference Guides COPYRIGHT NOTICE Copyright 1994-2009 by DHS Associates, Inc. All Rights Reserved. All TOTAL RECALL, TOTAL RECALL SQL, TOTAL RECALL

More information

Cloudfinder for Office 365 User Guide. November 2013

Cloudfinder for Office 365 User Guide. November 2013 1 Contents Getting started with Cloudfinder for Office 365 1... 3 Sign up New Cloudfinder user... 3 Sign up Existing Cloudfinder user... 4 Setting the Admin Impersonation... 4 Initial backup... 7 Inside

More information

Security Assertion Markup Language (SAML) Site Manager Setup

Security Assertion Markup Language (SAML) Site Manager Setup Security Assertion Markup Language (SAML) Site Manager Setup Trademark Notice Blackboard, the Blackboard logos, and the unique trade dress of Blackboard are the trademarks, service marks, trade dress and

More information

Salesforce Files Connect Implementation Guide

Salesforce Files Connect Implementation Guide Salesforce Files Connect Implementation Guide Salesforce, Winter 16 @salesforcedocs Last updated: December 10, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

HE Gateway User guide for colleges and universities

HE Gateway User guide for colleges and universities HE Gateway User guide for colleges and universities HE Gateway 1 Student Loans Company Ltd Contents Section 1 Definitions & Related Documents...3 Definitions... 3 Related Documents... 3 Section 2 Purpose

More information

CA Nimsoft Service Desk

CA Nimsoft Service Desk CA Nimsoft Service Desk Configure Outbound Web Services 7.13.7 Legal Notices Copyright 2013, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and is subject

More information

ProperSync 1.3 User Manual. Rev 1.2

ProperSync 1.3 User Manual. Rev 1.2 ProperSync 1.3 User Manual Rev 1.2 Contents Overview of ProperSync... 3 What is ProperSync... 3 What s new in ProperSync 1.3... 3 Getting Started... 4 Installing ProperSync... 4 Activating ProperSync...

More information

Admin Guide Product version: 4.3.5 Product date: November, 2011. Technical Administration Guide. General

Admin Guide Product version: 4.3.5 Product date: November, 2011. Technical Administration Guide. General Corporate Directory View2C Admin Guide Product version: 4.3.5 Product date: November, 2011 Technical Administration Guide General This document highlights Corporate Directory software features and how

More information

Critical Care EEG Database Public Edition. User Manual

Critical Care EEG Database Public Edition. User Manual Critical Care EEG Database Public Edition User Manual v. 9/25/2015 Table of Contents Overview... 2 Installation... 2 Basic Structure 2 Installing the Files 3 Connecting to Data 4 Configuration... 4 System

More information

PeopleSoft Query Training

PeopleSoft Query Training PeopleSoft Query Training Overview Guide Tanya Harris & Alfred Karam Publish Date - 3/16/2011 Chapter: Introduction Table of Contents Introduction... 4 Navigation of Queries... 4 Query Manager... 6 Query

More information

How to Use Remote Access Using Internet Explorer

How to Use Remote Access Using Internet Explorer Introduction Welcome to the Mount s Remote Access service. The following documentation is intended to assist first time or active users with connecting, authenticating and properly logging out of Remote

More information

PaymentNet Federal Card Solutions Cardholder FAQs

PaymentNet Federal Card Solutions Cardholder FAQs PaymentNet Federal Card Solutions It s easy to find the answers to your questions about PaymentNet! June 2014 Frequently Asked Questions First Time Login How do I obtain my login information?... 2 How

More information

Table of Contents INTRODUCTION... 2 HOME PAGE... 3. Announcements... 7 Personalize & Change Password... 8 Reminders... 9 SERVICE CATALOG...

Table of Contents INTRODUCTION... 2 HOME PAGE... 3. Announcements... 7 Personalize & Change Password... 8 Reminders... 9 SERVICE CATALOG... Table of Contents INTRODUCTION... 2 HOME PAGE... 3 Announcements... 7 Personalize & Change Password... 8 Reminders... 9 SERVICE CATALOG... 11 Raising a Service Request... 12 Edit the Service Request...

More information

Archive Add-in Administrator Guide

Archive Add-in Administrator Guide Archive Add-in Administrator Guide RESTRICTION ON USE, PUBLICATION, OR DISCLOSURE OF PROPRIETARY INFORMATION Copyright 2011 McAfee, Inc. This document contains information that is proprietary and confidential

More information

Pcounter CGI Utilities Installation and Configuration For Pcounter for Windows version 2.55 and above

Pcounter CGI Utilities Installation and Configuration For Pcounter for Windows version 2.55 and above Pcounter CGI Utilities Installation and Configuration For Pcounter for Windows version 2.55 and above About this document The core Pcounter application contains a number of CGI extension applications which

More information

Manage Workflows. Workflows and Workflow Actions

Manage Workflows. Workflows and Workflow Actions On the Workflows tab of the Cisco Finesse administration console, you can create and manage workflows and workflow actions. Workflows and Workflow Actions, page 1 Add Browser Pop Workflow Action, page

More information

Add in Guide for Microsoft Dynamics CRM May 2012

Add in Guide for Microsoft Dynamics CRM May 2012 Add in Guide for Microsoft Dynamics CRM May 2012 Microsoft Dynamics CRM Addin Guide This document will guide you through configuration of the Microsoft Dynamics CRM addin. Microsoft Dynamics CRM is a bit

More information

Contents About the Contract Management Post Installation Administrator's Guide... 5 Viewing and Modifying Contract Management Settings...

Contents About the Contract Management Post Installation Administrator's Guide... 5 Viewing and Modifying Contract Management Settings... Post Installation Guide for Primavera Contract Management 14.1 July 2014 Contents About the Contract Management Post Installation Administrator's Guide... 5 Viewing and Modifying Contract Management Settings...

More information

IQSweb Reference G. ROSS Migration/Registration

IQSweb Reference G. ROSS Migration/Registration ROSS Migration/Registration Contents IQSweb V3.0.1 ROSS Connection Requirements... 2 Test Agency Network Connectivity to ROSS... 3 FIREWALL Exceptions... 3 FIREWALL Exception Justification... 4 ROSS Interface

More information

TIBCO Spotfire Metrics Modeler User s Guide. Software Release 6.0 November 2013

TIBCO Spotfire Metrics Modeler User s Guide. Software Release 6.0 November 2013 TIBCO Spotfire Metrics Modeler User s Guide Software Release 6.0 November 2013 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO SOFTWARE

More information

Microsoft Office 2010

Microsoft Office 2010 Access Tutorial 1 Creating a Database Microsoft Office 2010 Objectives Learn basic database concepts and terms Explore the Microsoft Access window and Backstage view Create a blank database Create and

More information

Context-sensitive Help Guide

Context-sensitive Help Guide MadCap Software Context-sensitive Help Guide Flare 11 Copyright 2015 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this

More information

RoomWizard Synchronization Software Manual Installation Instructions

RoomWizard Synchronization Software Manual Installation Instructions 2 RoomWizard Synchronization Software Manual Installation Instructions Table of Contents Exchange Server Configuration... 4 RoomWizard Synchronization Software Installation and Configuration... 5 System

More information

End User Guide. Version 2.8.0

End User Guide. Version 2.8.0 End User Guide Version 8.0 Table of Contents About this Guide... 5 Using this Manual... 5 Audience... 5 RedCarpet Overview... 6 What is RedCarpet?... 6 Who Uses RedCarpet?... 6 How Do I Get Started?...

More information

Emerge Assistant Toolbar Guide

Emerge Assistant Toolbar Guide Emerge Assistant Toolbar Guide 031114/FT/13v1/EX Page 0 Table of Contents Table of Contents... Error! Bookmark not defined. Table of Figures... 5 Questions?... 8 1 Introduction... 9 1.1 About Emerge Assistant

More information

INFOPATH FORMS FOR OUTLOOK, SHAREPOINT, OR THE WEB

INFOPATH FORMS FOR OUTLOOK, SHAREPOINT, OR THE WEB INFOPATH FORMS FOR OUTLOOK, SHAREPOINT, OR THE WEB GINI COURTER, TRIAD CONSULTING Like most people, you probably fill out business forms on a regular basis, including expense reports, time cards, surveys,

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

School account creation guide

School account creation guide School account creation guide Contents Your welcome email Page 2 The CSV file Page 3 Uploading the CSV and creating the accounts Page 5 Retrieving staff usernames and passwords Page 8 Retrieving student

More information

Creating and Using Forms in SharePoint

Creating and Using Forms in SharePoint Creating and Using Forms in SharePoint Getting started with custom lists... 1 Creating a custom list... 1 Creating a user-friendly list name... 1 Other options for creating custom lists... 2 Building a

More information

Microsoft Access 2010 Part 1: Introduction to Access

Microsoft Access 2010 Part 1: Introduction to Access CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Access 2010 Part 1: Introduction to Access Fall 2014, Version 1.2 Table of Contents Introduction...3 Starting Access...3

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

Crystal Reports Payroll Exercise

Crystal Reports Payroll Exercise Crystal Reports Payroll Exercise Objective This document provides step-by-step instructions on how to build a basic report on Crystal Reports XI on the MUNIS System supported by MAISD. The exercise will

More information

University of Alaska Statewide Financial Systems User Documentation. BANNER TRAVEL AND EXPENSE MANAGEMENT TEM (Quick)

University of Alaska Statewide Financial Systems User Documentation. BANNER TRAVEL AND EXPENSE MANAGEMENT TEM (Quick) University of Alaska Statewide Financial Systems User Documentation BANNER TRAVEL AND EXPENSE MANAGEMENT TEM (Quick) Travel and Expense Management Table of Contents 2 Table of Contents Table of Contents...

More information

USING MYWEBSQL FIGURE 1: FIRST AUTHENTICATION LAYER (ENTER YOUR REGULAR SIMMONS USERNAME AND PASSWORD)

USING MYWEBSQL FIGURE 1: FIRST AUTHENTICATION LAYER (ENTER YOUR REGULAR SIMMONS USERNAME AND PASSWORD) USING MYWEBSQL MyWebSQL is a database web administration tool that will be used during LIS 458 & CS 333. This document will provide the basic steps for you to become familiar with the application. 1. To

More information

Configuring, Customizing, and Troubleshooting Outlook Express

Configuring, Customizing, and Troubleshooting Outlook Express 3 Configuring, Customizing, and Troubleshooting Outlook Express............................................... Terms you ll need to understand: Outlook Express Newsgroups Address book Email Preview pane

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

Baylor Secure Messaging. For Non-Baylor Users

Baylor Secure Messaging. For Non-Baylor Users Baylor Secure Messaging For Non-Baylor Users TABLE OF CONTENTS SECTION ONE: GETTING STARTED...4 Receiving a Secure Message for the First Time...4 Password Configuration...5 Logging into Baylor Secure Messaging...7

More information

Exchange 2010. Outlook Profile/POP/IMAP/SMTP Setup Guide

Exchange 2010. Outlook Profile/POP/IMAP/SMTP Setup Guide Exchange 2010 Outlook Profile/POP/IMAP/SMTP Setup Guide September, 2013 Exchange 2010 Outlook Profile/POP/IMAP/SMTP Setup Guide i Contents Exchange 2010 Outlook Profile Configuration... 1 Outlook Profile

More information