Integrating Siebel CRM with Microsoft SharePoint Server

Size: px
Start display at page:

Download "Integrating Siebel CRM with Microsoft SharePoint Server"

Transcription

1 Integrating Siebel CRM with Microsoft SharePoint Server Headquarters 6522 Kaiser Drive, Fremont CA 94555, USA Phone: Fax: Global Development Center Road No 10, Banjara Hills, Hyderabad , India Phone: Fax:

2 Summary Learn how to integrate Siebel CRM v7.8 to Microsoft SharePoint Server Overview The enterprise domains of most organizations usually have heterogeneous applications, with key business data available to the users across the applications such as Siebel CRM, SAP, or PeopleSoft. In such scenarios, there arises a need to have the key data available to users in a single-stop web portal. Microsoft SharePoint Server (SPS) offers one such portal to organizations across the globe. This white paper provides prescriptive guidance on the appropriate approach to build an integration solution between Microsoft SharePoint Server 2007 and Siebel CRM v7.8 using web services. Once integrated, SPS users can view key data from the various modules in the Siebel system. Integration Scope The scope of this integration is to provide a read-only view of the data retrieved from the Line-of-Business (LOB) applications, in this case being Siebel CRM. Insertion and deletion of data in Siebel CRM from SharePoint portal is outside the scope of this document. Integration Benefits and Values Outlined below are the benefits that can be achieved from this integration solution: It provides a one stop data access of different LOB applications Requires no training for SharePoint users in Siebel as they can access the Siebel data on the Share point portal itself SharePoint functionality features enable Siebel data to improve the efficiency of the SharePoint users as well as service levels to the customer Users of SharePoint can easily access the different Siebel features from the SharePoint portal Solution Configuration Overview Business Data Catalog (BDC), a new integration feature in the SharePoint Server, provides the means to integrate data directly to LOB applications through Web services. It enables users to retrieve and display key business data from LOB applications in sites, lists, and user profiles within SharePoint portal, without any custom coding. BDC also supports features like specific search, full text search, filtered data views etc. Figure 1 provides a high level overview of the participating components for this integration solution.

3 Figure 1: Solution Overview Diagram SHARE POINT PORTAL Web Part Web Part Web Part SOAP / HTTP Request / Response HTTP Listener Service Invocation Layer Service Config Siebel Business Process Workflow Import WSDL Siebel Service Definition Publish Siebel Administration Screen Database SIEBEL The connectivity between the BDC and Siebel is achieved using standard Web services. Business services in Siebel (back-end API), which query the data from the database, are exposed as web services to be consumed by external applications. SPS invokes the Web services using XML messages that conform to Simple Object Access Protocol (SOAP). The Siebel application is registered in the SPS using a metadata XML. This metadata XML defines the Web services methods implemented in Siebel; the business objects definitions (e.g. customer) and properties (e.g. name) that a SharePoint user can understand. SharePoint users log into the SPS Portal and select an entity to view the entity instance data. On selecting an entity, the BDC component on SPS invokes a web service on the Siebel server to fetch the entity information from the Siebel database. The queried data is handed back over to the BDC component, which displays this information on the SP portal in a Business Data List web part. SharePoint users can also select the full text search to display specific data or apply a filter criteria to the data displayed on the portal. The next section of the paper describes the procedure to configure Siebel to expose the Web services using a combination of the Siebel Client and the Siebel Tools. It also provides guidance to build a.net wrapper Web service that consumes the Siebel Web Services. This wrapper web service retrieves a Siebel dataset from the Siebel web services, and exposes this data to the SharePoint Server. We then build the BDC metadata XML that contains the list of entities, the contained fields, and the associations between the entities. Finally, we import the XML into BDC and configure web parts on the SPS, which invoke the web services on Siebel to retrieve data.

4 Configuring Siebel Web Services Web Services were introduced in the Siebel product suite from version 7.5 onwards. In order to interact with the Siebel Web Services, there is some amount configuration required after the default Siebel installation. This section describes the configuration necessary to expose the Siebel Web Services. In order to configure the Siebel Web Services, we require the Siebel Tools and the Siebel Client. Creating Siebel Object Definitions from Siebel Tools The out-of-the-box integration object definitions in Siebel contain a super-set of all the integration components and fields available in any particular entity. These integration object definitions need to be customized as per individual business requirements. In the present context, we will create a copy of the built-in account integration object definition and inactivate the integration components and fields, which are of least use. We thus build a new integration object on top of the business object layer, which is later used while configuring the web services in Siebel. Following are the steps to be taken to achieve this: 1. Launch Siebel Tools and login to the Siebel Server using the credentials provided to you 2. On the Object Explorer, which appears on the left side of the screen, select the Project; this will list all the projects available on the Siebel Server

5 3. Create a new project by name MOSSIntegration 4. In the Object Explorer, select Integration Object. This will list all the Integration Objects on the right hand side of the screen NOTE: Some object types may not be visible in the Object Explorer. To ensure that you are able to view all object types, select the Options menu item in the View menu. In the Development Tool Options menu that appears, select the Object Explorer tab. Add any object to the Object Explorer that is not visible. 5. Select the Account Integration Object and create a copy of the same. Name it as MOSSAccount and add it to the MOSS Integration project created in Step Select the Integration Component in the Object Explorer. The child attributes of the Integration Object, which are also the elements of the Integration components, will now appear in the right window pane. 7. Set the inactive flags to true in case you need to deactivate a field in the Integration Component. Repeat for all Integration Components and field within the MOSSAccount Integration Object.

6 8. Select Business Service in the Object Explorer window. This displays the list of available business services in the right hand side of the screen.

