CHAPTER 9: DATAPORT AND XMLPORT CHANGES

Size: px
Start display at page:

Download "CHAPTER 9: DATAPORT AND XMLPORT CHANGES"

Transcription

1 Chapter 9: Dataport and XMLport Changes CHAPTER 9: DATAPORT AND XMLPORT CHANGES Objectives Introduction The objectives are: Provide an overview of dataport changes. Discuss changes in XMLport object and its new features. Dataport and XMLport are used to export and import data from and to Microsoft Dynamics NAV. Dataports are used with text files and XMLports are used with XML document files. These two objects have similarities on their purpose, to exchange information in and out of Microsoft Dynamics NAV. With the introduction of the new RoleTailored Client and the three-tier architecture, Microsoft DynamicsNAV 2009 will move toward XMLports. Dataports are still supported, but only in the Classic Client. The RoleTailored Client supports only XMLports as the way of exporting and importing data from and to Microsoft Dynamics NAV. 9-1

2 What s New for Microsoft Dynamics NAV 2009 Installation and Development Moving Forward with Dataports XMLport Changes Dataport as a way to export and import data from and to Microsoft Dynamics NAV is still supported in the Classic Client. In a traditional implementation, where only Classic Client is used, dataport is still used as usual. Transform Dataports to XMLports The RoleTailored client does not support dataport. In a dual client implementation, when both RoleTailored Client and Classic Client are used, XMLports are used as means of exporting and importing from and to Microsoft Dynamics NAV as dataports replacement. All dataports related features have to be modified to use XMLports. Existing dataports have to be migrated to XMLports to run on the new architecture. Unlike in form or report transformation, transforming dataport is a completely manual process. There is no automatic transformation tool available. To accommodate the use of XMLports to replace dataports, changes are made to XMLport objects. These changes include the following: Introduction of request page. New properties related to dataport. Execution in menu suite, RunObject property and RUN method. Together with these, additional features such as support for namespaces, and XML LAX, improve XMLport capabilities as a way of importing and exporting data in Microsoft Dynamics NAV Terminology Changes The following highlights terminology changes in XMLport object from earlier versions of Microsoft Dynamics NAV: Terminology To specify the name of an element or an attribute To specify whether data is of the type element or attribute Earlier version of Microsoft Dynamics NAV TagName TagType Microsoft Dynamics NAV 2009 NodeName NodeType 9-2

3 Chapter 9: Dataport and XMLport Changes Dataport Support The following new properties are introduced in XMLport objects in relation to dataports support: Name Type Location Description Format Option XMLport Determines the import/export format of the XMLport. It is added to support CSV export that is either a fixed length or a variable length. The options are as follows: XML Variable Text Fixed Text Width Integer Nodes (elements and/or attributes) Determines the width of the fixed width field. If Fixed Length is selected in the Format property, all elements and attributes of type Text and Field should have their Width property value set to more than 0, or it gives compilation errors. FieldDelimiter String XMLport Determines what the text delimiter is for a field. The default value is a quotation mark ( ). FieldSeparator String XMLport Determines what the field separator is for fields. The default value is a comma (,). RecordSeparator String XMLport Determines what the record separator is for records. The default value is <NewLine> TableSeparator String XMLport Determines what the table separator is for tables. The default value is <NewLine><NewLine> 9-3

4 What s New for Microsoft Dynamics NAV 2009 Installation and Development Request Page In addition to the new properties, request page is introduced for filtering purposes and additional input, before running XMLport. Generally, request pages in XMLports and request pages in reports are similar. They have similar filter functionality grouped in bands/fast tabs and an optional options band where developers add more controls. Request page in XMLport only has OK and Cancel buttons (compared to Print, Preview and Cancel buttons in request page in reports) regardless whether the XMLport is used for importing or exporting text or XML documents. The following shows a new property that is added for request page: Name Type Location Purpose UseRequestForm Boolean XMLport Determines whether a request page is used in the new RoleTailored Client. The default value is False. Direction property on the XMLport object is used instead of the Import property on the dataport object. This property is used to control whether direction control is shown on the request page and whether it controls the direction of the data (import/export). The following options are available, and show how they are related to dataport: Dataport XMLport Behavior <Yes> Default <Both> Default Direction control shown on request page instance.run run as import. Yes Import No control shown on the request page instance.run run as import. No Export No control shown on the request page instance.run run as export. The behavior in this table can change if currxmlport.importfile or import parameter on the static RUN is used. 9-4

5 Chapter 9: Dataport and XMLport Changes Execution In the earlier version of Microsoft Dynamics NAV, XMLports are run only from codeunits. In Microsoft Dynamics NAV 2009, XMLports can be run from: Menu suites designed for the RoleTailored Client. RunObject property of controls in page objects. Codeunits. An XMLport instance can be created as a variable of type XMLport and the instance has a RUN method, similar to the dataport RUN method. XML Schema Every XML attribute and XML element contains information about how they are expected inside the XMLport. For example: An attribute has Required property which tells whether the runtime should expect a value or not. An element contains information about its cardinality, governs by MinOccurs and MaxOccurs property, as illustrated in the following table. MinOccurs MaxOccurs Result Zero Once One element is allowed, but could be skipped. Once Once One element is required. Zero Unbounded Collection of elements, which can be empty. Once Unbounded Collection of elements, which cannot be empty. These properties are transformed into an XML XSD schema to let users validate XML input before the import. This schema can be used to validate the XML and construct classes that support and give programmatic interface to the XML. In Microsoft Dynamics NAV 2009 XMLport, it is possible to inline the schema inside the XML documents when exporting from the system. To enable this, a new property is introduced in the XMLport object: Name Type Location Remarks InlineSchema Boolean XMLport Adds the schema to all exported XML documents. The default value is No. 9-5

