Tutorial: Using Corticon Business Rules in a Progress OpenEdge Application

Size: px
Start display at page:

Download "Tutorial: Using Corticon Business Rules in a Progress OpenEdge Application"

Transcription

1 Tutorial: Using Corticon Business Rules in a Progress OpenEdge Application Product Version: OpenEdge 11.5 and Corticon 5.5 Tutorial: Using Corticon Business Rules in a Progress OpenEdge Application 1

2 Table of Contents Introduction... 3 Overview of using a Corticon Decision Service in an OpenEdge application... 3 Introducing the sample application... 5 Importing the sample application... 5 Setting up the development environment... 7 Exporting a dataset as a Business Rule Vocabulary Definition file Creating a.brvd file from an OpenEdge ProDataSet: Accessing and Using a Decision Service from an OpenEdge application Connecting to the Decision Service Invoking the Decision Service Receiving and processing rule messages Testing your application Running the application Tutorial: Using Corticon Business Rules in a Progress OpenEdge Application 2

3 Introduction This tutorial teaches you how to access and use Corticon Business Rules in a Progress OpenEdge Application. You will learn how to: Set up an integrated development environment containing OpenEdge and Corticon, Export a dataset to align data definitions in OpenEdge with the rules Vocabulary in Corticon, Add code to your OpenEdge application to connect to and use a Corticon Decision Service using the BusinessRules API, and, Test the execution of Corticon rules from your OpenEdge application. By defining business rules in Corticon instead of hard coding them in OpenEdge, you can easily modify and maintain them without needing to change your application source code. This tutorial is designed for hands-on use. We recommend that you follow along in Developer Studio for OpenEdge, using the instructions and illustrations that are provided. We assume you have already installed Developer Studio. You will also need a copy of Corticon. If you don t have the Corticon Studio installer executable, you can download a free trial version. Later in the tutorial, we will show you how to add Corticon to your Developer Studio environment. Overview of using a Corticon Decision Service in an OpenEdge application Tutorial: Using Corticon Business Rules in a Progress OpenEdge Application 3

4 To use Corticon Business Rules in an OpenEdge application you need to do two things on the OpenEdge side: Align data definitions in OpenEdge with the rules Vocabulary in Corticon. A Corticon Vocabulary is the set of terms used when defining Business Rules. To do this you can export a ProDataSet or temp-table as a Business Rules Vocabulary Definition (.brvd) file. This file can then be imported into Corticon to generate a Vocabulary. Add code to your OpenEdge application to connect to and use a Corticon Decision Service using the BusinessRules API. A Decision Service is a set of deployed Corticon business rules. Tutorial: Using Corticon Business Rules in a Progress OpenEdge Application 4

5 Introducing the sample application The sample application you will use in this tutorial is a simple customer credit rating system. The sample application contains 2 projects: OpenEdgeProject and CorticonProject. It uses the sports2000 database. OpenEdgeProject contains a procedure file, InvokeFinanceReview.p, which you will modify to invoke a Corticon Decision Service. The project also contains a ProDataSet, dscust. The CorticonProject contains a Decision Service called FinanceReview. The OpenEdge application takes a customer ID as input. It then fetches the customer record from sports2000 and sends it to FinanceReview. The FinanceReview Decision Service uses rules to evaluate the credit rating of the customer and returns the result to the OpenEdge application. Depending on the credit rating, the Decision Service returns one of three messages with a severity level and the current order terms value: Importing the sample application Follow these steps to import the sample application into your Developer Studio environment: 1. Download OEBusinessRules.exe which is a self-extracting executable to a location on your PC. 2. Extract the course files. Verify that the following directory is created: C:\progress_education\OpenEdge\OEBusinessRules. This directory should contain the following subdirectories and files: o o \sample (contains the files that you must use to start the sample application) FinanceReview.brvd (The Decision Service business rule vocabulary definition file for reference) 3. Open Developer Studio. Tutorial: Using Corticon Business Rules in a Progress OpenEdge Application 5

6 4. Create a new project in your Developer Studio workspace with the name OpenEdgeProject. 5. Create another new project in your Developer Studio workspace with the name CorticonProject. 6. Import the files in C:\progress_education\OpenEdge\OEBusinessRules\sample\OEProject to OpenEdgeProject in Developer Studio.(Note: Overwrite the existing files if prompted) 7. Import the files in C:\progress_education\OpenEdge\OEBusinessRules\sample\CorticonProject to CorticonProject in Developer Studio.(Note: Overwrite the existing files if prompted) Tutorial: Using Corticon Business Rules in a Progress OpenEdge Application 6

7 Setting up the development environment Before you get started, you need to set up an integrated development environment for OpenEdge and Corticon. You begin by adding Corticon to your Developer Studio environment. 1. Double-click PROGRESS_CORTICON_5.5_STUDIO_WIN_64.exe in the installation directory. The Progress Corticon Studio setup wizard appears. 2. Follow the wizard and select Yes when asked, Do you want to configure Progress Corticon Studio with Progress Developer Studio for OpenEdge? Tutorial: Using Corticon Business Rules in a Progress OpenEdge Application 7

8 3. Keep the defaults in the remaining steps to complete the installation. Corticon is added to the Developer Studio environment. 4. To start the OpenEdge web server, open the Proenv command prompt and enter protc start. Tutorial: Using Corticon Business Rules in a Progress OpenEdge Application 8

9 5. Next, modify PROPATH of OpenEdgeProject to access the OpenEdge BusinessRules API. Select Progress OpenEdge>PROPATH. Tutorial: Using Corticon Business Rules in a Progress OpenEdge Application 9

10 6. On the Properties page, select Add External Library and then select the OpenEdge.BusinessRules.pl file located at C:\Progress\OpenEdge\tty\rules and click OK. 7. For this sample application, you need to connect to the sports2000 database which is shipped with the product. Ensure you create a database connection with the database for OpenEdgeProject. Tutorial: Using Corticon Business Rules in a Progress OpenEdge Application 10

