Release Notes Skelta BPM.NET 2007 (Service Pack 2)

Size: px
Start display at page:

Download "Release Notes Skelta BPM.NET 2007 (Service Pack 2)"

Transcription

1 Skelta BPM.NET 2007 (Service Pack 2) Version: Date: November 12 th, 2008

2 Table of Contents OVERVIEW... 3 Introduction... 3 RELEASE SUMMARY... 3 Enhancements in this release... 3 Fixes in this release... 6 SharePoint fixes in this release Known Issues Skelta Software,

3 Overview Introduction This document provides what s new information for the patch release of the Skelta BPM.NET 2007 product. Release summary Product: Skelta BPM.NET 2007 Version: Date: November 12 th, 2008 Enhancements in this release This patch release of Skelta BPM.NET 2007 includes the following enhancements: Case Sensitive Database Support: Support for case sensitive collation (SQL_Latin1_General_CP1_CS_AS) in SQL Server. Performance: Performance enhancements for Skelta Engine and Task Scheduler. Task Scheduler: Thread usage optimization in Task scheduler. Task scheduler has been optimized to use predefined set of threads to perform tasks. This No. of Threads which will perform the tasks simultaneously can be edited from Skelta Farm Configuration Wizard (Task Scheduler Service Settings). The default count is 25 and on high end machines this count can be increased for completing the task more accurately. Change in task scheduler service logic to run predefined no. of threads rather than using System.Thread.Timer which will span N no. of Threads on heavy load. The no. of tasks getting performed on heavy load will reduce with the new approach but the behavior is more predictable and stable. Skelta Setup Size Optimization: Setup size has been reduced after removal of unwanted images from BPMUITemplates folder. WorkItemControl new property QueueDisplayOrder: For using WorkItemList control in a separate page and to display queues in a specific order at the left hand side Tree View, 1. Create a SortedDictionary<int,string> which specifies the Order and the QueueName. 2. Assign the SortedDictionary to the QueueDisplayOrder Property of Workitemcontrol. For example, if the Queue Names are A, B, C and if you want to display as C, A, B System.Collections.Generic.SortedDictionary<int,string> Qdisplay=new System.Collections.Generic.SortedDictionary<int,string>(); Qdisplay.Add(1,"C"); Qdisplay.Add(2,"A"); Qdisplay.Add(3,"B"); Skelta.HWS.WorkListChannel.Web.WorkItemListControl.WorkItem Control WIL = new Skelta Software,

4 Skelta.HWS.WorkListChannel.Web.WorkItemListControl.WorkItem Control(); WIL.ApplicationName = Default ; WIL.UserIdString = skeltalist:: D3C16BC8-D F F38AFE7 ; WIL.ID = "WorkItemListControl"; WIL.QueueDisplayOrder = Qdisplay; PanelWIL.Controls.Add(WIL); Queue Item Detail View:When clicked on a Queue item from the Workitem inbox Subject, Notes, Executionid, Executiondetailsid, Data passed to the workflow and Workitemid details gets displayed below. New API for RecallAllocatedItem: New API RecallAllocatedItem in Skelta.HWS.WorkItem which returns the new queue work item id after the API call. Syntax: RecallAllocatedItem(Guid actorid, out Guid newqueueitemid). New Property Settings: New property settings in Farm Configuration Wizard, to configure auto resume feature for FE/EP workflows. Select Date for FE Workflows to resume: If this property is set as Jul , the workflows from July 11 th which are gone in FE status will get resumed. Skelta Software,

5 No. of tries for FE workflows to resume: This will count how many times the FE workflow needs to be resumed. If zero, the auto FE feature will be disabled. FE Time Span: This property is used to set the time interval for FE workflow to resume. EP Time Span: This property is used to set the time interval for EP workflow to resume. Repositories: This property is used to determine the repository for which the FE and the EP workflows should resume. Workitemlist Control: EnableExport property has been added for Workitemlist control. Based on this property, Users can control the visibility of export icon in the details grid status bar. ToolTip has been added for Priority column image. Alternate actor validation for not adding the same alternate actor multiple times for a particular actor. ColumnsAlignmentEvent delegate event has been added for Workitemlist control. Register this event in the work item list control page to align the columns and set the dataformatstring. The following example demonstrates how to align the Workflow column to the right and displays the createddatetime column as dd.mm.yyyy format, Orderamount in currency format and OrderQty column in number format without decimals. protected override void OnInit(EventArgs e) { Skelta.HWS.WorkListChannel.Web.WorkItemListControl.WorkItem Control wictrl = new Skelta.HWS.WorkListChannel.Web.WorkItemListControl.WorkItem Control(); wictrl.applicationname = "applicationname"; wictrl.useridstring = "skeltalist::c7067b7e-9d99-49c4-adec- 4DD8C7365AF2"; wictrl.id = "workitemcontrol"; WorkItemControl1.ColumnsAlignmentEvent += new Skelta.HWS.WorkListChannel.Web.WorkItemListControl.WorkItem Control.ColumnsAlignment(wictrl_ColumnsAlignmentEvent); panel1.controls.add(wictrl); } void wictrl_columnsalignmentevent(object sender, Skelta.HWS.WorkListChannel.Web.WorkItemListControl.Worklist AlignmentArgs e) { Skelta.HWS.WorkListChannel.Web.WorkItemListControl.Workitem ListAlignmentColumns wilaligncolumns1 = new Skelta.HWS.WorkListChannel.Web.WorkItemListControl.Workitem ListAlignmentColumns(); wilaligncolumns1.columnname = "Workflow"; wilaligncolumns1.columnalignment = "right"; Skelta.HWS.WorkListChannel.Web.WorkItemListControl.Workitem Skelta Software,

6 ListAlignmentColumns wilaligncolumns2 = new Skelta.HWS.WorkListChannel.Web.WorkItemListControl.Workitem ListAlignmentColumns(); wilaligncolumns2.columnname = "CreatedDateTime"; wilaligncolumns2.dataformatstring = "dd.mm.yyyy"; Skelta.HWS.WorkListChannel.Web.WorkItemListControl.Workitem ListAlignmentColumns wilaligncolumns3 = new Skelta.HWS.WorkListChannel.Web.WorkItemListControl.Workitem ListAlignmentColumns(); wilaligncolumns3.columnname = "Orderamount"; wilaligncolumns3.columnalignment = "right"; wilaligncolumns3.dataformatstring = "c"; Skelta.HWS.WorkListChannel.Web.WorkItemListControl.Workitem ListAlignmentColumns wilaligncolumns4 = new Skelta.HWS.WorkListChannel.Web.WorkItemListControl.Workitem ListAlignmentColumns(); wilaligncolumns4.columnname = "OrderQty"; wilaligncolumns4.columnalignment = "right"; wilaligncolumns4. DataFormatString = "N0"; e.workitemalignmentcolumnlist.add(wilaligncolumns1.columnna me, wilaligncolumns1); e.workitemalignmentcolumnlist.add(wilaligncolumns2.columnna me, wilaligncolumns2); e.workitemalignmentcolumnlist.add(wilaligncolumns3.columnna me, wilaligncolumns3); e.workitemalignmentcolumnlist.add(wilaligncolumns4.columnna me, wilaligncolumns4); } 1. Options available for Column Alignment are Left, Right and Center. 2. Options available for DataFormatString 3. For Date Columns 4. dd.mm.yyyy - It will display the date like d - It will display as short date like 08/26/ D - It will display as long date like Tuesday, August 26, For Numeric Columns you can give like 8. N - Displays as general format. 9. F - Displays as fixed format. 10. c - Displays as currency format Fixes in this release The following issues have been taken care in this patch release of Skelta BPM.NET 2007: Skelta Software,