6 What s New for Microsoft Dynamics NAV 2009 Installation and Development Support for Namespaces A default namespace can be added and, or used during both import and export. This is important to support integration with other systems for the XML document to be in a specific namespace, to find its value. The following properties are introduced to support this new feature: Name Type Location Purpose UseDefaultNamespace Boolean XMLport Determines whether the value in DefaultNamespace property should be used as the default namespace for both output and input XML. The default value is False. DefaultNamespace String XMLport Determines the default namespace for both import and export. The default value is unique to individual XMLports. Example: urn:microsoftdynamicsnav/xmlports/x100 where 100 is the ID of the XMLport. XML LAX XML LAX is another new feature in XMLport in Microsoft Dynamics NAV When an XML document is passed between different systems, sometimes, one of the systems adds information to the XML document, which is irrelevant to the destination system. This information is typically added to the XML in another namespace. When the destination system tries to validate the XML document during its import, it will fail, because the XML document is not compliant with the XSD schema. Laxly schema definition (LAX) is an XML functionality used to define the allowance of XML which is not part of import and export. 9-6

7 Chapter 9: Dataport and XMLport Changes The following property is introduced to support XML LAX functionality: Name Type Location Purpose UseLax Boolean XMLport Determines whether LAX during import is accepted and updates the schema. The default value is False. FIGURE 9.1 SCHEMA SUPPORTING LAX In the previous example, before and after all elements, there is an added line: <xs:any minoccurs="0" maxoccurs="unbounded" namespace="##other" processcontents="lax" /> 9-7

8 What s New for Microsoft Dynamics NAV 2009 Installation and Development This line allows for one or more elements residing in a different namespace to be present in the XML document. FIGURE 9.2 EXAMPLE OF HOW TO USE LAX In the previous example, there is an added LAX XML schema element right after the element No. The usage can be seen in the bottom of the XML where an element named Error is added to the XML document, in another namespace. Without the LAX support, this would usually throw an invalid child element error. XML Standards XMLport in Microsoft Dynamics NAV 2009 abides to XML standards. The following shows examples for valid and invalid XML naming convention for elements and attributes: Example Valid/Invalid Explanation first.name Valid Dot (.) is valid within the name. résumé Valid Non-ASCII characters are valid. xml-tag Invalid Starts with xml. 123 Invalid Starts with a number. fun=xml Invalid = is invalid. my tag Invalid Contains white space xs:tag Invalid Contains : 9-8

9 Chapter 9: Dataport and XMLport Changes Summary XMLports replace dataports as the means of importing and exporting data to and from Microsoft Dynamics NAV This chapter discussed the changes in XMLport objects to support dataport functionalities and the new features of XMLports and properties introduced to support these features. 9-9

10 What s New for Microsoft Dynamics NAV 2009 Installation and Development Quick Interaction: Lessons Learned Take a moment and write down three key points you have learned from this chapter:

CHAPTER 1: CLIENT/SERVER INTEGRATED DEVELOPMENT ENVIRONMENT (C/SIDE)

CHAPTER 1: CLIENT/SERVER INTEGRATED DEVELOPMENT ENVIRONMENT (C/SIDE) Chapter 1: Client/Server Integrated Development Environment (C/SIDE) CHAPTER 1: CLIENT/SERVER INTEGRATED DEVELOPMENT ENVIRONMENT (C/SIDE) Objectives Introduction The objectives are: Discuss Basic Objects

More information

CHAPTER 10: WEB SERVICES

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

More information

CHAPTER 6: CLASSIC CLIENT OPTION

CHAPTER 6: CLASSIC CLIENT OPTION Chapter 6: Classic Client Option CHAPTER 6: CLASSIC CLIENT OPTION Objectives Introduction The objectives are: Discuss the Classic Client software requirements and hardware recommendation. Install the Classic

More information

What's New: Developing Solutions for Microsoft Dynamics NAV 2009

What's New: Developing Solutions for Microsoft Dynamics NAV 2009 Microsoft Dynamics NAV What's New: Developing Solutions for Microsoft Dynamics NAV 2009 White Paper December 2008 Contents INTRODUCTION... 3 ARCHITECTURAL CHANGES IN MICROSOFT DYNAMICS NAV 2009... 4 ROLETAILORED

More information

Upgrading a Microsoft Dynamics NAV 2009 R2 or Microsoft Dynamics NAV 2009 SP1 Database to Microsoft Dynamics NAV 2015

Upgrading a Microsoft Dynamics NAV 2009 R2 or Microsoft Dynamics NAV 2009 SP1 Database to Microsoft Dynamics NAV 2015 Upgrading a Microsoft Dynamics NAV 2009 R2 or Microsoft Dynamics NAV 2009 SP1 Database to Microsoft Dynamics NAV 2015 White Paper November 2014 Contents Introduction... 3 Data Upgrade Short Overview...

More information

MODULE 7: TECHNOLOGY OVERVIEW. Module Overview. Objectives