11 You have now set up the integrated development environment. Tutorial: Using Corticon Business Rules in a Progress OpenEdge Application 11

12 Exporting a dataset as a Business Rule Vocabulary Definition file In order for an OpenEdge application to use a Corticon Decision Service, the Corticon Vocabulary must be aligned with data definitions in the OpenEdge application. One way you can do that is to use an existing data definition (ProDataSet or temp-table) to create a Vocabulary in Corticon. In our sample application, the ProDataSet, dscust, contains information about the customer and customer order. To align the rules vocabulary with the data definitions in our ProDataSet, you can export the ProDataSet data definitions in a.brvd file. This file can then be imported into Corticon and used to generate the Vocabulary. Creating a.brvd file from an OpenEdge ProDataSet: 1. Open Developer Studio. From the menu bar, select File>Export>Progress OpenEdge>Business Rules Vocabulary Definition. The Export Business Rules Vocabulary Definition wizard appears. By default, the wizard displays the Workspace Resources tab that lists files in the workspace. Tutorial: Using Corticon Business Rules in a Progress OpenEdge Application 12

13 2. In the left tab, select dscustorder.i. The ProDataSet and its temp-tables in dscustorder.i appear on the right. Select all of them. 3. Next specify a file location and file name for your.brvd file. In the Definition file field, click Browse to specify C:\progress_education\OpenEdge\OEBusinessRules and name it FinanceReview.brvd and then click Finish. Tutorial: Using Corticon Business Rules in a Progress OpenEdge Application 13

14 You have now exported the data definition file as a.brvd file. The.brvd file can now be imported into Corticon and used to create the rules Vocabulary which can then be used to create a Decision Service. For this tutorial we will provide you with a Decision Service called FinanceReview. Tutorial: Using Corticon Business Rules in a Progress OpenEdge Application 14

15 Accessing and Using a Decision Service from an OpenEdge application To access and use a Corticon Decision Service in an OpenEdge application you must add code that does the following: Establishes a connection to the Decision Service. You must do this once for each web session. Invokes the Decision Service, passes data to it, and then receives the updated data. Receives messages from the Decision Service. Processes the messages and updates the database, as required There is an API available in OpenEdge with classes and methods for using a Corticon Decision Service. Developer Studio provides macros that make it easy to add code that uses the API to your application. Connecting to the Decision Service To add code that connects to a Corticon Decision Service, you use the BR-CONNECT macro. 1. Open the procedure file, InvokeFinanceReview.p, under OpenEdgeProject. Tutorial: Using Corticon Business Rules in a Progress OpenEdge Application 15

16 2. Type BR-CONNECT in the Main block after the Define statements and then press the Space bar. 3. Move the Using statements to the beginning of the Definitions section and keep the remaining macro code in the Main block. (Ignore any compilation errors at this point.) The file should look like this when you are done: Tutorial: Using Corticon Business Rules in a Progress OpenEdge Application 16

17 4. Modify the macro code to provide the URL for the Decision Service, the Version number of the Decision Service and the name of the Decision Service as follows: o Decision Service variable name : decisionservice o URL: o Version number: 1.0 o Service name: FinanceReview Tutorial: Using Corticon Business Rules in a Progress OpenEdge Application 17

18 5. Add a Connect() method statement after the Decision Service definition statement as follows: oconnection:connect(). 6. Delete the catch block inserted by the BR-CONNECT macro. Tutorial: Using Corticon Business Rules in a Progress OpenEdge Application 18

19 You will use the catch block inserted by the BR-INVOKE macro. Invoking the Decision Service To add code that invokes the Corticon Decision Service, you use the BR-INVOKE macro. 1. Navigate to PROCEDURE invokeds: and type BR-INVOKE and then press the Space bar. Since you inserted the BR-INVOKE macro in the same file that you inserted the BR-CONNECT macro code, you already have the required Using statements present in the file. So, delete the Using statement inserted by the BR-INVOKE macro. 2. In OpenEdge you can pass data using a Single input-output parameter, or using Separate input and output parameters. The macro inserts code for passing a ProDataSet as a Single inputoutput parameter. In the sample application you will use this method. Modify the inserted code as follows: a. In this sample application you will pass the dscust ProDataSet to the InvokeService() method, so you do not have to pass the dataset handle. Delete the happ Data variable definition. Also, delete the placeholder statement for passing the datasethandle. b. Replace the decisionserviceref placeholder with the Decision Service variable name you used earlier: decisionservice. c. You need to pass the dataset, dscust, to the InvokeService() method. So replace the dataset-handle placeholder in the InvokeService() method parameter with DATASET and provide dscust as the name of the dataset. d. Move the catch block to after the code line: Tutorial: Using Corticon Business Rules in a Progress OpenEdge Application 19

20 e. RUN displaymessages. This is what your procedure code should look like when you are done: Receiving and processing rule messages The Invokeservice method you just used sends data to the Decision Service and receives data back. In addition, a Decision Service may create rule messages while processing a rule. To receive rule messages created by the Decision Service you use the BR-GETMSG macro. In the sample application you will use BR-GETMSG to receive a rule message from the FinanceReview Decision Service and then you will add code to display the message. 1. Navigate to PROCEDURE displaymessages:, type BR-GETMSG, and press Space. 2. Move the following code to the Preprocessor Definitions section: {OpenEdge/BusinessRules/ttRulesMessage.i} 3. Because you do not need to use the dataset here, instead of replacing datasethandle with an actual value, simply delete the dataset handle definition for hbuffer. 4. Replace decisionserviceref with the actual Decision Service name: decisionservice. 5. The macro inserts starter code you can use to update the database. You need to decide how you want to process the messages and update data in your application. In our sample application, we simply want to display the message so: Tutorial: Using Corticon Business Rules in a Progress OpenEdge Application 20

