These are the steps you will take to complete the tutorial. They are also the common processes through which you will create your own operations.

Size: px
Start display at page:

Download "These are the steps you will take to complete the tutorial. They are also the common processes through which you will create your own operations."

Transcription

1 Quick Start Tutorial The goal of this tutorial is to help new users get acquainted with the Jitterbit Integration platform. This tutorial gives you hands-on experience using Jitterbit to transform information between two systems. By then end of this tutorial you should be familiar with the main components of the Jitterbit integration system. Scenario The tutorial guides you through the creation of an integration that extracts purchase orders from a database, transforms it into an XML document and posts that document to a local file share. Summary of Steps These are the steps you will take to complete the tutorial. They are also the common processes through which you will create your own operations. 1. Create a Project 2. Create an Operation 3. Create a Source 4. Create a Target 5. Create a Transformation 6. Activate and Monitor Your Operation Create a Project If you haven't done so already, launch the Jitterbit Integration Environment application by choosing Launch Jitterbit Integration Environment from your Start menu. You will be given two choices: Integration This option allows you to create new integration projects or edit previously saved projects. Administration - This option allows you to jump straight into Jitterbit s administration tools for monitoring the integration server activity, set user/group privileges, and more. Leave the default Integration selected. In this window you are given the following options: Open Existing Integration Project Create New Integration Project Import Jitterpak For the purposes of the tutorial, select Create New Integration Project and enter DB to XML Tutorial as the project name. You can also specify or browse to the

2 location on your local computer where the project details should be stored. By default your project is stored in the /projects/ folder of your Jitterbit installation. Click Create to continue. The main Integration environment now appears, with a hierarchical tree on the left. In order to test the integration as you create it, you need to connect to the Jitterbit Integration Server. Click the Login button in the main toolbar to launch the Login window. Enter the Jitterbit Server name, the User name and Password for the Jitterbit Server you wish to connect to. You will have entered these details when you first installed the software. Click Login to connect to the server.

3 If your connection is successful, the Server and User ID will appear in the upper right corner of the main integration window. Create an Operation Next, you will create an operation in which you will define and assemble all the components required to define the integration. Right click Operations in the Project Tree and select New Operation from the popup menu. A new operation process appears in its own New Operation tab in the right pane of the window. Select Transformation for the type of operation to create. Type DB to XML Process into the Name field. Create a Source A source instructs Jitterbit how to retrieve its source data for the integration - in this tutorial the source will be a specific database. Right click Sources in the Project Tree and select New Source from the popup menu. The new source appears in its own New Source tab in the right pane. In the Name field, enter MyDatabase. Choose Database from the Type drop-down menu. Click Select to the right of the Driver field and select PostgreSQL ANSI (ODBC) from the database driver list. Click OK. 1. Enter the server name or IP address for your PostgreSQL database (installed with Jitterbit Integration Server). If you have installed the Jitterbit Integration Server on the same machine you can enter localhost here. 2. Enter JitterbitTutorial in the Database Name field. 3. Enter the appropriate login (Hint: the default is postgres) in the Login field, then click the Password button and enter the password for your PostgreSQL database (Hint: you will have provided this password during installation).

4 Click the Save button in toolbar at the top of the source definition screen. Test the source to confirm it can connect. Click the Test Connection button in the source's toolbar. If it connects successfully close the Source tab and return to the Operation tab. Create a Target Targets define where you want to put your information; in this tutorial, our target will be an XML file on a local file share. Right click Targets in the Project Tree and select New Target from the popup menu. Your new target appears in its own New Target tab in the right pane. In the Name field, enter MyXML. Note: You will need to setup a file share on your local system in order to view the target output for this tutorial. If you choose not to, you will be able to continue with the tutorial and build and test the required transformation but you will be unable to successfully run the operation and view the resulting xml file. Alternatively, you can also set up an FTP Target. Choose File Share from the Type dropdown menu. Enter the path to your local file share in the Path field. Enter the appropriate login and password for your file share. Finally, we want to use the Name File(s) field to generate a unique file name that incorporates a time stamp: enter MyPurchaseOrder_[date][time].xml, to create a file that will be unique.

5 Click the Save button in either the main toolbar or the target's toolbar. Test your new target to confirm it can connect. Click the Test Connection button in the target's toolbar. Close this Target tab and return to the main Operation tab. If your new target isn't automatically loaded into your operation's Target field, select it from the Target dropdown list. Click the Save button in the operation's toolbar to save your work. Create a Transformation Transformations let you map data from your source to a target format. In our transformation we will use two tables from the database source and map them to an XML file. Right click Transformations in the Project Tree and select New Transformation from the popup menu. The transformation wizard. In the Name field, enter MyTransformation. Since we plan to transform from a database to XML choose Database from the Source drop-down list and XML from the Target drop-down list. Click Next in the toolbar to continue.

6 The New Transformation: Source Setup: Database screen opens. Choose MyDatabase in the Database Source drop-down list. Click Next in the toolbar to continue. All the database tables are now listed. Double-click the Order Header and Order Detail tables in the Available Tables list to move them to the Selected Tables window. Click Next to continue. In the Hierarchical Relationships screen you will need to join these tables. Choose the following and then click Join Tables. The Parent (table) select "OrderHeader" The Child (table) select "OrderDetail"

