Resco CRM Server Guide. How to integrate Resco CRM with other back-end systems using web services

Size: px
Start display at page:

Download "Resco CRM Server Guide. How to integrate Resco CRM with other back-end systems using web services"

Transcription

1 Resco CRM Server Guide How to integrate Resco CRM with other back-end systems using web services

2 Integrating Resco CRM with other back-end systems using web services (Data, Metadata) This document consists of three major parts. The first one briefly describes Resco CRM Server; the second one talks about the integration of the server with other CRM or ERP systems. The last one is a detailed description of the web services that are used for the synchronization of the Resco CRM Server with your back-end system. Meet Resco CRM Server Resco CRM provides you with a data storage with customizable data scheme; it can be cloud-based or on premise. You can connect Resco CRM to other CRM or non-crm servers, or use it independently. You can use Resco CRM web client (that comes with the server) to view the data stored on the server. An important part of the server is also a configuration and administration console. This admin tool allows you to manage all the devices and users related to your CRM organization created on the server, and the configuration tool allows you to configure the data scheme, layout and business logic of the CRM system.

3 Resco CRM integration Basic scenario: YOUR SYSTEM Resco CRM Connector SYNC Resco CRM Server SYNC Resco CRM Client YOUR BACKEND SYSTEM Any CRM/ERP System Resco CRM Connector Synchronization module between ERP System and Resco CRM Server. Resco CRM Server Fully customizable back end for Mobile CRM Client application. Resco CRM Client End-user CRM application customized for Resco CRM server. Resco CRM Server and Client are provided by Resco. Resco CRM Server allows defining schema and stores the data for Mobile CRM Client, which is used to display the data. You can now build your own Resco CRM Connector to enable the synchronization between your back-end system and the Resco CRM Server. Resco CRM Server acts like a passive module it does not initiate any synchronization. Mobile CRM Client must initiate the synchronization process to download/upload data. This also applies for Resco CRM Connector. It must determine when/whether to synchronize ERP System data with data stored on the Resco CRM Server. For example, every hour, every day, etc., depends on how current the data must be on the clients. To check whether there are new/updated data on the Resco CRM Server use GetMaxRowVersion web service method to get the current row version. If the current row version changed from the last stored row version, there are new changes available on the Resco CRM Server.

4 Resco CRM Connector Consist of a set of REST Web Service methods divided into Metadata Service and Data service. Data Types UniqueIdentifier String Integer Float Decimal DateTime Picklist PicklistMap Boolean Money Binary Lookup RowVersion PartyList

5 Resco CRM Connector Data Service Data Service helps you access and manipulate data on Resco CRM Server.The web service URL depends on server settings; whether the server uses domain organization selection or simple URL organization selection. URL organization base web service URL is: Domain organization base web service URL is: Resco s Mobile CRM Cloud server uses domain organization selection: Web Request requirements: Method: GET/POST Content-Type: application/xml; charset=utf-8 Authorization: Basic BASE64(login:password) Methods: 1. POST WhoAmI 2. POST GetMaxRowVersion 3. GET Select 4. POST Fetch 5. POST Create 6. POST CreateMultiple 7. POST Update 8. POST UpdateMultiple 9. POST Delete 10. POST DeleteMultiple 11. POST Execute 12. POST ExecuteMultiple 1. POST WhoAmI Return organization ID and user ID. No parameters. Sample URL: Response: <?xml version="1.0" encoding="utf-8"?> <WhoAmI xmlns:xsd=" xmlns:xsi=" <OrganizationId>87ddc2f8-d0d1-4ad6-a a7a46edd</OrganizationId> <UserId>601d9d17-89b4-e111-9c9a-00155d0b710a</UserId> </WhoAmI>

6 2. POST GetMaxRowVersion Return max row version for the database. Row version is counter of every change in database. It helps to determine changes from last synchronization. Each entity has system attribute rowversion which determine the version (or timestamp) of last change for the specified row. No parameters. Sample URL: Response: <?xml version="1.0" encoding="utf-8"?> <string>3665</string>

7 3. GET Select Template URL: /{entity}?$select={select}&$filter={filter}&$orderby={orderby} &$skip={skip}&$top={top} Returns list of entities. Parameters: {entity} {select} {filter} - determine the entity to retrieve, optionally, you can specify entity id to retrieve in following format: account(guid'300a4f0b-99dc-4ba5-95bd-d41abf61dc10') - determine attributes to retrieve, separated by comma - determine entity filter. Condition is defined like: {left identifier} {comparison statement} {right identifier} {and/or} The left identifier is always the attribute name. Comparison statements can by any of following: eq, =, == equal ne,!=, <> not equal gt, > greater than ge, >= greater than equal lt, < less than le, <= less than equal like, not-like like or not like Right identifier can be any of following: string value string, or string integer value 0, 1, 2,. null, not-null Conditions can be joined using: and, && or, {orderby} {skip} {top} - determine sort, optionally include desc keyword. Separated by comma. - determine number of entities to skip - determine number of entities to return Sample URL: &$filter=name%20like%20'c%'&$orderby=address1_city&$skip=2&$top=5

