Multilingual Workflows Feb Product Version 7.0 and above

Size: px
Start display at page:

Download "Multilingual Workflows Feb Product Version 7.0 and above"

Transcription

1 PNMsoft Knowledge Base Sequence User Guides Multilingual Workflows Feb Product Version 7.0 and above

2 2013 PNMsoft All Rights Reserved This document, including any supporting materials, is owned by PNMsoft Ltd and/or its affiliates and is for the sole use of the PNMsoft customers, PNMsoft official business partners, or other authorized recipients. This document may contain information that is confidential, proprietary or otherwise legally protected, and it may not be further copied, distributed or publicly displayed without the express written permission of PNMsoft Ltd. or its affiliates. PNMsoft UK 38 Clarendon Road Watford Hertfordshire WD17 1JJ Tel: +44(0) Website:

3 TABLE OF CONTENTS Overview... 1 Languages Supported Out of the Box... 1 Configuring SharePoint to be Multilingual... 2 Creating and Translating the Resource File Step by Step... 3 Workflow Runtime Expressions... 6 SharePoint Flowtime Behavior... 9

4 Overview Sequence supports multiple languages. With a minimal effort, you can set up a Flowtime environment in any language. Adding multilingual support to your workflows allows you to translate the following metadata values: Activity Aliases Activity Descriptions Workflow Aliases Workflow Descriptions Message Subjects Message Bodies Expression values Note: Translating your workflow should always be the last step of the workflow development process. The translated data is stored in a language-specific resource file. Languages Supported Out of the Box Sequence supports the following languages out-of-the-box: English Portuguese Hebrew Dutch French Spanish You can configure Sequence to support other languages with a minimum effort. Multilingual Workflows Page 1

5 Configuring SharePoint to be Multilingual If the SharePoint on which Sequence Flowtime is installed does not yet include the language pack for the language you wish to add, you need to install it. You may use the following steps: 1. Backup the Sequence Flowtime web.config file. 2. Install the SharePoint language pack from the specific language you want to add (select the language in the drop down): for SharePoint server 2013 OR for SharePoint Foundation Rerun the SharePoint 2013 Products Configuration Wizard: a. Select Start > All Programs > SharePoint 2013 Products > SharePoint 2013 Products Configuration Wizard. b. In the Welcome to SharePoint Products page, click Next. c. Select Yes in the dialog box that alerts you that some services might have to be restarted during configuration. d. In the Modify Server Farm Settings page, click Do not disconnect from this server farm, and then click Next. e. If the Modify SharePoint Central Administration Web Administration Settings page appears, do not change any of the default settings, and click Next. f. In the Completing the SharePoint Products and Technologies Configuration Wizard page, click Next. g. In the Configuration Successful page, click Finish. 4. Restore the web.config file from the back up. 5. In the web.config file, find the following section: <location path="_layouts/1033"> <sequence.engine> <authentication enabled="false" impersonate="true" /> </sequence.engine> </location> Add a section exactly like this after the current section but change the value in the new section from 1033 for English to the id for the language to which you want to switch (e.g for French). See for id s for each language. Repeat this step for each language you want to add. Multilingual Workflows Page 2

6 Creating and Translating the Resource File Step by Step This section shows how to translate the relevant workflow metadata. The first time you run the workflow translation procedure, a language specific resource file is created. Later changes and additions are made to this file. Sequence creates the C:\Program Files\PNMsoft\Shared Resources\Resources\<Your Workflow Name> directory. Sequence creates a template language resource file named <Your Workflow Name>.TEMPLATE.resx. New Folder and Resource file. If, for example, your workflow is designed in English and you want to translate it to French, copy the template file and rename it to <Your Workflow Name>.fr-FR.resx. fr-fr represents the target language culture, and as such is hierarchically structured. For more details on the CultureInfo Class please see The App Studio's Properties pane provides you with a Globalization section that includes the following properties (combo boxes): Formatting Language Localizable The following table summarizes the issues that have to be resolved and defined when translating a workflow to another language, using the Globalization properties: Multilingual Workflows Page 3

7 Field Definition Comments Formatting Language Localizable The formatting affects the display of dates and the numbers. Formatting is determined by one of the following: Enforce the formatting: Selection of the right value in the Formatting combo box. Thread of the application: Selection of the value (auto) in the Formatting combo box. The language is determined by one of the following: Enforce the language: Selection of the right value in the Language combo box. Thread of the application: Selection of the value (auto) in the Language combo box. When setting Localizable to True, in the Properties pane, it enables the Formatting and Language features. The Localizable setting should be set to True in order to enable this feature The Localizable setting should be set to True in order to enable this feature. To translate the workflow metadata: 1. Open your workflow in the App Studio. 2. In the Properties pane, select True from the Localizable drop-down list. Multilingual Workflows Page 4

8 Properties Note: You must implement this step each time you add a new activity to the workflow. After you add a new activity, set Localizable to False, and then back to True again for the setting to take effect. 3. (Optional) Edit the resource file name to reflect the target language for the translations. For example, when translating into French, you may call the resource file: <Your Workflow Name>.fr-FR.resx, where fr-fr represents the selected language and dialect (French - France). For more details on the CultureInfo Class please see 4. Open your renamed resource (resx) file in your text editor of choice and translate the content of the Value column. Note: Visual Studio offers a convenient Excel-like interface. Multilingual Workflows Page 5

