Tutorial: How to start a workflow with the Call Web Service action
|
|
|
- Darlene Fowler
- 9 years ago
- Views:
Transcription
1 Tutorial: How to start a workflow with the Call Web Service action [email protected]
2 Table of Contents Introduction... 3 Why use a Call web service action instead of a Start Workflow action?... 3 The Call web service action... 4 Using the StartWorkflow web service method... 4 Using the StartWorkflowOnListItem web service method... 6 Passing variable values between workflows (using start data)... 8 Create a new workflow... 8 Add a Log in History List workflow action... 9 Add a Build String workflow action Using the association data in the Call Web Service action Run a workflow on all existing items in a list/library Creating the workflow Create two workflow variables Add a Query List Workflow Action Add a For Each workflow action Add a Call web service workflow action Run the workflow [email protected] 2 16
3 Introduction In some instances it may be necessary to increase performance by using a Call Web Service action to speak to another workflow. Extremely large workflows can be difficult to edit and may run slower than a smaller workflow designed for a specific process. In these cases, splitting the workflow into separate workflows and having the first workflow call the second and so on can increase performance. This can also be an advantage if there is an error; the workflow can be restarted from a certain point rather than from the beginning. Why use a Call web service action instead of a Start Workflow action? The Start Workflow action allows the user to start a workflow on the same list item only. This is useful in certain situations but more often than not starting workflows on different list items is required. Also, if the workflows are part of a larger process, passing variables between the workflows is essential. This can be achieved using the Call web service action and web service methods. This tutorial will guide you through starting a workflow using the Call Web Service workflow action and the web service methods StartWorkflow and StartWorkflowOnListItem. Using these methods, workflows can be started on different lists and items. There will also be examples of how to correctly use start data and the format required. [email protected] 3 16
4 The Call web service action The Call Web Service action allows the workflow to make a call to a SOAP web service method. This action can be used to call any web service. It is commonly used to call the SharePoint web services ( ) to interact with list items in other sites, or call custom web services that perform processing external to the workflow. For more detail about the Call web service action please refer to the following tutorial Using the StartWorkflow web service method This first section will demonstrate how to use the StartWorkflow web service within a Call Web Service workflow action. The StartWorkflow web service starts a workflow on an item in a document library, where the file URL of the document is known. Note: This section demonstrates how to configure a Call web service action and is not part of a workflow. 1. Open a Call web service workflow action on the design canvas. 2. In the URL field, select the Insert Reference icon. 3. In the Common tab, select Web URL. Click Ok. 4. After the Web URL, type _vti_bin/nintexworkflow/workflow.asmx to complete the path to the web service. 5. Enter the appropriate credentials for the URL. [email protected] 4 16
5 6. In the Web method field, click the Refresh button and select the StartWorkflow method. 7. Enter the parameters for the Web service message. fileurl (string) The URL of the document. workflowname (string) The name of the workflow to start. This has been published on the target document library. associationdata (string) This parameter is used to pass start data to the workflow (values that can be used to set variables to certain values when the workflow starts). Note: This field may be left blank as there is no start data. *For an example on how to fill in the Web service message parameters, please see the following. A test document library was created for this example, and the name of the published workflow is testworkflow01. To start the workflow on the item shown above, configure the Web service message as: fileurl: [email protected] 5 16
6 workflowname: testworkflow01 8. Click Save. Using the StartWorkflowOnListItem web service method The StartWorkflowOnListItem web service method should be used if a workflow needs to be started on a list item directly or the item URL is not known. This Call Web Service action can then be added to any other workflow in your SharePoint site to start the selected workflow; in my example I will use a workflow titled testworkflow01. Begin configuring the Call web service action like the previous section and instead select StartWorkflowOnListItem as the web service method, or if you can t remember, I ve included the steps below. 1. In the URL field, select the Insert Reference icon. 2. In the Common tab, select Web URL. Click Ok. 3. After the Web URL, type _vti_bin/nintexworkflow/workflow.asmx to complete the path to the web service. 4. Enter the appropriate credentials for the URL entered. [email protected] 6 16
7 5. In the Web method field, click Refresh and select the StartWorkflowOnListItem method. 6. Complete the following Web service message parameters. itemid (int) Contains the ID of the item the workflow will start on. listname (string) The name of the list where the workflow will start. workflowname (string) The name of the workflow to start. This is published on the target list or document library. associationdata (string) This parameter is used to pass start data to the workflow (values that can be used to set variables to certain values when the workflow starts). Note: This field may be left blank as there is no start data. *For an example on how to fill in the Web Service message parameters, see the following. The workflow I am using is called Testworkflow01 and the list is in the image below. [email protected] 7 16
8 I want to start a workflow on this item so I would configure the Web service message as: itemid: 1 listname: testdoc library workflowname: testworkflow01 7. Click Save. Passing variable values between workflows (using start data) We now know how to configure the Call Web Service workflow action with two different web methods. Another requirement may be to pass certain workflow variables between workflows when they are part of a larger process. To do this, we must populate the target workflow with start data. These start data variables can then automatically be populated when the workflow is started. The first step is to create a simple workflow with start data configured. Create a new workflow 1. In the Ribbon, select Workflow Settings and then Variables. 2. Click New. [email protected] 8 16
9 3. In the Name field, type Texta and select Single line of text as the type. 4. Check the Show on start form box and click Save. 5. Create a second variable called Number1 and select Number as the variable type. 6. Check the Show on start form box and click Save. Add a Log in History List workflow action A Log in History List workflow action can be added to the workflow to log the values of these variables and test whether they were correctly set. 1. Click and drag a Log in History List action to the design canvas. 2. Double-click on the action to open the configuration dialog. 3. In the text box, type Text = and then click on the Insert Reference icon. 4. In the Workflow Variables list, select Texta and click Ok. 5. In the text box, type Number= and click on the Insert Reference icon. 6. In the Workflow Variables list, select Number1 and click Ok. 7. Click Save. [email protected] 9 16
10 Add a Build String workflow action To test starting a workflow with these variables, automatically set when the workflow starts either of the web service methods listed in this tutorial can be used. In this example, the StartWorkflowOnListItem method will be used. To begin, a dynamic string action must be built to create the associationdata XML required in the Call Web Service action. We will use this action to create an association data variable, adata. 1. Select and drag a Build String workflow action onto the design canvas. 2. In the Build String textbox, enter the following association data. Refer to the text below for format. The format for the association data parameter is as follows: <Data> <StartDataItem1>value1</StartDataItem1> <StartDataItem2>value2</StartDataItem2> <StartDataItem3>value3</StartDataItem3> </Data> The workflow we are attempting to start has two Start Data items texta and Number1. Therefore, the association data will be as follows: <Data> <texta>testvalue1</texta> <Number1>12345</Number1> </Data> This will set the variable texta to testvalue1 and number1 to Create the association data variable. 4. Click Variables in the Ribbon and select New. 5. In the Name, type adata and select Single line of text. Click Save. 6. In the Store result in field, select adata. [email protected] 10 16
11 7. Click Save. The two start data variables, texta and number1 have now been combined into the one association data variable. Using the association data in the Call Web Service action The association data can now be added to the Call Web Service action. 1. In the associationdata (string) field, select the Insert Reference icon. In the Workflow Variables section, select adata. 2. Check the Encode inserted tokens box. 3. Click Save
12 Run a workflow on all existing items in a list/library There may be a case where a common process workflow will need to be run on all existing items in a list/library, not only a single item. To achieve this, we must first query all the items within a list and then loop through this result. Within the loop, the current item will be passed to the StartWorkflowOnListItemID web service method. Use the StartWorkflowOnListItemID method to start a workflow on each item within a list or library. This will in turn start the workflow on that item. This type of workflow can be executed once on any item within the list and will then trigger the specified workflow to run on all list items. Creating the workflow 1. Select the list or library to run the workflow on. 2. In the Ribbon, select the List tab and click Workflow Settings. Click on Create a workflow in Nintex Workflow. 3. Select a Blank canvas. Create two workflow variables Two variables are required for the example. ItemIDcollection A collection variable used to store the item ID collection from the initial query. CurrentItemID This is used within the For Each action to store the current ID being referenced within the loop, the value will also be passed to the Call Web Service action. 1. Click Workflow Settings in the Ribbon and select Variables. Click on New. 2. In the Name type ItemIDcollection and select Collection as the type. Click Save. 3. Select New and in the Name field, type currentitemid. Select List Item ID as the type. [email protected] 12 16
13 Add a Query List Workflow Action The first step is to query all the items in the current list/library and store the resulting IDs within a collection variable. We can do this using a Query List action. The Query List action will be set to return each item ID in the list (regardless of the values they contain) to be used within a For Each loop. The result is stored in a collection variable. This variable allows for more than a single value to be returned. 1. In the List field, use the drop-down to select the List to query the items. For this example, we will select testlist1. 2. In the Recursive field, check the box. 3. In Field, select ID and click Add. 4. In the drop-down list, select the ItemIDcollection variable. Note: In the Filter section, you can select to start the workflow on items which meet a specific criteria; for example, only items with a title field which contains the value red. Add a For Each workflow action The For Each action will loop through each of the ID values returned, once a collection variable has been populated. The For Each loop will also contain the call web service action that will be starting the target workflow. [email protected] 13 16
14 1. Select and drag a For Each action onto the design canvas. 2. In the Target Collection field, select the ItemIDcollection variable. This is the variable which contains the result of the query. 3. In the Store result in field, select the currentitemid. 4. Click Save. Add a Call web service workflow action The configuration of the web service action is the same as explained in the previous section Nintex StartWorkflowOnListItem web service method example except that the ID will be the currentid variable, which is based on the result of the for each loop. 1. Select and drag a Call web service action on to the design canvas within the For Each workflow action. 2. In the URL field, click on the Insert Reference and select WebURL. 3. After WebURL, type _vti_bin/nintexworkflow/workflow.asmx. 4. Enter the credentials for the URL. 5. In the Web method field, select Refresh. Select the StartWorkflowOnListItem method. [email protected] 14 16
15 6. Configure the Web service message. 7. In the itemid (int) field, click on the Insert Reference icon and select currentitemid. 8. In the listname (string) field, click on the Insert Reference icon and select List Name. 9. In the workflowname (string) field, enter the name of the workflow that be starting on each item
16 The completed workflow will consist of the following design: Run the workflow Start the workflow manually on any item within the target list. This will cause the specified workflow to run on each item based on the query result
Tutorial JavaScript: Switching panels using a radio button
Tutorial JavaScript: Switching panels using a radio button www.nintex.com [email protected] Contents About this tutorial... 3 Upload the JavaScript File... 4 Using JavaScript to hide or show a control
Nintex Forms 2013 Help
Nintex Forms 2013 Help Last updated: Friday, April 17, 2015 1 Administration and Configuration 1.1 Licensing settings 1.2 Activating Nintex Forms 1.3 Web Application activation settings 1.4 Manage device
Nintex Workflow for Project Server 2010 Help
Nintex Workflow for Project Server 2010 Help Last updated: Friday, March 16, 2012 1 Using Nintex Workflow for Project Server 2010 1.1 Administration and Management 1.2 Associating a Project Server Workflow
Guide to Automating Workflows Quickly and Easily
Guide to Automating Workflows Quickly and Easily Part 3 Back to Contents 1 2012 Nintex USA LLC, All rights reserved. Errors and omissions excepted. Table of Contents Introduction... 3 Handling the Full
Nintex Workflow 2010 Help Last updated: Friday, 26 November 2010
Nintex Workflow 2010 Help Last updated: Friday, 26 November 2010 1 Workflow Interaction with SharePoint 1.1 About LazyApproval 1.2 Approving, Rejecting and Reviewing Items 1.3 Configuring the Graph Viewer
Nintex Workflow 2013 Help
Nintex Workflow 2013 Help Last updated: Wednesday, January 15, 2014 1 Workflow Actions... 7 1.1 Action Set... 7 1.2 Add User To AD Group... 8 1.3 Assign Flexi Task... 10 1.4 Assign To-Do Task... 25 1.5
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
EFORMS MANUAL FOR SHAREPOINT ONLINE
EFORMS MANUAL FOR SHAREPOINT ONLINE www.norbrik.com TABLE OF CONTENTS Preface... 2 eforms for SharePoint... 2 Installation and configuration... 2 Pre-Requisites... 2 Installation... 2 Assign License...
QUERY DATA FROM ACTIVE DIRECTORY
QUERY DATA FROM ACTIVE DIRECTORY Active Directory includes a wealth of information about your company s organization. This task will show you how to auto populate fields in your InfoPath form with the
InsideView Lead Enrich Setup Guide for Marketo
InsideView Lead Enrich Setup Guide for Marketo ... 1 Step 1: Sign up for InsideView for Marketing... 1 Step 2: Create Custom Fields... 3 Step 3: Create a Webhook for InsideView for Marketing... 5 Step
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
Student Records Home Page
Student Records Home Page The homepage for Student Records is built using four sections. Therefore there will be four different processes in changing or modifying the content. The four parts are: 1. Photo
Product Guide. www.nintex.com [email protected]. 2013 Nintex. All rights reserved. Errors and omissions excepted.
Product Guide 2013 Nintex. All rights reserved. Errors and omissions excepted. www.nintex.com [email protected] 2 Nintex Workflow for Office 365 Product Guide Contents Nintex Forms for Office 365...5
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
Step-By-Step build Advanced InfoPath Form and SharePoint Designer Workflow
Step-By-Step build Advanced InfoPath Form and SharePoint Designer Workflow Workshop: One the Request Form we will design a sample process of Employee Vacation Request with Approval process workflow. Required
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
UF Health SharePoint 2010 Document Libraries
UF Health SharePoint 2010 Document Libraries Email: [email protected] Web Page: http://training.health.ufl.edu Last Updated 2/7/2014 SharePoint 2010 Document Libraries 1.5 Hours 1.0 Shared Network
Query JD Edwards EnterpriseOne Customer Credit using Oracle BPEL Process Manager
Query JD Edwards EnterpriseOne Customer Credit using Oracle BPEL Process Manager 1 Overview In this tutorial you will be querying JD Edwards EnterpriseOne for Customer Credit information. This is a two
Using SQL Reporting Services with Amicus
Using SQL Reporting Services with Amicus Applies to: Amicus Attorney Premium 2016 (with or without Premium Billing) With Microsoft SQL Server Reporting Services, use Report Builder to generate and author
DocuSign for SharePoint Online v2.4
Quick Start Guide DocuSign for SharePoint Online v2.4 Published October 12, 2015 Overview DocuSign for SharePoint Online allows users to sign or send documents out for signature from a SharePoint Online
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,
UF Health SharePoint 2010 Introduction to Content Administration
UF Health SharePoint 2010 Introduction to Content Administration Email: [email protected] Web Page: http://training.health.ufl.edu Last Updated 2/7/2014 Introduction to SharePoint 2010 2.0 Hours
ONBASE OUTLOOK CLIENT GUIDE for 2010 and 2013
To install Outlook 2010/2013 client Note: NOT currently compatible with Windows 10. Make sure your version of outlook is 32bit if not reinstall your version of Microsoft Office to the 32bit version. Must
Document Creation Automation Using SharePoint Designer Workflows
In this document we are going to investigate the capabilities of SharePoint Designer workflows to automate document creation; that is, the automated creation of documents based on templates that will have
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,
STEVEN MANN. InfoPath* with. SharePoint HOW-TO. 800 East 96th Street, Indianapolis, Indiana 46240 USA
STEVEN MANN InfoPath* with SharePoint 2010 HOW-TO 800 East 96th Street, Indianapolis, Indiana 46240 USA Table of Contents Introduction 1 Overview of This Book 1 How to Benefit from This Book 1 How to Continue
i>clicker integrate for Canvas v1.1 Instructor Guide
i>clicker integrate for Canvas v1.1 Instructor Guide July 2013 Table of Contents Overview... 3 Step 1: Copy your integrate Wizard Files... 4 Step 2: Configure your i>clicker Software... 5 Step 3: Create
User's Guide. ControlPoint. Change Manager (Advanced Copy) SharePoint Migration. v. 4.0
User's Guide ControlPoint Change Manager (Advanced Copy) SharePoint Migration v. 4.0 Last Updated 7 August 2013 i Contents Preface 3 What's New in Version 4.0... 3 Components... 3 The ControlPoint Central
Perceptive Connector for Infor Lawson AP Invoice Automation
Perceptive Connector for Infor Lawson AP Invoice Automation Integration Guide Version: 1.4.x Written by: Product Knowledge, R&D Date: October 2015 2015 Lexmark International Technology, S.A. All rights
Hyperoo 2.0 A (Very) Quick Start
Hyperoo 2.0 A (Very) Quick Start Download and install the Hyperoo 2.0 beta Hyperoo 2.0 is a client/server based application and as such requires that you install both the Hyperoo Client and Hyperoo Server
ITCS QUICK REFERENCE GUIDE: EXPRESSION WEB SITE
Create a One-Page Website Using Microsoft Expression Web This tutorial uses Microsoft Expression Web 3 Part 1. Create the Site on your computer Create a folder in My Documents to house the Web files. Save
Using Flow Control with the HEAD Recorder
03/15 Using with the HEAD Recorder The HEAD Recorder is a data acquisition software program that features an editable Flow Control function. This function allows complex program sequences to be predefined,
Capturx for SharePoint 2.0: Notification Workflows
Capturx for SharePoint 2.0: Notification Workflows 1. Introduction The Capturx for SharePoint Notification Workflow enables customers to be notified whenever items are created or modified on a Capturx
You simply need to define your flows and triggers; Built.io Flow will do the rest for you.
for Integrate business apps with Built.io Flow Built.io Flow is an integration Platform-as-a-Service (ipaas) that enables organizations to integrate and orchestrate business processes across multiple systems.
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
Nintex Workflow 2013 & InfoPath Form Design workshop
Nintex Workflow 2013 & InfoPath Form Design workshop Duration: 30 Hrs. Course Outline: Module 1: Creating a SharePoint Form with InfoPath Designer Design a SharePoint Form Using the Blank Form Template
The Smart Forms Web Part allows you to quickly add new forms to SharePoint pages, here s how:
User Manual First of all, congratulations on being a person of high standards and fine tastes! The Kintivo Forms web part is loaded with features which provide you with a super easy to use, yet very powerful
14 Configuring and Setting Up Document Management
14 Configuring and Setting Up Document Management In this chapter, we will cover the following topics: Creating a document type Allowing document types on locked records Creating a document data source
Analytics Canvas Tutorial: Cleaning Website Referral Traffic Data. N m o d a l S o l u t i o n s I n c. A l l R i g h t s R e s e r v e d
Cleaning Website Referral Traffic Data Overview Welcome to Analytics Canvas's cleaning referral traffic data tutorial. This is one of a number of detailed tutorials in which we explain how each feature
Integrating Phone Validation into Marketo
Integrating Phone Validation into Marketo Step by Step Using Webhooks User Guide Regardless of the industry or the department, communicating via telephone is essential for successfully connecting with
Colligo Email Manager 6.0. Offline Mode - User Guide
6.0 Offline Mode - User Guide Contents Colligo Email Manager 1 Key Features 1 Benefits 1 Installing and Activating Colligo Email Manager 2 Checking for Updates 3 Updating Your License Key 3 Managing SharePoint
Practice Fusion API Client Installation Guide for Windows
Practice Fusion API Client Installation Guide for Windows Quickly and easily connect your Results Information System with Practice Fusion s Electronic Health Record (EHR) System Table of Contents Introduction
Tutorial- Create a cascading drop-down control
Tutorial- Create a cascading drop-down control www.nintex.com [email protected] Contents Introduction... 3 Creating the SharePoint lists... 4 Customizing the SharePoint list form using Nintex Forms...
Colligo Email Manager 6.0. Connected Mode - User Guide
6.0 Connected Mode - User Guide Contents Colligo Email Manager 1 Benefits 1 Key Features 1 Platforms Supported 1 Installing and Activating Colligo Email Manager 2 Checking for Updates 3 Updating Your License
UOFL SHAREPOINT ADMINISTRATORS GUIDE
UOFL SHAREPOINT ADMINISTRATORS GUIDE WOW What Power! Learn how to administer a SharePoint site. [Type text] SharePoint Administrator Training Table of Contents Basics... 3 Definitions... 3 The Ribbon...
Project Server Plus Risk to Issue Escalator User Guide v1.1
Project Server Plus Risk to Issue Escalator User Guide v1.1 Overview The Project Server Plus Risk to Issue Escalator app will immediately raise a risk to an issue at the push of a button. Available within
CCC Report Center Overview... 3. Accessing the CCC Report Center... 4. Accessing, Working With, and Running Reports... 6. Customizing Reports...
CCC Report Center Contents 2 Contents CCC Report Center Overview... 3 Accessing the CCC Report Center... 4 Accessing, Working With, and Running Reports... 6 Customizing Reports... 11 Creating Ad Hoc Views
Scribe Online Integration Services (IS) Tutorial
Scribe Online Integration Services (IS) Tutorial 7/6/2015 Important Notice No part of this publication may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, photocopying,
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
TAMUS Terminal Server Setup BPP SQL/Alva
We have a new method of connecting to the databases that does not involve using the Texas A&M campus VPN. The new way of gaining access is via Remote Desktop software to a terminal server running here
BusinessObjects Enterprise XI Release 2
BusinessObjects Enterprise XI Release 2 How to configure an Internet Information Services server as a front end to a WebLogic application server Overview Contents This document describes the process of
Installing the ASP.NET VETtrak APIs onto IIS 5 or 6
Installing the ASP.NET VETtrak APIs onto IIS 5 or 6 2 Installing the ASP.NET VETtrak APIs onto IIS 5 or 6 3... 3 IIS 5 or 6 1 Step 1- Install/Check 6 Set Up and Configure VETtrak ASP.NET API 2 Step 2 -...
Integrating ConnectWise Service Desk Ticketing with the Cisco OnPlus Portal
Integrating ConnectWise Service Desk Ticketing with the Cisco OnPlus Portal This Application Note explains how to configure ConnectWise PSA (Professional Service Automation) application settings and Cisco
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
NINTEX WORKFLOW TIPS AND TRICKS. Eric Rhodes
NINTEX WORKFLOW TIPS AND TRICKS Eric Rhodes Table of Contents Eric Rhodes 1 Label It 2 Document Your Workflows with Action Labels Going Way Back 3 Backup Workflows with the Export Feature Name That Variable
Onboard new employees
WELCOME VIDEO EMPLOYEE HANDBOOK TRAINING Onboard new employees 1 A one stop shop for new hires SharePoint can help new employees hit the ground running on day one. Give new employees easy access to onboarding
SharePoint Online Setting site up for S drive data
SharePoint Online Setting site up for S drive data Establishing team site locations and managing shared drive data file conversions and migration 8-18-2015 1 Introduction This storyboard is designed to
Colligo Email Manager 5.1. User Guide
5.1 User Guide Contents Enterprise Email Management for SharePoint 2010 1 Benefits 1 Key Features 1 Platforms Supported 1 Installing and Activating Colligo Email Manager 2 Managing SharePoint Sites 5 Adding
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.
This is a training module for Maximo Asset Management V7.1. It demonstrates how to use the E-Audit function.
This is a training module for Maximo Asset Management V7.1. It demonstrates how to use the E-Audit function. Page 1 of 14 This module covers these topics: - Enabling audit for a Maximo database table -
Lync for Mac Get Help Guide
How do I download the Lync Client Tool for Mac? The Lync Client allows you to use your computer as a telephone as well as enabling the unified communication features. Part 1: Installing the Lync Client
Colligo Email Manager 6.2. Offline Mode - User Guide
6.2 Offline Mode - User Guide Contents Colligo Email Manager 1 Benefits 1 Key Features 1 Platforms Supported 1 Installing and Activating Colligo Email Manager 3 Checking for Updates 4 Updating Your License
Rochester Institute of Technology. Finance and Administration. Drupal 7 Training Documentation
Rochester Institute of Technology Finance and Administration Drupal 7 Training Documentation Written by: Enterprise Web Applications Team CONTENTS Workflow... 4 Example of how the workflow works... 4 Login
Broker Portal Tutorial Broker Portal Basics
Broker Portal Tutorial Broker Portal Basics Create Agent Connect Link Forgotten Password Change Your Broker Portal Password Delegate View Application Status Create Agent Connect Link Log in to your Producer
Add Feedback Workflow
Add Feedback Workflow Add Feedback Collection workflow to a list or library The workflows included with SharePoint products are features that you can use to automate your business processes, making them
LRDC Computing Services
LRDC Computing Services Remote Access to the LRDC Fileservers Windows XP* April 5, 2005 *While these instructions have been created for and tested on a Windows XP computer, they may also work for your
Non-Profit Solution for Microsoft Dynamics CRM
Non-Profit Solution for Microsoft Dynamics CRM 1 Non-Profit Solution for Microsoft Dynamics CRM Users Guide Table of Contents Introduction... 2 Overview... 2 Default Objects... 2 Screen Elements... 3 Required
Product Guide. 2013 Nintex. All rights reserved. Errors and omissions excepted.
Product Guide [email protected] www.nintex.com 2013 Nintex. All rights reserved. Errors and omissions excepted. Contents Contents... 2 Introduction... 4 1 Understanding system requirements... 5 1.1 Operating
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
Intellect Platform - Tables and Templates Basic Document Management System - A101
Intellect Platform - Tables and Templates Basic Document Management System - A101 Interneer, Inc. 4/12/2010 Created by Erika Keresztyen 2 Tables and Templates - A101 - Basic Document Management System
MY EWU PORTAL FEATURES AND BENEFITS. Promotion of the Eastern brand name
MY EWU PORTAL The My EWU web portal is an interactive website that provides single sign-on access to different EWU information and services. Content is based on your role or roles for example; student,
Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms
Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms InfoPath 2013 Web Enabled (Browser) forms Creating Web Enabled
Search help. More on Office.com: images templates
Page 1 of 14 Access 2010 Home > Access 2010 Help and How-to > Getting started Search help More on Office.com: images templates Access 2010: database tasks Here are some basic database tasks that you can
Pro Surveillance System 4.0. Quick Start Reference Guide
Pro Surveillance System 4.0 Quick Start Reference Guide 1 Table of Contents 1) Overview 3 2) Initial Setup Adding a Connection..4 3) Viewing Live Cameras...6 4) Single or Multi Channel Playback..8 5) Predetermined
Integrating Autotask Service Desk Ticketing with the Cisco OnPlus Portal
Integrating Autotask Service Desk Ticketing with the Cisco OnPlus Portal This Application Note provides instructions for configuring Apps settings on the Cisco OnPlus Portal and Autotask application settings
System Monitoring and Reporting
This chapter contains the following sections: Dashboard, page 1 Summary, page 2 Inventory Management, page 3 Resource Pools, page 4 Clusters, page 4 Images, page 4 Host Nodes, page 6 Virtual Machines (VMs),
Outlook Tips & Tricks. Training For Current & New Employees
Outlook Tips & Tricks Training For Current & New Employees The workshop will help build the necessary skills needed to begin using Microsoft Outlook 2010. The participant will learn how to create e-mail
Training Manual Version 1.0
State of Indiana Content Management System Open Text v.11.2 Training Manual Version 1.0 Developed by Table of Contents 1. Getting Started... 4 1.1 Logging In... 4 1.2 OpenText Menu...5 1.3 Selecting a
Microsoft Access 2010 handout
Microsoft Access 2010 handout Access 2010 is a relational database program you can use to create and manage large quantities of data. You can use Access to manage anything from a home inventory to a giant
SharePoint AD Information Sync Installation Instruction
SharePoint AD Information Sync Installation Instruction System Requirements Microsoft Windows SharePoint Services V3 or Microsoft Office SharePoint Server 2007. License management Click the trial link
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...
vcenter Orchestrator Developer's Guide
vcenter Orchestrator 4.0 EN-000129-02 You can find the most up-to-date technical documentation on the VMware Web site at: http://www.vmware.com/support/ The VMware Web site also provides the latest product
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
Excel Pivot Tables. Blue Pecan Computer Training Ltd - Onsite Training Provider www.bluepecantraining.com :: 0800 6124105 :: [email protected].
Excel Pivot Tables 1 Table of Contents Pivot Tables... 3 Preparing Data for a Pivot Table... 3 Creating a Dynamic Range for a Pivot Table... 3 Creating a Pivot Table... 4 Removing a Field... 5 Change the
Excel Reporting with 1010data
Excel Reporting with 1010data (212) 405.1010 [email protected] Follow: @1010data www.1010data.com Excel Reporting with 1010data Contents 2 Contents Overview... 3 Start with a 1010data query... 5 Running
1 Installation. Note: In Windows operating systems, you must be logged in with administrator rights to install the printer driver.
Installation A printer driver is an application that manages communication between a printer and your computer. Once installed, the printer driver settings must be configured in the printer Properties
Instructions for Configuring a SAS Metadata Server for Use with JMP Clinical
Instructions for Configuring a SAS Metadata Server for Use with JMP Clinical These instructions describe the process for configuring a SAS Metadata server to work with JMP Clinical. Before You Configure
Tutorial: Creating a form that emails the results to you.
Tutorial: Creating a form that emails the results to you. 1. Create a new page in your web site Using the Wizard Interface. a) Choose I want to add a form that emails the results to me in the wizard. b)
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
Content Author's Reference and Cookbook
Sitecore CMS 6.5 Content Author's Reference and Cookbook Rev. 110621 Sitecore CMS 6.5 Content Author's Reference and Cookbook A Conceptual Overview and Practical Guide to Using Sitecore Table of Contents
Radian Mortgage Insurance
LOS Interface Administrator/User Guide Radian Mortgage Insurance 2012 PCLender an LPS Company Contents Introduction... 3 Interface Features... 3 Interface Requirements... 3 Interface Considerations...
1. To build a Smart View report, open Excel and click on the Smart View tab.
Smart View Reports Smart View is an ad hoc reporting tool in Hyperion that allows users to develop custom made reports. It is an Excel add on and must be installed by your IT staff. Install instructions
Basic Pivot Tables. To begin your pivot table, choose Data, Pivot Table and Pivot Chart Report. 1 of 18
Basic Pivot Tables Pivot tables summarize data in a quick and easy way. In your job, you could use pivot tables to summarize actual expenses by fund type by object or total amounts. Make sure you do not
Accounts Payable Workflow Guide. Version 12.0
Accounts Payable Workflow Guide Version 12.0 Copyright Information Copyright 2014 Informa Software. All Rights Reserved. No part of this publication may be reproduced, transmitted, transcribed, stored
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
Using SQL Server Management Studio
Using SQL Server Management Studio Microsoft SQL Server Management Studio 2005 is a graphical tool for database designer or programmer. With SQL Server Management Studio 2005 you can: Create databases