7 A Join Properties window will pop up. Drag OrderID under the OrderHeader column to the OrderID under OrderDetail to link the columns. For Join Type leave 1 to N selected. This tells the system that there can be many OrderDetail records for every OrderHeader. Click Next in the toolbar to continue. The SQL WHERE clause lets you optionally specify a filter for the source data. We don't need it for this exercise, so click Next in the toolbar to continue. Now you need to select the structure of your target XML file by loading a.dtd (document type definition) or schema file. Select the Upload an XML Structure File radio button and click Browse. Navigate to the folder where you installed the Jitterbit Server. You will find an example.dtd file in \Jitterbit Integration Server\Tutorials\DbToXml\PurchaseOrder.dtd. Select PurchaseOrder.dtd and click Open. Click Next in the toolbar to continue. The system will warn you that there is more than one root to choose from in this XML Structure. Scroll down and select PurchaseOrders from the list. This instructs Jitterbit which structure in the XML file to use in this particular transformation. In this case we will use the Purchase Order (PurchaseOrders) structure. Click Next in the toolbar to continue. On the Options screen, leave validation checked. Click Save. You are now ready to map the two data structures. You should now be in the main Transformation Mapping window. Map the appropriate pairs of source and target data elements by: Selecting a source element that you want to transform to the target. Selecting the appropriate target that will hold data from the selected source element. Clicking the Map button at the bottom of the screen to save the mapping relationship. Alternatively, you can also drag and drop the source element onto the target element.

8 Hint: You can expand the data element trees by clicking the + button below each pane. You will need to map the following data elements: Source (Database) OrderHeader > OrderID OrderHeader > OrderID OrderHeader > OrderCreated OrderHeader > OrderDetail > OrderItemID OrderHeader > OrderDetail > Product OrderHeader > OrderDetail > Price OrderHeader > OrderDetail > Quantity Target (XML Schema) PO > Test_Required PO > header > headerone > PO_number PO > header > headerone > order_date PO > body > item > line_item_id PO > body > item > merchant_sku PO > body > item > unit_retail_price PO > body > item > quantity Test Your Transformation. Jitterbit has the ability to test your transformations on-the-fly by allowing you to load sample data and run a test transformation. This process does not actually run your operation but gives you a preview of how your data will look in the Target pane of the Transformation window. Click the Transformation Toolkit button in the tool bar and select Test > Transformation. Jitterbit will require that you deploy your Source and Target to the server. Click Deploy. Jitterbit will ask you if you want to load source data. Click Yes. A window will pop up asking you to define an optional WHERE clause. This is not required. Click OK. The results of your test transformation can now be seen in both the Source and Target panes.

9 Click the Save button in the transformation screen to save your changes. You now have a new transformation definition. You can now close the Transformation window and return to your operation. Build Your Integration Process You have now defined your Source, Target, and Transformation. It is time to pull all these pieces together to build your operation. To fill in your process map you have two options: 1. Drag the Source, Target, and Transformation onto the appropriate placeholder in the process designer. 2. Right click on the placeholders in the process designer, click Select Existing and add your Source, Target, or Transformation from the popup menu. Activate and Monitor Your Operation Now that you've created your operation by configuring a set of definitions, it s time to activate it. Up until now, all the modifications you've made to your project and operation are on a local copy of the project. Send a copy of your validated project to the server by clicking the Deploy button in the main toolbar. If you have not saved your operation, you will be asked to do so before deploying. Jitterbit will ask

10 which elements you wish to deploy to the server. The default is Everything. Click Deploy. Once the project has been deployed, click the Activate button in the operation's toolbar. Doing so will immediately place the operation into the server's queue, regardless of its schedule setting. Assuming that the server is running, your operation will be fed into the system queue. Click on the Queue button in the operation's toolbar to view the operation queue. Click the Refresh button in the Queue window to update the entry: you should see your operation disappear once it has been activated. If you do not see your operation, it has already been process. Close the Queue window. Note: If you have no other operations running, you will likely not see operations sitting in the queue because they are processed quickly if the server does not have a backlog of work. Look at the operation's log file to check the transformation's status: click the Log button in the operation's toolbar to open the log window. If everything has worked as expected, you will see a successful (normal) entry in the log. Otherwise, click on any error entry to get more information on the nature of the problem. You can now go into your local file share and view the results in the xml document that has been created. Congratulations! You've completed the tutorial and should now have an understanding of how to start building your own projects and operations, and how to load them in the queue to activate their transformations. If you have questions about this tutorial or other Jitterbit features please contact us at or visit the Forums at /forums.

Database to XML Wizard

Database to XML Wizard Database to XML Wizard Jitterbit Connect TM provides a fast, easy route to data transformation. This is made possible through a wizard-based integration tool built directly into Jitterbit. The wizard executes

More information

Connecting XML Data Sources to Word Using Windward Studios Report Designer

Connecting XML Data Sources to Word Using Windward Studios Report Designer Connecting XML Data Sources to Word Using Windward Studios Report Designer Welcome to Windward Studios Report Designer Windward Studios takes a unique approach to reporting. Our Report Designer sits directly

More information