9 Template language resource file 5. After adding/changing the resource file, perform IISReset for changes to take effect. Workflow Runtime Expressions Runtime Sequence Expressions is an efficient tool for retrieving any information you need related to the runtime context. See: "Sequence Expressions" Runtime Expressions allow the user to retrieve data from the workflow resource file. In default value, business role and more you can use this powerful tool by simply entering in this window the code: rt.getresourcestring(<key from resource file>) For example: rt.getresourcestring( ApprovalKey ) Will return the localized workflow alias. When using run time expressions, you should make sure that all available languages have a resource file. For example: <sq:label runat="server" Text='<%$sq: rt.getresourcestring("request_form_comment") %>' /> You can also use the <%$ Resources: MyResourceFile, LabelText %> to hold the expressions. If you do so, you will have to maintain the translations in two locations. To edit/create a runtime expression (an example): 1. From Sequence App Studio right-click the activity you wish to edit. Multilingual Workflows Page 6

10 Activity Drop Down Menu 2. Click Edit Activity. The UX Studio opens. Click Data Model and edit one of the Table s Data Fields. Activity Editor - Properties Pane 3. Click next to the Default Value box, in the Properties pane. The Expression Editor opens. Multilingual Workflows Page 7

11 Expressions Editor 4. Enter an expression such as rt.getresourcestring( Alias ). Note: The Alias in the example below can be any value as long as it has a key in the resource file. 5. Click Validate and when confirmed click Update. To create multilingual forms: 1. Using Visual Studio, create a resource file for that language, for example: MyResourceFile.resx 2. Add values to your resource file, where the key is the value used in the form s markup and the value is the display value in the runtime. 3. Translate the Resource file to your language and give it the corresponded extension, for example, for Portuguese : MyResourceFile.pt.resx 4. Copy the resource files to the application s App_GlobalResources directory. The App_GlobalResources directory is located in the application root directory (you should create it if it doesn t exist). For example, in the default Flowtime installation, the path is : C:\inetpub\wwwroot\Workflow Runtime\App_GlobalResources 5. In your forms, use the keys as follows: <sq:label runat="server" Text="<%$ Resources: MyResourceFile, LabelText %>" /> Multilingual Workflows Page 8

12 SharePoint Flowtime Behavior To change the language in SharePoint Flowtime: 1. Select User Settings > Select Display Language, and select the language of your choice. SharePoint Language Selection Flowtime now displays in the language you selected. When translating a workflow, Sequence will display the target language interface for the workflow based on the SharePoint site that hosts Sequence or on the language properties. Therefore, if you wish to view the workflow in French, import the Sequence web parts into a French SharePoint site, or manually create such a site and then open a new workflow instance. Sequence will display the French interface for the workflow based on the SharePoint site that hosts Sequence. The activities and messages metadata should be displayed in French. PLEASE NOTE that the contents (labels, remarks etc.) of tasks and forms are not yet translatable. Runtime Sequence before translation Multilingual Workflows Page 9

13 Runtime Sequence after translation Multilingual Workflows Page 10

Getting Started with Sequence - Exercise May 2016 Product Version 7.5 and above

Getting Started with Sequence - Exercise May 2016 Product Version 7.5 and above PNMsoft Knowledge Base Sequence User Guides Getting Started with Sequence - Exercise May 2016 Product Version 7.5 and above 2016 PNMsoft All Rights Reserved This document, including any supporting materials,

More information

Database Installation Using Scripts March Product Version 7.0 and above

Database Installation Using Scripts March Product Version 7.0 and above PNMsoft Knowledge Base Sequence Administrator Guides Database Installation Using Scripts March. 2014 Product Version 7.0 and above 2014 PNMsoft All Rights Reserved This document, including any supporting

More information

Version Management March 2016 Product Version 7.8 and above

Version Management March 2016 Product Version 7.8 and above PNMsoft Knowledge Base Sequence User Guides Version Management March 2016 Product Version 7.8 and above 2016 PNMsoft All Rights Reserved This document, including any supporting materials, is owned by PNMsoft

More information

Simple Approval Cycle

Simple Approval Cycle PNMsoft Knowledge Base Sequence Best Practises Simple Approval Cycle Oct. 2013 Product Version 7.0 and above 2013 PNMsoft All Rights Reserved This document, including any supporting materials, is owned

More information

Remote Web Parts Nov Product Version 7.8 and above

Remote Web Parts Nov Product Version 7.8 and above PNMsoft Knowledge Base Sequence User Guides Remote Web Parts Nov. 2014 Product Version 7.8 and above 2014 PNMsoft All Rights Reserved This document, including any supporting materials, is owned by PNMsoft

More information

Flowtime Website Installation and Configuration Aug Product Version 8.1+

Flowtime Website Installation and Configuration Aug Product Version 8.1+ PNMsoft Knowledge Base Sequence Administrator Guides Flowtime Website Installation and Configuration Aug. 2016 Product Version 8.1+ 2016 PNMsoft All Rights Reserved This document, including any supporting

More information