7 Branding for Calendar List View: Provider column in list of existing calendars displays Skelta for branded Product version also. Branding for Inactive Product key error: If the product key is not activated, the error message displays Skelta for branded Product version also. Following was the error message coming in earlier releases. Branding for Skelta List provider in Enterprise Console sites: Enterprise Console site s Home page displays Skelta List provider for branded version of Skelta Product. Enterprise Console page, after logged in successfully to the Skelta List provider. Skelta Software,

8 After applying patch, for newly created Repositories, provider name will be automatically displayed as the value of CreateRepository_SkeltaListname key from [Skelta Installed Path]\Locales\CentralConfigurations.txt file. For already existing repositories, update values of DisplayName column of SKEntityDataSourceProvider table from Skelta List to the desired display name and from Skelta List Role to the desired display name for all the repositories. Branding for Import Skelta Process Definition Title: The Import Skelta Process Definition page displays Skelta in the title for branded version of Skelta Product also. Skelta Software,

9 Task Assignment for Disabled Users: Tasks get assigned to the Disabled Users. Queue Display with Access Rights: When the User doesn t have any access rights to the queue, it was getting displayed in the Workitemlist left tree view and in GetNextItem Queue Dropdown. Queue Item Allocation: There was no validation, while allocating Queue Workitem to different user through API. Script action fails for VB.NET: Script action was failing, if the scripting language is VB.NET. Variable comparison in Rule Activity: Unable to compare datetime variable in the Rule Activity is fixed. Datetime Variable in Decision Activity: Unable to publish workflows when comparing two datetime variables from Decision activity in U.K. culture. Culture Specific Scheduler Issue: The date calculation was not correct when the date is taken from the SharePoint list Xmlvariable which is in U.K. culture. Argument Support for Shell Activity: Unable to pass multiple arguments for Shell activity. Provided an option to pass multiple parameters (arguments) separated by ',' for the Shell activity. Least Used Resource Dispatch Provider in Queue: Auto dispatch with least used resource for queue was failing if the queue contains more than 10 participants. Enterprise Console Login: Active directory provider login issue from Enterprise Console in secured environment. Performance When Loading Work Item List: SQL Connections getting exhausted when there are multiple work item fields used in Work item list. Workflow Activity: The workflow added inside the folder does not get displayed in the drop-down available in Properties window for Workflow activity. Mail Channel Duplication Mail: If the user acts on the task through Mail channel, a confirmation message is sent to the user twice. Note: Only for the confirmation mails. Skelta Software,

10 App Domain: Appdomain change to handle N number of repositories in single farm. All workflow instances get in single app domain. The shadow copy feature still holds good. Notification Engine for Out of Office Reply : If the user has set an Out of Office Reply in his outlook, and if a mail goes to this user from mail channel, an automated mail Out of Office Reply gets sent to the notification engine. Notification engine sends a reply back, since the mail is invalid and this in turn sends the Out of Office Reply again. These mails get into a loop and goes on. Note: A new key is to be added in the locales folder Notification_Ignore_SubjectMailMessage: Out of Office AutoReply and this key need to be added to Template.txt file. Any which matches the value field Out of Office AutoReply will be ignored by the notification engine. Calendar in Different Culture: In Calendar control, setting workslots in Greek culture was throwing an exception. Client and Server in Advance Server Environment: Advance Server Custom Properties were not getting set. Client Installation with SQL Authentication: Client was not getting installed using SQL authentication. Client and Server with DB Users: Client is failing to connect to the same Server Farm with same DB user. Process Designer: If process designer is loaded through visual studio from code behind, the changes made in staging used to update deployed workflows (production). Decision Activity: If Decision Activity has more than 25 output conditions in one activity, there was an exception while publishing the Workflow. Queue Allocate with ASP.NET Provider: Allocating the task to a user in a Queue was failing with ASP.Net membership provider. Kill Workflow: Killing a Workflow instance through API was failing. Timeout Warning in Queue: Time out warning property for human activities, if set Using system (predefined) variable was not scheduling the task for a Queue work item. Queue Put Back in Queue and Move to Different Queue: Through API, the task was not able to put back to queue and was not able to move from one queue to another. Mail Handler: Failure to send a notification to an external id while task gets assigned from human activities. Process Definition Issue: Caching of process definition during runtime was failing in multi threaded scenario. BAM Report: Performance issue in BAM report is optimized. Subject Columns in WorkItem Report: Subject column was not populated in workitem report. Skelta Configuration Wizard Localization: The text Provision SkeltaWebSite and Create SkeltaFarm in Skelta Farm Wizard was not localized. Save Repository-ActiveDirectory Provider: LDAP connection was failing, if Search Base had single DC entry. Skelta Software,