7 9. Select and create a copy of the EAI Siebel Adapter Business Service, name it as MOSSAccountBS and save it in the MOSSIntegration project 10. In the MOSSAccountBS, deactivate all the methods other than the Query and QueryPage methods 11. In the active business service methods mentioned in step 10, change the Siebel Message parameter data type from the hierarchy to Integration Object. Also, set the default value of this parameter to MOSSAccount 12. Now, build these changes into your Siebel.srf file. In the Main menu, select Tools >> Compile Projects. From the menu that appears select MOSSIntegration project and select the Compile button NOTE: Check and ensure that Siebel Repository File (siebel.srf) points to the file <Local drive> \ <Siebel Client installation directory> \ web client \ OBJECTS\ ENU \ Siebel.srf

8 13. Ensure that the compiled changes are copied to the Server srf file. On the Siebel Server machine, open the Services screen by navigating to Control Panel >> Administrative Tools >> Services 14. Locate the Siebel Server service and stop it 15. After the Siebel Server service stops, follow the steps given below to copy the compiled Siebel Repository file to the Server a) Locate siebel.srf file on the Siebel server machine: \<Siebel server installation directory>\ siebsrvr \ OBJECTS \ ENU \ siebel.srf> and rename it b) Locate the siebel.srf file on the client system: <Siebel Client installation directory> \web client \ OBJECTS \ ENU \ Siebel.srf> and copy it c) Paste the copied siebel.srf file to the Siebel server srf location mentioned in Step a 16. Go back to the Services screen on the Siebel server machine and start the Siebel Server service which was stopped in Step 11.

9 Enabling the Siebel Web Services A user can enable the Siebel Web Services from within the Siebel Client by following the steps: 1. Login to the Siebel client using the login credentials provided 2. Navigate to the Web Services Administration screen by clicking on the Site Map icon on the Siebel home page 3. Select the Inbound Web Services option. This page is used to enable, configure and generate the WSDL (Web Service Description Language) file for the Siebel Web Services. WSDL completely describes the web services that are exposed. NOTE: The term Inbound is used to describe the Web services that are exposed by the Siebel Server. Outbound Web services are those that are exposed by other enterprise systems that Siebel calls for Enterprise Application Integration (EAI) purposes and are not discussed in this paper.

10 4. Create a Web Service as per the configuration details mentioned below: a) Name: MOSSAccount b) Namespace: c) Status: Active d) Create a new Service Port with binding: SOAP_RPC_ENCODED, Transport: HTTP, Type: Business Service e) Select MOSSAccountBS as the Business Service and enter the Port Address as ervice&sweextcmd=execute&username=<username>&password= <Password> f) This URL is used to access the web service; it contains the server name at the start and Siebel user name and password parameters at the end of the URL. The user name and password to be mentioned here are the credentials used to access the Siebel EAI Object Manager server component g) Create two operations for the Query and QueryPage methods in the MOSSAccount Business Service with the Authentication Type set to None h) Click on Generate WSDL to generate a WSDL file for the web service which was just configured NOTE: Ensure that the EAPPS server component is up and running before the web services configured in the above section are consumed by other applications

11

12 Configuring.NET Wrapper Web Service The BDC consumes the Web service definitions (WSDL) dynamically at run-time. In Siebel v7.8, it is not possible to retrieve the WSDL of an Inbound Web service via the URL; hence the BDC cannot directly consume the web services exposed by Siebel. As a workaround to this issue, the connectivity between the BDC and Siebel is achieved by using the.net wrapper Web service that invokes the Siebel Web service and is in turn invoked by the BDC. The Business Data Catalog builds the Web service proxy classes to this.net wrapper automatically, when the LOB XML is loaded on the SharePoint server. It retrieves the web services from a WSDLFetchURL specified in the BDC Metadata XML. NOTE: A change request has been logged in the Siebel Support web to address this enhancement. If this issue is fixed in the future releases of Siebel, this section can be skipped. This wrapper web service can be implemented in any.net language of your choice. With the steps given below, a user can create the integration web service: 1. Open Visual Studio.NET and create a website followed by a blank web service in it 2. Import the Siebel Web service (WSDL file) generated in the previous section by clicking on Add Web Reference option in the Solution Explorer of the website 3. In the URL textbox of the Add Web Reference wizard, enter the path to the WSDL file just saved from Siebel, including the name of the.wsdl file, and click on the Go button to right of this text box. Visual Studio will then import the WSDL file and display a list of the available services and methods that it contains 4. Name the Web Reference, which will also ultimately be the name of the proxy class that it creates for this web service. Enter the name MOSSAccount and complete the import 5. Next, construct the integration / wrapper Web service. Rename the Service.asmx file to SiebelWebServices.asmx 6. Open the source file of the service i.e. SiebelWebServices.cs file. 7. Insert the sample code fragment given below to add the GetAccounts method to the wrapper Web service. This method will pull the list of accounts out of Siebel.