MODULE 7: TECHNOLOGY OVERVIEW. Module Overview. Objectives MODULE 7: TECHNOLOGY OVERVIEW Module Overview The Microsoft Dynamics NAV 2013 architecture is made up of three core components also known as a three-tier architecture - and offers many programming features

More information

XML Validation Guide. Questions or comments about this document should be directed to: E mail CEPI@michigan.gov Phone 517 335 0505

XML Validation Guide. Questions or comments about this document should be directed to: E mail CEPI@michigan.gov Phone 517 335 0505 XML Validation Guide XML Validation Guide Questions or comments about this document should be directed to: E mail CEPI@michigan.gov Phone 517 335 0505 Table of Contents Introduction... 3 XML File Validation...

More information

DEVELOPING CONTRACT - DRIVEN WEB SERVICES USING JDEVELOPER. The purpose of this tutorial is to develop a java web service using a top-down approach.

DEVELOPING CONTRACT - DRIVEN WEB SERVICES USING JDEVELOPER. The purpose of this tutorial is to develop a java web service using a top-down approach. DEVELOPING CONTRACT - DRIVEN WEB SERVICES USING JDEVELOPER Purpose: The purpose of this tutorial is to develop a java web service using a top-down approach. Topics: This tutorial covers the following topics:

More information

This module explains fundamental aspects of Microsoft Dynamics NAV Development Environment.

This module explains fundamental aspects of Microsoft Dynamics NAV Development Environment. MICROSOFT DYNAMICS NAV COURSE OUTLINE 1) MICROSOFT DYNAMICS NAV Module 1: Microsoft Dynamics NAV Development Environment This module explains fundamental aspects of Microsoft Dynamics NAV Development Environment.

More information

NAV 2009 C/SIDE Introduction

NAV 2009 C/SIDE Introduction Exam : MB7-840 Title : NAV 2009 C/SIDE Introduction Version : Demo 1 / 7 1. You need to create a multi-record page that enables users to simultaneously view multiple records from a table and edit them

More information

How to Import Data into Microsoft Access

How to Import Data into Microsoft Access How to Import Data into Microsoft Access This tutorial demonstrates how to import an Excel file into an Access database. You can also follow these same steps to import other data tables into Access, such

More information

Setting up Auto Import/Export for Version 7

Setting up Auto Import/Export for Version 7 Setting up Auto Import/Export for Version 7 The export feature button is available in the program Maintain Area of the software and is conveniently located in the grid toolbar. This operation allows the

More information

Exporting Email Addresses. for Use in Outlook Express

Exporting Email Addresses. for Use in Outlook Express Exporting Email Addresses for Use in Outlook Express If your Keystroke Customer database includes email addresses, it is a relatively simple and easy process to export the Customer records and import them

More information

Ad Hoc Reporting: Data Export

Ad Hoc Reporting: Data Export Ad Hoc Reporting: Data Export Contents Ad Hoc Reporting > Data Export... 1 Export Format Options... 3 HTML list report (IMAGE 1)... 3 XML (IMAGE 2)... 4 Delimited Values (CSV)... 4 Fixed Width (IMAGE 10)...

More information

Pharmacy Affairs Branch. Website Database Downloads PUBLIC ACCESS GUIDE

Pharmacy Affairs Branch. Website Database Downloads PUBLIC ACCESS GUIDE Pharmacy Affairs Branch Website Database Downloads PUBLIC ACCESS GUIDE From this site, you may download entity data, contracted pharmacy data or manufacturer data. The steps to download any of the three

More information

ibolt V3.2 Release Notes

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

More information

Time Clock Import Setup & Use

Time Clock Import Setup & Use Time Clock Import Setup & Use Document # Product Module Category CenterPoint Payroll Processes (How To) This document outlines how to setup and use of the Time Clock Import within CenterPoint Payroll.

More information

Configuring Jet Express for Microsoft Dynamics NAV 2013

Configuring Jet Express for Microsoft Dynamics NAV 2013 Configuring Jet Express for Microsoft Dynamics NAV 2013 Overview With the release of Jet Express 2012 R2, Jet Reports introduces the ability to report from a Microsoft Dynamics NAV 2013 database. Web Services

More information

Resources You can find more resources for Sync & Save at our support site: http://www.doforms.com/support.

Resources You can find more resources for Sync & Save at our support site: http://www.doforms.com/support. Sync & Save Introduction Sync & Save allows you to connect the DoForms service (www.doforms.com) with your accounting or management software. If your system can import a comma delimited, tab delimited

More information

Interactive Timeline Visualization for Microsoft Dynamics NAV 2009 R2

Interactive Timeline Visualization for Microsoft Dynamics NAV 2009 R2 Microsoft Dynamics NAV Interactive Timeline Visualization for Microsoft Dynamics NAV 2009 R2 White Paper The Interactive Timeline Business Data Visualization is a RoleTailored client control add-in that

More information

SPARROW Gateway. Developer API. Version 2.00

SPARROW Gateway. Developer API. Version 2.00 SPARROW Gateway Developer API Version 2.00 Released May 2015 Table of Contents SPARROW Gateway... 1 Developer API... 1 Overview... 3 Architecture... 3 Merchant Private Key and Payment Types... 3 Integration...

More information

File Management Utility User Guide

File Management Utility User Guide File Management Utility User Guide Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held

More information