11 Information Activity: Information action status was not getting updated in the database. Transaction Type Details: Enable Workflow-specific report in BAM for Transaction Type Details link (report). Queue Resource Unavailable for Queue Sleep Mode: The Activity will be placed in sleep mode, along with the output Resource Unavailable for Queue. This output is fired when there are no users found in the queue. The activity does not complete as a manager or owner for the queue can assign this task manually to a resource. Queue Item Update from UN to AB : When Kill API gets called, unallocated Queue Work item statuses were not getting changed. Single Context load in Thread: Changes to make sure a single thread always uses the same instance of Context object across thread execution. The below message is logged as information in debug mode 2 Information: Different execution instances for same workflow definition are getting started in single thread. The message can be ignored for now, if logged from any other process except Skelta engine. Skelta engine uses single thread internally for executing single workflow instance. Which means, all requests coming for the same instance (execution id) gets queued and gets processed one by one (Uses Queue). If there are multiple instances running, then there will be multiple threads spawned, that are executed in parallel. API Deprecated: Workflow.NET.Engine.Context.BeginTransaction (); has been deprecated. This API was deprecated to avoid the exception Error while Committing the Transaction Data for executionid. BeginTransaction API was provided in the context of enabling transactions across objects in the previous versions of product. With the introduction of TransactionScope in.net, this is now no longer required. Please see sample below on using context with transaction and without transaction. //Without transaction Workflow.NET.Engine.Context currentcontext = Workflow.NET.Engine.Context.GetContext(1, "applicationname"); currentcontext.variables["variablename"].value = "Value"; currentcontext.savevariables(); //With transaction //Placing context in transaction while saving variable. using (TransactionScope tscope = Workflow.NET.CommonFunctions.GetRequiredNewTransactionScope()) { Workflow.NET.Engine.Context currentcontext = Workflow.NET.Engine.Context.GetContext(1, "applicationname"); currentcontext.variables["variablename"].value = "Value"; currentcontext.savevariables(); tscope.complete(); } Skelta Software,

12 Localization Changes: Creating Central Configuration shortcut: Use following API for customizing Skelta Central Configuration shortcut in Start menu. void CreateShortcut() { Skelta.FarmConfiguration.HandleSkeltaFarm handleskeltafarm = new Skelta.FarmConfiguration.HandleSkeltaFarm(); handleskeltafarm.createccshortcut(@"c:\documents and Settings\All Users\Start Menu\Programs\Skelta\Skelta BPM.NET"); handleskeltafarm = null; } Specify the path in CreateCCShortCut method where the shortcut needs to be installed. This code will create a Skelta Central Configuration shortcut at specified path. Pre-requisites: Add reference of Skelta.FarmConfiguration.dll and Skelta Server/Client needs to be installed successfully before running this code. Skelta heading label in Skelta Farm Configuration Wizard Create Skelta Farm screen. Help Icon in Farm Wizard Help icon with mouse-over effect will be available only if Skelta BPM 2007 Admin Guide is downloaded. Otherwise it will not be visible. Skelta List in Resource Provider while Configuring Repository in Central Configuration Site only The text in the drop-down for resource provider can be localized. Skelta Label in License Properties Dialog If Skelta is branded with any other name, the same name will appear in the drop-down and [SKELTABIN] is renamed as [PRODUCTBIN]. Multiple instances of Skelta Farm Wizards If more than one instances of Skelta Farm Wizard were opened, a message is displayed saying that Another instance of Skelta Farm Installation is running, which was not localized before. The following new localization keys have been added in CentralConfigurations.txt (Skelta Installed Path\Locales\en-US\) file: CreateRepository_ActiveDirectoryname CreateRepository_Formsname CreateRepository_ASPNETMembershipname CreateRepository_SkeltaListname Another instance of Skelta Farm Installation is running. Skelta Software,

13 SharePoint fixes in this release This patch release for Skelta SharePoint client includes the following fixes: Scroll Bar in SharePoint Explorer: In Skelta SharePoint explorer, the horizontal scrollbar was not appearing for SharePoint sites with long titles. SharePoint lookup (Allow Multiple Values) column: In SharePoint site, if the column type is of Lookup with Allow Multiple Value, then it was not possible to retrieve or set the value of that column. SharePoint Multiple Lines of text column: In SharePoint site, if the column type is of multiple lines of text, and if user enters text with double space, then it was not possible to get these values from the Skelta workflow. InfoPath Task Activity: Validation for Form Server Installation at Client Side when Users view the Activity from Work Item control (inbox). ListNavigator Activity: CAML Query was crashing when user imports the workflow from different Repository. SharePoint Action output: Error Encountered Action Output will be given along with all SharePoint Activities Negative Outputs. Scope of SP List/DocLibrary XML variable: The scope of properties like Site, Library/List for SP List/DocLibrary xml variables will be applied to particular instance and will not be spanned across workflow instances. SP List/DocLibrary XML variable values on restarting Workflow Engine: The SP List/DocLibrary xml variable properties like scope, site, library/list, CAML query which are set at list navigator level will be persisted even after restarting Workflow Engine and will be used in subsequent process flow. SP List/DocLibrary XML variables in local scope: SP List/DocLibrary xml variables can be used with local scope. Property Include In AssociationList : Action property called as Include In Association List is added for Wait for SharePoint event and Associate Workflow to SharePoint event Workflow Actions, whose default values are set to No and Yes respectively. Update Variable Activity: A document can be copied as a list attachment using Update Variable Activity. Update Variable Activity: A document with its metadata can be copied using Update Variable Activity. Horizontal Bar for SharePoint explorer: Horizontal bar to SharePoint explorer will get activated for viewing large number of sites easily. Expanding Sites in SharePoint explorer: SharePoint explorer will expand the sites regardless of sites having owner information. Performance of Resource Provider: SharePoint resource provider was taking minutes to fetch users from web applications that have more than 800 sites. Performance is Skelta Software,

14 improved of SharePoint resource provider fetch user from site level and not from web level. MoveCopy Activity: Files with large size can be uploaded or downloaded from SharePoint, from or to the physical/network location. Edit Link in Document View: Inconsistency issues in the edit link functionality, popup window opens from both image and text links. Property Stop Action On Exceptions : Action property called as Stop Action On Exceptions is added for all SharePoint activities, whose default value is set to No for backward compatibility. If this property is set to Yes, then action completes execution with errors, for any exceptions and negative outputs will not be passed. Important Note for patch (SharePoint users): After applying the patch, make sure to run the executable file named UpdateSPXMLVar2007RunTimeData before starting the engine or before alerting any of the existing instances. This tool helps the existing instances which are not completed, to retain the properties like scope, site, library/list, CAML query that were set before applying the patch. Please note that, the existing instances using SharePoint List/DocLibrary xml variables might fail if the tool is not run. The following scenario will fail and make sure to take corrective steps for the existing instances For an existing instance, say an xml variable scope was set as New before upgrade and is used to access values of the added item after applying patch. This will fail because the newly added item id was in memory and was not persisted anywhere for the workflow instances. This will not have any issue, if a CAML Query is used to fetch newly added item. This scenario should work for the new workflow instances. There is some change in the way to assign the runtime properties like scope, site, library/list, CAML query to the SharePoint List/DocLibrary xml variable. Please change accordingly in the custom actions /aspx pages if any. //if you need to set all the properties,create a new //instance for RunTimeStorageData Skelta.SharePoint.Enterprise.XmlStorageType.RunTimeStorageD ata runtimedata = new Skelta.SharePoint.Enterprise.XmlStorageType.RunTimeStorageD ata(); //else if you need to change only some of the run time //properties,get the RunTimeStorageData from the xml //storage like below Skelta.SharePoint.Enterprise.XmlStorageType.ListStorage liststorage = (Skelta.SharePoint.Enterprise.XmlStorageType.ListStorage Skelta Software,