8 Response: <?xml version="1.0" encoding="utf-8"?> <EntitySet xmlns=" <Metadata PrimaryEntity="account"> <Attributes> <Attribute EntityName="account" AttributeName="name" Name="name" Type="String"/> <Attribute EntityName="account" AttributeName="address1_city" Name="address1_city" Type="String"/> <Attribute EntityName="account" AttributeName=" address1" Name=" address1" Type="String"/> <Attribute EntityName="account" AttributeName="id" Name="id" Type="UniqueIdentifier"/> </Attributes> </Metadata> <Entities> <name>cash and Carry Bikes</name> <address1_city>dallas</address1_city> <id>b9ca6c78-4e0b-df11-a3d5-0003ff9c98bb</id> <name>convenient Bike Shop</name> <address1_city>everett</address1_city> <id>bdca6c78-4e0b-df11-a3d5-0003ff9c98bb</id> <name>cheap n Best bikes</name> <address1_city>redmond</address1_city> < address1>someone@example.com</ address1> <id>bbca6c78-4e0b-df11-a3d5-0003ff9c98bb</id> <name>cool Ride Store</name> <address1_city>seattle</address1_city> < address1>someone@example.com</ address1> <id>beca6c78-4e0b-df11-a3d5-0003ff9c98bb</id> <name>certified Bicycle Supply</name> <address1_city>west Covina</address1_city> < address1>someone@example.com</ address1> <id>baca6c78-4e0b-df11-a3d5-0003ff9c98bb</id> </Entities> </EntitySet>

9 4. POST Fetch Fetch query. Return list of entities defined by fetch. Sample URL: Request: <fetch page="2" count="5" paging-cookie="optional PagingCookie from previous fetch"> <entity name="account"> <attribute name="id" /> <attribute name="name" /> <order attribute="name" descending="true" /> <filter> <condition attribute="name" operator="like" value="b%" /> </filter> </entity> </fetch> Response: <?xml version="1.0" encoding="utf-8"?> <EntitySet xmlns=" <Metadata PrimaryEntity="account"> <Attributes> <Attribute EntityName="account" AttributeName="id" Name="id" Type="UniqueIdentifier"/> <Attribute EntityName="account" AttributeName="name" Name="name" Type="String"/> </Attributes> </Metadata> <Entities> <id>b3ca6c78-4e0b-df11-a3d5-0003ff9c98bb</id> <name>bikes unlimited</name> <id>b2ca6c78-4e0b-df11-a3d5-0003ff9c98bb</id> <name>bike-o-maniac store</name> <id>b1ca6c78-4e0b-df11-a3d5-0003ff9c98bb</id> <name>bike Universe</name> <id>b0ca6c78-4e0b-df11-a3d5-0003ff9c98bb</id> <name>bike Products and Accessories</name> <id>afca6c78-4e0b-df11-a3d5-0003ff9c98bb</id> <name>bike Experts</name> </Entities> <MoreRecords>true</MoreRecords> <PagingCookie><cookie page="2"><name last="bike Experts" descending="1" /><id last="afca6c78-4e0b-df11-a3d5-0003ff9c98bb" /></cookie></pagingcookie> </EntitySet>

10 5. POST Create Create entity and return entity ID. Optional, primary key can be specified by PrimaryKey attribute. Default PrimaryKey is id. Sample URL: Request: <Entity EntityName='account' [PrimaryKey='name;address1_city']> <id>1607a7f7-c16f-4e19-849c-bad37ff59f5c</id> <name>my Name</name> <address1_city>bratislava</address1_city> <revenue> </revenue> Response: <?xml version="1.0" encoding="utf-8"?> <guid>1607a7f7-c16f-4e19-849c-bad37ff59f5c</guid>

11 6. POST CreateMultiple Create multiple entities. The entity is defined same as for Create method. Sample URL: Request: <Entities xmlns=' <Entity EntityName='account'> <id>fe400d92-efd a0b4-94c63212d5c8</id> <name>my Name 1</name> <address1_city>bratislava</address1_city> <revenue> </revenue> <Entity EntityName='account'> <id>d008549e-842f-46ec-9f76-ecc5f20a550d</id> <name>my Name 2</name> <address1_city>bratislava</address1_city> <revenue> </revenue> </Entities>

12 7. POST Update?$create={create} Update entity. Optional, the primary key can be specified by PrimaryKey attribute. Default PrimaryKey is id. Parameter: {create} (optional) Determine whether the entity should be created if it does not exist. Sample URL: Optional URL: Request: <Entity EntityName='account' [PrimaryKey='name;address1_city']> <id>1607a7f7-c16f-4e19-849c-bad37ff59f5c</id> <name>my Name 2</name> <address1_city>bratislava</address1_city> <revenue> </revenue>

13 8. POST UpdateMultiple?$create={create} Update multiple entities. The entity is defined the same way as for Update method. Parameter: {create} (optional) Determine whether the entity should be created if it does not exist. Sample URL: Optional URL: Request: <Entities xmlns=' <Entity EntityName='account'> <id>fe400d92-efd a0b4-94c63212d5c8</id> <name>my Name 1</name> <address1_city>bratislava</address1_city> <revenue> </revenue> <Entity EntityName='account'> <id>d008549e-842f-46ec-9f76-ecc5f20a550d</id> <name>my Name 2</name> <address1_city>bratislava</address1_city> <revenue> </revenue> </Entities>