Microsoft Dynamics GP. SmartList Builder User s Guide With Excel Report Builder

Microsoft Dynamics GP. SmartList Builder User s Guide With Excel Report Builder Microsoft Dynamics GP SmartList Builder User s Guide With Excel Report Builder Copyright Copyright 2008 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the responsibility

More information

INTEGRATING MICROSOFT DYNAMICS CRM WITH SIMEGO DS3

INTEGRATING MICROSOFT DYNAMICS CRM WITH SIMEGO DS3 INTEGRATING MICROSOFT DYNAMICS CRM WITH SIMEGO DS3 Often the most compelling way to introduce yourself to a software product is to try deliver value as soon as possible. Simego DS3 is designed to get you

More information

How do I create a Peachtree (Sage 50) Payroll export file?

How do I create a Peachtree (Sage 50) Payroll export file? How do I create a Peachtree (Sage 50) Payroll export file? Steps to complete prior to running the payroll export in HBS: In Peachtree: Prior to setting up the Peachtree (Sage 50) Payroll export, you will

More information

Contents. Accessing Compensation Reports Generating Compensation Reports. Saving PDF Reports after Viewing Printing PDF Reports

Contents. Accessing Compensation Reports Generating Compensation Reports. Saving PDF Reports after Viewing Printing PDF Reports Broker Compensation Reports Online Contents Accessing Compensation Reports Generating Compensation Reports PDF o o Excel o o o Saving PDF Reports after Viewing Printing PDF Reports Exporting Reports to

More information

Client Email Search. Searching For Clients With or Without Email Addresses

Client Email Search. Searching For Clients With or Without Email Addresses Client Email Search Searching For Clients With or Without Email Addresses The Client Marketing section of STX helps you to create marketing sets to find active clients with or without valid email addresses

More information

Creating a Distribution List from an Excel Spreadsheet

Creating a Distribution List from an Excel Spreadsheet Creating a Distribution List from an Excel Spreadsheet Create the list of information in Excel Create an excel spreadsheet. The following sample file has the person s first name, last name and email address

More information

Developer Updates for. Microsoft Dynamics NAV

Developer Updates for. Microsoft Dynamics NAV Microsoft Dynamics NAV Developer Updates for Microsoft Dynamics NAV 2009 R2 User's Guide December 2010 Contents Developer Updates for Microsoft Dynamics NAV 2009 R2... 1 Viewing the Definition of a Function

More information

04 XML Schemas. Software Technology 2. MSc in Communication Sciences 2009-10 Program in Technologies for Human Communication Davide Eynard

04 XML Schemas. Software Technology 2. MSc in Communication Sciences 2009-10 Program in Technologies for Human Communication Davide Eynard MSc in Communication Sciences 2009-10 Program in Technologies for Human Communication Davide Eynard Software Technology 2 04 XML Schemas 2 XML: recap and evaluation During last lesson we saw the basics

More information

VDF Query User Manual

VDF Query User Manual VDF Query User Manual Page 1 of 25 Table of Contents Quick Start... 3 Security... 4 Main File:... 5 Query Title:... 6 Fields Tab... 7 Printed Fields... 8 Task buttons... 9 Expression... 10 Selection...

More information

**Web mail users: Web mail provides you with the ability to access your email via a browser using a "Hotmail-like" or "Outlook 2003 like" interface.

**Web mail users: Web mail provides you with the ability to access your email via a browser using a Hotmail-like or Outlook 2003 like interface. Welcome to NetWest s new and improved email services; where we give you the power to manage your email. Please take a moment to read the following information about the new services available to you. NetWest

More information

Managing Expense Reports Program Administrators and Approvers

Managing Expense Reports Program Administrators and Approvers CentreSuite Quick Reference Guide May 2015 Managing Expense Reports Program Administrators and Approvers On the Manage Expense Reports page, you can manage the expense reports you create, and, if you are

More information

System Administrator Training Guide. Reliance Communications, Inc. 603 Mission Street Santa Cruz, CA 95060 888-527-5225 www.schoolmessenger.

System Administrator Training Guide. Reliance Communications, Inc. 603 Mission Street Santa Cruz, CA 95060 888-527-5225 www.schoolmessenger. System Administrator Training Guide Reliance Communications, Inc. 603 Mission Street Santa Cruz, CA 95060 888-527-5225 www.schoolmessenger.com Contents Contents... 2 Before You Begin... 4 Overview... 4

More information

Xerox Standard Accounting Import/Export User Information Customer Tip

Xerox Standard Accounting Import/Export User Information Customer Tip Xerox Standard Accounting Import/Export User Information Customer Tip July 23, 2012 Overview Xerox Standard Accounting (XSA) software is a standard feature that resides locally on the device. It provides

More information

UTILITIES BACKUP. Figure 25-1 Backup & Reindex utilities on the Main Menu

UTILITIES BACKUP. Figure 25-1 Backup & Reindex utilities on the Main Menu 25 UTILITIES PastPerfect provides a variety of utilities to help you manage your data. Two of the most important are accessed from the Main Menu Backup and Reindex. The other utilities are located within

More information

MyFaxCentral User Administration Guide

MyFaxCentral User Administration Guide faxing simplified. anytime. anywhere. MyFaxCentral User Administration Guide www.myfax.com MyFaxCentral Common Controls...1 Navigation Controls...1 Customize View...1 MyFaxCentral User Administration...2