Create Tests Import Tests from Word Publish Tests to Bb Print Tests Retrieve Questions From Bb

Create Tests Import Tests from Word Publish Tests to Bb Print Tests Retrieve Questions From Bb Respondus Software While you can create assessment questions directly in Blackboard, it is often much more efficient to use Respondus software to create your exams offline, then upload them directly into

More information

Connecting SQL Data Sources to Excel Using Windward Studios Report Designer

Connecting SQL Data Sources to Excel Using Windward Studios Report Designer Connecting SQL Data Sources to Excel Using Windward Studios Report Designer Welcome to Windward Studios Report Designer Windward Studios takes a unique approach to reporting. Our Report Designer sits directly

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

Toolkit Activity Installation and Registration

Toolkit Activity Installation and Registration Toolkit Activity Installation and Registration Installing the Toolkit activity on the Workflow Server Install the Qfiche Toolkit workflow activity by running the appropriate SETUP.EXE and stepping through

More information

EPiSERVER Content Management System

EPiSERVER Content Management System Last Updated: 11/05/2014 Refreshable/Rotator Hero Slider Blocks EPiSERVER Content Management System A Refreshable Hero Slider is created and housed in the Global Components Folders within the department

More information

Configure Outlook to use port 587 with authentication

Configure Outlook to use port 587 with authentication Configure Outlook 2003 email to use port 587 with authentication In order to send and receive E-mail through your website hosted with FastWebEngine, you can configure Outlook as your preferred E-mail client.

More information

[ Getting Started with Analyzer, Interactive Reports, and Dashboards ] ]

[ Getting Started with Analyzer, Interactive Reports, and Dashboards ] ] Version 5.3 [ Getting Started with Analyzer, Interactive Reports, and Dashboards ] ] https://help.pentaho.com/draft_content/version_5.3 1/30 Copyright Page This document supports Pentaho Business Analytics

More information

GDN Gladson Delivery Network

GDN Gladson Delivery Network GDN Gladson Delivery Network GENERAL DESIGN The Web site is set up like a shopping cart. First, you will add items to your cart. Second, you will submit your cart for processing. And lastly, once your

More information

Access Review. 4. Save the table by clicking the Save icon in the Quick Access Toolbar or by pulling

Access Review. 4. Save the table by clicking the Save icon in the Quick Access Toolbar or by pulling Access Review Relational Databases Different tables can have the same field in common. This feature is used to explicitly specify a relationship between two tables. Values appearing in field A in one table

More information

Working with Databases

Working with Databases Working with Databases TM Control Panel User Guide Working with Databases 1 CP offers you to use databases for storing, querying and retrieving information. CP for Windows currently supports MS SQL, PostgreSQL

More information

Mail Merge. To Use Mail Merge: Selecting Step by Step Mail Merge Wizard. Step 1:

Mail Merge. To Use Mail Merge: Selecting Step by Step Mail Merge Wizard. Step 1: Mail Merge When you are performing a Mail Merge, you will need a Word document (you can start with an existing one or create a new one), and a recipient list, which is typically an Excel workbook. Watch

More information

The following instructions cover how to edit an existing report in IBM Cognos Analytics.

The following instructions cover how to edit an existing report in IBM Cognos Analytics. IBM Cognos Analytics Edit a Report The following instructions cover how to edit an existing report in IBM Cognos Analytics. Navigate to Cognos Cognos Analytics supports all browsers with the exception

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

BPEL Orchestration. 4.1 Introduction. Page 1 of 31

BPEL Orchestration. 4.1 Introduction. Page 1 of 31 BPEL Orchestration 4.1Introduction... 1 4.2Designing the flow... 2 4.3Invoking the CreditCardStatus service... 2 4.4Designing the BPEL approval process... 8 4.5Modifying the Mediator component... 18 4.6Deploying

More information

Navigate to Cognos Cognos Analytics supports all browsers with the exception of Microsoft Edge.

Navigate to Cognos Cognos Analytics supports all browsers with the exception of Microsoft Edge. IBM Cognos Analytics Create a List The following instructions cover how to create a list report in IBM Cognos Analytics. A list is a report type in Cognos that displays a series of data columns listing

More information

Introduction to IBM Data Studio, Part 1: Get started with IBM Data Studio, Version and Eclipse

Introduction to IBM Data Studio, Part 1: Get started with IBM Data Studio, Version and Eclipse Introduction to IBM Data Studio, Part 1: Get started with IBM Data Studio, Version 1.1.0 and Eclipse Install, work with data perspectives, create connections, and create a project Skill Level: Intermediate

More information

Introduction to IBM Data Studio, Part 1: Get started with IBM Data Studio, Version and Eclipse

Introduction to IBM Data Studio, Part 1: Get started with IBM Data Studio, Version and Eclipse Introduction to IBM Data Studio, Part 1: Get started with IBM Data Studio, Version 1.1.0 and Eclipse Install, work with data perspectives, create connections, and create a project Skill Level: Intermediate

More information

Create Your First Print-Quality Reports

Create Your First Print-Quality Reports Create Your First Print-Quality Reports This document supports Pentaho Business Analytics Suite 5.0 GA and Pentaho Data Integration 5.0 GA, documentation revision August 28, 2013, copyright 2013 Pentaho