Sequence Kinetics SP8 Release Notes. Issue Date: 20 th Nov. 2014

Sequence Kinetics SP8 Release Notes. Issue Date: 20 th Nov. 2014 Sequence Kinetics SP8 Release Notes Issue Date: 20 th Nov. 2014 2014 PNMsoft All Rights Reserved No part of this document may be reproduced in any form by any means without the prior authorisation of PNMsoft.

More information

Deployment Best Practices Oct Product Version 7.0 and above

Deployment Best Practices Oct Product Version 7.0 and above PNMsoft Knowledge Base Sequence User Guides Deployment Best Practices Oct. 2014 Product Version 7.0 and above 2014 PNMsoft All Rights Reserved This document, including any supporting materials, is owned

More information

Sequence Kinetics SP9 Release Notes. Issue Date: 12 th March 2015

Sequence Kinetics SP9 Release Notes. Issue Date: 12 th March 2015 Sequence Kinetics SP9 Release Notes Issue Date: 12 th March 2015 2015 PNMsoft All Rights Reserved No part of this document may be reproduced in any form by any means without the prior authorization of

More information

Extending Form Templates Oct Product Version 7.5 and above

Extending Form Templates Oct Product Version 7.5 and above PNMsoft Knowledge Base Sequence Administrator Guides Extending Form Templates Oct. 2013 Product Version 7.5 and above 2013 PNMsoft All Rights Reserved This document, including any supporting materials,

More information

Sequence Kinetics SP7 Release Notes. Issue Date: 12 th May 2014

Sequence Kinetics SP7 Release Notes. Issue Date: 12 th May 2014 Sequence Kinetics SP7 Release Notes Issue Date: 12 th May 2014 2014 PNMsoft All Rights Reserved No part of this document may be reproduced in any form by any means without the prior authorisation of PNMsoft.

More information

OData Guide June 2014 Product Version 7.7 and above

OData Guide June 2014 Product Version 7.7 and above PNMsoft Knowledge Base Sequence User Guides OData Guide June 2014 Product Version 7.7 and above 2014 PNMsoft All Rights Reserved This document, including any supporting materials, is owned by PNMsoft Ltd

More information

Database Structure May 2016 Product Version 7.0 and above

Database Structure May 2016 Product Version 7.0 and above PNMsoft Knowledge Base Sequence Administrator Guides Database Structure May 2016 Product Version 7.0 and above 2016 PNMsoft All Rights Reserved This document, including any supporting materials, is owned

More information

PNMsoft Knowledge Base. Sequence Admin Guides Active Directory Synchronization. March 2015 Product Version 7.x and above

PNMsoft Knowledge Base. Sequence Admin Guides Active Directory Synchronization. March 2015 Product Version 7.x and above PNMsoft Knowledge Base Sequence Admin Guides Active Directory Synchronization March 2015 Product Version 7.x and above 2016 PNMsoft All Rights Reserved This document, including any supporting materials,

More information

Sequence 8.2 Release Notes. Date: 13 th November 2016

Sequence 8.2 Release Notes. Date: 13 th November 2016 Sequence 8.2 Release Notes Date: 13 th November 2016 2016 PNMsoft All Rights Reserved No part of this document may be reproduced in any form by any means without the prior authorization of PNMsoft. PNMsoft

More information

Sequence Kinetics SP1 Release Notes. Issue Date: 9 th December 2012

Sequence Kinetics SP1 Release Notes. Issue Date: 9 th December 2012 Sequence Kinetics SP1 Release Notes Issue Date: 9 th December 2012 2012 PNMsoft All Rights Reserved No part of this document may be reproduced in any form by any means without the prior authorisation of

More information

Sequence Installation Guide

Sequence Installation Guide PNMsoft Knowledge Base Sequence Administrator Guides Sequence Installation Guide July 2017 Product Version 8.2 and later Version Updated On Document Changes Updated By 1.0 May 3 rd, 2016 New guide, similar

More information

Sequence 7.x Installation Guide March 2016 Product Version 7.x

Sequence 7.x Installation Guide March 2016 Product Version 7.x PNMsoft Knowledge Base Sequence Administrator Guides Sequence 7.x Installation Guide March 2016 Product Version 7.x Version Updated On Document Changes Updated By 1.0 August 9, 2012 N/A Eli Stutz 2.0 October

More information

Sequence and ASP.NET Applications

Sequence and ASP.NET Applications PNMsoft Knowledge Base Sequence Best Practices Sequence and ASP.NET Applications Decmeber 2013 Product Version 7.x 2013 PNMsoft All Rights Reserved This document, including any supporting materials, is

More information

Perceptive Document Composition

Perceptive Document Composition Perceptive Document Composition Installation and Setup Guide Version: 6.2.0 Written by: Product Knowledge, R&D Date: December 2017 Copyright 2008-2017 Hyland Software, Inc. and its affiliates. Table of

More information

Contents. Page 1 Seavus Project Viewer Concurrent Installation Instructions

Contents. Page 1 Seavus Project Viewer Concurrent Installation Instructions Contents Page 1 Contents Contents CONTENTS 2 CHAPTER 1: INSTALLING SEAVUS PROJECT VIEWER 3 INSTALLATION INSTRUCTION 3 CONFIGURATION INSTRUCTIONS 9 ACTIVATION INSTRUCTIONS 14 RESTARTING THE SEAVUS LICENSE