More information

Contents 1 Overview 2 Steps to run an Excel Add-In Setup: 3 Add-Ins 4 LOGIN 5 SEND SMS 5.1 Send Text or Flash Sms 5.2 Select Range 5.

Contents 1 Overview 2 Steps to run an Excel Add-In Setup: 3 Add-Ins 4 LOGIN 5 SEND SMS 5.1 Send Text or Flash Sms 5.2 Select Range 5. Contents 1 Overview 2 Steps to run an Excel Add-In Setup: 3 Add-Ins 4 LOGIN 5 SEND SMS 5.1 Send Text or Flash Sms 5.2 Select Range 5.3 Selected Range Preview List 5.4 Scheduling of Messages 5.5 Scheduled

More information

CHAPTER 4: BUSINESS ANALYTICS

CHAPTER 4: BUSINESS ANALYTICS Chapter 4: Business Analytics CHAPTER 4: BUSINESS ANALYTICS Objectives Introduction The objectives are: Describe Business Analytics Explain the terminology associated with Business Analytics Describe the

More information

CHAPTER 5: BUSINESS ANALYTICS

CHAPTER 5: BUSINESS ANALYTICS Chapter 5: Business Analytics CHAPTER 5: BUSINESS ANALYTICS Objectives The objectives are: Describe Business Analytics. Explain the terminology associated with Business Analytics. Describe the data warehouse

More information

Processing Quotes Using ROBO-Agent for Tower JOB AID

Processing Quotes Using ROBO-Agent for Tower JOB AID Processing Quotes Using ROBO-Agent Job Aid 1 Processing Quotes Using ROBO-Agent for Tower JOB AID Purpose: This job aid will help agencies use ROBO-Agent to run their Quotes through Tower. When: Use this

More information

MadCap Software. Import Guide. Flare 11

MadCap Software. Import Guide. Flare 11 MadCap Software Import Guide Flare 11 Copyright 2015 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document is furnished

More information

Result Entry by Spreadsheet User Guide

Result Entry by Spreadsheet User Guide Result Entry by Spreadsheet User Guide Created in version 2007.3.0.1485 1/50 Table of Contents Result Entry by Spreadsheet... 3 Result Entry... 4 Introduction... 4 XML Availability... 4 Result Entry...

More information

Microsoft Dynamics GP. Extender User s Guide

Microsoft Dynamics GP. Extender User s Guide Microsoft Dynamics GP Extender User s Guide Copyright Copyright 2010 Microsoft. All rights reserved. Limitation of liability This document is provided as-is. Information and views expressed in this document,

More information

Kofax Export Connector 8.3.0 for Microsoft SharePoint

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

More information

Dell KACE K1000 Management Appliance. Asset Management Guide. Release 5.3. Revision Date: May 13, 2011

Dell KACE K1000 Management Appliance. Asset Management Guide. Release 5.3. Revision Date: May 13, 2011 Dell KACE K1000 Management Appliance Asset Management Guide Release 5.3 Revision Date: May 13, 2011 2004-2011 Dell, Inc. All rights reserved. Information concerning third-party copyrights and agreements,

More information

Mobility Tool+ Guide for Beneficiaries of the Erasmus+ programme

Mobility Tool+ Guide for Beneficiaries of the Erasmus+ programme EUROPEAN COMMISSION DIRECTORATE-GENERAL FOR EDUCATION AND CULTURE Education and vocational training; Coordination of Erasmus+ Coordination of National Agencies Erasmus+ Mobility Tool+ Guide for Beneficiaries

More information

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

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

More information

SerialMailer Manual. For SerialMailer 7.2. Copyright 2010-2011 Falko Axmann. All rights reserved.

SerialMailer Manual. For SerialMailer 7.2. Copyright 2010-2011 Falko Axmann. All rights reserved. 1 SerialMailer Manual For SerialMailer 7.2 Copyright 2010-2011 Falko Axmann. All rights reserved. 2 Contents 1 Getting Started 4 1.1 Configuring SerialMailer 4 1.2 Your First Serial Mail 7 1.2.1 Database

More information

Mobility Tool+ Guide for Beneficiaries of the Erasmus+ programme

Mobility Tool+ Guide for Beneficiaries of the Erasmus+ programme EUROPEAN COMMISSION DIRECTORATE-GENERAL FOR EDUCATION AND CULTURE Education and vocational training; Coordination of Erasmus+ Coordination of National Agencies Erasmus+ Mobility Tool+ Guide for Beneficiaries

More information

Analytics Configuration Reference

Analytics Configuration Reference Sitecore Online Marketing Suite 1 Analytics Configuration Reference Rev: 2009-10-26 Sitecore Online Marketing Suite 1 Analytics Configuration Reference A Conceptual Overview for Developers and Administrators

More information

Development Environment Introduction in Microsoft Dynamics NAV 2015

Development Environment Introduction in Microsoft Dynamics NAV 2015 Development Environment Introduction in Microsoft Dynamics NAV 2015 1 www.firebrandtraining.com Module 1 - Microsoft Dynamics NAV Development Environment 1. Non-default property values Microsoft Dynamics

More information

Customer Support Tool. User s Manual XE-A207 XE-A23S. Before reading this file, please read Instruction Manual of XE-A207 and XE-A23S.