More information

Alfresco Alfresco Explorer QuickStart

Alfresco Alfresco Explorer QuickStart Alfresco 4.2.0 Contents... 3 Important notes...3 Starting with Explorer... 3 Toolbar... 4 Sidebar... 4 Working area...4 Logging in... 5 Adding new users...5 Creating spaces and content... 7 Creating a

More information

Colligo Engage Outlook App 7.1. Offline Mode - User Guide

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

More information

ODBC Setup MS Access 2007 Overview Microsoft Access 2007 can be utilized to create ODBC connections. This page will show you the steps to create an

ODBC Setup MS Access 2007 Overview Microsoft Access 2007 can be utilized to create ODBC connections. This page will show you the steps to create an ODBC Setup MS Access 2007 Overview Microsoft Access 2007 can be utilized to create ODBC connections. This page will show you the steps to create an ODBC connection. 1. To open Access 2007, click Start

More information

Colligo Engage Outlook App 7.1. Connected Mode - User Guide

Colligo Engage Outlook App 7.1. Connected Mode - User Guide 7.1 Connected Mode - User Guide Contents Colligo Engage Outlook App 1 Benefits 1 Key Features 1 Platforms Supported 1 Installing and Activating Colligo Engage Outlook App 2 Checking for Updates 3 Updating

More information

Static query Switch to a dynamic query Hints and Tips Support... 12

Static query Switch to a dynamic query Hints and Tips Support... 12 Page 1 of 12 Product: Database Accelerator Implement Static and Dynamic Queries Title: using QueryDB In the QueryDB User Guide we discussed the possibilities offered by this web service. This document

More information

Amazon Relational Database Service. Getting Started Guide API Version

Amazon Relational Database Service. Getting Started Guide API Version Amazon Relational Database Service Getting Started Amazon Relational Database Service: Getting Started Copyright 2010 Amazon Web Services LLC or its affiliates. All rights reserved. Table of Contents Get

More information

To request permission to access the wiki, or request a new wiki space, open a web support ticket:

To request permission to access the wiki, or request a new wiki space, open a web support ticket: What is a wiki? A wiki is a website whose users can edit pages within a web browser. In some cases, the information is public, and in others it is limited to specific users or groups of users. You may

More information

Build an App From a SAP Web IDE Template. Page 1/26

Build an App From a SAP Web IDE Template. Page 1/26 Build an App From a SAP Web IDE Template Page 1/26 1. Click on Services Tab Click on the Services tab in the navigation bar. Page 2/26 2. Open SAP Web IDE Scroll down and then click the SAP Web IDE tile

More information

SharePoint AD Administration Tutorial for SharePoint 2007

SharePoint AD Administration Tutorial for SharePoint 2007 SharePoint AD Administration Tutorial for SharePoint 2007 1. General Note Please note that AD Administration has to be activated before it can be used. For further reference, please see our Product Installation

More information

'phred dist acd.tar.z'

'phred dist acd.tar.z' Phred is free for academic use but does require registration and for you to obtain a licence. Please visit http://www.phrap.org/consed/consed.html#howtoget and follow the instructions. A copy of the Phred

More information

HTML REPORT VIEWER. Intellicus Enterprise Reporting and BI Platform. Intellicus Technologies

HTML REPORT VIEWER. Intellicus Enterprise Reporting and BI Platform. Intellicus Technologies HTML REPORT VIEWER Intellicus Enterprise Reporting and BI Platform Intellicus Technologies info@intellicus.com www.intellicus.com HTML Viewer i Copyright 2012 Intellicus Technologies This document and

More information

Administration. Training Guide. Infinite Visions Enterprise Edition phone toll free fax

Administration. Training Guide. Infinite Visions Enterprise Edition phone toll free fax Administration Training Guide Infinite Visions Enterprise Edition 406.252.4357 phone 1.800.247.1161 toll free 406.252.7705 fax www.csavisions.com Copyright 2005 2011 Windsor Management Group, LLC Revised:

More information

Starting ParTEST. Select Start, Programs ParTEST ParTEST Enter your User Name and password

Starting ParTEST. Select Start, Programs ParTEST ParTEST Enter your User Name and password Starting ParTEST User Login Select Start, Programs ParTEST ParTEST Enter your User Name and password If you still logged into ParTEST as the Administrator Select File, Logout. Enter your User name and

More information

Procedure to Create Custom Report to Report on F5 Virtual Services

Procedure to Create Custom Report to Report on F5 Virtual Services Procedure to Create Custom Report to Report on F5 Virtual Services Summary: The purpose of this Application Note is to provide a procedure to report on F5 Load Balancer Virtual Services. The report uses

More information

Policy Commander Console Guide - Published February, 2012

Policy Commander Console Guide - Published February, 2012 Policy Commander Console Guide - Published February, 2012 This publication could include technical inaccuracies or typographical errors. Changes are periodically made to the information herein; these changes

More information

CalPlan. Creating a Unit Plan Navigating CalPlan Workbook 1/25/18

CalPlan. Creating a Unit Plan Navigating CalPlan Workbook 1/25/18 CalPlan Creating a Unit Plan Workbook 1/25/18 Table of Contents Exercise 1: Log into the Workspace & Run a CalPlan Report... 3 Exercise 2: Launching CalPlan and Setting Your Entity... 10 Exercise 3: Actualized