More information

SharePoint Management

SharePoint  Management SharePoint Email Management Use these feature checklists to guide and structure your evaluation of available products for SharePoint-based email management. They show the features that are available in

More information

SharePoint Document Management

SharePoint Document Management SharePoint Document Management Use these feature checklists to guide and structure your evaluation of available products for SharePoint document management and email management. They show the features

More information

PointFire Multilingual User Interface for on-premises SharePoint PointFire 2013 v1.0 to 2016 v1.0 Upgrade Guide

PointFire Multilingual User Interface for on-premises SharePoint PointFire 2013 v1.0 to 2016 v1.0 Upgrade Guide PointFire 2016 Multilingual User Interface for on-premises SharePoint 2016 PointFire 2013 v1.0 to 2016 v1.0 Upgrade Guide Version: 1.0 Build Date: October 28, 2016 Prepared by: Address: Tel: Email: Web:

More information

WebAD IISADMPWD. Replacement Tool v2.5. Installation and Configuration Guide. Instructions to Install and Configure IISADMPWD

WebAD IISADMPWD. Replacement Tool v2.5. Installation and Configuration Guide. Instructions to Install and Configure IISADMPWD WebAD IISADMPWD Replacement Tool v2.5 Installation and Configuration Guide Instructions to Install and Configure IISADMPWD Replacement Tool v2.5 Web Active Directory, LLC Contents Overview... 2 Solution

More information

SharePoint Management

SharePoint  Management SharePoint Email Management Use these feature checklists to guide and structure your evaluation of available products for SharePoint-based email management. They show the features that are available in

More information

SCUtils Survey Lite Trial Installation Guide Solution for Microsoft System Center 2012 Service Manager

SCUtils Survey Lite Trial Installation Guide Solution for Microsoft System Center 2012 Service Manager SCUtils Survey Lite Trial Installation Guide Solution for Microsoft System Center 2012 Service Manager Published: 14 th September 2015 Version: 1.9 Authors: Marat Kuanyshev Feedback: support@scutils.com

More information

KYOCERA Net Admin Installation Guide

KYOCERA Net Admin Installation Guide KYOCERA Net Admin Guide Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held liable for

More information

Barracuda Archive Search for Outlook Deployment for Windows Vista and Windows Server 2008

Barracuda Archive Search for Outlook Deployment for Windows Vista and Windows Server 2008 Barracuda Archive Search for Outlook Deployment for Windows Vista and Windows Server 2008 This article refers to the Barracuda Message Archiver firmware version 5.2 or higher, and the Barracuda Archive

More information

Desktop App Release Notes

Desktop App Release Notes BlackBerry AtHoc Networked Crisis Communication Desktop App Release Notes Release 6.2.x.277, May 2018 (Windows) Release 1.7, May 2018 (Mac) Copyright 2014 2018 BlackBerry Limited. All Rights Reserved.

More information

Deltek PM Compass 2.2. Custom Reports and Microsoft SQL Server Reporting Services Guide

Deltek PM Compass 2.2. Custom Reports and Microsoft SQL Server Reporting Services Guide Deltek PM Compass 2.2 Custom Reports and Microsoft SQL Server Reporting September 4, 2015 While Deltek has attempted to verify that the information in this document is accurate and complete, some typographical

More information

Customization Guide V /21/15

Customization Guide V /21/15 Customization Guide V3.3.2.0 1/21/15 P a g e 2 Table of Contents Introduction... 3 Objectives... 3 Conventions... 3 User Interface Customizations... 4 Basic customization of Extradium Web Parts... 4 Out-of-the

More information

Deltek winsight Dashboard 6.5. Installation Guide

Deltek winsight Dashboard 6.5. Installation Guide Deltek winsight Dashboard 6.5 Installation Guide August 17, 2012 While Deltek has attempted to verify that the information in this document is accurate and complete, some typographical or technical errors

More information

Studio Authoring Guide

Studio Authoring Guide Operations Orchestration Software Version: 10.70 Windows Studio Authoring Guide Document Release Date: November 2016 Software Release Date: November 2016 Legal Notices Warranty The only warranties for

More information

Deltek Vision 7.1. Installation and Configuration Guide for Performance Management. (Analysis Cubes and Performance Dashboards)

Deltek Vision 7.1. Installation and Configuration Guide for Performance Management. (Analysis Cubes and Performance Dashboards) Deltek Vision 7.1 Installation and Configuration Guide for Performance (Analysis Cubes and Performance Dashboards) April 3, 2014 While Deltek has attempted to verify that the information in this document

More information

Shavlik Protect. Upgrade Guide

Shavlik Protect. Upgrade Guide Shavlik Protect Upgrade Guide Copyright and Trademarks Copyright Copyright 2009 2014 LANDESK Software, Inc. All rights reserved. This product is protected by copyright and intellectual property laws in

More information

Deltek Costpoint CRM 6.2. Custom Reports and Microsoft SQL Server Reporting Services