13 [WebMethod] 1 public MOSSAccount.Account[] GetAccounts(String Id, String Name) 2 { 3 MOSSAccount.MOSSAccount proxy = new MOSSAccount.MOSSAccount(); 4 proxy.url = " &SWEExtCmd=Execute&UserName=<UserName>&Password=<Passwor d>"; 5 MOSSAccount.ListOfMossaccountTopElmt topelmt = 6 new MOSSAccount.ListOfMossaccountTopElmt(); 7 topelmt.listofmossaccount = new MOSSAccount.ListOfMossaccount(); 8 MOSSAccount.Account[] accounts = new MOSSAccount.Account[1]; 9 accounts[0] = new MOSSAccount.Account(); 10 topelmt.listofmossaccount.account = accounts; 11 String filterexpression = ""; 12 String numobjects = ""; 13 if (Name == null) { 14 Name = String.Empty; 15 } 16 if (Id == null) { 17 Id = String.Empty; 18 } 19 if (Name.Length > 0) { 20 filterexpression = String.Format("[Account.Name] Like \"{0}\" ", Name); 21 } else if (Id.Length > 0) { 22 filterexpression = String.Format("[Account.Id] Like \"{0}\" ", Id); 23 } 24 MOSSAccount.ListOfMossaccountTopElmt OutputtopElmt = new MOSSAccount.ListOfMossaccountTopElmt(); 25 OutputtopElmt = topelmt; 26 proxy.mossaccountquerypage("", "MOSSAccount", "false", "100", filterexpression, "", "All", "0", out numobjects, out topelmt);

14 27 if ((topelmt.listofmossaccount.account!= null) && (topelmt.listofmossaccount.account.length > 0)) 28 return topelmt.listofmossaccount.account; 29 else return OutputtopElmt.ListOfMossaccount.Account; 30 } NOTE: This is a sample code and might need additional changes to make it work in your environment In lines 3-4, the proxy class is instantiated to work with the Siebel web service. This is the class that was created when we imported Siebel s WSDL. In lines 5-7, a new Account collection object (ListOfMossaccountTopElmt) is created. This object encapsulates the list of parameters and that result Accounts that will be sent into and got back from the Siebel Web service. Next, lines 8-10 create an array of Account objects. Based on the input parameters ID and Name, we set up the filter expressions to use the query-by-example functionality of the Siebel Web Service to narrow our search (Lines 11-23). Lines initialize a null array for the Account collection object that is to be returned if the result set from Siebel is empty. The proxy method then makes the query in line 26 and then returns the result. The Siebel Web service that we call replaces the list in topelmnt with the results of the web service call. 8. Compile the web site, deploy it on a web server of your choice and test it. A successful result will return XML that represents a list of - Account objects. Save away the URL to your web service, as you will need to specify it within the BDC metadata XML in order to consume the web service.

15 Build BDC Metadata XML The next step in this integration solution is to build the BDC Metadata XML for the Siebel application. The BDC metadata XML describes the location and format of data within LOB systems in terms of entities and methods. The BDC has a standardized method execution engine that is capable of reading this metadata and retrieving the read-only data from LOB systems, which then returns to MOSS in a standard format. When you author metadata for the BDC, you define the data you want to retrieve in terms of entities. For example, you might define an account as one entity and a contact as another entity. The BDC metadata format also lets you define associations between entities in scenarios when there is a one-to-many relationship such as one that might exist between accounts and contacts. The definition of a BDC entity contains identifiers, properties, and methods. The methods define how the BDC interacts with entry points exposed by the back-end system. For a backend system accessible through Web services, methods define the names of the Web service operations and the parameters required to call them. NOTE: Please refer to Getting Started with BDC document for more details to build the metadata XML. We already have ready-to-use Meta Data XML files for the following Siebel business entities part of the present scope. Account Contact Business Address Service Request Activity Opportunity If you want to add new entities to the metadata xml, you will need to make following changes: Create a new entity section in the xml Define the identifiers and properties for the entity Define the methods that describe the names of the corresponding Siebel Web services Use associations to define the relationship between the new entity and the already existing entities in BDC

16 Importing BDC Metadata XML Once the BDC Metadata XML has been built, you need to import it into the BDC within the scope of a particular Shared Service Provider (SSP) to create what is known as a BDC Application. You can accomplish this importing process using the SSP administrative Web pages. Please refer to the SharePoint Server documentation for detailed steps to configure an SSP and import the Metadata XML. Configuring Web Parts and Testing the Integration Interface Having imported the required metadata to create a BDC Application, there are several out-ofthe-box techniques to leverage and display its data within a portal site. Microsoft Office SharePoint Server 2007 ships with a set of Business Web Parts that can be quickly added to pages to query and display BDC data. Steps to set up a Business Data Item, Business Data List, and Business Data Related List web parts are available in the SharePoint Server documentation. The BDC has been designed to integrate with the Office SharePoint Server 2007 Search Service. For example, a back-end system and its entities can be defined as a content source so that the Office SharePoint Server 2007 indexing service will crawl through its data and build indexes for the Office SharePoint Server 2007 search engine. This is a powerful feature as it allows users to discover data from back-end systems about customers, invoices etc. when running standard search queries through both Office SharePoint Server 2007 portal sites and standard Windows SharePoint Services 3.0 sites. Other Siebel objects Following is the list of Siebel objects apart from Account, Contact, Opportunity, Service Request, and Action that can be configured as part of this integration solution: Products SharePoint users can view the different sets of product information such as Product lines, Products, Prices Lists. The product information can be easily tracked in the SharePoint portal without accessing the Siebel application. For example: Approvals of the different products sales and discounts. Product Administration contains Products, Products with a Product Class, Products with Price Lists, Users Access to the different Products and Prices Lists, Product Lines, Product Features, Product Attributes, Related Products, Product Auctions, Product Entitlements, Products Literature etc Assets and Quotes A quote is an offer to a customer for specific products and services at a specific price. End users can generate quotes such as call center agents, sales representatives,