14 9. POST Delete Delete entity. Optional, the primary key can be specified by PrimaryKey attribute. Default PrimaryKey is id. Sample URL: Request: <Entity EntityName='account'> <id>1607a7f7-c16f-4e19-849c-bad37ff59f5c</id> With PrimaryKey: <Entity EntityName='account' PrimaryKey='name;address1_city'> <name>my Name 3</name> <address1_city>bratislava</address1_city>

15 10. POST DeleteMultiple Delete multiple entities. The entity is defined the same way as for Delete method. Sample URL: Request: <Entities xmlns=' <Entity EntityName='account'> <id>fe400d92-efd a0b4-94c63212d5c8</id> <Entity EntityName='account'> <id>d008549e-842f-46ec-9f76-ecc5f20a550d</id> </Entities>

16 11. POST Execute Allow to execute specified operation on entity, such as Create, Update, Upsert and Delete. Action: Create Create entity Update Update entity Upsert If exist, Update entity; otherwise Create entity Delete Delete entity Sample URL: Request: <Entity EntityName='account' Action='Create' [PrimaryKey='name;address1_city'] xmlns=' <id>1607a7f7-c16f-4e19-849c-bad37ff59f5c</id> <name>my Name</name> <address1_city>bratislava</address1_city> <revenue> </revenue> Response: <Response Action="Create" xmlns=" <Result Type="guid">1607a7f7-c16f-4e19-849c-bad37ff59f5c</Result> </Response>

17 12. POST ExecuteMultiple Allow to execute specified operation on multiple entities, such as Create, Update, Upsert and Delete. ContinueOnError Determine whether to continue executing operation on error. TransactionType Determine transaction operation: None - execute multiple will not run in transaction RollbackOnError - execute multiple transaction will roll back on error CommitOnError - execute multiple transaction will commit on error Action: Create Create entity Update Update entity Upsert If exist, Update entity; otherwise Create entity Delete Delete entity Sample URL: Request: <ExecuteMultiple TransactionType='RollbackOnError' ContinueOnError='false' xmlns=' <Entity EntityName='account' Action='Create'> <id>1607a7f7-c16f-4e19-849c-bad37ff59f5c</id> <name>my Name</name> <address1_city>bratislava</address1_city> <revenue> </revenue> <Entity EntityName='account' Action='Update'> <id>1607a7f7-c16f-4e19-849c-bad37ff59f5c</id> <name>my Name 2</name> <Entity EntityName='account' Action='Upsert'> <id>2607a7f7-c16f-4e19-849c-bad37ff59f5c</id> <name>my Name 3</name> <revenue2> </revenue2> <Entity EntityName='account' Action='Delete'> <id>1607a7f7-c16f-4e19-849c-bad37ff59f5c</id> </ExecuteMultiple> Response: <?xml version="1.0" encoding="utxrmf-8"?> <MultipleResponse xmlns=" <Response Action="Create"> <Result Type="guid">1607a7f7-c16f-4e19-849c-bad37ff59f5c</Result> </Response> <Response Action="Update"> <Result Type="bool">true</Result> </Response> <Response Action="Upsert"> <Fault xmlns=" <Code>500</Code> <Reason>KeyNotFoundException</Reason> <Detail>The given attribute 'revenue2' was not present in the entity metadata.</detail> <StackTrace> </StackTrace> </Fault> </Response>

18 <Response Action="Delete"> <Result Type="bool">true</Result> </Response> </MultipleResponse>

REST Webservices API Reference Manual

REST Webservices API Reference Manual crm-now/ps REST Webservices API Reference Manual Version 1.5.1.0 crm-now development documents Page 1 Table Of Contents OVERVIEW...4 URL FORMAT...4 THE RESPONSE FORMAT...4 VtigerObject...5 Id Format...5

More information

Informatica Cloud Connector for SharePoint 2010/2013 User Guide

Informatica Cloud Connector for SharePoint 2010/2013 User Guide Informatica Cloud Connector for SharePoint 2010/2013 User Guide Contents 1. Introduction 3 2. SharePoint Plugin 4 3. Objects / Operation Matrix 4 4. Filter fields 4 5. SharePoint Configuration: 6 6. Data

More information

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

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

More information

Resco CRM Guide. Get to know Resco CRM

Resco CRM Guide. Get to know Resco CRM Resco CRM Guide Get to know Resco CRM Table of Contents Introducing Resco CRM... 3 1.1. What is Resco CRM...3 1.2. Capabilities of Resco CRM... 4 1.3. Who should use Resco CRM...5 1.4. What are the main

More information

Portal Connector Fields and Widgets Technical Documentation

Portal Connector Fields and Widgets Technical Documentation Portal Connector Fields and Widgets Technical Documentation 1 Form Fields 1.1 Content 1.1.1 CRM Form Configuration The CRM Form Configuration manages all the fields on the form and defines how the fields

More information

Coveo Platform 7.0. Salesforce Connector Guide

Coveo Platform 7.0. Salesforce Connector Guide Coveo Platform 7.0 Salesforce 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 market

More information

Database Query 1: SQL Basics

Database Query 1: SQL Basics Database Query 1: SQL Basics CIS 3730 Designing and Managing Data J.G. Zheng Fall 2010 1 Overview Using Structured Query Language (SQL) to get the data you want from relational databases Learning basic

More information

Introduction to Microsoft Jet SQL