Deltek Costpoint CRM 6.2. Custom Reports and Microsoft SQL Server Reporting Services Deltek Costpoint CRM 6.2 Custom Reports and Microsoft SQL Server Reporting November 11, 2011 While Deltek has attempted to verify that the information in this document is accurate and complete, some typographical

More information

SharePoint 2013 Central Administration

SharePoint 2013 Central Administration Course Objectives SharePoint 2013 Central Administration SharePoint Virtual environment creation through VMware, Virtual Box & Hyper-V. SharePoint Farm setup - Standalone, Small, Medium and Large Scale

More information

End User SharePoint 2010 Videos List

End User SharePoint 2010 Videos List End User SharePoint 2010 Videos List Screencast Name Number Abstract Category A subsite (or simply referred to as site) is created as an interface for hosting pages, lists, libraries and web parts. Creating

More information

Release Notes RayFlow 5.2

Release Notes RayFlow 5.2 16.03.2018 Copyright Raynet GmbH (Germany, Paderborn HRB 3524). All rights reserved. Complete or partial reproduction, adaptation, or translation without prior written permission is prohibited. Release

More information

EPM2010 SP1 - How does it impact you?

EPM2010 SP1 - How does it impact you? EPM2010 SP1 - How does it impact you? (Projects Director, Microsoft EPM & SharePoint Consultancy) Email: pj@projectsolution.com Web: www.projectsolution.com Project Solution Powered - Connecting by Microsoft

More information

SharePoint Wiki Plus Administration Guide

SharePoint Wiki Plus Administration Guide SharePoint Wiki Plus Administration Guide Installation & User Guide Copyright 2005-2011 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 50 McIntosh Drive, Unit 109 Markham, Ontario

More information

OnWeb IIS Plug-in: Installation Guide

OnWeb IIS Plug-in: Installation Guide OnWeb 7.5.0 IIS Plug-in: Installation Guide Micro Focus (IP) Ltd. The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright 2010 Micro Focus (IP) Limited. All Rights

More information

Colligo Manager 6.2. Offline Mode Administrator s Guide

Colligo  Manager 6.2. Offline Mode Administrator s Guide Colligo Email Manager 6.2 Offline Mode Administrator s Guide Contents Introduction... 3 Target Audience... 3 Overview... 3 SharePoint Security & Privileges... 3 Technical Requirements... 4 Software Requirements...

More information

Perceptive Document Composition

Perceptive Document Composition Perceptive Document Composition Installation and Setup Guide PDC Version: 5.4 Written by: Product Documentation, R&D Date: April 2014 2014 Perceptive Software. All rights reserved Perceptive Software is

More information

Microsoft SharePoint 2013 for SharePoint Readers, Authors and Site Managers

Microsoft SharePoint 2013 for SharePoint Readers, Authors and Site Managers 1800 ULEARN (853 276) www.ddls.com.au Microsoft SharePoint 2013 for SharePoint Readers, Authors and Site Managers Length 2 days Price $913.00 (inc GST) Overview The skills acquired in this course enable

More information

EntraPass WebStation. Installation Manual DN

EntraPass WebStation. Installation Manual DN EntraPass WebStation Installation Manual EntraPass WebStation Installation Manual Table of Contents General Information...1 Copyright Info...1 Technical Support...1 Overview...2 Introduction... 2 Description...

More information

Installation & User Guide

Installation & User Guide SharePoint Rating Solution Installation & User Guide Copyright 2005-2013 KWizCom Corporation. All rights reserved. E-mail: info@kwizcom.com Web site: http://www.kwizcom.com Sales E-mail: sales@kwizcom.com

More information

Legal Option Pack installation and configuration guide

Legal Option Pack installation and configuration guide Legal Option Pack installation and configuration guide For AccuRoute v2.3 June 22, 2009 Omtool, Ltd. 6 Riverside Drive Andover, MA 01810 Phone: +1/1 978 327 5700 Toll-free in the US: +1/1 800 886 7845

More information

SharePoint 2016 Administrator's Survival Camp

SharePoint 2016 Administrator's Survival Camp SharePoint 2016 Administrator's Survival Camp Installing and Managing SharePoint 2016 in an On -premises Environment Course Code Audience Format Length Course Description Student Prerequisites SSC2016

More information

WF-distiller Installation Guide

WF-distiller Installation Guide WF-distiller Installation Guide Version 4.0 SP2 September 2016 prepared by WF-distiller Engineering 2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International Inc., registered in

More information

Microsoft Office 2003: Features, Strategies, and Trends

Microsoft Office 2003: Features, Strategies, and Trends Note: This document will be updated periodically, both with new material and with updates to existing materials as circumstances warrant. It will be covering not only things like Office 2003 features,

More information

81225 &SSWSSS Call Us SharePoint 2010 S:

81225 &SSWSSS Call Us SharePoint 2010 S: 81225 &SSWSSS Call Us SharePoint 2010 S: +91 93925 63949 Course Objectives At the end of the course, students will be able to:! Understand IIS Web Server and hosting websites in IIS.! Install and configure

More information

Introduction Installing or Upgrading DNN Using the Control Panel Admin Console Tools for SuperUsers Host Console...