17 and sales administrators. The quote may include products and services (configured to show the customer-selected attributes), effective dates, price lists, any discounts by line item and by account, and the price per item. In the asset-based ordering, when the order has been filled, the appropriate product line items become assets. Assets are associated with the customers account and are a central part of the customer s service profile. Catalogs Siebel catalogs provide core functions that are used by a number of applications to organize master data, for both administrative and display purposes. Catalogs allow customers to browse for products and literature of interest. Siebel Sales Catalog, which allows employees to browse for products and literature, is available for use with the Siebel Quotes or Siebel Order modules of the Siebel Partner Relationship Management, Siebel Sales, and Siebel Call Center applications. Proposals A sales representative can click a single button to build the correct proposal for a specific account or opportunity. Siebel Proposals uses information that sales representatives have entered in the early stages of an opportunity to create the proposal. Sales representatives can add deal-specific information to the proposal without worrying about formatting or presentation. Using the Proposal Library, the representatives can find any additional information and automatically insert it into the proposal. Addresses Addresses are associated to Accounts, Contacts, and Service Requests. Billing and shipping of the customer data information in the Siebel applications is driven by the Address. Positions Positions are important for the employees whose profiles are setup in Siebel. Usually Account team, Contact team, Opportunity team etc are driven by the Position of the Sales team members. NOTE: The above-mentioned objects are related the Siebel Call Center application.

18 FAQs The following FAQs has been compiled by questions that came about during this integration process: Is there a wizard to deploy this integration solution? No. At this time only prescriptive guidance can be given. We see a different set of accounts in different logins in Siebel. Is it a security issue? No. A user in the Siebel application will have a position which drives the visibility of the data. A record created by a user will be only seen by himself and would not be visible to other user unless they are in the same team. For example, if you create an account record by SADMIN user, which needs to be seen by another user, then add the other user in the Account Team (field in the Accounts applet) so that the same record can be seen by the other user as well. In this solution, when we retrieve the data in SharePoint, the BDC will pull all the records from the Siebel database using Web services.

19 Conclusion With heterogeneous applications across multiple business units, it becomes challenging for organizations to collate information. Therefore, integrating these systems poses as a huge investment. However, now, such organizations have a choice to easily integrate such applications using industry standards, as described in this paper. About Sierra Atlantic Sierra Atlantic is a leader in offshoring enterprise applications, helping our customers optimize their investments in enterprise business applications - ERP, CRM, and SCM from leading vendors such as Agile, Oracle, PeopleSoft (now Oracle), SAP and Siebel (now Oracle). With expertise derived from deep R&D relationships with enterprise software leaders, we offer complete lifecycle e-business application management solutions -- development, implementation, integration, upgrade, and support-- using our NShore methodology. We integrate these point solutions into Application Networks that enable seamless business processes within and outside the enterprise. With over 750 highly satisfied customers since 1993, Sierra Atlantic headquartered in California, has offices in Dallas, Chicago, Toronto, Boston, London, Paris, Switzerland, Dubai, India, Malaysia, and Singapore. For more information, please visit Balaji Gangishetty is a Senior Manager, ebusiness Integration & Outsourced Product Development Practice, Sierra Atlantic Inc. He has over 9 years of rich experience in packaged applications, and deep enterprise and business process integration expertise with leading enterprise applications like Siebel, Oracle, PeopleSoft and SAP.

Integrating Siebel CRM 8 with Oracle Applications

Integrating Siebel CRM 8 with Oracle Applications Integrating Siebel CRM 8 with Oracle Applications Agenda Corporate Overview Siebel 8.0 New Features Siebel Integration Approaches Integration with Oracle Applications Option 1 Option 2 Pros and Cons Evaluation

More information

Oracle Service Bus Examples and Tutorials

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

More information

Orchestrating Document and Media Management using CMIS

Orchestrating Document and Media Management using CMIS Orchestrating Document and Media Management using CMIS Technical Note - Integrating ActiveVOS with Alfresco CMIS Services AN ACTIVE ENDPOINTS TECHNICAL NOTE 2009 Active Endpoints Inc. ActiveVOS is a trademark

More information

Technical Requirements for OneStop Reporting products

Technical Requirements for OneStop Reporting products Technical Requirements for OneStop Reporting products OSR Report Designer for Excel OneStop Reporting Desktop applications: OSR Composer OSR Publisher OSR ETL (Data Warehouse tool) OSR Multi Company Load

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

Integrating SalesForce with SharePoint 2007 via the Business Data Catalog

Integrating SalesForce with SharePoint 2007 via the Business Data Catalog Integrating SalesForce with SharePoint 2007 via the Business Data Catalog SalesForce CRM is a popular tool that allows you to manage your Customer Relation Management in the cloud through a web based system.

More information

CA Nimsoft Service Desk

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

More information

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

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

Using EMC Documentum with Adobe LiveCycle ES

Using EMC Documentum with Adobe LiveCycle ES Technical Guide Using EMC Documentum with Adobe LiveCycle ES Table of contents 1 Deployment 3 Managing LiveCycle ES development assets in Documentum 5 Developing LiveCycle applications with contents in

More information

PCVITA Express Migrator for SharePoint(Exchange Public Folder) 2011. Table of Contents

PCVITA Express Migrator for SharePoint(Exchange Public Folder) 2011. Table of Contents Table of Contents Chapter-1 ------------------------------------------------------------- Page No (2) What is Express Migrator for Exchange Public Folder to SharePoint? Migration Supported The Prominent

More information

SOLARWINDS ORION. Patch Manager Evaluation Guide for ConfigMgr 2012

SOLARWINDS ORION. Patch Manager Evaluation Guide for ConfigMgr 2012 SOLARWINDS ORION Patch Manager Evaluation Guide for ConfigMgr 2012 About SolarWinds SolarWinds, Inc. develops and markets an array of network management, monitoring, and discovery tools to meet the diverse

More information

SPHOL325: SharePoint Server 2013 Search Connectors and Using BCS

SPHOL325: SharePoint Server 2013 Search Connectors and Using BCS 2013 SPHOL325: SharePoint Server 2013 Search Connectors and Using BCS Hands-On Lab Lab Manual This document is provided as-is. Information and views expressed in this document, including URL and other

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