Customer Support Tool. User s Manual XE-A207 XE-A23S. Before reading this file, please read Instruction Manual of XE-A207 and XE-A23S. XE-A207 XE-A23S Customer Support Tool User s Manual Thank you for downloading this PDF file. Before reading this file, please read Instruction Manual of XE-A207 and XE-A23S. Save or print this file so

More information

RA MODEL VISUALIZATION WITH MICROSOFT EXCEL 2013 AND GEPHI

RA MODEL VISUALIZATION WITH MICROSOFT EXCEL 2013 AND GEPHI RA MODEL VISUALIZATION WITH MICROSOFT EXCEL 2013 AND GEPHI Prepared for Prof. Martin Zwick December 9, 2014 by Teresa D. Schmidt (tds@pdx.edu) 1. DOWNLOADING AND INSTALLING USER DEFINED SPLIT FUNCTION

More information

Usage Guide on Business Information Modeling (BIM) Spreadsheet (v1.1)

Usage Guide on Business Information Modeling (BIM) Spreadsheet (v1.1) Usage Guide on Business Information Modeling (BIM) Spreadsheet (v1.1) Table of Contents 1. INTRODUCTION...3 1.1 ABOUT THIS DOCUMENT...3 1.2 WHAT IS BIM SPREADSHEET...3 1.3 MAJOR FEATURES OF BIM SPREADSHEET...3

More information

Alarms & Events Plug-In Help. 2015 Kepware, Inc.

Alarms & Events Plug-In Help. 2015 Kepware, Inc. 2015 Kepware, Inc. 2 Table of Contents Table of Contents 2 Alarms & Events Plug-In 3 Overview 3 OPC AE Plug-In Terminology 3 OPC AE Plug-In Conditions 4 The OPC AE Plug-In from the OPC AE Clients' Perspective

More information

EASA Airworthiness Directives publishing tool 2008 EASA

EASA Airworthiness Directives publishing tool 2008 EASA EASA Airworthiness Directives publishing tool 2 EASA Airworthiness Directives publishing tool Table of Contents 3 Part I Introduction 1 Welcome... 3 NEW: Safety... Information Bulletin NEW: Foreign...

More information

CHAPTER 5: INTERACTIONS AND DOCUMENT MANAGEMENT

CHAPTER 5: INTERACTIONS AND DOCUMENT MANAGEMENT CHAPTER 5: INTERACTIONS AND DOCUMENT MANAGEMENT Objectives The objectives for this chapter are: Set up interactions. Create interaction templates. Set up interaction groups. Manage interaction attachments.

More information

Jet Data Manager 2012 User Guide

Jet Data Manager 2012 User Guide Jet Data Manager 2012 User Guide Welcome This documentation provides descriptions of the concepts and features of the Jet Data Manager and how to use with them. With the Jet Data Manager you can transform

More information

Grandstream XML Application Guide Three XML Applications

Grandstream XML Application Guide Three XML Applications Grandstream XML Application Guide Three XML Applications PART A Application Explanations PART B XML Syntax, Technical Detail, File Examples Grandstream XML Application Guide - PART A Three XML Applications

More information

Smooks Dev Tools Reference Guide. Version: 1.1.0.GA

Smooks Dev Tools Reference Guide. Version: 1.1.0.GA Smooks Dev Tools Reference Guide Version: 1.1.0.GA Smooks Dev Tools Reference Guide 1. Introduction... 1 1.1. Key Features of Smooks Tools... 1 1.2. What is Smooks?... 1 1.3. What is Smooks Tools?... 2

More information

Microsoft Office. Mail Merge in Microsoft Word

Microsoft Office. Mail Merge in Microsoft Word Microsoft Office Mail Merge in Microsoft Word TABLE OF CONTENTS Microsoft Office... 1 Mail Merge in Microsoft Word... 1 CREATE THE SMS DATAFILE FOR EXPORT... 3 Add A Label Row To The Excel File... 3 Backup

More information

How To Import A File Into The Raise S Edge

How To Import A File Into The Raise S Edge Import Guide 021312 2009 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical, including photocopying, recording,

More information

ANCS+ 8.0 Remote Training: ANCS+ 8.0, Import/Export

ANCS+ 8.0 Remote Training: ANCS+ 8.0, Import/Export ANCS+ 8.0 Remote Training: ANCS+ 8.0, Import/Export Screen Shot 1. Welcome to ANCS+ 8.0, Import/Export. This course will teach you how to import and export catalog records in ANCS+. A note on conference

More information

Customizing MISys Manufacturing Reports Using ADO-XML 6/3/2013

Customizing MISys Manufacturing Reports Using ADO-XML 6/3/2013 ADO/XML Reports Overview MISys strongly recommends that, if you want to development a custom report using the XML/ADO Interface, you have significant experience with designing reports using Crystal Reports

More information

Creating and Managing Online Surveys LEVEL 2

Creating and Managing Online Surveys LEVEL 2 Creating and Managing Online Surveys LEVEL 2 Accessing your online survey account 1. If you are logged into UNF s network, go to https://survey. You will automatically be logged in. 2. If you are not logged

More information

Chapter 4b - Navigating RedClick Import Wizard

Chapter 4b - Navigating RedClick Import Wizard Chapter Chapter 4b - Navigating RedClick Import Wizard 4b Click on an Import Name to display the template screen Click here to create a new template 2. Click on an existing template by clicking on the

More information

Email Receipting Guide. DonorPerfect Online