21 a. Delete the following starter code within the FOR-EACH loop: hbuffer = datasethandle:get-buffer-handle(rulesmessage.tablename). IF NOT VALID-HANDLE(hBuffer) THEN NEXT. hbuffer:find-by-rowid(to-rowid(rulesmessage.datakeyvalue)) NO-ERROR. b. Insert the following code within the FOR-EACH loop: MESSAGE "Severity:" RulesMessage.Severity SKIP "Message:" RulesMessage.MessageText SKIP VIEW-AS ALERT-BOX. This is what the displaymessages procedure should look like when you are done: Tutorial: Using Corticon Business Rules in a Progress OpenEdge Application 21

22 Testing your application The last step to ensure that you can connect to and use the Decision Service is to test your application. Before you test your application, you must publish the FinanceReview Decision Service to Corticon server and ensure that the database connection of your application is present. Follow these steps to publish the FinanceReview Decision Service. o o o o Switch to Corticon Designer mode in your Developer Studio Ensure that the Corticon server is started. To start the server, open the Proenv command prompt and enter protc start. From the CorticonProject folder, select FinanceReview.erf and select Project>Publish in the menu-bar to publish it to the Corticon server. In the Server Connect page, provide the following details and follow the wizard to complete publishing. URL: username: admin password: admin To ensure that the database connection of your application is present right click the OpenEdgeProject folder>properties>progress OpenEdge> Database Connections. Tutorial: Using Corticon Business Rules in a Progress OpenEdge Application 22

23 Running the application 1. Right-click InvokeFinanceReview and then select Run as > Progress OpenEdge Application. 2. Enter Customer number 22. You should see that the Rating is good. The order terms value is maintained at Net30. Tutorial: Using Corticon Business Rules in a Progress OpenEdge Application 23

24 3. Run the procedure again. Enter Customer number 4. Note that the credit rating is fair and that the order terms value has decreased from Net30 to Net15. Congratulations! You have now successfully completed the Using Corticon Business Rules in a Progress OpenEdge Application tutorial. Tutorial: Using Corticon Business Rules in a Progress OpenEdge Application 24

Guided Exercise 1.1: Setting up the sample OpenEdge Data Object Services

Guided Exercise 1.1: Setting up the sample OpenEdge Data Object Services Guided Exercise 1.1: Setting up the sample OpenEdge Data Object Services Overview Before you can develop a web app, you must set up the back-end services for the data providers that the web app will use.

More information

Corticon Business Rules for OpenEdge

Corticon Business Rules for OpenEdge Corticon Business Rules for OpenEdge Contents Business Rules for OpenEdge... Error! Bookmark not defined. Progress Exchange 2013... Error! Bookmark not defined. Introduction... 3 Exercise 1 Model Corticon

More information

Guided exercise 1: Setting up your development environment

Guided exercise 1: Setting up your development environment Guided exercise 1: Setting up your development environment Overview In this guided exercise you will set up the development environment for creating Data Object Services. The exercise steps take approximately

More information

Creating a new CDC policy using the Database Administration Console

Creating a new CDC policy using the Database Administration Console Creating a new CDC policy using the Database Administration Console When you start Progress Developer Studio for OpenEdge for the first time, you need to specify a workspace location. A workspace is a

More information

USING APPSERVER SUPPORT IN OPENEDGE ARCHITECT

USING APPSERVER SUPPORT IN OPENEDGE ARCHITECT USING APPSERVER SUPPORT IN OPENEDGE ARCHITECT Fellow and OpenEdge Evangelist Document Version 1.0 August 2010 September, 2010 Page 1 of 17 DISCLAIMER Certain portions of this document contain information

More information

S/MIME on Good for Enterprise MS Online Certificate Status Protocol. Installation and Configuration Notes. Updated: November 10, 2011

S/MIME on Good for Enterprise MS Online Certificate Status Protocol. Installation and Configuration Notes. Updated: November 10, 2011 S/MIME on Good for Enterprise MS Online Certificate Status Protocol Installation and Configuration Notes Updated: November 10, 2011 Installing the Online Responder service... 1 Preparing the environment...

More information

WebSphere. Clips and Tacks: Getting started with the IBM BPM suite of products

WebSphere. Clips and Tacks: Getting started with the IBM BPM suite of products WebSphere Clips and Tacks: Getting started with the IBM BPM suite of products ii IBM WebSphere Clips and Tacks: Getting started with the IBM BPM suite of products Contents Chapter 1. Introduction........

More information

Using ILOG JRules in WebSphere Integration Developer

Using ILOG JRules in WebSphere Integration Developer Using ILOG JRules in WebSphere Integration Developer Table of Contents Introduction... 3 Goal... 3 Time to Complete... 3 Prerequisites... 3 System Setup... 3 Resources... 3 Overview... 4 The Application...

More information

TIBCO Jaspersoft running in AWS accessing a back office Oracle database via JDBC with Progress DataDirect Cloud.

TIBCO Jaspersoft running in AWS accessing a back office Oracle database via JDBC with Progress DataDirect Cloud. TIBCO Jaspersoft running in AWS accessing a back office Oracle database via JDBC with Progress DataDirect Cloud. This tutorial walks through the installation and configuration process to access data from

More information

Tutorial: Deploying a Progress Corticon Decision Service as a Web Service for.net. Product Version: Corticon 5.6

Tutorial: Deploying a Progress Corticon Decision Service as a Web Service for.net. Product Version: Corticon 5.6 Tutorial: Deploying a Progress Corticon Decision Service as a Web Service for.net Product Version: Corticon 5.6 Introduction... 3 Setting up the tutorial... 4 Step 1: Installing Corticon Server for.net...

More information

The Backend of OE Mobile in OpenEdge Mike Fechner, Consultingwerk Ltd. PUG Challenge Americas, June 2013

The Backend of OE Mobile in OpenEdge Mike Fechner, Consultingwerk Ltd. PUG Challenge Americas, June 2013 The Backend of OE Mobile in OpenEdge 11.2 Mike Fechner, Consultingwerk Ltd. PUG Challenge Americas, June 2013 Mike Fechner, Consultingwerk Ltd. Independent IT consulting organization Focusing on OpenEdge