Introduction to Microsoft Jet SQL Introduction to Microsoft Jet SQL Microsoft Jet SQL is a relational database language based on the SQL 1989 standard of the American Standards Institute (ANSI). Microsoft Jet SQL contains two kinds of

More information

Cloud Powered Mobile Apps with Azure

Cloud Powered Mobile Apps with Azure Cloud Powered Mobile Apps with Azure Malte Lantin Technical Evanglist Microsoft Azure Agenda Mobile Services Features and Demos Advanced Features Scaling and Pricing 2 What is Mobile Services? Storage

More information

Pervasive Data Integrator. Oracle CRM On Demand Connector Guide

Pervasive Data Integrator. Oracle CRM On Demand Connector Guide Pervasive Data Integrator Oracle CRM On Demand Connector Guide Pervasive Software Inc. 12365 Riata Trace Parkway Building B Austin, Texas 78727 USA Telephone: (512) 231-6000 or (800) 287-4383 Fax: (512)

More information

Deployment Guide. Cartagena as. Cartagena ERP Integration 3.0 for Microsoft Dynamics CRM. Knut Eivind Handeland

Deployment Guide. Cartagena as. Cartagena ERP Integration 3.0 for Microsoft Dynamics CRM. Knut Eivind Handeland Cartagena as Deployment Guide Cartagena ERP Integration 3.0 for Microsoft Dynamics CRM Knut Eivind Handeland 5. februar 2014 1 Contents Overview... 3 CRM Input adapter... 3 CRM output adapter... 3 ERP

More information

A Brief Introduction to MySQL

A Brief Introduction to MySQL A Brief Introduction to MySQL by Derek Schuurman Introduction to Databases A database is a structured collection of logically related data. One common type of database is the relational database, a term

More information

A Comparison of Database Query Languages: SQL, SPARQL, CQL, DMX

A Comparison of Database Query Languages: SQL, SPARQL, CQL, DMX ISSN: 2393-8528 Contents lists available at www.ijicse.in International Journal of Innovative Computer Science & Engineering Volume 3 Issue 2; March-April-2016; Page No. 09-13 A Comparison of Database

More information

Kaseya 2. Quick Start Guide. for VSA 6.3

Kaseya 2. Quick Start Guide. for VSA 6.3 Kaseya 2 Custom Reports Quick Start Guide for VSA 6.3 December 9, 2013 Agreement The purchase and use of all Software and Services is subject to the Agreement as defined in Kaseya s Click-Accept EULA as

More information

Sentinel EMS v7.1 Web Services Guide

Sentinel EMS v7.1 Web Services Guide Sentinel EMS v7.1 Web Services Guide ii Sentinel EMS Web Services Guide Document Revision History Part Number 007-011157-001, Revision E. Software versions 7.1 and later. Revision Action/Change Date A

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

Physical Design. Meeting the needs of the users is the gold standard against which we measure our success in creating a database.

Physical Design. Meeting the needs of the users is the gold standard against which we measure our success in creating a database. Physical Design Physical Database Design (Defined): Process of producing a description of the implementation of the database on secondary storage; it describes the base relations, file organizations, and

More information

SnapLogic Salesforce Snap Reference

SnapLogic Salesforce Snap Reference SnapLogic Salesforce Snap Reference Document Release: October 2012 SnapLogic, Inc. 71 East Third Avenue San Mateo, California 94401 U.S.A. www.snaplogic.com Copyright Information 2012 SnapLogic, Inc. All

More information

Services. Relational. Databases & JDBC. Today. Relational. Databases SQL JDBC. Next Time. Services. Relational. Databases & JDBC. Today.

Services. Relational. Databases & JDBC. Today. Relational. Databases SQL JDBC. Next Time. Services. Relational. Databases & JDBC. Today. & & 1 & 2 Lecture #7 2008 3 Terminology Structure & & Database server software referred to as Database Management Systems (DBMS) Database schemas describe database structure Data ordered in tables, rows

More information

HireDesk API V1.0 Developer s Guide

HireDesk API V1.0 Developer s Guide HireDesk API V1.0 Developer s Guide Revision 1.4 Talent Technology Corporation Page 1 Audience This document is intended for anyone who wants to understand, and use the Hiredesk API. If you just want to

More information

Contents. 2 Alfresco API Version 1.0

Contents. 2 Alfresco API Version 1.0 The Alfresco API Contents The Alfresco API... 3 How does an application do work on behalf of a user?... 4 Registering your application... 4 Authorization... 4 Refreshing an access token...7 Alfresco CMIS

More information

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

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

More information

MS Access Lab 2. Topic: Tables

MS Access Lab 2. Topic: Tables MS Access Lab 2 Topic: Tables Summary Introduction: Tables, Start to build a new database Creating Tables: Datasheet View, Design View Working with Data: Sorting, Filtering Help on Tables Introduction

More information

Connector for Microsoft Dynamics Configuration Guide for Microsoft Dynamics SL

Connector for Microsoft Dynamics Configuration Guide for Microsoft Dynamics SL Microsoft Dynamics Connector for Microsoft Dynamics Configuration Guide for Microsoft Dynamics SL Revised August, 2012 Find updates to this documentation at the following location: http://www.microsoft.com/download/en/details.aspx?id=10381

More information

When a variable is assigned as a Process Initialization variable its value is provided at the beginning of the process.