Siebel Application Services Interface Reference. Siebel Innovation Pack 2013 Version 8.1/8.2 September 2013

Siebel Application Services Interface Reference. Siebel Innovation Pack 2013 Version 8.1/8.2 September 2013 Siebel Application Services Interface Reference Siebel Innovation Pack 2013 Version 8.1/8.2 September 2013 Copyright 2005, 2013 Oracle and/or its affiliates. All rights reserved. This software and related

More information

Integrating SharePoint Sites within WebSphere Portal

Integrating SharePoint Sites within WebSphere Portal Integrating SharePoint Sites within WebSphere Portal November 2007 Contents Executive Summary 2 Proliferation of SharePoint Sites 2 Silos of Information 2 Security and Compliance 3 Overview: Mainsoft SharePoint

More information

Building and Using Web Services With JDeveloper 11g

Building and Using Web Services With JDeveloper 11g Building and Using Web Services With JDeveloper 11g Purpose In this tutorial, you create a series of simple web service scenarios in JDeveloper. This is intended as a light introduction to some of the

More information

Web services with WebSphere Studio: Deploy and publish

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

More information

Integrating with BarTender Integration Builder

Integrating with BarTender Integration Builder Integrating with BarTender Integration Builder WHITE PAPER Contents Overview 3 Understanding BarTender's Native Integration Platform 4 Integration Builder 4 Administration Console 5 BarTender Integration

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

Deciding When to Deploy Microsoft Windows SharePoint Services and Microsoft Office SharePoint Portal Server 2003. White Paper

Deciding When to Deploy Microsoft Windows SharePoint Services and Microsoft Office SharePoint Portal Server 2003. White Paper Deciding When to Deploy Microsoft Windows SharePoint Services and Microsoft Office SharePoint Portal Server 2003 White Paper Published: October, 2003 Table of Contents Introduction 4 Relationship between

More information

Web Services API Developer Guide

Web Services API Developer Guide Web Services API Developer Guide Contents 2 Contents Web Services API Developer Guide... 3 Quick Start...4 Examples of the Web Service API Implementation... 13 Exporting Warehouse Data... 14 Exporting

More information

Siebel Web UI Dynamic Developer Kit Guide. Siebel Innovation Pack 2013 Version 8.1/8.2 September 2013

Siebel Web UI Dynamic Developer Kit Guide. Siebel Innovation Pack 2013 Version 8.1/8.2 September 2013 Siebel Web UI Dynamic Developer Kit Guide Siebel Innovation Pack 2013 Version 8.1/8.2 September 2013 Copyright 2005, 2013 Oracle and/or its affiliates. All rights reserved. This software and related documentation

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

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

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

More information

Microsoft Dynamics CRM Adapter for Microsoft Dynamics GP

Microsoft Dynamics CRM Adapter for Microsoft Dynamics GP Microsoft Dynamics Microsoft Dynamics CRM Adapter for Microsoft Dynamics GP May 2010 Find updates to this documentation at the following location. http://go.microsoft.com/fwlink/?linkid=162558&clcid=0x409

More information

Coveo Platform 7.0. Microsoft Dynamics CRM Connector Guide

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

More information

An Oracle White Paper September 2011. Oracle Team Productivity Center

An Oracle White Paper September 2011. Oracle Team Productivity Center Oracle Team Productivity Center Overview An Oracle White Paper September 2011 Oracle Team Productivity Center Overview Oracle Team Productivity Center Overview Introduction... 1 Installation... 2 Architecture...

More information

EMC Documentum Composer

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

More information

CRM to Exchange Synchronization

CRM to Exchange Synchronization CRM to Exchange Synchronization Installation, Configuration and End-User Instructions VERSION 1.0 DATE PREPARED: 9/1/2012 DEVELOPMENT: BRITE GLOBAL, INC. 2012 Brite Global, Incorporated. All rights reserved.

More information

SAP BusinessObjects Query as a Web Service Designer SAP BusinessObjects Business Intelligence platform 4.0

SAP BusinessObjects Query as a Web Service Designer SAP BusinessObjects Business Intelligence platform 4.0 SAP BusinessObjects Query as a Web Service Designer SAP BusinessObjects Business Intelligence platform 4.0 Copyright 2011 SAP AG. All rights reserved.sap, R/3, SAP NetWeaver, Duet, PartnerEdge, ByDesign,

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

PI Cloud Connect Overview

PI Cloud Connect Overview PI Cloud Connect Overview Version 1.0.8 Content Product Overview... 3 Sharing data with other corporations... 3 Sharing data within your company... 4 Architecture Overview... 5 PI Cloud Connect and PI

More information

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

Developing Rich Web Applications with Oracle ADF and Oracle WebCenter Portal