Introduction Installing or Upgrading DNN Using the Control Panel Admin Console Tools for SuperUsers Host Console... Table of Contents Introduction................................................................................. 3 Installing or Upgrading DNN...................................................................

More information

PDF SHARE FORMS. Online, Offline, OnDemand. PDF forms and SharePoint are better together. PDF Share Forms Enterprise 3.0.

PDF SHARE FORMS. Online, Offline, OnDemand. PDF forms and SharePoint are better together. PDF Share Forms Enterprise 3.0. PDF SHARE FORMS Online, Offline, OnDemand PDF forms and SharePoint are better together PDF Share Forms Enterprise 3.0 Install Guide SharePoint 2013 Contents Disclaimer...3 Copyright...3 About this guide...3

More information

PointFire Multilingual User Interface for SharePoint Server PointFire 2010 V2.0 User Guide. Version:

PointFire Multilingual User Interface for SharePoint Server PointFire 2010 V2.0 User Guide. Version: PointFire 2010 Multilingual User Interface for SharePoint Server 2010 PointFire 2010 V2.0 User Guide Version: 2.0.50211.0 Build Date: February 11, 2014 Prepared by: Address: Tel: Email: Web: Support: IceFire

More information

SCUtils Knowledge Base Installation Guide Solution for Microsoft System Center 2012 Service Manager

SCUtils Knowledge Base Installation Guide Solution for Microsoft System Center 2012 Service Manager SCUtils Knowledge Base Installation Guide Solution for Microsoft System Center 2012 Service Manager Published: 3 d November 2014 Version: 3.4 Authors: Marat Kuanyshev Feedback: support@scutils.com Contents

More information

Quick Start Guide. This guide will help you get started with Kentico CMS for ASP.NET. It answers these questions:

Quick Start Guide. This guide will help you get started with Kentico CMS for ASP.NET. It answers these questions: Quick Start Guide This guide will help you get started with Kentico CMS for ASP.NET. It answers these questions:. How can I install Kentico CMS?. How can I edit content? 3. How can I insert an image or

More information

Administration Guide. BlackBerry Workspaces. Version 5.6

Administration Guide. BlackBerry Workspaces. Version 5.6 Administration Guide BlackBerry Workspaces Version 5.6 Published: 2017-06-21 SWD-20170621110833084 Contents Introducing the BlackBerry Workspaces administration console... 8 Configuring and managing BlackBerry

More information

SharePoint SITE OWNER TRAINING

SharePoint SITE OWNER TRAINING SharePoint SITE OWNER TRAINING Contents Customizing Your Site... 3 Editing Links...4 Give the site a new look...5 Changing Title, Description, or Logo...6 Remove the Getting Started Icons...6 Adding Apps

More information

HP Operations Orchestration

HP Operations Orchestration HP Operations Orchestration Software Version: 10.20 Windows and Linux Operating Systems Shell Wizard Guide Document Release Date: November 2014 Software Release Date: November 2014 Legal Notices Warranty

More information

Exclaimer Mail Archiver

Exclaimer Mail Archiver Deployment Guide - Outlook Add-In www.exclaimer.com Contents About This Guide... 3 System Requirements... 4 Software... 4 Installation Files... 5 Deployment Preparation... 6 Installing the Add-In Manually...

More information

Desktop App Release Notes

Desktop App Release Notes BlackBerry AtHoc Networked Crisis Communication Desktop App Release Notes Release 6.2.x.275, November 2017 (Windows) Release 1.6.0, April 2017 (Mac) Copyright 2014 2017 BlackBerry Limited. All Rights Reserved.

More information

Colligo Engage Outlook App 7.1. Offline Mode - User Guide

Colligo Engage Outlook App 7.1. Offline Mode - User Guide Colligo Engage Outlook App 7.1 Offline Mode - User Guide Contents Colligo Engage Outlook App 1 Benefits 1 Key Features 1 Platforms Supported 1 Installing and Activating Colligo Engage Outlook App 3 Checking

More information

Deltek Costpoint Enterprise Reporting 6.1. Installation Guide for New Users

Deltek Costpoint Enterprise Reporting 6.1. Installation Guide for New Users Deltek Costpoint Enterprise Reporting 6.1 Installation Guide for New Users September 23, 2011 While Deltek has attempted to verify that the information in this document is accurate and complete, some typographical

More information

Getting Started Guide

Getting Started Guide Getting Started Guide www.exclaimer.com Contents About This Guide... 3 Signature Manager Exchange Edition Overview... 4 Signature Content... 4 Signature Rules... 4 Complete Control... 5 How It Works...

More information

ArtfulBits Web Part

ArtfulBits  Web Part ArtfulBits Email Web Part for Microsoft SharePoint User Guide Overview... 2 Feature List... 3 Why ArtfulBits Email Web Part?... 3 How to Use... 3 How to Use Email Web Part... 3 Enabling to Send E-mail

More information

Configuring Claims-based Authentication for Microsoft Dynamics CRM Server. Last updated: May 2015

Configuring Claims-based Authentication for Microsoft Dynamics CRM Server. Last updated: May 2015 Configuring Claims-based Authentication for Microsoft Dynamics CRM Server Last updated: May 2015 This document is provided "as-is". Information and views expressed in this document, including URL and other

More information