More information

1) Installing Bluetooth software for Windows (A) Place installation CD into PC and setup should launch automatically.

1) Installing Bluetooth software for Windows (A) Place installation CD into PC and setup should launch automatically. 1) Installing Bluetooth software for Windows (A) Place installation CD into PC and setup should launch automatically. If setup does not launch, use Windows Explorer to navigate to the appropriate CD- ROM

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

[Type text] Windows Quick Start Guide Version 3.5

[Type text] Windows Quick Start Guide Version 3.5 [Type text] Windows Quick Start Guide Version 3.5 PRO-STUDY QUICK START GUIDE Contents The Pro-Study Toolbar... 2 Getting Started with a Project... 3 Selecting Different Projects... 4 Categories... 4 Collecting

More information

Welcome to the CP Portal

Welcome to the CP Portal Welcome to the CP Portal Access your school documents from home Launch Internet Explorer and navigate to: https://files.cpcsc.k12.in.us/htcomnet/ Click on Continue to this website (not recommended) Key

More information

SQL Server Reporting Services (SSRS) is one of SQL Server 2008 s

SQL Server Reporting Services (SSRS) is one of SQL Server 2008 s Chapter 9 Turning Data into Information with SQL Server Reporting Services In This Chapter Configuring SQL Server Reporting Services with Reporting Services Configuration Manager Designing reports Publishing

More information

Introduction. Mail Merge. Word 2010 Using Mail Merge. Video: Using Mail Merge in Word To Use Mail Merge: Page 1

Introduction. Mail Merge. Word 2010 Using Mail Merge. Video: Using Mail Merge in Word To Use Mail Merge: Page 1 Word 2010 Using Mail Merge Introduction Page 1 Mail merge is a useful tool that will allow you to easily produce multiple letters, labels, envelopes, name tags and more using information stored in a list,

More information

Open Respondus and confirm that the Current Personality dropdown is set to WebCT Vista/CE 8.x.

Open Respondus and confirm that the Current Personality dropdown is set to WebCT Vista/CE 8.x. R03-Moving Assessments Using Respondus Blackboard Learn: Respondus This handout contains the exact same information as the corresponding Blackboard Learn Respondus videos which are available at http://www.youtube.com/playlist?list=plhnbpaq59j3htgpjmbxrmzb0a4zxkj1yi.

More information

You can make certain sections of the text clickable by creating hyperlinks. Once clicked, these links navigate users to different

You can make certain sections of the text clickable by creating hyperlinks. Once clicked, these links navigate users to different You can make certain sections of the text clickable by creating hyperlinks. Once clicked, these links navigate users to different pages or, as described in working with anchors, to different sections of

More information

Dreamweaver MX The Basics

Dreamweaver MX The Basics Chapter 1 Dreamweaver MX 2004 - The Basics COPYRIGHTED MATERIAL Welcome to Dreamweaver MX 2004! Dreamweaver is a powerful Web page creation program created by Macromedia. It s included in the Macromedia

More information

Content Matrix. Evaluation Guide. February 12,

Content Matrix. Evaluation Guide. February 12, Content Matrix Evaluation Guide February 12, 2018 www.metalogix.com info@metalogix.com 202.609.9100 Copyright International GmbH, 2002-2018 All rights reserved. No part or section of the contents of this

More information

Roxen Content Provider

Roxen Content Provider Roxen Content Provider Generation 3 Templates Purpose This workbook is designed to provide a training and reference tool for placing University of Alaska information on the World Wide Web (WWW) using the

More information

UTAS CMS. Easy Edit Suite Workshop V3 UNIVERSITY OF TASMANIA. Web Services Service Delivery & Support

UTAS CMS. Easy Edit Suite Workshop V3 UNIVERSITY OF TASMANIA. Web Services Service Delivery & Support Web Services Service Delivery & Support UNIVERSITY OF TASMANIA UTAS CMS Easy Edit Suite Workshop V3 Web Service, Service Delivery & Support UWCMS Easy Edit Suite Workshop: v3 Contents What is Easy Edit

More information

Introduction. Paradigm Publishing. SNAP for Microsoft Office SNAP for Our Digital World. System Requirements

Introduction. Paradigm Publishing. SNAP for Microsoft Office SNAP for Our Digital World. System Requirements Introduction Paradigm Publishing Paradigm understands the needs of today s educators and exceeds the demand by offering the latest technological advancements for coursework settings. With the success of

More information

Table of Contents. Tutorial The Basics Prerequisites Concepts... 1 Information... 1 Learning Objectives... 2

Table of Contents. Tutorial The Basics Prerequisites Concepts... 1 Information... 1 Learning Objectives... 2 Copyright Notice All information contained in this document is the property of ETL Solutions Limited. The information contained in this document is subject to change without notice and does not constitute

More information

Create and print labels for a mass mailing

Create and print labels for a mass mailing Create and print labels for a mass mailing 1. On the Tools menu, point to Letters and Mailings, and then click Mail Merge Wizard. 2. Under Select document type, click Labels. The active document becomes

More information

Administrative Training Mura CMS Version 5.6