More information

Contents. Anaplan Connector for MuleSoft

Contents. Anaplan Connector for MuleSoft SW Version 1.1.2 Contents 1 Overview... 3 2 Mulesoft Prerequisites... 4 3 Anaplan Prerequisites for the Demos... 5 3.1 export demo mule-app.properties file...5 3.2 import demo mule-app.properties file...5

More information

edocs Home > BEA AquaLogic Service Bus 3.0 Documentation > Accessing ALDSP Data Services Through ALSB

edocs Home > BEA AquaLogic Service Bus 3.0 Documentation > Accessing ALDSP Data Services Through ALSB Accessing ALDSP 3.0 Data Services Through ALSB 3.0 edocs Home > BEA AquaLogic Service Bus 3.0 Documentation > Accessing ALDSP Data Services Through ALSB Introduction AquaLogic Data Services Platform can

More information

Partner Integration Portal (PIP) Installation Guide

Partner Integration Portal (PIP) Installation Guide Partner Integration Portal (PIP) Installation Guide Last Update: 12/3/13 Digital Gateway, Inc. All rights reserved Page 1 TABLE OF CONTENTS INSTALLING PARTNER INTEGRATION PORTAL (PIP)... 3 DOWNLOADING

More information

Question: How do I move my mobile account from the Corporate to my Personal Account?

Question: How do I move my mobile account from the Corporate to my Personal Account? Question: How do I move my mobile account from the Corporate to my Personal Account? Answer: A user leaving Nortel can move his/her account off of the corporate program and into a personal liable account.

More information

DaDaDocs for Microsoft Dynamics 365 Administrator Guide

DaDaDocs for Microsoft Dynamics 365 Administrator Guide DaDaDocs for Microsoft Dynamics 365 Administrator Guide Requirements: Microsoft Dynamics 365 organization. PDFfiller user account. Installation and configuration 2 Install DaDaDocs 2 Update to the latest

More information

Composer Help. Import and Export

Composer Help. Import and Export Composer Help Import and Export 2/7/2018 Import and Export Contents 1 Import and Export 1.1 Importing External Files into Your Composer Project 1.2 Importing Composer Projects into Your Workspace 1.3 Importing

More information

Leverage the Power of Progress Developer Studio for OpenEdge. 8 th Oct, 2013

Leverage the Power of Progress Developer Studio for OpenEdge. 8 th Oct, 2013 Leverage the Power of Progress Developer Studio for OpenEdge Srinivas Kantipudi Sr Manager 8 th Oct, 2013 Swathi Yellavaram Principal Engineer Agenda Brief Introduction to Eclipse and PDS for OpenEdge

More information

ROLLBASE ACCESS TO ABL BUSINESS LOGIC VIA OPENCLIENT

ROLLBASE ACCESS TO ABL BUSINESS LOGIC VIA OPENCLIENT W HITE PAPER www. p rogres s.com ROLLBASE ACCESS TO ABL BUSINESS LOGIC VIA OPENCLIENT 1 TABLE OF CONTENTS Introduction... 2 What is Progress Rollbase?... 2 Installation and setup... 2 Expose Openedge Appserver

More information

TIBCO LiveView Web Getting Started Guide

TIBCO LiveView Web Getting Started Guide TIBCO LiveView Web Getting Started Guide Introduction 2 Prerequisites 2 Installation 2 Installation Overview 3 Downloading and Installing for Windows 3 Downloading and Installing for macos 4 Installing

More information

XIA Configuration Server

XIA Configuration Server XIA Configuration Server XIA Configuration Server v6 Cloud Services Quick Start Guide Tuesday, 20 May 2014 1 P a g e X I A C o n f i g u r a t i o n C l o u d S e r v i c e s Contents Overview... 3 Creating

More information

ROCK-POND REPORTING 2.1

ROCK-POND REPORTING 2.1 ROCK-POND REPORTING 2.1 Installation and Setup Guide Revised on 09/25/2014 TABLE OF CONTENTS ROCK-POND REPORTING 2.1... 1 SUPPORT FROM ROCK-POND SOLUTIONS... 2 ROCK-POND REPORTING OVERVIEW... 2 INFRASTRUCTURE

More information

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

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

More information

Javelin Workbench Tutorial. Version 3.0 September, 2009

Javelin Workbench Tutorial. Version 3.0 September, 2009 Javelin Workbench Tutorial Version 3.0 September, 2009 OVERVIEW The Javelin Workbench Beginner Tutorial walks you through the steps of building online feedback forms for the purposes of data collection.

More information

CST8152 Compilers Creating a C Language Console Project with Microsoft Visual Studio.Net 2005

CST8152 Compilers Creating a C Language Console Project with Microsoft Visual Studio.Net 2005 CST8152 Compilers Creating a C Language Console Project with Microsoft Visual Studio.Net 2005 The process of creating a project with Microsoft Visual Studio 2005.Net is similar to the process in Visual

More information

Instructions for Setting up i>clicker for Canvas on a Mac

Instructions for Setting up i>clicker for Canvas on a Mac Contents: Instructions for Setting up i>clicker for Canvas on a Mac Pages 1-4: Getting and setting up iclicker software Pages 5-8: Part 2: Setting up i>clicker on Canvas LMS Pages 9-10: Uploading grades

More information

CST8152 Compilers Creating a C Language Console Project with Microsoft Visual Studio.Net 2003

CST8152 Compilers Creating a C Language Console Project with Microsoft Visual Studio.Net 2003 CST8152 Compilers Creating a C Language Console Project with Microsoft Visual Studio.Net 2003 The process of creating a project with Microsoft Visual Studio 2003.Net is to some extend similar to the process

More information

Transfer Manager.NET Installation Guide