DocAve 6 Software Platform

DocAve 6 Software Platform DocAve 6 Software Platform Release Notes Service Pack 9, Cumulative Update 1 DocAve For Microsoft SharePoint September 2017 DocAve 6 SP9 CU1 Update Details Refer to the Update Manager section of the DocAve

More information

EMC Documentum Import Manager

EMC Documentum Import Manager EMC Documentum Import Manager Version 6 Installation and Con guration Guide 300 005 288 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright 2007 EMC Corporation.

More information

External Data Connector for SharePoint

External Data Connector for SharePoint External Data Connector for SharePoint Last Updated: July 2017 Copyright 2014-2017 Vyapin Software Systems Private Limited. All rights reserved. This document is being furnished by Vyapin Software Systems

More information

Workshare Protect 9.5

Workshare Protect 9.5 Workshare Protect 9.5 Release Notes August 2017 9.5.787.202 Table of Contents What is Workshare Protect... 3 What s New in Workshare Protect 9.5... 3 System Requirements... 5 Certified Environments for

More information

EntraPass WebStation Installation Manual

EntraPass WebStation Installation Manual EntraPass WebStation Installation Manual Table of Contents General Information...1 Copyright Info...1 Technical Support...1 Overview...2 Introduction... 2 Description... 2 Concurrent Connections... 2

More information

SharePoint Wiki Plus Administration Guide

SharePoint Wiki Plus Administration Guide SharePoint Wiki Plus Administration Guide Installation & User Guide Copyright 2005-2017 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 95 Mural Street, Suite 600 Richmond Hill,

More information

VMware AirWatch Database Migration Guide A sample procedure for migrating your AirWatch database

VMware AirWatch Database Migration Guide A sample procedure for migrating your AirWatch database VMware AirWatch Database Migration Guide A sample procedure for migrating your AirWatch database For multiple versions Have documentation feedback? Submit a Documentation Feedback support ticket using

More information

Release Notes RayFlow Server 5.0

Release Notes RayFlow Server 5.0 Release Notes RayFlow Server 5.0 24.07.2017 Release Notes Copyright Raynet GmbH (Germany, Paderborn HRB 3524). All rights reserved. Complete or partial reproduction, adaptation, or translation without

More information

Microsoft Word 2010: Using Mail Merge

Microsoft Word 2010: Using Mail Merge CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Word 2010: Using Mail Merge Summer 2013, Version 1.1 Table of Contents Introduction...2 Using the Mail Merge Wizard...2

More information

Installation & User Guide

Installation & User Guide SharePoint Favorite Documents Installation & User Guide Copyright 2005 KWizCom LTD. All rights reserved. Company Headquarters 10 Ruddington St. Toronto M2K 2J7 Canada E-mail: info@kwizcom.com Web site:

More information

Enterprise Vault.cloud CloudLink Google Account Synchronization Guide. CloudLink to 4.0.3

Enterprise Vault.cloud CloudLink Google Account Synchronization Guide. CloudLink to 4.0.3 Enterprise Vault.cloud CloudLink Google Account Synchronization Guide CloudLink 4.0.1 to 4.0.3 Enterprise Vault.cloud: CloudLink Google Account Synchronization Guide Last updated: 2018-06-08. Legal Notice

More information

SharePoint Farm Reporter Installation Guide

SharePoint Farm Reporter Installation Guide Table of Contents SharePoint Farm Reporter Installation Guide I. PRODUCT DESCRIPTION II. SYSTEM REQUIREMENTS AND RECOMMENDATIONS III. INSTALLATION STEPS IV. CONFIGURING APPLICATION V. UPGRADE SHAREPOINT

More information

Briefcase for Mac 1.0. Administrator s Guide

Briefcase for Mac 1.0. Administrator s Guide Briefcase for Mac 1.0 Administrator s Guide Contents Introduction... 2 Target Audience... 2 Overview... 2 Key Features... 2 Platforms Supported... 2 SharePoint Security & Privileges... 2 Installing Colligo

More information

COGNOS BI I) BI introduction Products Introduction Architecture Workflows

COGNOS BI I) BI introduction Products Introduction Architecture Workflows COGNOS BI I) BI introduction Products Architecture Workflows II) Working with Framework Manager (Modeling Tool): Architecture Flow charts Creating Project Creating Data Sources Preparing Relational Metadata

More information

Service Optimization Version 8.1. Service Optimization Localization Guide

Service Optimization Version 8.1. Service Optimization Localization Guide Service Optimization Version 8.1 Service Optimization Localization Guide Legal Notice The software with this guide is furnished under a license agreement and may be used only according to the terms of

More information

LifeSize Control Installation Guide

LifeSize Control Installation Guide LifeSize Control Installation Guide January 2009 Copyright Notice 2005-2009 LifeSize Communications Inc, and its licensors. All rights reserved. LifeSize Communications has made every effort to ensure

More information

Perceptive Document Composition

Perceptive Document Composition Perceptive Document Composition Setup Version: 5.3 Written by: Product Documentation, R&D Date: May 2013 2008-2013 Perceptive Software. All rights reserved Document Composition is a trademark of Lexmark

More information