When a variable is assigned as a Process Initialization variable its value is provided at the beginning of the process. In this lab you will learn how to create and use variables. Variables are containers for data. Data can be passed into a job when it is first created (Initialization data), retrieved from an external source

More information

Talend Component tgoogleanalyticsmanagement

Talend Component tgoogleanalyticsmanagement Talend Component tgoogleanalyticsmanagement Purpose This component addresses the needs of gathering Google Analytics data for a large number of profiles and fine-grained detail data. To prepare the queries

More information

Wave Analytics External Data API Developer Guide

Wave Analytics External Data API Developer Guide Wave Analytics External Data API Developer Guide Salesforce, Winter 16 @salesforcedocs Last updated: November 6, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

Global Search v.2.8 for Microsoft Dynamics CRM 4.0

Global Search v.2.8 for Microsoft Dynamics CRM 4.0 Global Search v.2.8 for Microsoft Dynamics CRM 4.0 User Manual Akvelon, Inc. 2012, All rights reserved. 1 Contents Overview... 3 What s New in Global Search Versions... 4 Licensing... 6 Installation...

More information

Financial Data Access with SQL, Excel & VBA

Financial Data Access with SQL, Excel & VBA Computational Finance and Risk Management Financial Data Access with SQL, Excel & VBA Guy Yollin Instructor, Applied Mathematics University of Washington Guy Yollin (Copyright 2012) Data Access with SQL,

More information

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

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

More information

Commerce Services Documentation

Commerce Services Documentation Commerce Services Documentation This document contains a general feature overview of the Commerce Services resource implementation and lists the currently implemented resources. Each resource conforms

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

Drupal Survey. Software Requirements Specification 1.0 29/10/2009. Chris Pryor Principal Project Manager

Drupal Survey. Software Requirements Specification 1.0 29/10/2009. Chris Pryor Principal Project Manager Software Requirements Specification 1.0 29/10/2009 Chris Pryor Principal Project Manager Software Requirements Specification Survey Module Revision History Date Description Author Comments 5/11/2009 Version

More information

[MS-ASMS]: Exchange ActiveSync: Short Message Service (SMS) Protocol

[MS-ASMS]: Exchange ActiveSync: Short Message Service (SMS) Protocol [MS-ASMS]: Exchange ActiveSync: Short Message Service (SMS) Protocol Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications

More information

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

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

More information

2874CD1EssentialSQL.qxd 6/25/01 3:06 PM Page 1 Essential SQL Copyright 2001 SYBEX, Inc., Alameda, CA www.sybex.com

2874CD1EssentialSQL.qxd 6/25/01 3:06 PM Page 1 Essential SQL Copyright 2001 SYBEX, Inc., Alameda, CA www.sybex.com Essential SQL 2 Essential SQL This bonus chapter is provided with Mastering Delphi 6. It is a basic introduction to SQL to accompany Chapter 14, Client/Server Programming. RDBMS packages are generally

More information

This three-day instructor-led course provides students with the tools to extend Microsoft Dynamics CRM 4.0.

This three-day instructor-led course provides students with the tools to extend Microsoft Dynamics CRM 4.0. Table of Contents Introduction Audience Prerequisites Microsoft Certified Professional Exams Student Materials Course Outline Introduction This three-day instructor-led course provides students with the

More information

Cloud Powered Mobile Apps with Microsoft Azure

Cloud Powered Mobile Apps with Microsoft Azure Cloud Powered Mobile Apps with Microsoft Azure Malte Lantin Technical Evanglist Microsoft Azure Malte Lantin Technical Evangelist, Microsoft Deutschland Fokus auf Microsoft Azure, App-Entwicklung Student

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

Informatica Cloud (Version Winter 2016) Microsoft Dynamics CRM Connector Guide

Informatica Cloud (Version Winter 2016) Microsoft Dynamics CRM Connector Guide Informatica Cloud (Version Winter 2016) Microsoft Dynamics CRM Connector Guide Informatica Cloud Microsoft Dynamics CRM Connector Guide Version Winter 2016 March 2016 Copyright (c) 1993-2016 Informatica

More information

StreamServe Persuasion SP5 Document Broker Plus

StreamServe Persuasion SP5 Document Broker Plus StreamServe Persuasion SP5 Document Broker Plus User Guide Rev A StreamServe Persuasion SP5 Document Broker Plus User Guide Rev A 2001-2010 STREAMSERVE, INC. ALL RIGHTS RESERVED United States patent #7,127,520

More information

v7.1 SP1 Release Notes

v7.1 SP1 Release Notes v7.1 SP1 Release Notes Copyright 2011 Sage Technologies Limited, publisher of this work. All rights reserved. No part of this documentation may be copied, photocopied, reproduced, translated, microfilmed,

More information

HOST EUROPE CLOUD STORAGE REST API DEVELOPER REFERENCE

HOST EUROPE CLOUD STORAGE REST API DEVELOPER REFERENCE HOST EUROPE CLOUD STORAGE REST API DEVELOPER REFERENCE REST API REFERENCE REST OVERVIEW Host Europe REST Storage Service uses HTTP protocol as defned by RFC 2616. REST operations consist in sending HTTP

More information

SAP InfiniteInsight Explorer Analytical Data Management v7.0

