Technical Information Abstract

Size: px
Start display at page:

Download "Technical Information Abstract"

Transcription

1 1/15 Technical Information Abstract Disclaimer: in no event shall Microarea be liable for any special, indirect or consequential damages or any damages whatsoever resulting from loss of use, data or profits, whether in an action of contract, negligence or other tortious action, arising out of or in connection with the use of this documentation, provision of or failure to provide services, or information available from any of the documentation provided.

2 2/15 Welcome to the TaskBuilder. et platform technical abstract. This document will drive you through the main aspect of the TaskBuilder. et technology, letting you understand how to construct powerful extensions to Mago.Net. TaskBuilder. et Platform - Overview TaskBuilder. et is a development platform designed to build flexible and robust ERP applications. It is the platform used to construct Mago.Net, but it is designed not only for this: it also allows the design of third-party ERP solutions which work as companion of Mago.Net. With TaskBuilder. et you can: Build ERP applications that works on the side of Mago.Net, with their own Database tables, Business Objects, Data Entry, menus, and so on Use Mago.Net Business Objects to perform ERP tasks already accomplished by the standard (i.e.: posting an Order, calculate an account balance, etc.) Dynamically extend or change Mago.Net business objects behaviors without modifying original source code Some important things to know about TaskBuilder. et: It is not a proprietary language or platform. It is based on standard programming languages (C++ and C#) and works in standard development environment (MS Visual Studio) It is not a general-purposes platform. It is oriented and designed mainly to develop ERP applications It is not a closed platform. As it use standard languages and development environment, it leaves the developer free to integrate other programming components to enrich its custom application It was not designed just to customize Mago.Net, but it is the platform Mago.Net is based on. This means that developers work at the same level and with the same power of Microarea s Mago.Net designers.

3 3/15 Figure 1 - TaskBuilder. et general architecture Figure 1 shows the general architecture of a TaskBuilder. et application: Component Library: TaskBuilder. et provides a rich set of programming components oriented to the ERP environment: controls, forms, DBMS wrapping, BO abstraction, and so on Tools: Radar, Security, Path Finder, Auditing TaskBuilder. et contains plenty of tools that help the user to interact and manage the application, i.e. for browsing and finding data, secure the functionalities, track activities, and so on Applications: the application layer is constructed on top of the platform. The system comes with several standard applications, such as the Mago.Net itself, but it is designed to allow easily insertion of third-party applications Web Services: all the communication and orchestration of the application parts is done via Web Services. This means that Web Service support was not added just for limited specific interfaces, but it is the communications protocol used by all the components forming TaskBuilder. et and the applications based on it. The result is that all application parts and objects are naturally available through Web Services calls, allowing programmatic

4 4/15 use of everything is built with the platform and facilitating a SaaS approach to the provided solutions. Building Applications with TaskBuilder. et TaskBuilder. et introduces the concept of Dynamic Application. This means that the ERP solution provided to the user is not a single big chunk of software, but a composition of more independent applications which dynamically recognizes one each other and collaborating in performing operations. Basically, everything that is installed under the Applications subfolder of the installation image is explored and loaded at run-time; the same installation can hosts several applications delivered by different producer and aimed to solve different business needs. As they share the common environment and basic building blocks provided by TaskBuilder. et, the system running on the screen of the user is showing a coherent and integrated interface and behavior to him, while it is composed by several independent parts. Applications themselves are not constructed as a single block: they can be made up of several Application Modules to be optionally installed to form different configurations: i.e. Accounting, Sales, Orders, Manufacturing, and so on. This gives the producer of a vertical solution the same possibility to shape the configuration of its product as Mago.Net itself. Modules are the container of the application resources: such resources are application metadata (DBMS scripts, XML configuration, reports ) and application binary (dlls). 3-tier vs. 2-tier With TaskBuilder. et it is possible to make use of the best of breed of Client/Server architecture. The application is installed on an Application Server, which is the central repository of all shared resources and hosts all the orchestration services. When used by a rich client (Windows GDI), application dlls are downloaded (via Click-Once technology) and cached on the local PC: this speed up the application and make full use of local CPU power; in this configuration the application behave like a 2-tier one, as the business logic is running on the client, even though orchestrated by the Application Server. When used via a browser (Internet Explorer, Firefox, Chrome, ), the application behave just like a web application: nothing is installed on the client, neither executables nor browser plug-ins. All is rendered via dynamic HTML and AJAX

5 5/15 technology; all the business logic is running on the Application Server, which is designed to be scalable in order to serve multiple connected clients. Business Objects allow other programs to use them through a programmatic interface via Web Services: this may occur when the client is running EasyLook, a MagicDocuments application or a 3-party application interfaced via magiclink. In this case the business logic is kept running on the application server, which still holds all the orchestration tasks; in this configuration the behaviour is much more like those of a 3-tier application. Business Objects in TaskBuilder. et It is worth to note that TaskBuilder. et platform is not only developed with Object Oriented programming languages, but it also encourages a strong Object Oriented Design for the applications: everything is done by deriving and extending basic abstract classes, and integrating standard components in the derived one. Abstract components provided in the platform incorporate plenty of predefined behaviours and functionalities inherited by the application components derived from them. There are two main classes of objects that can implement the business logic: Business Objects aka Documents Batch operations aka Batch Documents or Wizards The Documents inherits from the Abstract Form Document base class.

6 6/15 Figure 2 A typical Document A Document consists of a business logic container (the Document itself) and of its visual part (View). By inheriting from the Abstract Form Document, a document implicitly shows a number of predefined behaviours: The data it contains can be stored and retrieved from the database It can be exported to or imported from XML data source or files It can be used programmatically as a component by other documents or pieces of business logic It can be exposed and accessed via a Web Service interface When used interactively, it can be created, edited, deleted, browsed, searched, etc. and more Documents are mainly used to contains data and apply business logic on them. Data contained in documents are stored in a database. As an ERP document often has a complex structure made of different related parts (a header, one or more details, additional tails, other related document; think of a Sale Order, for example), its representation on database tables almost always need to span on more than one table. To map the logical in-memory data structure of a document to its database counterpart, a specialized TaskBuilder. et component called DBT is provided.

7 7/15 DBTs bind document s fields to database tables and columns, and hide to the programmer the complexity of database management for document storage, retrieving, querying, and so on. Usually, just binding an Abstract Form Document derived object with the database tables and columns via a DBT is sufficient to implement a working TaskBuilder. et document. Strong OO approach is enforced by the Exclusive Delegation principle: the system contains one and only one component (Document) enabled to perform a specific task (i.e.: posting and Order); it has to be used in any condition such operation must be done, either interactively or programmatically. This assures not only component reuse, but also facilitate dynamic extensions (see below) individuating one single component to be extended to customize a specific task. The Batch Documents or Wizards are other kind of business objects oriented to massive data manipulation. Most of the time Batch Documents extract a set of documents from the database storage and perform actions on them, or generate other documents (i.e.: Sale Orders Fulfilment). They show a wizard-style interface to the user, which is simple to use and helps performing even complex tasks in a guided step-by-step environment. Figure 3 A typical Batch Document interface Batch Documents make full use of all TaskBuilder. et control set for their interface and most of the times use programmatically other document objects to perform their actions through the document s object model.

8 8/15 Reporting TaskBuilder. et delivers a unique tool for reporting: Woorm (Windows Object Oriented Report Maker). Woorm is itself an independent sophisticated tool, and its full description is far out the purposes of this abstract. It comes also as a builtin Mago.Net feature. Reporting represents perhaps a half of the business needs of an ERP application. Through Woorm, building powerful reports is an easy task. Woorm reports can be viewed as another kind of business objects. Figure 4 A Woorm report with its parameters dialog Out of the functionalities of Woorm, these are the main features to highlight: Intuitive, interactive interface for designing Sophisticated scripting language for instructions and expressions, allows development both with visual interface and direct script coding Combines layout definition and query definition in one single tool

9 9/15 Event-driven engine for full control of report flow and layout dialog designer for parameters to ask to the user and use in the report script as filter, conditions, etc., to build really flexible reports Precise WYSIWYG layout designer, works on any printer Powerful querying system SQL like Support images, also as background, in any format Call native functions (aka web methods ) of Mago.Net and other applications Drill down support, run sub-reports or open Mago.Net forms related to report data Click-and-export to Excel, Word, HTML, text Send via as attachment in PDF format and more As all of the other tools which form the TaskBuilder. et suite, Woorm was not designed for customizations only. It is the tool used for builds all standard report that come with Mago.Net: over 500 reports, ranging form the balances to the price lists, from the sales statistics to the document forms enough to prove the its power and flexibility! The developers that use TaskBuilder. et have even more possibilities in exploiting Woorm capabilities: They can implement functions in native language that can be exposed as Web Services ( web methods ) callable from within the Woorm script code. It may serve to efficient implementation of sophisticated algorithms or reuse of existing business code (i.e.: balance calculation). Support both context-free or context-full calls They can run Woorm reports from the application code, using its object model to parameterize report execution (i.e.: run the document form of the current document, or show the payment schedule of the current customer). DBMS Support TaskBuilder. et provides a complete set of components that helps manipulating data from the application code. Such components wraps OLEDB providers supported by TaskBuilder. et (actually MS SQL Server and Oracle, MySQL support is planned) with a convenient programming interface which hides to the developer all complexity of building proper statements when dealing with data stored in the database; of course, native statement invocation is still possible. Main components which deal with DBMS data are SqlTable and SqlRecord. SqlTable represents a parameterized statement (actually the full set of statements to perform INSERT, UPDATE, etc.) and permits to browse the associated dataset as you can do for an in-memory list of data; it uses serverside cursors for data manipulation. SqlRecord maps to a table or view structure

10 10/15 binding database columns to variables, for a transparent data manipulation from within the application code. All other database-related topics such as transactions, isolation levels, connections, etc. are also manipulated through specialized classes contained in the platform. Extending Business Objects TaskBuilder. et implements an exclusive and innovative approach to extend existing applications (i.e.: Mago.net) without needing to modify their source code: the Dynamic Collaboration Model. Building new Business Objects and programmatically use existing ones are important possibilities to build customizations or vertical solutions. However, often satisfying the customer s needs or matching the vertical market expectations requires the behaviour of standard features to be changed or improved. With TaskBuilder. et you receive also the full set of Mago.Net sources, and so in principles you may apply any change to the source code you need, and get a customized version of it. However, this is strongly discouraged, as it leads to break the upgrade path of the product as soon as new versions of the standard package will arrive. The Dynamic Collaboration Model (aka Client Documents ) lets you couple with both of these needs and dynamically change the behaviour of standard BOs without the need to change even one line of code of them.

11 11/15 When implementing your dynamic extension you create your BOs derived from the ClientDocument abstract class, and register them to collaborate with one or more standard BOs (ServerDocument) identified by their namespace. Every time an instance of an extended BO will be created, an instance of your extension will be also created and attached to it. Please note that this mechanism is provided in any condition a standard BO is created: this means not only interactive use, but also programmatic use by other BOs, remote use via Web Services, and so on. The dynamic extensions receive all the life-cycle events from the documents they are attached to, such as create, delete, browse, save, as well as modification of fields and also user input messages such as mouse or keyboard events. They can register to such events and act consequently: perform additional calculations, show data, show messages, prevent saving, etc. They can also change the user interface by adding toolbar buttons, tab dialogs, controls They can manage additional data on their own database tables, but also extend standard tables by adding columns to them. Once again, these features were not put in the system for the solely scope of build external customizations: they are a basic feature of the platform and are used throughout all Mago.Net standard features. Salespeople module, for example, extends Sales and Orders documents with commissions calculation,

12 12/15 Manufacturing extends the Bill of Lading when posting the receipt of outsourced products, and so on. Task Builder Wizard Task Builder Wizard is an easy-to-use and easy-to-learn development tool which allows you to graphically create and edit applications that are based on TaskBuilder. et. In fact, it helps the developers to create and maintain the code of a Task Builder application in a user-friendly manner. It is a standalone program in the sense that, even if it depends from the currently released TaskBuilder. et version, it is not integrated with other parts of it and therefore it might be possible to release a newer version of this tool without the need to wait for a global release of the whole platform. The Task Builder Wizard user interface consists of an integrated set of windows, tools, menus, toolbars and other elements that allow you to create and refine your Task Builder application projects. Figure 5 Task Builder Wizard Interface

13 13/15 Task Builder Wizard helps the developer in the design of a new application: it lets you easily define the main application entities, providing guided procedures that lead us to a logically consistent approach across the objects definitions. It gives you a real boost in the initial phases of the design: it generates and maintains XML metadata, source code, SQL scripts, etc. and provides injection point in the generated code for you to insert your business logic. It definitely let you save precious time and let you start to be productive very quickly. Later, once the project will be set up and working, you may find convenient to leave Task Builder Wizard apart and code directly into the MS Visual Studio environment. Localization Applications developed with TaskBuilder. et are easily localizable. Localization capabilities are one of the cornerstones of the platform design. Localization occurs in two ways: language localization and functional localization. From the language localization point of view, the applications created with TaskBuilder. et are easily translatable in any language, thanks to the full support of the Unicode standard, which permits to manage any available script, included those of Far East languages. The application is developed with all textual elements (i.e.: forms, messages, etc.) expressed in one base language (typically English), then translated in any desired language through a specific tool called TBLocalizer.

14 14/15 Figure 6 TB Localizer Interface TB Localizer helps the translation task with the possibility to apply glossaries, repeat previous translations, preview the translated forms for visual check, and so on. TB Localizer is a tool designed not for developers only, but also to be used by non-technical people, just to make translation of the visual interface of the program. It do not requires a development environment installation and provide preview tools to make visual checks of the translation job. The translated elements are stored in XML databases (aka dictionaries ) that are dynamically loaded during the program use. This means that the application can be viewed in different languages from different users in the same network. The interface language attribute, in fact, can be set at general level, company level or login level. From the functional localization point of view, the TaskBuilder. et application can be developed so that a single application is capable to serve all supported countries; Mago.Net is designed in that way. The dynamic application concepts and dynamic collaboration model can be used to let some application parts work

15 15/15 only in specific country conditions. Modules and functionalities can be configured to be installed on a per-country basis. Current country information is available to the programmer which can drive different business logic according to the functional localization requirements. Additional Tools TaskBuilder. et suite includes several tools that enrich the environment in which the applications run. Such tools are available either as separate modules or builtin functionalities, depending on the product configuration. Even if the discussion of such features is not a goal of this abstract, we mention them for sake of completeness: Security: available both in light or full configuration, it permits to set security profiles for any BO or aggregation of the system; this includes, of course, customized ones. It s important to note that as security is applied to BOs, it works the same in any condition they are used: interactively, programmatically, via Web Services, etc. Security is applied to BOs, and thus to features; combining it with proper database rights allows a full control over access and manipulation of company s data. Auditing: allows tracking activities done on company data by the individuals. It lets you configure fine-grained tracking rules, on single tables and even on single fields. Scheduler: permits to configure automation of activities such as, for example, batch document running or report execution and printout. Activity sequences can be defined in ordered set, planned at certain times. It supports calling of external programs and notification of success or failure. EasyLook: with EasyLook you can run any Mago.Net feature, document, dialog or Woorm report from a web page. All the most popular browsers are supported: Internet Explorer, Firefox, Chrome, Opera, Safari (MAC also). It provides an interface fully compliant to the standard GDI one. Graphic and colours of the interface can be configured to let EasyLook be a part of your company s portal. Security is applied to the features run via EasyLook with the same rules of GDI use. Mail Connector: it lets you generate reports in pdf format and automate delivery by or fax to addresses and fax numbers obtained by reading report contents. For example, invoices, dunnings, order summaries, etc. can be sent using mailing lists set in Outlook.

Dream Report vs MS SQL Reporting. 10 Key Advantages for Dream Report

Dream Report vs MS SQL Reporting. 10 Key Advantages for Dream Report Dream Report vs MS SQL Reporting 10 Key Advantages for Dream Report Page 2 of 15 Table of Contents INTRODUCTION 3 PROFESSIONAL SOFTWARE FOR NON-PROGRAMMING USERS 4 CONSIDERABLE DIFFERENCE IN ENGINEERING

More information

Category: Business Process and Integration Solution for Small Business and the Enterprise

Category: Business Process and Integration Solution for Small Business and the Enterprise Home About us Contact us Careers Online Resources Site Map Products Demo Center Support Customers Resources News Download Article in PDF Version Download Diagrams in PDF Version Microsoft Partner Conference

More information

Sisense. Product Highlights. www.sisense.com

Sisense. Product Highlights. www.sisense.com Sisense Product Highlights Introduction Sisense is a business intelligence solution that simplifies analytics for complex data by offering an end-to-end platform that lets users easily prepare and analyze

More information

DiskPulse DISK CHANGE MONITOR

DiskPulse DISK CHANGE MONITOR DiskPulse DISK CHANGE MONITOR User Manual Version 7.9 Oct 2015 www.diskpulse.com info@flexense.com 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product

More information

Reporting Services. White Paper. Published: August 2007 Updated: July 2008

Reporting Services. White Paper. Published: August 2007 Updated: July 2008 Reporting Services White Paper Published: August 2007 Updated: July 2008 Summary: Microsoft SQL Server 2008 Reporting Services provides a complete server-based platform that is designed to support a wide

More information

J j enterpririse. Oracle Application Express 3. Develop Native Oracle database-centric web applications quickly and easily with Oracle APEX

J j enterpririse. Oracle Application Express 3. Develop Native Oracle database-centric web applications quickly and easily with Oracle APEX Oracle Application Express 3 The Essentials and More Develop Native Oracle database-centric web applications quickly and easily with Oracle APEX Arie Geller Matthew Lyon J j enterpririse PUBLISHING BIRMINGHAM

More information

Oracle Application Development Framework Overview

Oracle Application Development Framework Overview An Oracle White Paper June 2011 Oracle Application Development Framework Overview Introduction... 1 Oracle ADF Making Java EE Development Simpler... 2 THE ORACLE ADF ARCHITECTURE... 3 The Business Services

More information

Microsoft Dynamics AX. Reporting and Business Intelligence in Microsoft Dynamics AX

Microsoft Dynamics AX. Reporting and Business Intelligence in Microsoft Dynamics AX INSIGHT Microsoft Dynamics AX Reporting and Business Intelligence in Microsoft Dynamics AX White Paper A roadmap for managing business performance with Microsoft Dynamics AX Date: September 2006 http://www.microsoft.com/dynamics/ax/

More information

Exploiting Key Answers from Your Data Warehouse Using SAS Enterprise Reporter Software

Exploiting Key Answers from Your Data Warehouse Using SAS Enterprise Reporter Software Exploiting Key Answers from Your Data Warehouse Using SAS Enterprise Reporter Software Donna Torrence, SAS Institute Inc., Cary, North Carolina Juli Staub Perry, SAS Institute Inc., Cary, North Carolina

More information

Pentaho Reporting Overview

Pentaho Reporting Overview Pentaho Reporting Copyright 2006 Pentaho Corporation. Redistribution permitted. All trademarks are the property of their respective owners. For the latest information, please visit our web site at www.pentaho.org

More information

Oracle Identity Analytics Architecture. An Oracle White Paper July 2010

Oracle Identity Analytics Architecture. An Oracle White Paper July 2010 Oracle Identity Analytics Architecture An Oracle White Paper July 2010 Disclaimer The following is intended to outline our general product direction. It is intended for information purposes only, and may

More information

Microsoft SQL Server 2005 Reporting Services Step by Step

Microsoft SQL Server 2005 Reporting Services Step by Step Microsoft SQL Server 2005 Reporting Services Step by Step Stacia Misner; Hitachi Consulting To learn more about this book, visit Microsoft Learning at http://www.microsoft.com/mspress/books/9153.aspx 9780735622500

More information

MatchPoint Technical Features Tutorial 21.11.2013 Colygon AG Version 1.0

MatchPoint Technical Features Tutorial 21.11.2013 Colygon AG Version 1.0 MatchPoint Technical Features Tutorial 21.11.2013 Colygon AG Version 1.0 Disclaimer The complete content of this document is subject to the general terms and conditions of Colygon as of April 2011. The

More information

SQL Server 2005 Reporting Services (SSRS)

SQL Server 2005 Reporting Services (SSRS) SQL Server 2005 Reporting Services (SSRS) Author: Alex Payne and Brian Welcker Published: May 2005 Summary: SQL Server 2005 Reporting Services is a key component of SQL Server 2005. Reporting Services

More information

EnterpriseLink Benefits

EnterpriseLink Benefits EnterpriseLink Benefits GGY AXIS 5001 Yonge Street Suite 1300 Toronto, ON M2N 6P6 Phone: 416-250-6777 Toll free: 1-877-GGY-AXIS Fax: 416-250-6776 Email: axis@ggy.com Web: www.ggy.com Table of Contents

More information

RS MDM. Integration Guide. Riversand

RS MDM. Integration Guide. Riversand RS MDM 2009 Integration Guide This document provides the details about RS MDMCenter integration module and provides details about the overall architecture and principles of integration with the system.

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

Business Process Management with @enterprise

Business Process Management with @enterprise Business Process Management with @enterprise March 2014 Groiss Informatics GmbH 1 Introduction Process orientation enables modern organizations to focus on the valueadding core processes and increase

More information

SAP Data Services 4.X. An Enterprise Information management Solution

SAP Data Services 4.X. An Enterprise Information management Solution SAP Data Services 4.X An Enterprise Information management Solution Table of Contents I. SAP Data Services 4.X... 3 Highlights Training Objectives Audience Pre Requisites Keys to Success Certification

More information

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

<Insert Picture Here> Oracle SQL Developer 3.0: Overview and New Features

<Insert Picture Here> Oracle SQL Developer 3.0: Overview and New Features 1 Oracle SQL Developer 3.0: Overview and New Features Sue Harper Senior Principal Product Manager The following is intended to outline our general product direction. It is intended

More information

Release 2.1 of SAS Add-In for Microsoft Office Bringing Microsoft PowerPoint into the Mix ABSTRACT INTRODUCTION Data Access

Release 2.1 of SAS Add-In for Microsoft Office Bringing Microsoft PowerPoint into the Mix ABSTRACT INTRODUCTION Data Access Release 2.1 of SAS Add-In for Microsoft Office Bringing Microsoft PowerPoint into the Mix Jennifer Clegg, SAS Institute Inc., Cary, NC Eric Hill, SAS Institute Inc., Cary, NC ABSTRACT Release 2.1 of SAS

More information

Table of Contents. Welcome... 2. Login... 3. Password Assistance... 4. Self Registration... 5. Secure Mail... 7. Compose... 8. Drafts...

Table of Contents. Welcome... 2. Login... 3. Password Assistance... 4. Self Registration... 5. Secure Mail... 7. Compose... 8. Drafts... Table of Contents Welcome... 2 Login... 3 Password Assistance... 4 Self Registration... 5 Secure Mail... 7 Compose... 8 Drafts... 10 Outbox... 11 Sent Items... 12 View Package Details... 12 File Manager...

More information

BusinessObjects Enterprise InfoView User's Guide

BusinessObjects Enterprise InfoView User's Guide BusinessObjects Enterprise InfoView User's Guide BusinessObjects Enterprise XI 3.1 Copyright 2009 SAP BusinessObjects. All rights reserved. SAP BusinessObjects and its logos, BusinessObjects, Crystal Reports,

More information

EnergySync and AquaSys. Technology and Architecture

EnergySync and AquaSys. Technology and Architecture EnergySync and AquaSys Technology and Architecture EnergySync and AquaSys modules Enterprise Inventory Enterprise Assets Enterprise Financials Enterprise Billing Service oriented architecture platform

More information

Communiqué 4. Standardized Global Content Management. Designed for World s Leading Enterprises. Industry Leading Products & Platform

Communiqué 4. Standardized Global Content Management. Designed for World s Leading Enterprises. Industry Leading Products & Platform Communiqué 4 Standardized Communiqué 4 - fully implementing the JCR (JSR 170) Content Repository Standard, managing digital business information, applications and processes through the web. Communiqué

More information

SOFT FLOW 2012 PRODUCT OVERVIEW

SOFT FLOW 2012 PRODUCT OVERVIEW SOFT FLOW 2012 PRODUCT OVERVIEW Copyright 2010-2012 Soft Click 1 About Soft Flow Platform Welcome to Soft Flow, the most flexible and easiest to use document management and business process management

More information

TaskCentre v4.5 Run Crystal Report Tool White Paper

TaskCentre v4.5 Run Crystal Report Tool White Paper TaskCentre v4.5 Run Crystal Report Tool White Paper Document Number: PD500-03-13-1_0-WP Orbis Software Limited 2010 Table of Contents COPYRIGHT 1 TRADEMARKS 1 INTRODUCTION 2 Overview 2 Features 2 TECHNICAL

More information

joalmeida@microsoft.com João Diogo Almeida Premier Field Engineer Microsoft Corporation

joalmeida@microsoft.com João Diogo Almeida Premier Field Engineer Microsoft Corporation joalmeida@microsoft.com João Diogo Almeida Premier Field Engineer Microsoft Corporation Reporting Services Overview SSRS Architecture SSRS Configuration Reporting Services Authoring Report Builder Report

More information

Business Insight Report Authoring Getting Started Guide

Business Insight Report Authoring Getting Started Guide Business Insight Report Authoring Getting Started Guide Version: 6.6 Written by: Product Documentation, R&D Date: February 2011 ImageNow and CaptureNow are registered trademarks of Perceptive Software,

More information

Dynamic Web Programming BUILDING WEB APPLICATIONS USING ASP.NET, AJAX AND JAVASCRIPT

Dynamic Web Programming BUILDING WEB APPLICATIONS USING ASP.NET, AJAX AND JAVASCRIPT Dynamic Web Programming BUILDING WEB APPLICATIONS USING ASP.NET, AJAX AND JAVASCRIPT AGENDA 1. Introduction to Web Applications and ASP.net 1.1 History of Web Development 1.2 Basic ASP.net processing (ASP

More information

StreamServe Persuasion SP5 Ad Hoc Correspondence and Correspondence Reviewer

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

More information

How To Test Your Web Site On Wapt On A Pc Or Mac Or Mac (Or Mac) On A Mac Or Ipad Or Ipa (Or Ipa) On Pc Or Ipam (Or Pc Or Pc) On An Ip

How To Test Your Web Site On Wapt On A Pc Or Mac Or Mac (Or Mac) On A Mac Or Ipad Or Ipa (Or Ipa) On Pc Or Ipam (Or Pc Or Pc) On An Ip Load testing with WAPT: Quick Start Guide This document describes step by step how to create a simple typical test for a web application, execute it and interpret the results. A brief insight is provided

More information

Quick start. A project with SpagoBI 3.x

Quick start. A project with SpagoBI 3.x Quick start. A project with SpagoBI 3.x Summary: 1 SPAGOBI...2 2 SOFTWARE DOWNLOAD...4 3 SOFTWARE INSTALLATION AND CONFIGURATION...5 3.1 Installing SpagoBI Server...5 3.2Installing SpagoBI Studio and Meta...6

More information

Customer Bank Account Management System Technical Specification Document

Customer Bank Account Management System Technical Specification Document Customer Bank Account Management System Technical Specification Document Technical Specification Document Page 1 of 15 Table of Contents Contents 1 Introduction 3 2 Design Overview 4 3 Topology Diagram.6

More information

PRODUCTIVITY PACK FOR PIVOTAL CRM

PRODUCTIVITY PACK FOR PIVOTAL CRM PRODUCTIVITY PACK FOR PIVOTAL CRM Time-saving features for increased usability that unleash the power of Pivotal DATA SHEET Aptean s Productivity Pack helps users get things done faster and in the most

More information

WHAT S NEW IN QLIKVIEW 11

WHAT S NEW IN QLIKVIEW 11 WHAT S NEW IN QLIKVIEW 11 QlikView 11 takes Business Discovery to a whole new level by enabling users to more easily share information with coworkers, supporting larger enterprise deployments through enhanced

More information

Attix5 Pro Server Edition

Attix5 Pro Server Edition Attix5 Pro Server Edition V7.0.2 User Manual for Mac OS X Your guide to protecting data with Attix5 Pro Server Edition. Copyright notice and proprietary information All rights reserved. Attix5, 2013 Trademarks

More information

Visual Basic. murach's TRAINING & REFERENCE

Visual Basic. murach's TRAINING & REFERENCE TRAINING & REFERENCE murach's Visual Basic 2008 Anne Boehm lbm Mike Murach & Associates, Inc. H 1-800-221-5528 (559) 440-9071 Fax: (559) 440-0963 murachbooks@murach.com www.murach.com Contents Introduction

More information

PRODUCTIVITY PACK FOR PIVOTAL CRM

PRODUCTIVITY PACK FOR PIVOTAL CRM PRODUCTIVITY PACK FOR PIVOTAL CRM Time-saving features for increased usability that unleash the power of Pivotal DATA SHEET Aptean s Productivity Pack provides users with a set of features that makes working

More information

Administration and Business Collaboration. User Manual

Administration and Business Collaboration. User Manual Administration and Business Collaboration User Manual Copyright 2007 by Eurekify Ltd., 8 Hasadna Street Raanana 43651, ISRAEL. All Rights Reserved. This document maybe used in its complete form only and

More information

BLUECIELO MERIDIAN ASSET MANAGEMENT MODULE 2014

BLUECIELO MERIDIAN ASSET MANAGEMENT MODULE 2014 BLUECIELO MERIDIAN ASSET MANAGEMENT MODULE 2014 User's Guide Manual BlueCielo ECM Solutions bluecieloecm.com December 09 2014 LEGAL NOTICE 2014 BlueCielo ECM Solutions B. V. Polarisavenue 1 2132 JH Hoofddorp

More information

ReportPortal Web Reporting for Microsoft SQL Server Analysis Services

ReportPortal Web Reporting for Microsoft SQL Server Analysis Services Zero-footprint OLAP OLAP Web Client Web Client Solution Solution for Microsoft for Microsoft SQL Server Analysis Services ReportPortal Web Reporting for Microsoft SQL Server Analysis Services See what

More information

Microsoft Dynamics GP 2013. Architecture. White Paper. This document describes the architecture for Microsoft Dynamics GP.

Microsoft Dynamics GP 2013. Architecture. White Paper. This document describes the architecture for Microsoft Dynamics GP. Microsoft Dynamics GP 2013 Architecture White Paper This document describes the architecture for Microsoft Dynamics GP. Date: February 2013 Table of Contents Introduction... 4 Client Types... 4 Desktop

More information

Database FAQs - SQL Server

Database FAQs - SQL Server Database FAQs - SQL Server Kony Platform Release 5.0 Copyright 2013 by Kony, Inc. All rights reserved. August, 2013 This document contains information proprietary to Kony, Inc., is bound by the Kony license

More information

Programmabilty. Programmability in Microsoft Dynamics AX 2009. Microsoft Dynamics AX 2009. White Paper

Programmabilty. Programmability in Microsoft Dynamics AX 2009. Microsoft Dynamics AX 2009. White Paper Programmabilty Microsoft Dynamics AX 2009 Programmability in Microsoft Dynamics AX 2009 White Paper December 2008 Contents Introduction... 4 Scenarios... 4 The Presentation Layer... 4 Business Intelligence

More information

<Insert Picture Here> Oracle Application Express 4.0

<Insert Picture Here> Oracle Application Express 4.0 Oracle Application Express 4.0 The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any

More information

Scheduling Software User s Guide

Scheduling Software User s Guide Scheduling Software User s Guide Revision 1.12 Copyright notice VisualTime is a trademark of Visualtime Corporation. Microsoft Outlook, Active Directory, SQL Server and Exchange are trademarks of Microsoft

More information

Product Overview. Dream Report. OCEAN DATA SYSTEMS The Art of Industrial Intelligence. User Friendly & Programming Free Reporting.

Product Overview. Dream Report. OCEAN DATA SYSTEMS The Art of Industrial Intelligence. User Friendly & Programming Free Reporting. Dream Report OCEAN DATA SYSTEMS The Art of Industrial Intelligence User Friendly & Programming Free Reporting. Dream Report for Trihedral s VTScada Dream Report Product Overview Applications Compliance

More information

Software Development Kit

Software Development Kit Open EMS Suite by Nokia Software Development Kit Functional Overview Version 1.3 Nokia Siemens Networks 1 (21) Software Development Kit The information in this document is subject to change without notice

More information

unipaas V1.9c Release Notes

unipaas V1.9c Release Notes Release Notes W e are proud to introduce. is an improved and updated version of the unipaas V1.9 release. Read the information in this document to find out more about this latest unipaas version. For more

More information

DCA. Document Control & Archiving USER S GUIDE

DCA. Document Control & Archiving USER S GUIDE DCA Document Control & Archiving USER S GUIDE Decision Management International, Inc. 1111 Third Street West Suite 250 Bradenton, FL 34205 Phone 800-530-0803 FAX 941-744-0314 www.dmius.com Copyright 2002,

More information

VantagePoint Getting Results Guide

VantagePoint Getting Results Guide VantagePoint Getting Results Guide FactoryTalk VantagePoint provides dashboards, trends and reports against a broad range of real time and historian data sources. To start using FactoryTalk VantagePoint

More information

McAfee VirusScan Enterprise for Linux 1.7.0 Software

McAfee VirusScan Enterprise for Linux 1.7.0 Software Configuration Guide McAfee VirusScan Enterprise for Linux 1.7.0 Software For use with epolicy Orchestrator 4.5.0 and 4.6.0 COPYRIGHT Copyright 2011 McAfee, Inc. All Rights Reserved. No part of this publication

More information

The Great Office 365 Adventure

The Great Office 365 Adventure COURSE OVERVIEW The Great Office 365 Adventure Duration: 5 days It's no secret that Microsoft has been shifting its development strategy away from the SharePoint on-premises environment to focus on the

More information

Ocean Data Systems Ltd. The Art of Industrial Intelligence. Dream Report GETTING STARTED. User- Friendly Programming-Free Reporting for Automation

Ocean Data Systems Ltd. The Art of Industrial Intelligence. Dream Report GETTING STARTED. User- Friendly Programming-Free Reporting for Automation Ocean Data Systems Ltd. The Art of Industrial Intelligence Dream Report GETTING STARTED User- Friendly Programming-Free Reporting for Automation http://www.dreamreport.net Copyright (R) Ocean Data Systems

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

Pivot Charting in SharePoint with Nevron Chart for SharePoint

Pivot Charting in SharePoint with Nevron Chart for SharePoint Pivot Charting in SharePoint Page 1 of 10 Pivot Charting in SharePoint with Nevron Chart for SharePoint The need for Pivot Charting in SharePoint... 1 Pivot Data Analysis... 2 Functional Division of Pivot

More information

Infor ERP BaanIV / Baan 5.0 / LN 6.1. User's Guide for Worktop 2.4

Infor ERP BaanIV / Baan 5.0 / LN 6.1. User's Guide for Worktop 2.4 Infor ERP BaanIV / Baan 5.0 / LN 6.1 User's Guide for Worktop 2.4 Copyright 2008 Infor All rights reserved. The word and design marks set forth herein are trademarks and/or registered trademarks of Infor

More information

GOA365: The Great Office 365 Adventure

GOA365: The Great Office 365 Adventure BEST PRACTICES IN OFFICE 365 DEVELOPMENT 5 DAYS GOA365: The Great Office 365 Adventure AUDIENCE FORMAT COURSE DESCRIPTION STUDENT PREREQUISITES Professional Developers Instructor-led training with hands-on

More information

v7.1 SP2 What s New Guide

v7.1 SP2 What s New Guide v7.1 SP2 What s New Guide Copyright 2012 Sage Technologies Limited, publisher of this work. All rights reserved. No part of this documentation may be copied, photocopied, reproduced, translated, microfilmed,

More information

Jetico Central Manager. Administrator Guide

Jetico Central Manager. Administrator Guide Jetico Central Manager Administrator Guide Introduction Deployment, updating and control of client software can be a time consuming and expensive task for companies and organizations because of the number

More information

Jitterbit Technical Overview : Salesforce

Jitterbit Technical Overview : Salesforce Jitterbit allows you to easily integrate Salesforce with any cloud, mobile or on premise application. Jitterbit s intuitive Studio delivers the easiest way of designing and running modern integrations

More information

PIE. Internal Structure

PIE. Internal Structure PIE Internal Structure PIE Composition PIE (Processware Integration Environment) is a set of programs for integration of heterogeneous applications. The final set depends on the purposes of a solution

More information

Using Microsoft Business Intelligence Dashboards and Reports in the Federal Government

Using Microsoft Business Intelligence Dashboards and Reports in the Federal Government Using Microsoft Business Intelligence Dashboards and Reports in the Federal Government A White Paper on Leveraging Existing Investments in Microsoft Technology for Analytics and Reporting June 2013 Dev

More information

Adaptive Enterprise Solutions

Adaptive Enterprise Solutions Reporting User Guide Adaptive Enterprise Solutions 8401 Colesville Road Suite 450 Silver Spring, MD 20910 800.237.9785 Toll Free 301.589.3434 Voice 301.589.9254 Fax www.adsystech.com Version 5 THIS USER

More information

Developing Microsoft SharePoint Server 2013 Advanced Solutions

Developing Microsoft SharePoint Server 2013 Advanced Solutions Course 20489B: Developing Microsoft SharePoint Server 2013 Advanced Solutions Course Details Course Outline Module 1: Creating Robust and Efficient Apps for SharePoint In this module, you will review key

More information

The Recipe for Sarbanes-Oxley Compliance using Microsoft s SharePoint 2010 platform

The Recipe for Sarbanes-Oxley Compliance using Microsoft s SharePoint 2010 platform The Recipe for Sarbanes-Oxley Compliance using Microsoft s SharePoint 2010 platform Technical Discussion David Churchill CEO DraftPoint Inc. The information contained in this document represents the current

More information

Open Source Business Intelligence Intro

Open Source Business Intelligence Intro Open Source Business Intelligence Intro Stefano Scamuzzo Senior Technical Manager Architecture & Consulting Research & Innovation Division Engineering Ingegneria Informatica The Open Source Question In

More information

Integrating with BarTender Integration Builder

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

More information

Course 20489B: Developing Microsoft SharePoint Server 2013 Advanced Solutions OVERVIEW

Course 20489B: Developing Microsoft SharePoint Server 2013 Advanced Solutions OVERVIEW Course 20489B: Developing Microsoft SharePoint Server 2013 Advanced Solutions OVERVIEW About this Course This course provides SharePoint developers the information needed to implement SharePoint solutions

More information

Page 1. Overview of System Architecture

Page 1. Overview of System Architecture Page 1 Contents Introduction to the HR.net Enterprise Framework 1 HR.net Enterprise Administrator Console 3 HR.net Enterprise Document Explorer 4 HR.net Enterprise Server Application 4 HR.net Enterprise

More information

Building Java Servlets with Oracle JDeveloper

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

More information

ER/Studio Enterprise Portal 1.0.2 User Guide

ER/Studio Enterprise Portal 1.0.2 User Guide ER/Studio Enterprise Portal 1.0.2 User Guide Copyright 1994-2008 Embarcadero Technologies, Inc. Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco, CA 94111 U.S.A. All rights

More information

New Features in Neuron ESB 2.6

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

More information

Web Application Development for the SOA Age Thinking in XML

Web Application Development for the SOA Age Thinking in XML Web Application Development for the SOA Age Thinking in XML Enterprise Web 2.0 >>> FAST White Paper August 2007 Abstract Whether you are building a complete SOA architecture or seeking to use SOA services

More information

MERLIN. The Quick Start Guide to professional project management. 2013 ProjectWizards GmbH, Melle, Germany. All rights reserved.

MERLIN. The Quick Start Guide to professional project management. 2013 ProjectWizards GmbH, Melle, Germany. All rights reserved. MERLIN The Quick Start Guide to professional project management 2013 ProjectWizards GmbH, Melle, Germany. All rights reserved. INTRODUCTION Welcome to the quick start guide to Merlin! Thank you for choosing

More information

Top 10 Oracle SQL Developer Tips and Tricks

Top 10 Oracle SQL Developer Tips and Tricks Top 10 Oracle SQL Developer Tips and Tricks December 17, 2013 Marc Sewtz Senior Software Development Manager Oracle Application Express Oracle America Inc., New York, NY The following is intended to outline

More information

Jitterbit Technical Overview : Microsoft Dynamics CRM

Jitterbit Technical Overview : Microsoft Dynamics CRM Jitterbit allows you to easily integrate Microsoft Dynamics CRM with any cloud, mobile or on premise application. Jitterbit s intuitive Studio delivers the easiest way of designing and running modern integrations

More information

6.2 Reporting BIPublisher Improvements

6.2 Reporting BIPublisher Improvements 6.2 Reporting BIPublisher Improvements Paul Hamill Senior Director, OTM Development 2011 OTM SIG Philadelphia, PA August 16-18, 2011 Safe Harbor Statements The following is intended

More information

CHAPTER 6: TECHNOLOGY

CHAPTER 6: TECHNOLOGY Chapter 6: Technology CHAPTER 6: TECHNOLOGY Objectives Introduction The objectives are: Review the system architecture of Microsoft Dynamics AX 2012. Describe the options for making development changes

More information

BarTender Web Print Server

BarTender Web Print Server The World's Leading Software for Label, Barcode, RFID & Card Printing White Paper BarTender Web Print Server Web-based Software for Printing Barcodes, Labels, ID Cards and more. Contents Introduction to

More information

Business Benefits From Microsoft SQL Server Business Intelligence Solutions How Can Business Intelligence Help You? PTR Associates Limited

Business Benefits From Microsoft SQL Server Business Intelligence Solutions How Can Business Intelligence Help You? PTR Associates Limited Business Benefits From Microsoft SQL Server Business Intelligence Solutions How Can Business Intelligence Help You? www.ptr.co.uk Business Benefits From Microsoft SQL Server Business Intelligence (September

More information

AUTOMATED CONFERENCE CD-ROM BUILDER AN OPEN SOURCE APPROACH Stefan Karastanev

AUTOMATED CONFERENCE CD-ROM BUILDER AN OPEN SOURCE APPROACH Stefan Karastanev International Journal "Information Technologies & Knowledge" Vol.5 / 2011 319 AUTOMATED CONFERENCE CD-ROM BUILDER AN OPEN SOURCE APPROACH Stefan Karastanev Abstract: This paper presents a new approach

More information

Final Report - HydrometDB Belize s Climatic Database Management System. Executive Summary

Final Report - HydrometDB Belize s Climatic Database Management System. Executive Summary Executive Summary Belize s HydrometDB is a Climatic Database Management System (CDMS) that allows easy integration of multiple sources of automatic and manual stations, data quality control procedures,

More information

Thin@ System Architecture V3.2. Last Update: August 2015

Thin@ System Architecture V3.2. Last Update: August 2015 Thin@ System Architecture V3.2 Last Update: August 2015 Introduction http://www.thinetsolution.com Welcome to Thin@ System Architecture manual! Modern business applications are available to end users as

More information

2012 LABVANTAGE Solutions, Inc. All Rights Reserved.

2012 LABVANTAGE Solutions, Inc. All Rights Reserved. LABVANTAGE Architecture 2012 LABVANTAGE Solutions, Inc. All Rights Reserved. DOCUMENT PURPOSE AND SCOPE This document provides an overview of the LABVANTAGE hardware and software architecture. It is written

More information

CRGroup Whitepaper: Digging through the Data. www.crgroup.com. Reporting Options in Microsoft Dynamics GP

CRGroup Whitepaper: Digging through the Data. www.crgroup.com. Reporting Options in Microsoft Dynamics GP CRGroup Whitepaper: Digging through the Data Reporting Options in Microsoft Dynamics GP The objective of this paper is to provide greater insight on each of the reporting options available to you within

More information

Outlines. Business Intelligence. What Is Business Intelligence? Data mining life cycle

Outlines. Business Intelligence. What Is Business Intelligence? Data mining life cycle Outlines Business Intelligence Lecture 15 Why integrate BI into your smart client application? Integrating Mining into your application Integrating into your application What Is Business Intelligence?

More information

Staff User s Guide Task Manager. Version 20

Staff User s Guide Task Manager. Version 20 Staff User s Guide Task Manager Version 20 CONFIDENTIAL INFORMATION The information herein is the property of Ex Libris Ltd. or its affiliates and any misuse or abuse will result in economic loss. DO NOT

More information

Developing Microsoft SharePoint Server 2013 Advanced Solutions

Developing Microsoft SharePoint Server 2013 Advanced Solutions Course 20489B: Developing Microsoft SharePoint Server 2013 Advanced Solutions Page 1 of 9 Developing Microsoft SharePoint Server 2013 Advanced Solutions Course 20489B: 4 days; Instructor-Led Introduction

More information

TIBCO Spotfire Automation Services 6.5. User s Manual

TIBCO Spotfire Automation Services 6.5. User s Manual TIBCO Spotfire Automation Services 6.5 User s Manual Revision date: 17 April 2014 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO

More information

Actuate Business Intelligence and Reporting Tools (BIRT)

Actuate Business Intelligence and Reporting Tools (BIRT) Product Datasheet Actuate Business Intelligence and Reporting Tools (BIRT) Eclipse s BIRT project is a flexible, open source, and 100% pure Java reporting tool for building and publishing reports against

More information

Exclaimer Mail Archiver User Manual

Exclaimer Mail Archiver User Manual User Manual www.exclaimer.com Contents GETTING STARTED... 8 Mail Archiver Overview... 9 Exchange Journaling... 9 Archive Stores... 9 Archiving Policies... 10 Search... 10 Managing Archived Messages...

More information

PeopleTools 8.51 PeopleBook: PeopleSoft Application Designer Lifecycle Management Guide

PeopleTools 8.51 PeopleBook: PeopleSoft Application Designer Lifecycle Management Guide PeopleTools 8.51 PeopleBook: PeopleSoft Application Designer Lifecycle Management Guide August 2010 PeopleTools 8.51 PeopleBook: PeopleSoft Application Designer Lifecycle Management Guide SKU pt8.51tlcm-b0810

More information

ANSYS EKM Overview. What is EKM?

ANSYS EKM Overview. What is EKM? ANSYS EKM Overview What is EKM? ANSYS EKM is a simulation process and data management (SPDM) software system that allows engineers at all levels of an organization to effectively manage the data and processes

More information

Developer Tutorial Version 1. 0 February 2015

Developer Tutorial Version 1. 0 February 2015 Developer Tutorial Version 1. 0 Contents Introduction... 3 What is the Mapzania SDK?... 3 Features of Mapzania SDK... 4 Mapzania Applications... 5 Architecture... 6 Front-end application components...

More information

Bridging People and Process. Bridging People and Process. Bridging People and Process. Bridging People and Process

Bridging People and Process. Bridging People and Process. Bridging People and Process. Bridging People and Process USER MANUAL DATAMOTION SECUREMAIL SERVER Bridging People and Process APPLICATION VERSION 1.1 Bridging People and Process Bridging People and Process Bridging People and Process Published By: DataMotion,

More information

IndustrialIT System 800xA Engineering

IndustrialIT System 800xA Engineering IndustrialIT System 800xA Engineering Overview Features and Benefits Integrated Engineering Environment: Supports the engineering of the entire extended automation system from field devices to plant management

More information

SAP Business Objects XIR3.0/3.1, BI 4.0 & 4.1 Course Content

SAP Business Objects XIR3.0/3.1, BI 4.0 & 4.1 Course Content SAP Business Objects XIR3.0/3.1, BI 4.0 & 4.1 Course Content SAP Business Objects Web Intelligence and BI Launch Pad 4.0 Introducing Web Intelligence BI launch pad: What's new in 4.0 Customizing BI launch

More information