Migrate from Microsoft Dynamics CRM Online to Microsoft Dynamics CRM (on-premises) Applies to: Microsoft Dynamics CRM Online 2015 Update 1

Migrate from Microsoft Dynamics CRM Online to Microsoft Dynamics CRM (on-premises) Applies to: Microsoft Dynamics CRM Online 2015 Update 1 Migrate from Microsoft Dynamics CRM Online to Microsoft Dynamics CRM (on-premises) Applies to: Microsoft Dynamics CRM Online 2015 Update 1 This document is provided "as-is". Information and views expressed

More information

Colligo Manager 5.4 SP1. Administrator s Guide

Colligo  Manager 5.4 SP1. Administrator s Guide 5.4 SP1 Administrator s Guide DOCUMENT REVISION HISTORY Document Revision # Content Change Date 5.4 SP1 Revision 1 Added Windows 8 to software requirements August 22, 2012 5.4 SP1 Updated for 5.4 SP1 release

More information

Introduction. How Does it Work with Autodesk Vault? What is Microsoft Data Protection Manager (DPM)? autodesk vault

Introduction. How Does it Work with Autodesk Vault? What is Microsoft Data Protection Manager (DPM)? autodesk vault Introduction What is Microsoft Data Protection Manager (DPM)? The Microsoft Data Protection Manager is a member of the Microsoft System Center family of management products. DPM provides continuous data

More information

BlackBerry Workspaces Server Administration Guide

BlackBerry Workspaces Server Administration Guide BlackBerry Workspaces Server Administration Guide 6.0 2018-10-06Z 2 Contents Introducing BlackBerry Workspaces administration console... 7 Configuring and managing BlackBerry Workspaces... 7 BlackBerry

More information

Export SharePoint Sites

Export SharePoint Sites Export SharePoint Sites Export SharePoint Sites wizard is designed to assist with exporting SharePoint sites to a specified PWA. To start the wizard click File Export Export SharePoint Sites. Step 1 -

More information

Coveo Platform 6.5. Microsoft SharePoint Connector Guide

Coveo Platform 6.5. Microsoft SharePoint Connector Guide Coveo Platform 6.5 Microsoft SharePoint 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

Quark XML Author Adapter for SharePoint 2.5 with Business Documents ReadMe

Quark XML Author Adapter for SharePoint 2.5 with Business Documents ReadMe Quark XML Author Adapter for SharePoint 2.5 with Business Documents ReadMe CONTENTS Contents Quark XML Author Adapter for SharePoint ReadMe...4 System requirements...5 Hardware requirements: Word 2010...6

More information

Configuring Claims-based Authentication for Microsoft Dynamics CRM Server. Last updated: June 2014

Configuring Claims-based Authentication for Microsoft Dynamics CRM Server. Last updated: June 2014 Configuring Claims-based Authentication for Microsoft Dynamics CRM Server Last updated: June 2014 This document is provided "as-is". Information and views expressed in this document, including URL and

More information

HP Enterprise Integration module for SAP applications

HP Enterprise Integration module for SAP applications HP Enterprise Integration module for SAP applications Software Version: 2.60 User Guide Document Release Date: December 2010 Software Release Date: December 2010 Legal Notices Warranty The only warranties

More information

IBM Spectrum LSF Process Manager Version 10 Release 1. Release Notes IBM GI

IBM Spectrum LSF Process Manager Version 10 Release 1. Release Notes IBM GI IBM Spectrum LSF Process Manager Version 10 Release 1 Release Notes IBM GI13-1891-04 IBM Spectrum LSF Process Manager Version 10 Release 1 Release Notes IBM GI13-1891-04 Note Before using this information

More information

Colligo Manager for Outlook User Guide. User Guide

Colligo  Manager for Outlook User Guide. User Guide Colligo Email Manager for Outlook User Guide User Guide Contents About This Guide... 5 Audience... 5 Requirements... 5 Terminology... 5 Colligo Technical Support... 5 Installation... 6 EXE Installation...

More information

Updated on

Updated on Updated on 2016-05-11 2016 Objectif Lune Inc. All rights reserved. No part of this documentation may be reproduced, transmitted or distributed outside of Objectif Lune or PrintSoft by any means whatsoever

More information

User Guide. BlackBerry Workspaces for Windows. Version 5.5

User Guide. BlackBerry Workspaces for Windows. Version 5.5 User Guide BlackBerry Workspaces for Windows Version 5.5 Published: 2017-03-30 SWD-20170330110027321 Contents Introducing BlackBerry Workspaces for Windows... 6 Getting Started... 7 Setting up and installing

More information

EMC SourceOne for Microsoft SharePoint Version 6.7

EMC SourceOne for Microsoft SharePoint Version 6.7 EMC SourceOne for Microsoft SharePoint Version 6.7 Installation Guide 300-012-747 REV A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright 2011 EMC

More information

Sharepoint Introduction. Module-1: Working on Lists. Module-2: Predefined Lists and Libraries

Sharepoint Introduction. Module-1: Working on Lists. Module-2: Predefined Lists and Libraries Training & Consulting Sharepoint Introduction An overview of the SharePoint Admin Center 1 Comparing the different SharePoint Online versions Finding the SharePoint Admin Center in Office 365 A brief walkthrough

More information