15 )CurrentContext.XmlVariables[vXmlVariableListType].StorageH andler; Skelta.SharePoint.Enterprise.XmlStorageType.RunTimeStorage Data runtimedata = liststorage.getruntimestoragedata(); //Wrong Implementation : These properties of list storage //is considered now as design time properties liststorage.siteid = <SiteId>; liststorage.webapplicationid = <WebApplicationId>; liststorage.siteurl = <SiteURL>; liststorage.siteid = <SiteId>; liststorage.webid = <WebId>; //Correct Implementation : Set the respective runtime //properties with proper values runtimedata.webapplicationid = <WebApplicationId>; runtimedata.siteurl = <SiteURL>; runtimedata.siteid = <SiteId>; runtimedata.webid = <WebId>; runtimedata.listname = <ListName>; runtimedata.listid = <ListId>; runtimedata.scope = <Scope>; runtimedata.foldername = <FolderName>; runtimedata.newitemid = Guid.Empty; runtimedata.camlquery = ""; runtimedata.camlqueryrawxml = ""; runtimedata.currentindexoflist = 0; //Call this if required to re-initialize the //RunTimeData liststorage.initializescope(); //Set the RunTimeData to the storage liststorage.setruntimestoragedata(runtimedata); Known Issues Disabled Workflows: Disable Workflows can be Published and Associated through ribbon bar. Update Variable activity: Copying a SharePoint list attachment from one SharePoint list to another SharePoint list/ document library is not supported using update variable action. Instead you can perform the same using MoveCopy Action. Please contact support for the fix if the update variable is been used for the above purpose. Running Workflow.NET.sql script on Oracle Database: Compilation error occurs while running Workflow.NET.sql script on Oracle database. To fix this, before running Workflow.NET.sql script on Oracle database, while creating a new Repository Datasource, remove the following statement from the script. Skelta Software,

16 INSERT INTO SKDBScriptVersionStamp (VersionNumber) VALUES (2255) ListNavigator Activity: User cannot build the CAMLQuery on first column of the content type if first column is not a Title. Eg: SharePoint provides predefined content types such as Contact and in that user cannot query on Last Name ie the first column in the item. Best Practices There are 2 ways to handle negative outputs (List not found, file not found, etc.) of a SharePoint activity. 1. Set Stop on Exceptions as NO: This will give appropriate negative outputs like List not found, File not found. User can link these outputs to corrective flows or send information to desired users using an Information or activity. The Workflow will complete successfully after all the liked activities are executed 2. Set Stop on Exceptions as YES: In case the activities encounters any error during execution (including list not found, file not found etc.) the activity will stop with errors and Workflow will end with status Finished with Errors. User can later resume this workflow from BAM or using APIs. Skelta Software,

Forms Printer User Guide

Forms Printer User Guide Forms Printer User Guide Version 10.51 for Dynamics GP 10 Forms Printer Build Version: 10.51.102 System Requirements Microsoft Dynamics GP 10 SP2 or greater Microsoft SQL Server 2005 or Higher Reporting

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

Team Foundation Server 2010, Visual Studio Ultimate 2010, Team Build 2010, & Lab Management Beta 2 Installation Guide