SAP InfiniteInsight Explorer Analytical Data Management v7.0 End User Documentation Document Version: 1.0-2014-11 SAP InfiniteInsight Explorer Analytical Data Management v7.0 User Guide CUSTOMER Table of Contents 1 Welcome to this Guide... 3 1.1 What this Document

More information

Aras Corporation. 2005 Aras Corporation. All rights reserved. Notice of Rights. Notice of Liability

Aras Corporation. 2005 Aras Corporation. All rights reserved. Notice of Rights. Notice of Liability Aras Corporation 2005 Aras Corporation. All rights reserved Notice of Rights All rights reserved. Aras Corporation (Aras) owns this document. No part of this document may be reproduced or transmitted in

More information

Technical Data Sheet: imc SEARCH 3.1. Topology

Technical Data Sheet: imc SEARCH 3.1. Topology : imc SEARCH 3.1 Database application for structured storage and administration of measurement data: Measurement data (measurement values, measurement series, combined data from multiple measurement channels)

More information

Cloud Services ADM. Agent Deployment Guide

Cloud Services ADM. Agent Deployment Guide Cloud Services ADM Agent Deployment Guide 10/15/2014 CONTENTS System Requirements... 1 Hardware Requirements... 1 Installation... 2 SQL Connection... 4 AD Mgmt Agent... 5 MMC... 7 Service... 8 License

More information

Informatica Cloud & Redshift Getting Started User Guide

Informatica Cloud & Redshift Getting Started User Guide Informatica Cloud & Redshift Getting Started User Guide 2014 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording

More information

Using SQL Server Management Studio

Using SQL Server Management Studio Using SQL Server Management Studio Microsoft SQL Server Management Studio 2005 is a graphical tool for database designer or programmer. With SQL Server Management Studio 2005 you can: Create databases

More information

metaengine DataConnect For SharePoint 2007 Configuration Guide

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

More information

Sophos Enterprise Console Auditing user guide. Product version: 5.2

Sophos Enterprise Console Auditing user guide. Product version: 5.2 Sophos Enterprise Console Auditing user guide Product version: 5.2 Document date: January 2013 Contents 1 About this guide...3 2 About Sophos Auditing...4 3 Key steps in using Sophos Auditing...5 4 Ensure

More information

Managing Qualys Scanners

Managing Qualys Scanners Q1 Labs Help Build 7.0 Maintenance Release 3 documentation@q1labs.com Managing Qualys Scanners Managing Qualys Scanners A QualysGuard vulnerability scanner runs on a remote web server. QRadar must access

More information

Customer Relationship Management Overview Document. for Sage 100 ERP

Customer Relationship Management Overview Document. for Sage 100 ERP Customer Relationship Management Document for Sage 100 ERP 2012 Sage Software, Inc. All rights reserved. Sage Software, Sage Software logos, and the Sage Software product and service names mentioned herein

More information

SAP Business Objects Business Intelligence platform Document Version: 4.1 Support Package 7 2015-11-24. Data Federation Administration Tool Guide

SAP Business Objects Business Intelligence platform Document Version: 4.1 Support Package 7 2015-11-24. Data Federation Administration Tool Guide SAP Business Objects Business Intelligence platform Document Version: 4.1 Support Package 7 2015-11-24 Data Federation Administration Tool Guide Content 1 What's new in the.... 5 2 Introduction to administration

More information

RESCO MOBILE CRM USER GUIDE. Access your CRM data on any mobile platform ipad, iphone, Android, Windows Phone or Win XP/Vista/7/8

RESCO MOBILE CRM USER GUIDE. Access your CRM data on any mobile platform ipad, iphone, Android, Windows Phone or Win XP/Vista/7/8 RESCO MOBILE CRM USER GUIDE Access your CRM data on any mobile platform ipad, iphone, Android, Windows Phone or Win XP/Vista/7/8 Contents Synchronization... 1 1.1. How to synchronize your device... 1 1.2.

More information

StarterPak: HubSpot and Dynamics CRM Lead and Contact Synchronization

StarterPak: HubSpot and Dynamics CRM Lead and Contact Synchronization StarterPak: HubSpot and Dynamics CRM Lead and Contact Synchronization Version 1.1 2/10/2015 Important Notice No part of this publication may be reproduced, stored in a retrieval system, or transmitted

More information

Oracle EBS Interface Connector User Guide V1.4

Oracle EBS Interface Connector User Guide V1.4 Oracle EBS Interface Connector User Guide V1.4 Contents Oracle EBS Interface Connector User Guide V1.4... 1 1. Introduction... 3 2. Technologies... 4 3. High level Architectural Diagram... 4 4. About Oracle

More information

Informatica Corporation Informatica Cloud Spring 2015 Release Notes April 2015. Contents

Informatica Corporation Informatica Cloud Spring 2015 Release Notes April 2015. Contents Informatica Corporation Informatica Cloud Spring 2015 Release Notes April 2015 Copyright (c) 1993-2015 Informatica Corporation. All rights reserved. Contents Before You Upgrade... 2 Back Up Informatica

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

Opacus Outlook Addin v3.x User Guide

Opacus Outlook Addin v3.x User Guide Opacus Outlook Addin v3.x User Guide Connecting to your SugarCRM Instance Before you can use the plugin you must first configure it to communicate with your SugarCRM instance. In order to configure the