Transfer Manager.NET Installation Guide Transfer Manager.NET 3.4.0.0 Installation Guide Instructions for Downloading the Client... 2 New Installation... 3 Upgrading from Older Versions of TM.Net... 7 Upgrading from Transfer Manager 2.x or Earlier...

More information

PST for Outlook Admin Guide

PST for Outlook Admin Guide PST for Outlook 2013 Admin Guide Document Revision Date: Sept. 25, 2015 PST Admin for Outlook 2013 1 Populating Your Exchange Mailbox/Importing and Exporting.PST Files Use this guide to import data (Emails,

More information

Anaplan Connector Guide Document Version 2.1 (updated 14-MAR-2017) Document Version 2.1

Anaplan Connector Guide Document Version 2.1 (updated 14-MAR-2017) Document Version 2.1 Document Version 2.1 (updated 14-MAR-2017) Document Version 2.1 Version Control Version Number Date Changes 2.1 MAR 2017 New Template applied Anaplan 2017 i Document Version 2.1 1 Introduction... 1 1.1.

More information

BEAWebLogic. Portal. Tutorials Getting Started with WebLogic Portal

BEAWebLogic. Portal. Tutorials Getting Started with WebLogic Portal BEAWebLogic Portal Tutorials Getting Started with WebLogic Portal Version 10.2 February 2008 Contents 1. Introduction Introduction............................................................ 1-1 2. Setting

More information

Installing Diskeeper on Your Network

Installing Diskeeper on Your Network Installing Diskeeper on Your Network Diskeeper performance software can be installed in a variety of ways. If you are installing Diskeeper onto a single computer, no special actions are needed. Simply

More information

Anaplan Informatica Connector

Anaplan Informatica Connector Document Version 2.3 (updated 18-SEP-2017) Anaplan Informatica Connector Document Version 2.3 Version Control Version Number Date Changes 2.1 MAR 2017 New Template applied 2.2 AUG 2017 INTEGRA-1180 - New

More information

Multi-Sponsor Environment. SAS Clinical Trial Data Transparency User Guide

Multi-Sponsor Environment. SAS Clinical Trial Data Transparency User Guide Multi-Sponsor Environment SAS Clinical Trial Data Transparency User Guide Version 6.0 01 December 2017 Contents Contents 1 Overview...1 2 Setting up Your Account...3 2.1 Completing the Initial Email and

More information

Synthesis Tutorial #3 Organizing Data Within Synthesis Administration

Synthesis Tutorial #3 Organizing Data Within Synthesis Administration Synthesis Tutorial #3 Organizing Data Within Synthesis Administration Overview of the Tutorial This tutorial is intended to go over the steps involved in bringing data into the Synthesis Information Management

More information

User Guide. Introduction. Requirements. Installing and Configuring. C Interface for NI myrio

User Guide. Introduction. Requirements. Installing and Configuring. C Interface for NI myrio User Guide C Interface for NI myrio Introduction The C interface for NI myrio is designed for users who want to program the NI myrio using the C programming language or a programming language other than

More information

CST8152 Compilers Creating a C Language Console Project with Microsoft Visual Studio.Net 2010

CST8152 Compilers Creating a C Language Console Project with Microsoft Visual Studio.Net 2010 CST8152 Compilers Creating a C Language Console Project with Microsoft Visual Studio.Net 2010 The process of creating a project with Microsoft Visual Studio 2010.Net is similar to the process in Visual

More information

Sales Quote Demo Setup

Sales Quote Demo Setup Last updated: May 17, 2010 12:05 Sales Quote Demo Setup Sales Quote Demo Setup... 1 1. Create Quote Schema... 1 2. Set up data source in WebLogic server... 1 3. Perform Demo Seeding of Users & Groups...

More information

Outlook Integration. Installation & Configuration

Outlook Integration. Installation & Configuration Outlook Integration Installation & Configuration Table of Contents Outlook Integration Installation... 2 Outlook Integration Configuration... 4 Additional Notes for Outlook... 5 User Configuration... 6

More information

Version S Cincinnati, Suite 105 Tulsa, OK (918) Fax (918)

Version S Cincinnati, Suite 105 Tulsa, OK (918) Fax (918) Version 1.0 We pride ourselves in producing good stuff. If you have any questions, problems, or suggestions regarding this product, please contact us at: 810 S Cincinnati, Suite 105 Tulsa, OK 74119 (918)

More information

DocAve for Salesforce 2.1

DocAve for Salesforce 2.1 DocAve for Salesforce 2.1 This document is intended for anyone wishing to familiarize themselves with the user interface and basic functionality of AvePoint s DocAve for Salesforce tool. System Requirements

More information

USER GUIDE Azure Factory

USER GUIDE Azure Factory 2011 USER GUIDE Azure Factory Contents Setting up a Windows Azure Account... 2 Setting up your Server... 3 Creating a Database... 4 Manage the Database... 6 Generating the Azure Factory Project... 9 Publishing

More information

Installing Diskeeper on Your Network

Installing Diskeeper on Your Network Installing Diskeeper on Your Network Diskeeper can be installed in a variety of ways. If you are installing Diskeeper onto a single computer, no special actions are needed. Simply double-click the Diskeeper

More information

Azure 209x Practical Exercises Overview

Azure 209x Practical Exercises Overview Azure 209x Practical Exercises Overview This course includes optional exercises where you can try out the techniques demonstrated in the course for yourself. This guide lists the steps for the individual

More information

5. Digital Library Creation and Management 5.2. Greenstone digital library software practical

5. Digital Library Creation and Management 5.2. Greenstone digital library software practical 5. Digital Library Creation and Management 5.2. Greenstone digital library software practical Learning objectives To learn the procedure involved in the installation of GSDL To understand practical step

More information

Accessing the Progress OpenEdge AppServer. From Progress Rollbase. Using Object Script

Accessing the Progress OpenEdge AppServer. From Progress Rollbase. Using Object Script Accessing the Progress OpenEdge AppServer From Progress Rollbase Using Object Script Introduction Progress Rollbase provides a simple way to create a web-based, multi-tenanted and customizable application

More information

Resurs Bank. Magento 1 module. Checkout

Resurs Bank. Magento 1 module. Checkout Resurs Bank Magento 1 module Checkout Content Content Module installation Frontend Cart Shipping methods Discount code The iframe Data syncing Order placement Admin Payment methods Callback settings Salt-key

More information

Including Dynamic Images in Your Report

Including Dynamic Images in Your Report Including Dynamic Images in Your Report Purpose This tutorial shows you how to include dynamic images in your report. Time to Complete Approximately 15 minutes Topics This tutorial covers the following

More information

Picasa Photo Album using Feed Ticker Patrick Julicher Picasa Photo Album using Feed Ticker

Picasa Photo Album using Feed Ticker Patrick Julicher Picasa Photo Album using Feed Ticker Picasa Photo Album using Feed Ticker Page 1 of 10 Introduction There are many ways to create one or more great looking Photo Albums on a website. The way these albums are managed can differ greatly. Why

More information

Corticon Server: Web Console Guide

Corticon Server: Web Console Guide Corticon Server: Web Console Guide Copyright 2018 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved. These materials and all Progress software products are

More information

EGit/Gerrit Hands-on training #1: Installation and Configuration

EGit/Gerrit Hands-on training #1: Installation and Configuration EGit/Gerrit Hands-on training #1: Installation and Configuration Introduction To use git from Eclipse you need the EGit plug-in. With EGit you do nearly all of your gitrelated tasks. But for certain operations

More information

Important notice regarding accounts used for installation and configuration

Important notice regarding accounts used for installation and configuration System Requirements Operating System Nintex Reporting 2008 can be installed on Microsoft Windows Server 2003 or 2008 (32 and 64 bit supported for both OS versions). Browser Client Microsoft Internet Explorer

More information

Getting Started with the Bullhorn SOAP API and Java

Getting Started with the Bullhorn SOAP API and Java Getting Started with the Bullhorn SOAP API and Java Introduction This article is targeted at developers who want to do custom development using the Bullhorn SOAP API and Java. You will create a sample

More information

Click Studios. Passwordstate. Remote Session Launcher. Installation Instructions

Click Studios. Passwordstate. Remote Session Launcher. Installation Instructions Passwordstate Remote Session Launcher Installation Instructions This document and the information controlled therein is the property of Click Studios. It must not be reproduced in whole/part, or otherwise

More information

Moving HRtrack to a new computer

Moving HRtrack to a new computer First Reference Moving HRtrack to a new computer Process at a Glance Confirm the location of your HRtrack data Install HRtrack on the new computer Copy the HRtrack data folder from the old computer to

More information

USER GUIDE Deployment

USER GUIDE Deployment 2011 USER GUIDE Deployment This article will provide instructions on how to deploy your Code On Time application to a server. Our examples use the Northwind sample database and a Windows Virtual Private

More information

Getting Started with. File Hash Monitor. Version

Getting Started with. File Hash Monitor. Version Getting Started with File Hash Monitor Version 10.1.0.0 Copyright RES Software Development B.V. All rights reserved. Commercial Computer Software documentation/data Restricted Rights. RES and RES ONE are

More information

Melon, Inc. Melon Components Starter Kit

Melon, Inc. Melon Components Starter Kit User s Guide for Melon Components Starter Kit For additional information www.meloncomponents.com Contact us at info@meloncomponents.com 2010 All rights reserved Contents Overview... 3 Melon Components

More information

ZENworks Service Desk 8.0 Using ZENworks with ZENworks Service Desk. November 2018

ZENworks Service Desk 8.0 Using ZENworks with ZENworks Service Desk. November 2018 ZENworks Service Desk 8.0 Using ZENworks with ZENworks Service Desk November 2018 Legal Notices For information about legal notices, trademarks, disclaimers, warranties, export and other use restrictions,

More information

DB2 for z/os Stored Procedure support in Data Server Manager

DB2 for z/os Stored Procedure support in Data Server Manager DB2 for z/os Stored Procedure support in Data Server Manager This short tutorial walks you step-by-step, through a scenario where a DB2 for z/os application developer creates a query, explains and tunes

More information

Setting up IIS on Windows Server 2012, R1 and R2 (IIS 8.0 and 8.5)

Setting up IIS on Windows Server 2012, R1 and R2 (IIS 8.0 and 8.5) Setting up IIS on Windows Server 2012, R1 and R2 (IIS 8.0 and 8.5) Setting up IIS on Windows Server 2012, R1 and R2 (IIS 8.0 The procedures in this topic apply to Windows Server 2012 (IIS 8.0) and Windows

More information

Databases in Azure Practical Exercises

Databases in Azure Practical Exercises Databases in Azure Practical Exercises Overview This course includes optional exercises where you can try out the techniques demonstrated in the course for yourself. This guide lists the steps for the

More information

Installation Guide. 3CX CRM Plugin for ConnectWise. Single Tenant Version

Installation Guide. 3CX CRM Plugin for ConnectWise. Single Tenant Version Installation Guide 3CX CRM Plugin for ConnectWise Single Tenant Version "Copyright VoIPTools, LLC 2011-2016" Information in this document is subject to change without notice. No part of this document may

More information

ActiveFlow. Installation Guide. Revision Date: Feb 15, 2011

ActiveFlow. Installation Guide. Revision Date: Feb 15, 2011 ActiveFlow Revision Date: Feb 15, 2011 DISCLAIMER: The names of files, values and reports in this Guide may differ slightly from those in the example files supplied with your software. Page 1 The information

More information

Oracle Application Express: Administration 1-2

Oracle Application Express: Administration 1-2 Oracle Application Express: Administration 1-2 The suggested course agenda is displayed in the slide. Each lesson, except the Course Overview, will be followed by practice time. Oracle Application Express:

More information

Acronis Backup & Recovery 11 Beta Advanced Editions

Acronis Backup & Recovery 11 Beta Advanced Editions Acronis Backup & Recovery 11 Beta Advanced Editions Quick Start Guide Table of contents 1 Main components... 3 2 Supported operating systems... 3 3 Where do I install the components?... 3 4 What you need

More information

2015 Beta 2 Tutorials

2015 Beta 2 Tutorials 2015 Beta 2 Tutorials 2015 Beta 2 FOR WINDOWS & UNIX & LINUX Contents 1 Tutorial 2: Config, Deploy & Run the Application... 1 1.1 Task 1: Configure the database type... 1 1.2 Task 2: Configure the database

More information

Instant Charting and Reporting for Lotus Sametime. Installation Guide

Instant Charting and Reporting for Lotus Sametime. Installation Guide Instant Charting and Reporting for Lotus Sametime Installation Guide Copyright 2009 Instant Technologies August 30, 2010 1. SETTING UP THE MEASUREMENTS AND REPORTING DATABASE... 3 A. SIGN THE TEMPLATE...

More information

umapps Using umapps 6/14/2017 Brought to you by: umtech & The Center for Teaching & Learning

umapps Using umapps 6/14/2017 Brought to you by: umtech & The Center for Teaching & Learning umapps Using umapps Center for Teaching and Learning (CTL) 100 Administration Bldg., Memphis, TN 38152 Phone: 901.678.8888 Email: itstrainers@memphis.edu Center for Teaching and Learning Website 6/14/2017

More information

TIBCO LiveView Web Getting Started Guide

TIBCO LiveView Web Getting Started Guide TIBCO LiveView Web Getting Started Guide Contents Introduction... 1 Prerequisites... 1 Installation... 2 Installation Overview... 2 Downloading and Installing for Windows... 3 Downloading and Installing

More information

Reference Guide. Adding a Generic File Store - Importing From a Local or Network ShipWorks Page 1 of 21

Reference Guide. Adding a Generic File Store - Importing From a Local or Network ShipWorks Page 1 of 21 Reference Guide Adding a Generic File Store - Importing From a Local or Network Folder Page 1 of 21 Adding a Generic File Store TABLE OF CONTENTS Background First Things First The Process Creating the

More information

QS-AVI Address Cleansing as a Web Service for IBM InfoSphere Identity Insight

QS-AVI Address Cleansing as a Web Service for IBM InfoSphere Identity Insight QS-AVI Address Cleansing as a Web Service for IBM InfoSphere Identity Insight Author: Bhaveshkumar R Patel (bhavesh.patel@in.ibm.com) Address cleansing sometimes referred to as address hygiene or standardization

More information

R9.7 erwin License Server:

R9.7 erwin License Server: R9.7 erwin License Server: Installation and Setup This is a quick guide to setting-up a erwin DM License Server. NOTES: - Concurrent licensing is available for only erwin r8.2 and later releases! - Concurrent

More information

Introduction to IBM Rational HATS For IBM System i (5250)

Introduction to IBM Rational HATS For IBM System i (5250) Introduction to IBM Rational HATS For IBM System i (5250) Introduction to IBM Rational HATS 1 Lab instructions This lab teaches you how to use IBM Rational HATS to create a Web application capable of transforming

More information

Creating a PDF Report with Multiple Queries

Creating a PDF Report with Multiple Queries Creating a PDF Report with Multiple Queries Purpose This tutorial shows you how to create a PDF report that contains a table and graph utilizing two report queries. Time to Complete Approximately 15 minutes

More information

Tzunami Deployer Hummingbird DM Exporter Guide

Tzunami Deployer Hummingbird DM Exporter Guide Tzunami Deployer Hummingbird DM Exporter Guide Version 2.5 Copyright 2010. Tzunami Inc. All rights reserved. All intellectual property rights in this publication are owned by Tzunami, Inc. and protected

More information

Revised: 08/02/ Click the Start button at bottom left, enter Server Manager in the search box, and select it in the list to open it.

Revised: 08/02/ Click the Start button at bottom left, enter Server Manager in the search box, and select it in the list to open it. Mobile App Windows Authentication & SSL Config Revised: 08/02/2017 Job Aid This Job Aid is intended for agency IT staff and explains how to enable Windows Authentication and SSL for your mobile applications

More information

1. In Outlook click on the blue (2013) or yellow (2010) File tab in the top left corner of the window. 2. Click on + Add Account

1. In Outlook click on the blue (2013) or yellow (2010) File tab in the top left corner of the window. 2. Click on + Add Account This tutorial explains the two methods for accessing a shared mailbox. Users with Full Access to the mailbox should use method 1. Those who have folder level access to the mailbox should use method 2.

More information

Web-enable a 5250 application with the IBM WebFacing Tool

Web-enable a 5250 application with the IBM WebFacing Tool Web-enable a 5250 application with the IBM WebFacing Tool ii Web-enable a 5250 application with the IBM WebFacing Tool Contents Web-enable a 5250 application using the IBM WebFacing Tool......... 1 Introduction..............1

More information

MANAGING ANDROID DEVICES: VMWARE WORKSPACE ONE OPERATIONAL TUTORIAL VMware Workspace ONE

MANAGING ANDROID DEVICES: VMWARE WORKSPACE ONE OPERATIONAL TUTORIAL VMware Workspace ONE GUIDE APRIL 2019 PRINTED 17 APRIL 2019 MANAGING ANDROID DEVICES: VMWARE WORKSPACE ONE OPERATIONAL TUTORIAL VMware Workspace ONE Table of Contents Overview Introduction Audience Getting Started with Android

More information

eboard.com Instructional Guide

eboard.com Instructional Guide eboard.com Instructional Guide eboard is an Online Corkboard where you can quickly and easily post messages, photos, files, and links without having to learn how to use web publishing software and html.

More information

8x8 Virtual Office Salesforce Call Center Interface User Guide

8x8 Virtual Office Salesforce Call Center Interface User Guide 8x8 Virtual Office User Guide August 2012 The Champion For Business Communications Table of Contents 8x8 Virtual Office Salesforce Call Center App... 3 System Requirements...3 Installation... 4 Uninstalling

More information

Configuring the SMA 500v Virtual Appliance

Configuring the SMA 500v Virtual Appliance Using the SMA 500v Virtual Appliance Configuring the SMA 500v Virtual Appliance Registering Your Appliance Using the 30-day Trial Version Upgrading Your Appliance Configuring the SMA 500v Virtual Appliance

More information

WRITING CONSOLE APPLICATIONS IN C

WRITING CONSOLE APPLICATIONS IN C WRITING CONSOLE APPLICATIONS IN C with Visual Studio 2017 A brief step-by-step primer for ME30 Bryan Burlingame, San José State University The Visual Studio 2017 Community Edition is a free integrated

More information

Software Protection and Licensing Tutorial Starter Kit

Software Protection and Licensing Tutorial Starter Kit Software Protection and Licensing Tutorial Starter Kit Copyrights and Trademarks Copyright 2013 SafeNet, Inc. All rights reserved. HARDLOCK, HASP, SENTINEL, SUPERPRO and ULTRAPRO are registered trademarks

More information

Installing and Configuring hopto Work. System Requirements Be sure you have these system requirements to install and use hopto Work.

Installing and Configuring hopto Work. System Requirements Be sure you have these system requirements to install and use hopto Work. Installing and Configuring hopto Work To configure and install hopto Work on your Microsoft Windows server, you ll need to have Administrator status. Note: The recommended setup is that Active Directory

More information

Installing the Is2 Onsite Version - HVAC Office System

Installing the Is2 Onsite Version - HVAC Office System Installing the Is2 Onsite Version - HVAC Office System This document describes the full onsite server installation of the Is2 database files, the database server, and the application server. The full program

More information

Script.byu.edu SharePoint Instructions

Script.byu.edu SharePoint Instructions Script.byu.edu SharePoint Instructions Site Actions Menu Go to script.byu.edu, click on Authenticate at the bottom of page, you will be prompted to enter a username and password, use your netid and password

More information

CAL 9-2: Café Soylent Green Chapter 12

CAL 9-2: Café Soylent Green Chapter 12 CAL 9-2: Café Soylent Green Chapter 12 This version is for those students who are using Dreamweaver CC. You will be completing the Forms Tutorial from your textbook, Chapter 12 however, you will be skipping

More information

Unable to Import into Audatex Estimating

Unable to Import into Audatex Estimating Unable to Import into Audatex Estimating Overview When attempting to Import into Audatex Estimating, nothing happens, or an error message is displayed. Error Message One or more ActiveX controls could

More information

Migration to Unified CVP 9.0(1)

Migration to Unified CVP 9.0(1) The Unified CVP 9.0(1) requires Windows 2008 R2 server. The Unified CVP versions prior to 9.0(1) run on Windows 2003 server which do not support the upgrade to Unified CVP 9.0(1). Unified CVP supports

More information

Password Reset Utility. Configuration

Password Reset Utility. Configuration Password Reset Utility Configuration 1 Table of Contents 1. Uninstalling Legacy Password Reset... 2 2. Password Reset Utility: How to deploy and configure via Group Policy... 2 3. Configuring Group Policy

More information

EMS MASTER CALENDAR Installation Guide

EMS MASTER CALENDAR Installation Guide EMS MASTER CALENDAR Installation Guide V44.1 Last Updated: May 2018 EMS Software emssoftware.com/help 800.440.3994 2018 EMS Software, LLC. All Rights Reserved. Table of Contents CHAPTER 1: Introduction

More information

Active Directory Validation - User Guide

Active Directory Validation - User Guide 2017-02-10 Orckestra, Europe Nygårdsvej 16 DK-2100 Copenhagen Phone +45 3915 7600 www.orckestra.com Contents 1 INTRODUCTION... 3 1.1 Who Should Read This Guide? 3 1.2 Getting Started 4 2 CREATING A CMS

More information

Creating an Adobe Connect Presentation: Using Your Personal Computer to Record and Publish

Creating an Adobe Connect Presentation: Using Your Personal Computer to Record and Publish Creating an Adobe Connect Presentation: Using Your Personal Computer to Record and Publish This document outlines the process of creating a streaming presentation using PowerPoint 2007. Note: Before beginning

More information

Lab - Share Resources in Windows

Lab - Share Resources in Windows Introduction In this lab, you will create and share a folder, set permissions for the shares, create a Homegroup and a Workgroup to share resources, and map a network drive. Due to Windows Vista lack of

More information

What s New in OpenEdge 11.4?

What s New in OpenEdge 11.4? What s New in OpenEdge 11.4? Or, Why should I upgrade? Brian Bowman Principal Product Manager Progress Software Happy Birthday, OpenEdge! 2 Introducing Progress OpenEdge 11.4 Why Make the Move? Staying

More information

Quick Links on Google Apps. Information about ACC Google Apps and Mail can be found here at

Quick Links on Google Apps. Information about ACC Google Apps and Mail can be found here at Quick Links on Google Apps Information about ACC Google Apps and Mail can be found here at http://www.austincc.edu/itdocs/google/index.php. 1. Transitioning to Google Apps Mail from Microsoft Outlook Since

More information

Before beginning the installation, make sure you have received the following software media:

Before beginning the installation, make sure you have received the following software media: Overview The ACS Televideo Terminal Emulation software allows Autologue customer s, who have an IBM compatible PC with Windows 9X or above, to be connected via Ssh to the Autologue Computer System and

More information

CALLING AN OPENEDGE WEB SERVICE

CALLING AN OPENEDGE WEB SERVICE CALLING AN OPENEDGE WEB SERVICE Fellow and OpenEdge Evangelist Document Version 1.0 August 2011 August, 2011 Page 1 of 16 DISCLAIMER Certain portions of this document contain information about Progress

More information