Administrative Training Mura CMS Version 5.6 Administrative Training Mura CMS Version 5.6 Published: March 9, 2012 Table of Contents Mura CMS Overview! 6 Dashboard!... 6 Site Manager!... 6 Drafts!... 6 Components!... 6 Categories!... 6 Content Collections:

More information

Introduction & Navigation

Introduction & Navigation Introduction & Navigation Logging In to Marketing Cloud 1. Open a tab in either the Chrome or Firefox web browser. 2. Place your cursor in the URL bar then type mc.exacttarget.com. 3. Strike the Enter

More information

Managing your content with the Adobe Experience Manager Template Editor. Gabriel Walt Product Manager twitter.com/gabrielwalt

Managing your content with the Adobe Experience Manager Template Editor. Gabriel Walt Product Manager twitter.com/gabrielwalt Managing your content with the Adobe Experience Manager Template Editor Gabriel Walt Product Manager twitter.com/gabrielwalt Table of Contents 1. Introduction 3 1.1 Overview 3 1.2 Prerequisites 3 2. Getting

More information

[Type text] Quick Start Guide Version 3

[Type text] Quick Start Guide Version 3 [Type text] Quick Start Guide Version 3 PRO-STUDY QUICK START GUIDE Contents The Pro-Study Toolbar... 2 Getting Started with a Project... 3 Selecting Different Projects... 4 Categories... 4 Collecting

More information

Here are the topics covered in this tutorial:

Here are the topics covered in this tutorial: FEATURES IN-DEPTH tutorials Presenting Your Work To preserve and present your work, you have to save and print your worksheets. This tutorial explains how to pull together the elements of a printed piece

More information

SilverStripe - Website Administrators

SilverStripe - Website Administrators SilverStripe - Website Administrators Managing Roles and Permissions In this section: Understand roles and security groups Learn how to set up a role Learn how to edit a role Learn how to create a security

More information

Dynamic Dependent Drop-downs

Dynamic Dependent Drop-downs Dynamic Dependent Drop-downs Introduction When building an app that searches a large database, you will need to utilize parameters to narrow your search. When an app has parameters, it s a good idea to

More information

BP-VA Quick Start. Last update: 29 th January, Copyright Visual Paradigm International Ltd.

BP-VA Quick Start. Last update: 29 th January, Copyright Visual Paradigm International Ltd. BP-VA Quick Start Last update: 29 th January, 2010 Copyright 2002-2010 Visual Paradigm International Ltd. Table of Contents Table of Contents... 2 Getting started... 3 Installing Business Process Visual

More information

Importing source database objects from a database

Importing source database objects from a database Importing source database objects from a database We are now at the point where we can finally import our source database objects, source database objects. We ll walk through the process of importing from

More information

PHPRad. PHPRad At a Glance. This tutorial will show you basic functionalities in PHPRad and

PHPRad. PHPRad At a Glance. This tutorial will show you basic functionalities in PHPRad and PHPRad PHPRad At a Glance. This tutorial will show you basic functionalities in PHPRad and Getting Started Creating New Project To create new Project. Just click on the button. Fill In Project properties

More information

WebStudio User Guide. OpenL Tablets BRMS Release 5.18

WebStudio User Guide. OpenL Tablets BRMS Release 5.18 WebStudio User Guide OpenL Tablets BRMS Release 5.18 Document number: TP_OpenL_WS_UG_3.2_LSh Revised: 07-12-2017 OpenL Tablets Documentation is licensed under a Creative Commons Attribution 3.0 United

More information

Website Administration Manual, Part One

Website Administration Manual, Part One Website Administration Manual, Part One A Guide to the CMS & Widgets Curry School of Education Website http://curry.virginia.edu The Curry Website Administrators Manual - Part One 2 The CMS The content

More information

GoLive will first ask you if your new site will be for one individual or a work group; select for a Single User, and click Next.

GoLive will first ask you if your new site will be for one individual or a work group; select for a Single User, and click Next. Getting Started From the Start menu, located the Adobe folder which should contain the Adobe GoLive 6.0 folder. Inside this folder, click Adobe GoLive 6.0. GoLive will open to its initial project selection

More information

How to Generating DB Specification from Database> Written Date : January 20, 2016

How to Generating DB Specification from Database> Written Date : January 20, 2016 Written Date : January 20, 2016 Imagine one day, the database administrator in your company has retired and you are appointed to take care of your corporate database. There is no documentation available

More information

1. Move your mouse to the location you wish text to appear in the document. 2. Click the mouse. The insertion point appears.

1. Move your mouse to the location you wish text to appear in the document. 2. Click the mouse. The insertion point appears. Word 2010 Text Basics Introduction Page 1 It is important to know how to perform basic tasks with text when working in a word processing application. In this lesson you will learn the basics of working

More information

Ektron Advanced. Learning Objectives. Getting Started

Ektron Advanced. Learning Objectives. Getting Started Ektron Advanced 1 Learning Objectives This workshop introduces you beyond the basics of Ektron, the USF web content management system that is being used to modify department web pages. This workshop focuses

More information

SyncToy - Automated Schedule

SyncToy - Automated Schedule SyncToy - Automated Schedule While SyncToy does not have a built-in option to run on an automated schedule, the Scheduled Tasks tool in Windows can be used to launch the SyncToy application on a set schedule.