More information

Adam Rauch Partner, LabKey Software adam@labkey.com. Extending LabKey Server Part 1: Retrieving and Presenting Data

Adam Rauch Partner, LabKey Software adam@labkey.com. Extending LabKey Server Part 1: Retrieving and Presenting Data Adam Rauch Partner, LabKey Software adam@labkey.com Extending LabKey Server Part 1: Retrieving and Presenting Data Extending LabKey Server LabKey Server is a large system that combines an extensive set

More information

Rödl Enterprise Application Integration Bus

Rödl Enterprise Application Integration Bus Rödl Enterprise Application Integration Bus Supports Microsoft Dynamics CRM 2011 and newer Microsoft Dynamics AX 2012 and newer Microsoft Dynamics NAV 2009 R2 and newer SAP R3 5.0 and newer White Paper

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

REST Webservices API Tutorial

REST Webservices API Tutorial REST Webservices API Tutorial Version 1.5.1.0 Table Of Contents OVERVIEW... 3 API Call characteristics... 3 API Response... 3 Response Object... 3 Error Object... 3 Error Handling... 4 Requirements to

More information

MySQL for Beginners Ed 3

MySQL for Beginners Ed 3 Oracle University Contact Us: 1.800.529.0165 MySQL for Beginners Ed 3 Duration: 4 Days What you will learn The MySQL for Beginners course helps you learn about the world's most popular open source database.

More information

Setting Up Resources in VMware Identity Manager

Setting Up Resources in VMware Identity Manager Setting Up Resources in VMware Identity Manager VMware Identity Manager 2.4 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

SQL. Short introduction

SQL. Short introduction SQL Short introduction 1 Overview SQL, which stands for Structured Query Language, is used to communicate with a database. Through SQL one can create, manipulate, query and delete tables and contents.

More information

ACE 2011 International

ACE 2011 International ACE 2011 International Understanding Federation and Web Services www. Copyright 2011 Aras All Rights Reserved. Welcome Session Goals Previous session covered overall Integration strategies and a focus

More information

ElephantDrive Cloud Backup Module Contents

ElephantDrive Cloud Backup Module Contents Contents 1. Overview... 2 2. Installing the module... 2 2-1. How to get the module... 2 2-2. Installation... 2 2-3. Start the module... 3 3. Backup NAS data to ElephantDrive cloud... 3 3-1. Create an ElephantDrive

More information

XEP-0043: Jabber Database Access

XEP-0043: Jabber Database Access XEP-0043: Jabber Database Access Justin Kirby mailto:justin@openaether.org xmpp:zion@openaether.org 2003-10-20 Version 0.2 Status Type Short Name Retracted Standards Track Expose RDBM systems directly

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

2012 Teklynx Newco SAS, All rights reserved.

2012 Teklynx Newco SAS, All rights reserved. D A T A B A S E M A N A G E R DMAN-US- 01/01/12 The information in this manual is not binding and may be modified without prior notice. Supply of the software described in this manual is subject to a user

More information

McAfee Cloud Identity Manager

McAfee Cloud Identity Manager NetSuite Cloud Connector Guide McAfee Cloud Identity Manager version 2.0 or later COPYRIGHT Copyright 2013 McAfee, Inc. All Rights Reserved. No part of this publication may be reproduced, transmitted,

More information

StreamServe Persuasion SP5 Ad Hoc Correspondence and Correspondence Reviewer

StreamServe Persuasion SP5 Ad Hoc Correspondence and Correspondence Reviewer StreamServe Persuasion SP5 Ad Hoc Correspondence and Correspondence Reviewer User Guide Rev B StreamServe Persuasion SP5 Ad Hoc Correspondence and Correspondence Reviewer User Guide Rev B 2001-2010 STREAMSERVE,

More information

Setting up Microsoft Office 365

Setting up Microsoft Office 365 Setup Guide Revision F Using McAfee SaaS Email Protection to Secure Exchange Online in Microsoft Office 365 Setting up Microsoft Office 365 Use this guide to configure Microsoft Office 365 and Microsoft

More information

BackupAgent LabTech Integration Installation and Usage

BackupAgent LabTech Integration Installation and Usage BackupAgent LabTech Integration Installation and Usage Overview This integration was designed and developed to provide a deployment and monitoring solution for BackupAgent within the LabTech Control Center.

More information

SonicWALL GMS Custom Reports

SonicWALL GMS Custom Reports SonicWALL GMS Custom Reports Document Scope This document describes how to configure and use the SonicWALL GMS 6.0 Custom Reports feature. This document contains the following sections: Feature Overview

More information

Centrify Cloud Connector Deployment Guide

Centrify Cloud Connector Deployment Guide C E N T R I F Y D E P L O Y M E N T G U I D E Centrify Cloud Connector Deployment Guide Abstract Centrify provides mobile device management and single sign-on services that you can trust and count on as

More information

Setting up Microsoft Office 365

Setting up Microsoft Office 365 Integration Guide Revision G McAfee SaaS Email Protection Securing Exchange Online in Microsoft Office 365 Setting up Microsoft Office 365 Use this guide to configure Microsoft Office 365 and Microsoft

More information

Ansible Tower API Guide