Email Receipting Guide. DonorPerfect Online Guide DonorPerfect Online SofterWare, Inc. DonorPerfect Online September 2010 Table of Contents Table of Contents INTRODUCTION...3 Choosing Email and/or Letter Receipting... 3 Workflow... 3 Regenerating

More information

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

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

More information

EXCEL IMPORT 18.1. user guide

EXCEL IMPORT 18.1. user guide 18.1 user guide No Magic, Inc. 2014 All material contained herein is considered proprietary information owned by No Magic, Inc. and is not to be shared, copied, or reproduced by any means. All information

More information

MICROSOFT ACCESS STEP BY STEP GUIDE

MICROSOFT ACCESS STEP BY STEP GUIDE IGCSE ICT SECTION 11 DATA MANIPULATION MICROSOFT ACCESS STEP BY STEP GUIDE Mark Nicholls ICT Lounge P a g e 1 Contents Task 35 details Page 3 Opening a new Database. Page 4 Importing.csv file into the

More information

Contact Manager HELP GUIDE

Contact Manager HELP GUIDE Contact Manager HELP GUIDE Monday Friday 8 am 7:30 pm, Saturday 9 am 5 pm, Sunday 9 am 1 pm Revised: June 3, 2014 Table of Contents Managing Contacts... 4 Create A New Contact... 4 Contact Name(s)... 4

More information

Alliance Payroll Services, Inc. Millennium Report Writer

Alliance Payroll Services, Inc. Millennium Report Writer Alliance Payroll Services, Inc. Millennium Report Writer Introduction to Millennium Table of Contents Table of Contents Symbols Used in this Manual Chapter 1 - Overview of Report Writer Tool Accessing

More information

Manual: Auto-Attendance with Connect 5! For K-12 schools. Version 5.1.1 SF Doc#: A-0799 1 P age SF Doc ID: A- 0799

Manual: Auto-Attendance with Connect 5! For K-12 schools. Version 5.1.1 SF Doc#: A-0799 1 P age SF Doc ID: A- 0799 Manual: Auto-Attendance with Connect 5! For K-12 schools Version 5.1.1 SF Doc#: A-0799 1 P age Attendance Automation About this Manual... 3 How Auto- Attendance Works... 3 Setting up Auto- Attendance Messages...

More information

Microsoft Business Contact Manager Version 2.0 New to Product. Module 4: Importing and Exporting Data

Microsoft Business Contact Manager Version 2.0 New to Product. Module 4: Importing and Exporting Data Microsoft Business Contact Manager Version 2.0 New to Product Module 4: Importing and Exporting Data Terms of Use 2005 Microsoft Corporation. All rights reserved. No part of this content may be reproduced

More information

What's New in ADP Reporting?

What's New in ADP Reporting? What's New in ADP Reporting? Welcome to the latest version of ADP Reporting! This release includes the following new features and enhancements. Use the links below to learn more about each one. What's

More information

Bulk Upload Tool (Beta) - Quick Start Guide 1. Facebook Ads. Bulk Upload Quick Start Guide

Bulk Upload Tool (Beta) - Quick Start Guide 1. Facebook Ads. Bulk Upload Quick Start Guide Bulk Upload Tool (Beta) - Quick Start Guide 1 Facebook Ads Bulk Upload Quick Start Guide Last updated: February 19, 2010 Bulk Upload Tool (Beta) - Quick Start Guide 2 Introduction The Facebook Ads Bulk

More information

Creating Codes with Spreadsheet Upload

Creating Codes with Spreadsheet Upload Creating Codes with Spreadsheet Upload Ad-ID codes are created at www.ad-id.org. In order to create a code, you must first have a group, prefix and account set up and associated to each other. This document

More information

WorldShip Import Customer Addresses

WorldShip Import Customer Addresses Go to the appropriate page for a discussion of the following import customer addresses procedures: Procedure using the Import/Export Wizard using the Connection Assistant Page 2 9 Copyright 2015, United

More information

Sample- for evaluation purposes only. Advanced Crystal Reports. TeachUcomp, Inc.

Sample- for evaluation purposes only. Advanced Crystal Reports. TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc. 2011 Advanced Crystal Reports TeachUcomp, Inc. it s all about you Copyright: Copyright 2011 by TeachUcomp, Inc. All rights reserved.

More information

Creating a New Search

Creating a New Search Getting Started The information search feature in AVImark allows the user to create and save queries to find specific information in the program. The Information Search in version 2010.4 and later now

More information

XML Based Customizable Screen. Rev 1.1

XML Based Customizable Screen. Rev 1.1 XML Based Customizable Screen Rev 1.1 August 10, 2006 1. Introduction Starting from release version 1.0.2.X, GXP-2000 supports the idle screen customization. The designs of the displayed information and

More information

Composite.Community.Newsletter - User Guide

Composite.Community.Newsletter - User Guide Composite.Community.Newsletter - User Guide Composite 2015-11-09 Composite A/S Nygårdsvej 16 DK-2100 Copenhagen Phone +45 3915 7600 www.composite.net Contents 1 INTRODUCTION... 4 1.1 Who Should Read This

More information

Chapter 3 Claims June 2012

Chapter 3 Claims June 2012 Chapter 3 Claims This Page Left Blank Intentionally CTAS User Manual 3-1 Claims: Introduction Checks All payments must be supported by an approved claim. Claims should be prepared for every check to be