More information

BlueMix Hands-On Workshop Lab A - Building and Deploying BlueMix Applications

BlueMix Hands-On Workshop Lab A - Building and Deploying BlueMix Applications BlueMix Hands-On Workshop Lab A - Building and Deploying BlueMix Applications Version : 4.00 Last modification date : 13 June 2014 Owner : IBM Ecosystem Development Table of Contents Part 1: Building

More information

HHH Instructional Computing Fall

HHH Instructional Computing Fall Quick Start Guide for School Web Lockers Teacher log-on is the same as for Infinite Campus Student log-on is the same initial log on to the network except no school year is required before their user name

More information

Workspace Administrator Help File

Workspace Administrator Help File Workspace Administrator Help File Table of Contents HotDocs Workspace Help File... 1 Getting Started with Workspace... 3 What is HotDocs Workspace?... 3 Getting Started with Workspace... 3 To access Workspace...

More information

Everything in red on the screenshots has been added for the purpose of this user guide and is the context for the words around it.

Everything in red on the screenshots has been added for the purpose of this user guide and is the context for the words around it. Huddle for Office What is it? Huddle for Office brings the best collaborative parts of Huddle right into your applications. You are able to take the content that you are working on straight from Huddle,

More information

Ticket Mail Merge Instructions for MS Word 2007 and 2010

Ticket Mail Merge Instructions for MS Word 2007 and 2010 Before starting the mail merge process make sure both the ticket template merge document and bidder number excel file are saved to your computer. These files are located on the volunteer resource site

More information

An Introduction to Google Chrome

An Introduction to Google Chrome An Introduction to Google Chrome Box is an online file sharing and cloud content management service and it provides features such as: Getting Google Chrome 1. To get started with Google Chrome, you have

More information

Session 10 MS Word. Mail Merge

Session 10 MS Word. Mail Merge Session 10 MS Word Mail Merge Table of Contents SESSION 10 - MAIL MERGE... 3 How Mail Merge Works?... 3 Getting Started... 4 Start the Mail Merge Wizard... 4 Selecting the starting document... 5 Letters:...

More information

RWT Network System Installation Guide

RWT Network System Installation Guide RWT Network System Installation Guide Copyright 2003, Talking Fingers, Inc. Page 1 of 48 This document is Copyright 2003 by Talking Fingers, Inc. All rights are reserved. This document may not be copied

More information

NetStores Dreamweaver Quick Start Guide

NetStores Dreamweaver Quick Start Guide Introduction The NetStores E-Commerce Solution enables it s users to add online ordering capabilities to their websites. While this sounds like a complicated task, the NetStores E- Commerce Solution has

More information

SOAPware, Inc. Installation Guides

SOAPware, Inc. Installation Guides Installation Guides Installation Guides 1 Installation Guides 1.1 1.2 1.3 1.4 1.5 1.6 Installation Guide: DataServer, SOAPware & DataManager 4 Installing the SOAPware DataServer 5 Installing SOAPware 12

More information

Creating a template and printing from Geo