Team Foundation Server 2010, Visual Studio Ultimate 2010, Team Build 2010, & Lab Management Beta 2 Installation Guide Page 1 of 243 Team Foundation Server 2010, Visual Studio Ultimate 2010, Team Build 2010, & Lab Management Beta 2 Installation Guide (This is an alpha version of Benjamin Day Consulting, Inc. s installation

More information

Metalogix SharePoint Backup. Advanced Installation Guide. Publication Date: August 24, 2015

Metalogix SharePoint Backup. Advanced Installation Guide. Publication Date: August 24, 2015 Metalogix SharePoint Backup Publication Date: August 24, 2015 All Rights Reserved. This software is protected by copyright law and international treaties. Unauthorized reproduction or distribution of this

More information

ODBC Client Driver Help. 2015 Kepware, Inc.

ODBC Client Driver Help. 2015 Kepware, Inc. 2015 Kepware, Inc. 2 Table of Contents Table of Contents 2 4 Overview 4 External Dependencies 4 Driver Setup 5 Data Source Settings 5 Data Source Setup 6 Data Source Access Methods 13 Fixed Table 14 Table

More information

GP REPORTS VIEWER USER GUIDE

GP REPORTS VIEWER USER GUIDE GP Reports Viewer Dynamics GP Reporting Made Easy GP REPORTS VIEWER USER GUIDE For Dynamics GP Version 2015 (Build 5) Dynamics GP Version 2013 (Build 14) Dynamics GP Version 2010 (Build 65) Last updated

More information

Team Foundation Server 2013 Installation Guide

Team Foundation Server 2013 Installation Guide Team Foundation Server 2013 Installation Guide Page 1 of 164 Team Foundation Server 2013 Installation Guide Benjamin Day [email protected] v1.1.0 May 28, 2014 Team Foundation Server 2013 Installation Guide

More information

Secure Messaging Server Console... 2

Secure Messaging Server Console... 2 Secure Messaging Server Console... 2 Upgrading your PEN Server Console:... 2 Server Console Installation Guide... 2 Prerequisites:... 2 General preparation:... 2 Installing the Server Console... 2 Activating

More information

Colligo Email Manager 6.0. Offline Mode - User Guide

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

More information

HarePoint Workflow Extensions for Office 365. Quick Start Guide

HarePoint Workflow Extensions for Office 365. Quick Start Guide HarePoint Workflow Extensions for Office 365 Quick Start Guide Product version 0.91 November 09, 2015 ( This Page Intentionally Left Blank ) HarePoint.Com Table of Contents 2 Table of Contents Table of

More information

Nintex Workflow 2013 Help

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

More information

HR Onboarding Solution

HR Onboarding Solution HR Onboarding Solution Installation and Setup Guide Version: 3.0.x Compatible with ImageNow Version: 6.7.x Written by: Product Documentation, R&D Date: November 2014 2014 Perceptive Software. All rights

More information

Installing OneStop Reporting Products

Installing OneStop Reporting Products Installing OneStop Reporting Products Contents 1 Introduction 2 Product Overview 3 System Requirements 4 Deployment 5 Installation 6 Appendix 2010 OneStop Reporting http://www.onestopreporting.com [email protected]

More information

Team Foundation Server 2012 Installation Guide

Team Foundation Server 2012 Installation Guide Team Foundation Server 2012 Installation Guide Page 1 of 143 Team Foundation Server 2012 Installation Guide Benjamin Day [email protected] v1.0.0 November 15, 2012 Team Foundation Server 2012 Installation

More information

Management Center. Installation and Upgrade Guide. Version 8 FR4

Management Center. Installation and Upgrade Guide. Version 8 FR4 Management Center Installation and Upgrade Guide Version 8 FR4 APPSENSE MANAGEMENT CENTER INSTALLATION AND UPGRADE GUIDE ii AppSense Limited, 2012 All rights reserved. part of this document may be produced

More information

NSi Mobile Installation Guide. Version 6.2

NSi Mobile Installation Guide. Version 6.2 NSi Mobile Installation Guide Version 6.2 Revision History Version Date 1.0 October 2, 2012 2.0 September 18, 2013 2 CONTENTS TABLE OF CONTENTS PREFACE... 5 Purpose of this Document... 5 Version Compatibility...

More information

How To Create An Easybelle History Database On A Microsoft Powerbook 2.5.2 (Windows)

How To Create An Easybelle History Database On A Microsoft Powerbook 2.5.2 (Windows) Introduction EASYLABEL 6 has several new features for saving the history of label formats. This history can include information about when label formats were edited and printed. In order to save this history,

More information

To install Multifront you need to have familiarity with Internet Information Services (IIS), Microsoft.NET Framework and SQL Server 2008.

To install Multifront you need to have familiarity with Internet Information Services (IIS), Microsoft.NET Framework and SQL Server 2008. Znode Multifront - Installation Guide Version 6.2 1 System Requirements To install Multifront you need to have familiarity with Internet Information Services (IIS), Microsoft.NET Framework and SQL Server

More information

Configuration Information

Configuration Information This chapter describes some basic Email Security Gateway configuration settings, some of which can be set in the first-time Configuration Wizard. Other topics covered include Email Security interface navigation,

More information

Desktop Surveillance Help

Desktop Surveillance Help Desktop Surveillance Help Table of Contents About... 9 What s New... 10 System Requirements... 11 Updating from Desktop Surveillance 2.6 to Desktop Surveillance 3.2... 13 Program Structure... 14 Getting

More information

Application. 1.1 About This Tutorial. 1.1.1 Tutorial Requirements. 1.1.2 Provided Files

Application. 1.1 About This Tutorial. 1.1.1 Tutorial Requirements. 1.1.2 Provided Files About This Tutorial 1Creating an End-to-End HL7 Over MLLP Application 1.1 About This Tutorial 1.1.1 Tutorial Requirements 1.1.2 Provided Files This tutorial takes you through the steps of creating an end-to-end

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

Nintex Workflow 2010 Installation Guide. Installation Guide. 2012 Nintex USA LLC, All rights reserved. Errors and omissions excepted.

Nintex Workflow 2010 Installation Guide. Installation Guide. 2012 Nintex USA LLC, All rights reserved. Errors and omissions excepted. Installation Guide 2012 Nintex USA LLC, All rights reserved. Errors and omissions excepted. Table of Contents 1. Installing Nintex Workflow 2010... 3 1.1 Run the Installer... 3 1.2 Deploy the Solution

More information

System Administration Training Guide. S100 Installation and Site Management

System Administration Training Guide. S100 Installation and Site Management System Administration Training Guide S100 Installation and Site Management Table of contents System Requirements for Acumatica ERP 4.2... 5 Learning Objects:... 5 Web Browser... 5 Server Software... 5

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

Citrix EdgeSight for NetScaler Rapid Deployment Guide

Citrix EdgeSight for NetScaler Rapid Deployment Guide Citrix EdgeSight for NetScaler Rapid Deployment Guide Citrix EdgeSight for NetScaler 2.1 This document provides step by step instructions for preparing the environment for EdgeSight for NetScaler installation,

More information

Nintex Forms 2013 Help

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

More information

User Manual. Onsight Management Suite Version 5.1. Another Innovation by Librestream

User Manual. Onsight Management Suite Version 5.1. Another Innovation by Librestream User Manual Onsight Management Suite Version 5.1 Another Innovation by Librestream Doc #: 400075-06 May 2012 Information in this document is subject to change without notice. Reproduction in any manner

More information

Tutorial: BlackBerry Object API Application Development. Sybase Unwired Platform 2.2 SP04

Tutorial: BlackBerry Object API Application Development. Sybase Unwired Platform 2.2 SP04 Tutorial: BlackBerry Object API Application Development Sybase Unwired Platform 2.2 SP04 DOCUMENT ID: DC01214-01-0224-01 LAST REVISED: May 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This

More information

SQL Server 2008 R2 Express Edition Installation Guide

SQL Server 2008 R2 Express Edition Installation Guide Hardware, Software & System Requirements for SQL Server 2008 R2 Express Edition To get the overview of SQL Server 2008 R2 Express Edition, click here. Please refer links given below for all the details

More information

Monitoring Oracle Enterprise Performance Management System Release 11.1.2.3 Deployments from Oracle Enterprise Manager 12c

Monitoring Oracle Enterprise Performance Management System Release 11.1.2.3 Deployments from Oracle Enterprise Manager 12c Monitoring Oracle Enterprise Performance Management System Release 11.1.2.3 Deployments from Oracle Enterprise Manager 12c This document describes how to set up Oracle Enterprise Manager 12c to monitor

More information

email-lead Grabber Business 2010 User Guide

email-lead Grabber Business 2010 User Guide email-lead Grabber Business 2010 User Guide Copyright and Trademark Information in this documentation is subject to change without notice. The software described in this manual is furnished under a license

More information

Moving the TRITON Reporting Databases

Moving the TRITON Reporting Databases Moving the TRITON Reporting Databases Topic 50530 Web, Data, and Email Security Versions 7.7.x, 7.8.x Updated 06-Nov-2013 If you need to move your Microsoft SQL Server database to a new location (directory,

More information

Power Update - Documentation Power Update Manager

Power Update - Documentation Power Update Manager Power Update - Documentation Power Update Manager In the PU Manager screen you can create New Tasks, Delete and Edit settings for your current Tasks. Note: When making a lot of changes or installing updates,

More information

Colligo Email Manager 6.2. Offline Mode - User Guide

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

More information

Informatica Corporation Proactive Monitoring for PowerCenter Operations Version 3.0 Release Notes May 2014

Informatica Corporation Proactive Monitoring for PowerCenter Operations Version 3.0 Release Notes May 2014 Contents Informatica Corporation Proactive Monitoring for PowerCenter Operations Version 3.0 Release Notes May 2014 Copyright (c) 2012-2014 Informatica Corporation. All rights reserved. Installation...

More information

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

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

More information

Addendum 3. Do not install Service Pack 3 if you use Oracle 8! Oracle 8 is no longer supported and will not operate with SP3.

Addendum 3. Do not install Service Pack 3 if you use Oracle 8! Oracle 8 is no longer supported and will not operate with SP3. Addendum 3 Service Pack 3 Addendum 3 The SalesLogix v6.2 Service Pack 3 includes performance enhancements, Global ID changes, updated Architect controls, and more. Service Pack 3 is a cumulative release;

More information

Sophos for Microsoft SharePoint startup guide

Sophos for Microsoft SharePoint startup guide Sophos for Microsoft SharePoint startup guide Product version: 2.0 Document date: March 2011 Contents 1 About this guide...3 2 About Sophos for Microsoft SharePoint...3 3 System requirements...3 4 Planning

More information

INSTALL AND CONFIGURATION GUIDE. Atlas 5.1 for Microsoft Dynamics AX

INSTALL AND CONFIGURATION GUIDE. Atlas 5.1 for Microsoft Dynamics AX INSTALL AND CONFIGURATION GUIDE Atlas 5.1 for Microsoft Dynamics AX COPYRIGHT NOTICE Copyright 2012, Globe Software Pty Ltd, All rights reserved. Trademarks Dynamics AX, IntelliMorph, and X++ have been

More information

Advanced Workflow Concepts Using SharePoint Designer 2010

Advanced Workflow Concepts Using SharePoint Designer 2010 Instructional Brief Advanced Workflow Concepts Using SharePoint Designer 2010 SharePoint User Group September 8th, 2011 This document includes data that shall not be redistributed outside of the University

More information

Virto Workflow Scheduler For Microsoft SharePoint Release 5.1.1. User and Installation Guide

Virto Workflow Scheduler For Microsoft SharePoint Release 5.1.1. User and Installation Guide Virto Workflow Scheduler For Microsoft SharePoint Release 5.1.1 User and Installation Guide 2 Table of Contents OVERVIEW... 3 SYSTEM/DEVELOPER REQUIREMENTS... 3 OPERATING SYSTEM... 3 SERVER... 4 BROWSER...

More information

ORACLE BUSINESS INTELLIGENCE WORKSHOP

ORACLE BUSINESS INTELLIGENCE WORKSHOP ORACLE BUSINESS INTELLIGENCE WORKSHOP Integration of Oracle BI Publisher with Oracle Business Intelligence Enterprise Edition Purpose This tutorial mainly covers how Oracle BI Publisher is integrated with

More information

Microsoft Project Server 2010 Administrator's Guide

Microsoft Project Server 2010 Administrator's Guide Microsoft Project Server 2010 Administrator's Guide 1 Copyright This document is provided as-is. Information and views expressed in this document, including URL and other Internet Web site references,

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

iglobe CRM SharePoint App Documentation Version 1.0.0.12 Thursday, January 30, 2014 Support contact iglobe: [email protected]

iglobe CRM SharePoint App Documentation Version 1.0.0.12 Thursday, January 30, 2014 Support contact iglobe: support@iglobe.dk Tuborg Boulevard 12,3 sal 2900 Hellerup, Denmark Phone: +45 28800025 URL: www.iglobe.dk iglobe CRM SharePoint App Version 1.0.0.12 Thursday, January 30, 2014 Support contact iglobe: [email protected] Contents

More information

Installing LearningBay Enterprise Part 2

Installing LearningBay Enterprise Part 2 Installing LearningBay Enterprise Part 2 Support Document Copyright 2012 Axiom. All Rights Reserved. Page 1 Please note that this document is one of three that details the process for installing LearningBay

More information

DiskPulse DISK CHANGE MONITOR

DiskPulse DISK CHANGE MONITOR DiskPulse DISK CHANGE MONITOR User Manual Version 7.9 Oct 2015 www.diskpulse.com [email protected] 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product

More information

Change Color for Export from Light Green to Orange when it Completes with Errors (31297)

Change Color for Export from Light Green to Orange when it Completes with Errors (31297) ediscovery 5.3.1 Service Pack 8 Release Notes Document Date: July 6, 2015 2015 AccessData Group, Inc. All Rights Reserved Introduction This document lists the issues addressed by this release. All known

More information

Microsoft Corporation. Project Server 2010 Installation Guide

Microsoft Corporation. Project Server 2010 Installation Guide Microsoft Corporation Project Server 2010 Installation Guide Office Asia Team 11/4/2010 Table of Contents 1. Prepare the Server... 2 1.1 Install KB979917 on Windows Server... 2 1.2 Creating users and groups

More information

Vector HelpDesk - Administrator s Guide

Vector HelpDesk - Administrator s Guide Vector HelpDesk - Administrator s Guide Vector HelpDesk - Administrator s Guide Configuring and Maintaining Vector HelpDesk version 5.6 Vector HelpDesk - Administrator s Guide Copyright Vector Networks

More information

NetIQ. How to guides: AppManager v7.04 Initial Setup for a trial. Haf Saba Attachmate NetIQ. Prepared by. Haf Saba. Senior Technical Consultant

NetIQ. How to guides: AppManager v7.04 Initial Setup for a trial. Haf Saba Attachmate NetIQ. Prepared by. Haf Saba. Senior Technical Consultant How to guides: AppManager v7.04 Initial Setup for a trial By NetIQ Prepared by Haf Saba Senior Technical Consultant Asia Pacific 1 Executive Summary This document will walk you through an initial setup

More information

Protected Trust Directory Sync Guide

Protected Trust Directory Sync Guide Protected Trust Directory Sync Guide Protected Trust Directory Sync Guide 2 Overview Protected Trust Directory Sync enables your organization to synchronize the users and distribution lists in Active Directory

More information

BlackBerry Enterprise Server Resource Kit

BlackBerry Enterprise Server Resource Kit BlackBerry Enterprise Server Resource Kit Version: 5.0 Service Pack: 3 Installation Guide Published: 2011-06-20 SWD-1701641-0620052345-001 Contents 1 Overview... 3 Options for downloading the BlackBerry

More information

User Guide Release Management for Visual Studio 2013

User Guide Release Management for Visual Studio 2013 User Guide Release Management for Visual Studio 2013 ABOUT THIS GUIDE The User Guide for the release management features is for administrators and users. The following related documents for release management

More information

SHAREPOINT 2013 IN INFRASTRUCTURE AS A SERVICE

SHAREPOINT 2013 IN INFRASTRUCTURE AS A SERVICE SHAREPOINT 2013 IN INFRASTRUCTURE AS A SERVICE Contents Introduction... 3 Step 1 Create Azure Components... 5 Step 1.1 Virtual Network... 5 Step 1.1.1 Virtual Network Details... 6 Step 1.1.2 DNS Servers

More information

Installation instructions for MERLIN Dashboard

Installation instructions for MERLIN Dashboard Installation instructions for MERLIN Dashboard Contents Installation Prerequisites:... 2 Procedure to manually backup and restore Views and Settings in AxOEE Manager... 3 For XP users go to:... 3 For Vista

More information

Installing Windows Rights Management Services with Service Pack 2 Step-by- Step Guide

Installing Windows Rights Management Services with Service Pack 2 Step-by- Step Guide Installing Windows Rights Management Services with Service Pack 2 Step-by- Step Guide Microsoft Corporation Published: October 2006 Author: Brian Lich Editor: Carolyn Eller Abstract This step-by-step guide

More information

Nintex Workflow 2010 Help Last updated: Friday, 26 November 2010

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

More information

Running a Workflow on a PowerCenter Grid

Running a Workflow on a PowerCenter Grid Running a Workflow on a PowerCenter Grid 2010-2014 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording or otherwise)

More information

3 Setting up Databases on a Microsoft SQL 7.0 Server

3 Setting up Databases on a Microsoft SQL 7.0 Server 3 Setting up Databases on a Microsoft SQL 7.0 Server Overview of the Installation Process To set up GoldMine properly, you must follow a sequence of steps to install GoldMine s program files, and the other

More information

Monitoring Replication

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

More information

iglobe CRM SharePoint App Documentation

iglobe CRM SharePoint App Documentation 8/31/2014 iglobe CRM SharePoint App Documentation Apply to app version 1.1.0.2 Alon Ekelund Tuborg Boulevard 12,3 sal 2900 Hellerup Denmark Phone: +45 28800025 Support: [email protected] Other question:

More information

SonicWALL CDP 5.0 Microsoft Exchange InfoStore Backup and Restore

SonicWALL CDP 5.0 Microsoft Exchange InfoStore Backup and Restore SonicWALL CDP 5.0 Microsoft Exchange InfoStore Backup and Restore Document Scope This solutions document describes how to configure and use the Microsoft Exchange InfoStore Backup and Restore feature in

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

Scheduling in SAS 9.4 Second Edition

Scheduling in SAS 9.4 Second Edition Scheduling in SAS 9.4 Second Edition SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2015. Scheduling in SAS 9.4, Second Edition. Cary, NC: SAS Institute

More information

Coveo Platform 7.0. Oracle Knowledge Connector Guide

Coveo Platform 7.0. Oracle Knowledge Connector Guide Coveo Platform 7.0 Oracle Knowledge 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

EMC Documentum Repository Services for Microsoft SharePoint

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

More information

User Guide. Version 3.2. Copyright 2002-2009 Snow Software AB. All rights reserved.

User Guide. Version 3.2. Copyright 2002-2009 Snow Software AB. All rights reserved. Version 3.2 User Guide Copyright 2002-2009 Snow Software AB. All rights reserved. This manual and computer program is protected by copyright law and international treaties. Unauthorized reproduction or

More information

Installation and Configuration Guide

Installation and Configuration Guide Installation and Configuration Guide BlackBerry Resource Kit for BlackBerry Enterprise Service 10 Version 10.2 Published: 2015-11-12 SWD-20151112124827386 Contents Overview: BlackBerry Enterprise Service

More information

EMC Documentum Webtop

EMC Documentum Webtop EMC Documentum Webtop Version 6.5 User Guide P/N 300 007 239 A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com Copyright 1994 2008 EMC Corporation. All rights

More information

Migrate from Exchange Public Folders to Business Productivity Online Standard Suite

Migrate from Exchange Public Folders to Business Productivity Online Standard Suite Migrate from Exchange Public Folders to Business Productivity Online Standard Suite White Paper Microsoft Corporation Published: July 2009 Information in this document, including URL and other Internet

More information

PCVITA Express Migrator for SharePoint (File System) 2011. Table of Contents

PCVITA Express Migrator for SharePoint (File System) 2011. Table of Contents Table of Contents Chapter-1 ---------------------------------------------------------------------------- Page No (2) What is PCVITA Express Migrator for SharePoint (File System)? Migration Supported The

More information

Grid Computing in SAS 9.4 Third Edition

Grid Computing in SAS 9.4 Third Edition Grid Computing in SAS 9.4 Third Edition SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2014. Grid Computing in SAS 9.4, Third Edition. Cary, NC:

More information

NETWRIX FILE SERVER CHANGE REPORTER

NETWRIX FILE SERVER CHANGE REPORTER NETWRIX FILE SERVER CHANGE REPORTER ADMINISTRATOR S GUIDE Product Version: 3.3 April/2012. Legal Notice The information in this publication is furnished for information use only, and does not constitute

More information

Cisco TelePresence Management Suite Extension for Microsoft Exchange

Cisco TelePresence Management Suite Extension for Microsoft Exchange Cisco TelePresence Management Suite Extension for Microsoft Exchange Installation Guide D14846.01 June 2011 Software version 2.3 Contents Introduction 5 End user guidance 5 Server requirements 6 Exchange

More information

SonicWALL CDP 5.0 Microsoft Exchange User Mailbox Backup and Restore

SonicWALL CDP 5.0 Microsoft Exchange User Mailbox Backup and Restore SonicWALL CDP 5.0 Microsoft Exchange User Mailbox Backup and Restore Document Scope This solutions document describes how to configure and use the Microsoft Exchange User Mailbox Backup and Restore feature

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

Getting Started with the Ed-Fi ODS and Ed-Fi ODS API

Getting Started with the Ed-Fi ODS and Ed-Fi ODS API Getting Started with the Ed-Fi ODS and Ed-Fi ODS API Ed-Fi ODS and Ed-Fi ODS API Version 2.0 - Technical Preview October 2014 2014 Ed-Fi Alliance, LLC. All rights reserved. Ed-Fi is a registered trademark

More information

MOC 20488B: Developing Microsoft SharePoint Server 2013 Core Solutions

MOC 20488B: Developing Microsoft SharePoint Server 2013 Core Solutions MOC 20488B: Developing Microsoft SharePoint Server 2013 Core Solutions Course Overview This course provides students with the knowledge and skills to work with the server-side and client-side object models,

More information

The full setup includes the server itself, the server control panel, Firebird Database Server, and three sample applications with source code.

The full setup includes the server itself, the server control panel, Firebird Database Server, and three sample applications with source code. Content Introduction... 2 Data Access Server Control Panel... 2 Running the Sample Client Applications... 4 Sample Applications Code... 7 Server Side Objects... 8 Sample Usage of Server Side Objects...

More information

Portions of this product were created using LEADTOOLS 1991-2009 LEAD Technologies, Inc. ALL RIGHTS RESERVED.

Portions of this product were created using LEADTOOLS 1991-2009 LEAD Technologies, Inc. ALL RIGHTS RESERVED. Installation Guide Lenel OnGuard 2009 Installation Guide, product version 6.3. This guide is item number DOC-110, revision 1.038, May 2009 Copyright 1992-2009 Lenel Systems International, Inc. Information

More information

MyOra 3.0. User Guide. SQL Tool for Oracle. Jayam Systems, LLC

MyOra 3.0. User Guide. SQL Tool for Oracle. Jayam Systems, LLC MyOra 3.0 SQL Tool for Oracle User Guide Jayam Systems, LLC Contents Features... 4 Connecting to the Database... 5 Login... 5 Login History... 6 Connection Indicator... 6 Closing the Connection... 7 SQL

More information

Results CRM 2012 User Manual

Results CRM 2012 User Manual Results CRM 2012 User Manual A Guide to Using Results CRM Standard, Results CRM Plus, & Results CRM Business Suite Table of Contents Installation Instructions... 1 Single User & Evaluation Installation

More information

FileMaker Server 11. FileMaker Server Help

FileMaker Server 11. FileMaker Server Help FileMaker Server 11 FileMaker Server Help 2010 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker is a trademark of FileMaker, Inc. registered

More information

000-420. IBM InfoSphere MDM Server v9.0. Version: Demo. Page <<1/11>>

000-420. IBM InfoSphere MDM Server v9.0. Version: Demo. Page <<1/11>> 000-420 IBM InfoSphere MDM Server v9.0 Version: Demo Page 1. As part of a maintenance team for an InfoSphere MDM Server implementation, you are investigating the "EndDate must be after StartDate"

More information

Kofax Export Connector 8.3.0 for Microsoft SharePoint

Kofax Export Connector 8.3.0 for Microsoft SharePoint Kofax Export Connector 8.3.0 for Microsoft SharePoint Administrator's Guide 2013-02-27 2013 Kofax, Inc., 15211 Laguna Canyon Road, Irvine, California 92618, U.S.A. All rights reserved. Use is subject to

More information

The Smart Forms Web Part allows you to quickly add new forms to SharePoint pages, here s how:

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

More information

Sage 200 Web Time & Expenses Guide

Sage 200 Web Time & Expenses Guide Sage 200 Web Time & Expenses Guide Sage (UK) Limited Copyright Statement Sage (UK) Limited, 2006. All rights reserved If this documentation includes advice or information relating to any matter other than

More information

User Guide. Version R91. English

User Guide. Version R91. English AuthAnvil User Guide Version R91 English August 25, 2015 Agreement The purchase and use of all Software and Services is subject to the Agreement as defined in Kaseya s Click-Accept EULATOS as updated from

More information

Master Data Services. SQL Server 2012 Books Online

Master Data Services. SQL Server 2012 Books Online Master Data Services SQL Server 2012 Books Online Summary: Master Data Services (MDS) is the SQL Server solution for master data management. Master data management (MDM) describes the efforts made by an

More information

SharePoint Checklist and Resources

SharePoint Checklist and Resources SharePoint Checklist and Resources Activity Labs for Developer Labs for Administrator Resources Create a re-buildable SharePoint environment Lab : Install SharePoint 2010 Exercise 1: Create Active Directory

More information

Contents. Platform Compatibility. Directory Connector SonicWALL Directory Services Connector 3.1.7

Contents. Platform Compatibility. Directory Connector SonicWALL Directory Services Connector 3.1.7 Directory Connector SonicWALL Directory Services Connector 3.1.7 Contents Platform Compatibility... 1 New Features... 2 Known Issues... 3 Resolved Issues... 4 Overview... 7 About SonicWALL Single Sign-On

More information

STAFF MAIL. User Guide. Please see the next page for an important note

STAFF MAIL. User Guide. Please see the next page for an important note STAFF MAIL User Guide Please see the next page for an important note Important note: This user guide was written to support the use of the original Staffmail system. A newly rewritten version is in preparation

More information

CoCreate Manager Server Installation Guide. CoCreate Manager Server Installation Guide 1

CoCreate Manager Server Installation Guide. CoCreate Manager Server Installation Guide 1 CoCreate Manager Server Installation Guide CoCreate Manager Server Installation Guide 1 CoCreate Manager Server Installation Guide 2 Table Of Contents 1. CoCreate Manager Server 2008 4 1.1. Installation

More information

FileMaker Server 13. FileMaker Server Help

FileMaker Server 13. FileMaker Server Help FileMaker Server 13 FileMaker Server Help 2010-2013 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and Bento are trademarks of FileMaker,

More information

GFI LANguard 9.0 ReportPack. Manual. By GFI Software Ltd.

GFI LANguard 9.0 ReportPack. Manual. By GFI Software Ltd. GFI LANguard 9.0 ReportPack Manual By GFI Software Ltd. http://www.gfi.com E-mail: [email protected] Information in this document is subject to change without notice. Companies, names, and data used in examples

More information

Set Up and Maintain Customer Support Tools

Set Up and Maintain Customer Support Tools Set Up and Maintain Customer Support Tools Salesforce, Winter 16 @salesforcedocs Last updated: December 10, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information