More information

Organizational Development Qualtrics Online Surveys for Program Evaluation

Organizational Development Qualtrics Online Surveys for Program Evaluation The purpose of this training unit is to provide training in an online survey tool known as Qualtrics. Qualtrics is a powerful online survey tool used by many different kinds of professionals to gather

More information

Configuring Jet Essentials for Microsoft Dynamics NAV 2013 and higher

Configuring Jet Essentials for Microsoft Dynamics NAV 2013 and higher Configuring Jet Essentials for Microsoft Dynamics NAV 2013 and higher Overview Versions of Jet Essentials 2012 R2 and higher include the ability to report from databases for Microsoft Dynamics NAV 2013

More information

EXCEL 2010: PAGE LAYOUT

EXCEL 2010: PAGE LAYOUT EXCEL 2010: PAGE LAYOUT PAGE SET UP Options to change the page layout of a spreadsheet are available from the PAGE LAYOUT tab. Most of these options are available from the PAGE SETUP group on this tab.

More information

How to transfer your Recipient Address Book from FedEx Ship Manager at fedex.ca to FedEx Ship Manager Software

How to transfer your Recipient Address Book from FedEx Ship Manager at fedex.ca to FedEx Ship Manager Software How to transfer your Recipient Address Book from FedEx Ship Manager at fedex.ca to FedEx Ship Manager Software There are three phases to completing the transfer process. Phase I Phase II Phase III Export

More information

User Manual - Sales Lead Tracking Software

User Manual - Sales Lead Tracking Software User Manual - Overview The Leads module of MVI SLM allows you to import, create, assign and manage their leads. Leads are early contacts in the sales process. Once they have been evaluated and assessed,

More information

2010 Ing. Punzenberger COPA-DATA GmbH. All rights reserved.

2010 Ing. Punzenberger COPA-DATA GmbH. All rights reserved. 2010 Ing. Punzenberger COPA-DATA GmbH All rights reserved. Distribution and/or reproduction of this document or parts thereof in any form are permitted solely with the written permission of the company

More information

IceWarp to IceWarp Server Migration

IceWarp to IceWarp Server Migration IceWarp to IceWarp Server Migration Registered Trademarks iphone, ipad, Mac, OS X are trademarks of Apple Inc., registered in the U.S. and other countries. Microsoft, Windows, Outlook and Windows Phone

More information

Creating Cost Recovery Layouts

Creating Cost Recovery Layouts Contents About Creating Cost Recovery Layouts Creating New Layouts Defining Record Selection Rules Testing Layouts Processing Status Creating Cost Recovery Layouts About Creating Cost Recovery Layouts

More information

Basket Weight and Region Automatic

Basket Weight and Region Automatic Basket Weight and Region Automatic Shipping by Weight and Region ecorner Pty Ltd Australia Free Call: 1800 033 845 New Zealand: 0800 501 017 International: +61 2 9494 0200 Email: info@ecorner.com.au The

More information

MARCH 2005. Conversion Software User Guide for Windows. Version 2.0

MARCH 2005. Conversion Software User Guide for Windows. Version 2.0 MARCH 2005 CDS Conversion Software User Guide for Windows Version 2.0 Updated: 2/24/2006 Table of Contents CDS Conversion Software V2 for Windows User Guide... 1 System Requirements... 1 Introduction...

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Oracle WebCenter Forms Recognition/Capture Integration Guide 11g Release 1 (11.1.1) E49971-01 November 2013 Oracle WebCenter Forms Recognition is a learning-based solution that

More information

Person Inquiry Screen

Person Inquiry Screen Web-based SPAR Person Inquiry Screen Person Inquiry Screen Purpose The Person Inquiry Screen provides access to salary distribution for individuals by: - Individual s full name and employee number - Specific

More information

VX Search File Search Solution. VX Search FILE SEARCH SOLUTION. User Manual. Version 8.2. Jan 2016. www.vxsearch.com info@flexense.com. Flexense Ltd.

VX Search File Search Solution. VX Search FILE SEARCH SOLUTION. User Manual. Version 8.2. Jan 2016. www.vxsearch.com info@flexense.com. Flexense Ltd. VX Search FILE SEARCH SOLUTION User Manual Version 8.2 Jan 2016 www.vxsearch.com info@flexense.com 1 1 Product Overview...4 2 VX Search Product Versions...8 3 Using Desktop Product Versions...9 3.1 Product

More information

Email Address Collector. - Tutorial -

Email Address Collector. - Tutorial - Email Address Collector - Tutorial - How to extract email addresses from mail folders 1. Open Email Address Collector Once the product is installed and your license is activated, you can start extracting

More information

Infinite Campus Ad Hoc Reporting Basics

Infinite Campus Ad Hoc Reporting Basics Infinite Campus Ad Hoc Reporting Basics May, 2012 1 Overview The Ad hoc Reporting module allows a user to create reports and run queries for various types of data in Campus. Ad hoc queries may be used

More information

Upgrading to NAV 2009 R2 RTC from the technical perspective

Upgrading to NAV 2009 R2 RTC from the technical perspective Upgrading to NAV 2009 R2 RTC from the technical perspective Vytenis Jakas 1 1ClickFactory 2011.04.07 Vytenis Jakas (CV) 2009 Upgrade Development Manager, 1ClickFactory 2005 Senior Concultant/Developer,

More information