Creating a template and printing from Geo Creating a template and printing from Geo Logging into Citrix 1) Logon to the DTS (https://dts.gov.bc.ca ) 2) Enter your user name (IDIR) and password and click Log On 3) This will take you to a screen

More information

Navigate to Cognos Cognos Analytics supports all browsers with the exception of Microsoft Edge.

Navigate to Cognos Cognos Analytics supports all browsers with the exception of Microsoft Edge. IBM Cognos Analytics Create a Crosstab The following instructions cover how to create a crosstab report in IBM Cognos Analytics. A crosstab is a report type in Cognos that displays an analytical look at

More information

Using. Quick Guide. Contents. Connecting to an FTP server. Using the Quick Connect bar. From FileZilla Wiki

Using. Quick Guide. Contents. Connecting to an FTP server. Using the Quick Connect bar. From FileZilla Wiki Using From FileZilla Wiki Contents 1 Quick Guide 1.1 Connecting to an FTP server 1.1.1 Using the Quick Connect bar 1.1.2 Using Site Manager 1.1.3 Special case: Servers in LAN 1.2 Navigating on the server

More information

Protect Your Investment In Asure ID. Thank You For Purchasing Asure ID Let s Get Started! Section 1 Installing Asure ID

Protect Your Investment In Asure ID. Thank You For Purchasing Asure ID Let s Get Started! Section 1 Installing Asure ID QuickStart Guide Protect Your Investment In Asure ID Save Valuable Time And Money With Asure ID Protect! Asure ID Protect is a comprehensive customer care program designed to ensure that you receive the

More information

OSR Administration 3.7 User Guide. Updated:

OSR Administration 3.7 User Guide. Updated: OSR Administration 3.7 User Guide Updated: 2013-01-31 Copyright OneStop Reporting AS www.onestopreporting.com Table of Contents Introduction... 1 Who should read this manual... 1 What s included in this

More information

Author A.Kishore/Sachin WinSCP

Author A.Kishore/Sachin   WinSCP WinSCP WinSCP is a freeware windows client for the SCP (secure copy protocol), a way to transfer files across the network using the ssh (secure shell) encrypted protocol. It replaces other FTP programs

More information

Introduction. The topics included in this guide are:

Introduction. The topics included in this guide are: Introduction Caorda Content is a powerful content management tool that allows you to update your web site through a standard Internet web browser. The purpose of this guide is to introduce you to Caorda

More information

WinSCP. Author A.Kishore/Sachin

WinSCP. Author A.Kishore/Sachin WinSCP WinSCP is a freeware windows client for the SCP (secure copy protocol), a way to transfer files across the network using the ssh (secure shell) encrypted protocol. It replaces other FTP programs

More information

Working with Macros. Creating a Macro

Working with Macros. Creating a Macro Working with Macros 1 Working with Macros THE BOTTOM LINE A macro is a set of actions saved together that can be performed by issuing a single command. Macros are commonly used in Microsoft Office applications,

More information

Google Sites 101. Mrs. Wilson

Google Sites 101. Mrs. Wilson Google Sites 101 Mrs. Wilson Google Sites 101 Create a site 1. Go to http://sites.google.com/ 2. Login with your Google Account [or Google Apps account] email address and password You can create a Google

More information

Table of Contents. Revu ipad. v3.6. Navigation. Document Manager. File Access. Markups. Signature Tool. Field Verification Measurements

Table of Contents. Revu ipad. v3.6. Navigation. Document Manager. File Access. Markups. Signature Tool. Field Verification Measurements Table of Contents Navigation Document Manager File Access Markups Signature Tool Field Verification Measurements Editing Properties Tool Sets & the Tool Chest Markups List Forms Studio Sessions Studio

More information

Student User Guide: edtpa Submissions

Student User Guide: edtpa Submissions Student User Guide: edtpa Submissions Student User Guide: edtpa Submissions 1 W. Harris Avenue, 2nd Floor, La Grange, IL 60525 1-866-LiveText (1-866-548-3839) www.livetext.com 2 Table of Contents Introduction...

More information

Content Author's Reference and Cookbook

Content Author's Reference and Cookbook Sitecore CMS 7.2 Content Author's Reference and Cookbook Rev. 140225 Sitecore CMS 7.2 Content Author's Reference and Cookbook A Conceptual Overview and Practical Guide to Using Sitecore Table of Contents

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

Building and Testing Packages with the Workbench

Building and Testing Packages with the Workbench Chapter 2 Building and Testing Packages with the Workbench The Scribe Workbench is where the development of your solutions will be performed. All mapping and connections to source and target data are done

More information

ER Photo Form and EPAOSC SOP

ER Photo Form and EPAOSC SOP ER Photo Form and EPAOSC SOP December 2016 Table of Contents Downloading ERPhoto APP... 1 Uploading ERPhotos to FTP from IPad... 1 Downloading the ERPhoto Form to Computer from FTP... 2 Installing the

More information

Use the Preferred Browser USE FIREFOX ON MAC & PC. If you do not have Firefox on your computer or laptop, please download Firefox by clicking here.

Use the Preferred Browser USE FIREFOX ON MAC & PC. If you do not have Firefox on your computer or laptop, please download Firefox by clicking here. Working In Mediasite (Part 2) Now that you ve completed Part 1, which included registering Mediasite, Downloading and Installation of the Mediasite Recorder, you re ready to proceed to Part 2 of the tutorial

More information

Readme. HotDocs Developer LE Table of Contents. About This Version. New Features and Enhancements. About This Version

Readme. HotDocs Developer LE Table of Contents. About This Version. New Features and Enhancements. About This Version HotDocs Developer LE 11.0.4 Version 11.0.4 - January 2014 Copyright 2014 HotDocs Limited. All rights reserved. Table of Contents About This Version New Features and Enhancements Other changes from HotDocs

More information

Once you have entered your Google and password, you can click the Sign In button to continue.

Once you have entered your Google  and password, you can click the Sign In button to continue. Slide 1 Welcome to the Creating and Uploading with Google Docs Tutorial. Google Docs allows you to create documents, spreadsheets, presentations, draw pictures, create forms, and much more directly within

More information

UP L11 Using IT Analytics as an Alternative Reporting Platform Hands-On Lab

UP L11 Using IT Analytics as an Alternative Reporting Platform Hands-On Lab UP L11 Using IT Analytics as an Alternative Reporting Platform Hands-On Lab Description IT Analytics has a diverse and powerful way of displaying data to your users. In this lab, you will learn how to

More information

Welcome to InSite: A GUIDE TO PROOFING ONLINE. Getting Started Viewing Job Information Uploading Files Viewing Pages Requesting Corrections

Welcome to InSite: A GUIDE TO PROOFING ONLINE. Getting Started Viewing Job Information Uploading Files Viewing Pages Requesting Corrections Welcome to InSite: A GUIDE TO PROOFING ONLINE Getting Started Viewing Job Information Uploading Files Viewing Pages Requesting Corrections PROOF.REGISTERGRAPHICS.COM *NOTE: There is no www in this address.

More information

Page 1 of 6 Eudora 7.x - E-mail Client for Microsoft Windows Links for Eudora 7.x: First account Edit accounts Light Mode Mailboxes Filters Headers Anti-Spam Links on this page: SMTP Authentication Auto-dial/Auto-disconnect

More information