Developing Rich Web Applications with Oracle ADF and Oracle WebCenter Portal JOIN TODAY Go to: www.oracle.com/technetwork/java OTN Developer Day Oracle Fusion Development Developing Rich Web Applications with Oracle ADF and Oracle WebCenter Portal Hands on Lab (last update, June

More information

Test Automation Integration with Test Management QAComplete

Test Automation Integration with Test Management QAComplete Test Automation Integration with Test Management QAComplete This User's Guide walks you through configuring and using your automated tests with QAComplete's Test Management module SmartBear Software Release

More information

E-mail Listeners. E-mail Formats. Free Form. Formatted

E-mail Listeners. E-mail Formats. Free Form. Formatted E-mail Listeners 6 E-mail Formats You use the E-mail Listeners application to receive and process Service Requests and other types of tickets through e-mail in the form of e-mail messages. Using E- mail

More information

Installation Guide for Pulse on Windows Server 2012

Installation Guide for Pulse on Windows Server 2012 MadCap Software Installation Guide for Pulse on Windows Server 2012 Pulse Copyright 2014 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software

More information

Creating XML Report Web Services

Creating XML Report Web Services 5 Creating XML Report Web Services In the previous chapters, we had a look at how to integrate reports into Windows and Web-based applications, but now we need to learn how to leverage those skills and

More information

Fax User Guide 07/31/2014 USER GUIDE

Fax User Guide 07/31/2014 USER GUIDE Fax User Guide 07/31/2014 USER GUIDE Contents: Access Fusion Fax Service 3 Search Tab 3 View Tab 5 To E-mail From View Page 5 Send Tab 7 Recipient Info Section 7 Attachments Section 7 Preview Fax Section

More information

Getting Started Guide

Getting Started Guide BlackBerry Web Services For Microsoft.NET developers Version: 10.2 Getting Started Guide Published: 2013-12-02 SWD-20131202165812789 Contents 1 Overview: BlackBerry Enterprise Service 10... 5 2 Overview:

More information

Preparing to Install SQL Server 2005

Preparing to Install SQL Server 2005 Preparing to Install SQL Server 2005 Depending on your requirements, Microsoft SQL Server 2005 Setup installs a new instance of SQL Server. The following topics address important considerations for the

More information

Installation Guide for Pulse on Windows Server 2008R2

Installation Guide for Pulse on Windows Server 2008R2 MadCap Software Installation Guide for Pulse on Windows Server 2008R2 Pulse Copyright 2014 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software

More information

WatchDox SharePoint Beta Guide. Application Version 1.0.0

WatchDox SharePoint Beta Guide. Application Version 1.0.0 Application Version 1.0.0 Confidentiality This document contains confidential material that is proprietary WatchDox. The information and ideas herein may not be disclosed to any unauthorized individuals

More information

REQUIREMENTS AND INSTALLATION OF THE NEFSIS DEDICATED SERVER

REQUIREMENTS AND INSTALLATION OF THE NEFSIS DEDICATED SERVER NEFSIS TRAINING SERIES Nefsis Dedicated Server version 5.1.0.XXX Requirements and Implementation Guide (Rev 4-10209) REQUIREMENTS AND INSTALLATION OF THE NEFSIS DEDICATED SERVER Nefsis Training Series

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

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

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

More information

Layer2 Business Data List Connector for SharePoint

Layer2 Business Data List Connector for SharePoint Layer2 Business Data List Connector for SharePoint Frank Daske Business Development Manager Layer2 Layer2 Successful for more than 20 years in the fields of SharePoint,.NET-programming and IT-Infrastructure

More information

Managing Qualys Scanners

Managing Qualys Scanners Q1 Labs Help Build 7.0 Maintenance Release 3 [email protected] Managing Qualys Scanners Managing Qualys Scanners A QualysGuard vulnerability scanner runs on a remote web server. QRadar must access

More information

Integrating CRM On Demand with the E-Business Suite to Supercharge your Sales Team

Integrating CRM On Demand with the E-Business Suite to Supercharge your Sales Team Integrating CRM On Demand with the E-Business Suite to Supercharge your Sales Team Presented by: Tom Connolly, Jason Lieberman Company: BizTech Session ID: #10351 Overview Introductions Background Web

More information

IBM SPSS Collaboration and Deployment Services Version 6 Release 0. Single Sign-On Services Developer's Guide

IBM SPSS Collaboration and Deployment Services Version 6 Release 0. Single Sign-On Services Developer's Guide IBM SPSS Collaboration and Deployment Services Version 6 Release 0 Single Sign-On Services Developer's Guide Note Before using this information and the product it supports, read the information in Notices

More information

Administration Guide for the System Center Cloud Services Process Pack

Administration Guide for the System Center Cloud Services Process Pack Administration Guide for the System Center Cloud Services Process Pack Microsoft Corporation Published: May 7, 2012 Author Kathy Vinatieri Applies To System Center Cloud Services Process Pack This document

More information

Integrating VMware Horizon Workspace and VMware Horizon View TECHNICAL WHITE PAPER

Integrating VMware Horizon Workspace and VMware Horizon View TECHNICAL WHITE PAPER Integrating VMware Horizon Workspace and VMware Horizon View TECHNICAL WHITE PAPER Table of Contents Introduction.... 3 Requirements.... 3 Horizon Workspace Components.... 3 SAML 2.0 Standard.... 3 Authentication

More information

ADFS Integration Guidelines

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

More information

Configuring.NET based Applications in Internet Information Server to use Virtual Clocks from Time Machine

Configuring.NET based Applications in Internet Information Server to use Virtual Clocks from Time Machine Configuring.NET based Applications in Internet Information Server to use Virtual Clocks from Time Machine System Details: The development & deployment for this documentation was performed on the following:

More information

David Chou. [email protected] Architect Microsoft

David Chou. david.chou@microsoft.com Architect Microsoft David Chou [email protected] Architect Microsoft Business Online Services from Microsoft Services Services Estimate custom design Unstructured Get specs from customer Validate specs with Tech

More information

METADATA FRAMEWORK DATA DICTIONARY

METADATA FRAMEWORK DATA DICTIONARY METADATA FRAMEWORK DATA DICTIONARY INSTALLATION AND USER GUIDE 2013 Tallan. All rights reserved. METADATA FRAMEWORK DATA DICTIONARY DESCRIPTION The application (MFDD) was created to allow a user to explore

More information

PingFederate. Salesforce Connector. Quick Connection Guide. Version 4.1

PingFederate. Salesforce Connector. Quick Connection Guide. Version 4.1 PingFederate Salesforce Connector Version 4.1 Quick Connection Guide 2011 Ping Identity Corporation. All rights reserved. PingFederate Salesforce Quick Connection Guide Version 4.1 June, 2011 Ping Identity

More information

enicq 5 System Administrator s Guide

enicq 5 System Administrator s Guide Vermont Oxford Network enicq 5 Documentation enicq 5 System Administrator s Guide Release 2.0 Published November 2014 2014 Vermont Oxford Network. All Rights Reserved. enicq 5 System Administrator s Guide

More information

SAP NetWeaver Identity Management Identity Services Configuration Guide

SAP NetWeaver Identity Management Identity Services Configuration Guide SAP NetWeaver Identity Management Identity Services Configuration Guide Version 7.2 Rev 7 2014 SAP AG or an SAP affiliate company. All rights reserved. No part of this publication may be reproduced or

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

Installation & User Guide

Installation & User Guide CRM-SharePoint Connector Installation & User Guide Copyright 2005 KWizCom LTD. All rights reserved. Company Headquarters P.O. Box # 38514 North York, Ontario M2K 2Y5 Canada E-mail: [email protected] Web

More information

ibolt V3.2 Release Notes

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

More information

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

Specify the location of an HTML control stored in the application repository. See Using the XPath search method, page 2.

Specify the location of an HTML control stored in the application repository. See Using the XPath search method, page 2. Testing Dynamic Web Applications How To You can use XML Path Language (XPath) queries and URL format rules to test web sites or applications that contain dynamic content that changes on a regular basis.

More information

Configuring Single Sign-On from the VMware Identity Manager Service to Office 365

Configuring Single Sign-On from the VMware Identity Manager Service to Office 365 Configuring Single Sign-On from the VMware Identity Manager Service to Office 365 VMware Identity Manager JULY 2015 V1 Table of Contents Overview... 2 Passive and Active Authentication Profiles... 2 Adding

More information

MicroStrategy Course Catalog

MicroStrategy Course Catalog MicroStrategy Course Catalog 1 microstrategy.com/education 3 MicroStrategy course matrix 4 MicroStrategy 9 8 MicroStrategy 10 table of contents MicroStrategy course matrix MICROSTRATEGY 9 MICROSTRATEGY

More information

GoDaddy (CentriqHosting): Data driven Web Application Deployment

GoDaddy (CentriqHosting): Data driven Web Application Deployment GoDaddy (CentriqHosting): Data driven Web Application Deployment Process Summary There a several steps to deploying an ASP.NET website that includes databases (for membership and/or for site content and

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

New Features in Neuron ESB 2.6

New Features in Neuron ESB 2.6 New Features in Neuron ESB 2.6 This release significantly extends the Neuron ESB platform by introducing new capabilities that will allow businesses to more easily scale, develop, connect and operationally

More information

Introduction to Directory Services

Introduction to Directory Services Introduction to Directory Services Overview This document explains how AirWatch integrates with your organization's existing directory service such as Active Directory, Lotus Domino and Novell e-directory

More information

Building Java Servlets with Oracle JDeveloper

Building Java Servlets with Oracle JDeveloper Building Java Servlets with Oracle JDeveloper Chris Schalk Oracle Corporation Introduction Developers today face a formidable task. They need to create large, distributed business applications. The actual

More information

WhatsUp Gold v16.3 Installation and Configuration Guide

WhatsUp Gold v16.3 Installation and Configuration Guide WhatsUp Gold v16.3 Installation and Configuration Guide Contents Installing and Configuring WhatsUp Gold using WhatsUp Setup Installation Overview... 1 Overview... 1 Security considerations... 2 Standard

More information

E-Business Suite Oracle SOA Suite Integration Options

E-Business Suite Oracle SOA Suite Integration Options Specialized. Recognized. Preferred. The right partner makes all the difference. E-Business Suite Oracle SOA Suite Integration Options By: Abhay Kumar AST Corporation March 17, 2014 Applications Software

More information

Agentry SAP Framework. SAP Mobile Platform 3.0

Agentry SAP Framework. SAP Mobile Platform 3.0 SAP Mobile Platform 3.0 DOCUMENT ID: DC-01-0300-01 LAST REVISED: November 2013 Copyright 2013 by SAP AG or an SAP affiliate company. All rights reserved. No part of this publication may be reproduced or

More information

Deep Freeze and Microsoft System Center Configuration Manager 2012 Integration

Deep Freeze and Microsoft System Center Configuration Manager 2012 Integration 1 Deep Freeze and Microsoft System Center Configuration Manager 2012 Integration Technical Paper Last modified: May 2015 Web: www.faronics.com Email: [email protected] Phone: 800-943-6422 or 604-637-3333

More information

Using and Contributing Virtual Machines to VM Depot

Using and Contributing Virtual Machines to VM Depot Using and Contributing Virtual Machines to VM Depot Introduction VM Depot is a library of open source virtual machine images that members of the online community have contributed. You can browse the library

More information

Reference and Troubleshooting: FTP, IIS, and Firewall Information

Reference and Troubleshooting: FTP, IIS, and Firewall Information APPENDIXC Reference and Troubleshooting: FTP, IIS, and Firewall Information Although Cisco VXC Manager automatically installs and configures everything you need for use with respect to FTP, IIS, and the

More information

Request Manager Installation and Configuration Guide

Request Manager Installation and Configuration Guide Request Manager Installation and Configuration Guide vcloud Request Manager 1.0.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

Microsoft Visual Studio Integration Guide

Microsoft Visual Studio Integration Guide Microsoft Visual Studio Integration Guide MKS provides a number of integrations for Integrated Development Environments (IDEs). IDE integrations allow you to access MKS Integrity s workflow and configuration

More information

HOW TO CONFIGURE SQL SERVER REPORTING SERVICES IN ORDER TO DEPLOY REPORTING SERVICES REPORTS FOR DYNAMICS GP

HOW TO CONFIGURE SQL SERVER REPORTING SERVICES IN ORDER TO DEPLOY REPORTING SERVICES REPORTS FOR DYNAMICS GP HOW TO CONFIGURE SQL SERVER REPORTING SERVICES IN ORDER TO DEPLOY REPORTING SERVICES REPORTS FOR DYNAMICS GP When you install SQL Server you have option to automatically deploy & configure SQL Server Reporting

More information

Business Portal for Microsoft Dynamics GP 2010. Field Service Suite

Business Portal for Microsoft Dynamics GP 2010. Field Service Suite Business Portal for Microsoft Dynamics GP 2010 Field Service Suite Copyright Copyright 2010 Microsoft. All rights reserved. Limitation of liability This document is provided as-is. Information and views

More information

STEVEN MANN. InfoPath* with. SharePoint HOW-TO. 800 East 96th Street, Indianapolis, Indiana 46240 USA

STEVEN MANN. InfoPath* with. SharePoint HOW-TO. 800 East 96th Street, Indianapolis, Indiana 46240 USA STEVEN MANN InfoPath* with SharePoint 2010 HOW-TO 800 East 96th Street, Indianapolis, Indiana 46240 USA Table of Contents Introduction 1 Overview of This Book 1 How to Benefit from This Book 1 How to Continue

More information

OutDisk 4.0 FTP FTP for Email Users using Microsoft Windows and/or Microsoft Outlook. 5/1/2012 2012 Encryptomatic LLC www.encryptomatic.

OutDisk 4.0 FTP FTP for Email Users using Microsoft Windows and/or Microsoft Outlook. 5/1/2012 2012 Encryptomatic LLC www.encryptomatic. OutDisk 4.0 FTP FTP for Email Users using Microsoft Windows and/or Microsoft Outlook 5/1/2012 2012 Encryptomatic LLC www.encryptomatic.com Contents What is OutDisk?... 3 OutDisk Requirements... 3 How Does

More information

How to Configure a Stress Test Project for Microsoft Office SharePoint Server 2007 using Visual Studio Team Suite 2008.

How to Configure a Stress Test Project for Microsoft Office SharePoint Server 2007 using Visual Studio Team Suite 2008. How to Configure a Stress Test Project for Microsoft Office SharePoint Server 2007 using Visual Studio Team Suite 2008. 1 By Steve Smith, MVP SharePoint Server, MCT And Penny Coventry, MVP SharePoint Server,

More information

CHAPTER 10: WEB SERVICES

CHAPTER 10: WEB SERVICES Chapter 10: Web Services CHAPTER 10: WEB SERVICES Objectives Introduction The objectives are: Provide an overview on how Microsoft Dynamics NAV supports Web services. Discuss historical integration options,

More information

The presentation explains how to create and access the web services using the user interface. WebServices.ppt. Page 1 of 14

The presentation explains how to create and access the web services using the user interface. WebServices.ppt. Page 1 of 14 The presentation explains how to create and access the web services using the user interface. Page 1 of 14 The aim of this presentation is to familiarize you with the processes of creating and accessing

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

Managing Software Updates with System Center 2012 R2 Configuration Manager

Managing Software Updates with System Center 2012 R2 Configuration Manager Managing Software Updates with System Center 2012 R2 Configuration Manager Managing Microsoft Updates with Configuration Manager 2012 R2 This document is for informational purposes only. MICROSOFT MAKES

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

File Share Navigator Online 1

File Share Navigator Online 1 File Share Navigator Online 1 User Guide Service Pack 3 Issued November 2015 Table of Contents What s New in this Guide... 4 About File Share Navigator Online... 5 Components of File Share Navigator Online...

More information

e-business Suite Server Install Guide

e-business Suite Server Install Guide e-business Suite Server Install Guide Version 1.0 April 2011 Avelo FS Holdings Limited 2011 *These accreditations belong to Avelo FS Limited **This accreditation belongs to Avelo FS Limited and Avelo Portal

More information

Migrating helpdesk to a new server

Migrating helpdesk to a new server Migrating helpdesk to a new server Table of Contents 1. Helpdesk Migration... 2 Configure Virtual Web on IIS 6 Windows 2003 Server:... 2 Role Services required on IIS 7 Windows 2008 / 2012 Server:... 2

More information

OneLogin Integration User Guide

OneLogin Integration User Guide OneLogin Integration User Guide Table of Contents OneLogin Account Setup... 2 Create Account with OneLogin... 2 Setup Application with OneLogin... 2 Setup Required in OneLogin: SSO and AD Connector...

More information

Oracle Siebel CRM 8 Developer's Handbook

Oracle Siebel CRM 8 Developer's Handbook P U B L I S H I N G professional expertise distilled Oracle Siebel CRM 8 Developer's Handbook Alexander Hansal Chapter No.13 "User Properties" In this package, you will find: A Biography of the author

More information

MadCap Software. Upgrading Guide. Pulse

MadCap Software. Upgrading Guide. Pulse MadCap Software Upgrading Guide Pulse Copyright 2014 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document is furnished

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

Colligo Contributor File Manager 4.6. User Guide

Colligo Contributor File Manager 4.6. User Guide Colligo Contributor File Manager 4.6 User Guide Contents Colligo Contributor File Manager Introduction... 2 Benefits... 2 Features... 2 Platforms Supported... 2 Installing and Activating Contributor File

More information