Ansible Tower API Guide Ansible Tower API Guide Release Ansible Tower 2.3.1 Ansible, Inc. October 19, 2015 CONTENTS 1 Introduction to the Tower API 2 1.1 Tools................................................... 2 1.2 Browsable

More information

Making OData requests from jquery and/or the Lianja HTML5 Client in a Web App is extremely straightforward and simple.

Making OData requests from jquery and/or the Lianja HTML5 Client in a Web App is extremely straightforward and simple. Lianja Cloud Server supports OData-compatible data access. The Server handles ODBC connections as well as HTTP requests using OData URIs. In this article I will show you how to use Lianja Cloud Server

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

Field Audit Trail Implementation Guide

Field Audit Trail Implementation Guide Field Audit Trail Implementation Guide Salesforce, Spring 16 @salesforcedocs Last updated: January 19, 2016 Copyright 2000 2016 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

SQL Server An Overview

SQL Server An Overview SQL Server An Overview SQL Server Microsoft SQL Server is designed to work effectively in a number of environments: As a two-tier or multi-tier client/server database system As a desktop database system

More information

Azure Scalability Prescriptive Architecture using the Enzo Multitenant Framework

Azure Scalability Prescriptive Architecture using the Enzo Multitenant Framework Azure Scalability Prescriptive Architecture using the Enzo Multitenant Framework Many corporations and Independent Software Vendors considering cloud computing adoption face a similar challenge: how should

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

Getting Started with Clearlogin A Guide for Administrators V1.01

Getting Started with Clearlogin A Guide for Administrators V1.01 Getting Started with Clearlogin A Guide for Administrators V1.01 Clearlogin makes secure access to the cloud easy for users, administrators, and developers. The following guide explains the functionality

More information

How To Create A Table In Sql 2.5.2.2 (Ahem)

How To Create A Table In Sql 2.5.2.2 (Ahem) Database Systems Unit 5 Database Implementation: SQL Data Definition Language Learning Goals In this unit you will learn how to transfer a logical data model into a physical database, how to extend or

More information

Information Systems SQL. Nikolaj Popov

Information Systems SQL. Nikolaj Popov Information Systems SQL Nikolaj Popov Research Institute for Symbolic Computation Johannes Kepler University of Linz, Austria popov@risc.uni-linz.ac.at Outline SQL Table Creation Populating and Modifying

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: support@iglobe.dk Other question:

More information

Simba ODBC Driver with SQL Connector for Apache Cassandra

Simba ODBC Driver with SQL Connector for Apache Cassandra Simba ODBC Driver with SQL Connector for Apache Cassandra Installation and Configuration Guide May 7, 2013 Simba Technologies Inc. Copyright 2012-2013 Simba Technologies Inc. All Rights Reserved. Information

More information

Scaling up = getting a better machine. Scaling out = use another server and add it to your cluster.

Scaling up = getting a better machine. Scaling out = use another server and add it to your cluster. MongoDB 1. Introduction MongoDB is a document-oriented database, not a relation one. It replaces the concept of a row with a document. This makes it possible to represent complex hierarchical relationships

More information

Form And List. SuperUsers. Configuring Moderation & Feedback Management Setti. Troubleshooting: Feedback Doesn't Send

Form And List. SuperUsers. Configuring Moderation & Feedback Management Setti. Troubleshooting: Feedback Doesn't Send 5. At Repeat Submission Filter, select the type of filtering used to limit repeat submissions by the same user. The following options are available: No Filtering: Skip to Step 7. DotNetNuke User ID: Do

More information

CSC 443 Data Base Management Systems. Basic SQL

CSC 443 Data Base Management Systems. Basic SQL CSC 443 Data Base Management Systems Lecture 6 SQL As A Data Definition Language Basic SQL SQL language Considered one of the major reasons for the commercial success of relational databases SQL Structured

More information

CRM Global Search: Installation & Configuration

CRM Global Search: Installation & Configuration Installation ***Important: It is highly recommended that you first take a backup of your current CRM Application Ribbons prior to importing this solution. Please do so by navigating to Settings > Solutions

More information

Salesforce Files Connect Implementation Guide

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

More information

Report writing with CRM 2015 for online and on-premises. Version 7.1.1

Report writing with CRM 2015 for online and on-premises. Version 7.1.1 Report writing with CRM 2015 for online and on-premises Version 7.1.1 This document is provided "as-is". Information and views expressed in this document, including URL and other Internet Web site references,

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

IBM TRIRIGA Application Platform Version 3 Release 4.0. Application Building for the IBM TRIRIGA Application Platform 3: Data Management

IBM TRIRIGA Application Platform Version 3 Release 4.0. Application Building for the IBM TRIRIGA Application Platform 3: Data Management IBM TRIRIGA Application Platform Version 3 Release 4.0 Application Building for the IBM TRIRIGA Application Platform 3: Data Management Note Before using this information and the product it supports, read

More information

Architecture. Outlook Synchronization in Microsoft Dynamics CRM. Microsoft Dynamics CRM 2015. White Paper:

Architecture. Outlook Synchronization in Microsoft Dynamics CRM. Microsoft Dynamics CRM 2015. White Paper: Architecture Microsoft Dynamics CRM 2015 Outlook Synchronization in Microsoft Dynamics CRM White Paper: Date: September 2015 Acknowledgements Initiated by the Microsoft Dynamics CRM Core Engineering Team,

More information