METADATA-DRIVEN QLIKVIEW APPLICATIONS AND POWERFUL DATA INTEGRATION WITH QLIKVIEW EXPRESSOR

Size: px
Start display at page:

Download "METADATA-DRIVEN QLIKVIEW APPLICATIONS AND POWERFUL DATA INTEGRATION WITH QLIKVIEW EXPRESSOR"

Transcription

1 METADATA-DRIVEN QLIKVIEW APPLICATIONS AND POWERFUL DATA INTEGRATION WITH QLIKVIEW EXPRESSOR A QlikView Technical Brief Document March 2013 qlikview.com

2 Introduction This technical brief highlights a subset of capabilities and approaches that are to be considered when developing metadata-driven QlikView applications using QlikView Expressor. The information provided will cover core value and benefits when using QlikView Expressor for data preparation used by QlikView applications as compared to accessing, transforming and loading data natively using QlikView. The technical brief is strictly to inform QlikView developers of an alternative approach and additional functionality available to them when developing QlikView applications for large scale QlikView deployments. It is not meant to compare or contrast QlikView Expressor data provisioning versus native QlikView scripting nor recommend any specific one approach. QlikView Expressor Dataflows Simply stated, QlikView Expressor provides a rich development studio to provision data for QlikView and other data targets. Creating a QlikView Expressor Dataflow from a list of graphical operations that access, transform and load data - makes it easy to see where the data is coming from, how it is being transformed and where it is going. Property panels guide the developer in selecting available options allowing simple configuration of most operators. While developing a Dataflow, a layer of active metadata is defined about the data it is describing, resulting in a reusable collection of common business definitions and rules that can be applied across all integration and QlikView application projects. QlikView Expressor calls this reusable collection of active metadata a Semantic Type. Figure 1: QlikView Expressor Desktop and Dataflow loading data into QlikView Metadata-Driven QlikView Applications and Powerful Data Integration with QlikView Expressor 2

3 Active Metadata Semantic Type Metadata is defined as data about data. Active metadata can be defined as metadata in action. This active metadata layer used in QlikView Expressor is called a Semantic Type. Traditional Business Intelligence metadata is mostly static and limited to only describing a few properties about the data it refers to such as data type, column name, length and format. QlikView Expressor metadata is not static, it s actionable. It describes common properties on the source and target data while actively respecting data validation rules that have been defined on its attributes. Let s take a simplistic example using a string column named ZIP used to store a 5 digit +4 zip code. Not only can the metadata describe the attribute using a common business term such as PostalCode, but it can also specify a minimum and maximum string size constraint to ensure the data length only falls within a specified range. Furthermore, it can provide a pattern match rule using a regular expression such as ^\d{5}-\d{4}$. This will ensure that the data flowing to QlikView will absolutely match the XXXXX-XXXX pattern. - What if the value fails the rule(s) you might ask? A choice to set a corrective action or redirect the record to another part of the flow is available - allowing more control on how and where the data is to be processed. Figure 2: QlikView Expressor Semantic Type and Edit Attribute dialog showing constraints and corrective actions Other examples include using an allowable list of values, setting rounding / min / max / precision / scale / constraints on numeric values, date range validation, date formatting and string padding / truncation. The benefit to creating active metadata such as this is that instead of defining individual validation and redirect rules within script or within each individual Metadata-Driven QlikView Applications and Powerful Data Integration with QlikView Expressor 3

4 application, active metadata can be defined once and reused across all applications that require these attributes for decision making. And by storing the metadata in the QlikView Expressor version control repository it becomes reusable for other QlikView Expressor projects and deployments which is especially handy in a multi-developer environment. Reuse, Storage and Sharing In order to speed up a project s development and reduce its implementation time, it is important to leverage common work components that have already been developed. Within QlikView Expressor common project components that can be reused across all applications are Semantic Types, Schemas, Lookup Tables, Connections, Operators and Datascript modules. If there are projects that use common data sources, columns, expressions and business rules, it makes absolute sense to create those elements once and shared them with other developers. QlikView Expressor provides a combination of project storage options for its Dataflow building blocks known as artifacts. Local developers can simply choose to use a file system workspace where all projects and artifacts are stored locally for reuse on their system. They can enable simple sharing of their projects components by exporting them to an archive that can be imported by another developer. A more streamlined approach would be to use the QlikView Expressor Repository Workspace. This offers a centralized storage and version control system for storing QlikView Expressor artifacts. Developers can securely connect to their repository server from anywhere and check out the libraries with the artifacts they need. Furthermore, if certain updates are needed they can occur in one place and be applied to all the applications easily with a simple update or check in. A great use of the centralized Repository Workspace is to check out and reuse pre-configured Operator Templates to apply a common set of business rules to any QlikView application. Figure 3: Checking out a library and its artifacts from the QlikView Expressor Repository Workspace Metadata-Driven QlikView Applications and Powerful Data Integration with QlikView Expressor 4

5 Reusable Business Rules and Operator Templates Another way to provide greater time to value when using QlikView Expressor is to create a reusable library of common business rules exposed as Operator Templates. QlikView Expressor Dataflows use a graphical operation to build business and transformation rules called a Transform operator. The Transform operator is an all-inclusive component used to create new and augment existing data. It can create a collection of reusable rules that accept incoming data attributes as inputs. Transformed data is defined in expressions using Expression, Function and Lookup Rules created within the Transform Operator s Rules Editor. Rules enrich data with a variety of string, math, decision, utility and many more functions, including the ability to lookup data from lookup tables. Use of the Transform operator can be compared to creating expressions within QlikView load scripts or within UI sheet objects; however the operator and its already created rules can be made available as a reusable Operator Template that can be included in any QlikView Expressor dataflow. Some examples of common transformation rules may include - definitions of metrics such as profitability, churn rate or margin; data that combines multiple fields such as FNAME and LNAME to make FullName; standardized formatting and masking to properly format dates, phone numbers and social security numbers. All of the appropriate expressions to create those desired results can be include as rules in the Transform Operator, parameterized and made available as an Operator Template. The next developer to use that template would simply map the input attributes to the rule parameters and map the output attributes. Operator Templates are also commonly used to enrich incoming data with other disparate data from Lookup tables. A clear example of this looking up location data such as geocoding an incoming state code; country, city, zip address etc. Figure 4: Dataflow, Transform Operator, Rules Editor and Rule that Defines a Common Metric Metadata-Driven QlikView Applications and Powerful Data Integration with QlikView Expressor 5

6 Lookup Tables A Lookup Table is a database table designed to serve a special, limited function within a data integration application or group of applications. Lookup Tables are usually created from a subset of data from a larger table or from a source designed to add data that an application can use. For example, a Lookup Table might be created to provide department names to data from a source that contains only department numbers. During the process of integrating data, the Lookup Table could be read to add department names to department numbers. The advantage of Lookup Tables is that they are stored within an expressor Project and are included in Deployment Packages. Access to them is thereby made easier and faster. When their function and size are limited, accessing their data is also easy and fast. In QlikView Expressor, Lookup Expression Rules are similar to using the ApplyMap() function that is used with a MAPPING table created with MAPPING LOAD statement in QlikView load script. However with the Lookup Expression Rules, the developer is not limited to just two fields. Lookup Tables can have both single and composite keys and return multiple columns from them. The developer can also specify a default value if the value being looked up is not present. It is also possible to branch to another part of the Dataflow to perform another step, without having to use IF THEN ELSE scripting logic. Using the Range Lookup feature makes it possible to define lookups that are constructed as numeric ranges. Figure 5: Lookup Table flow and Lookup Expression Rule Metadata-Driven QlikView Applications and Powerful Data Integration with QlikView Expressor 6

7 Extending Functionality with QlikView Expressor Datascript Business Intelligence solutions should always provide a software development kit to help organizations create new components and extend existing functionality that is not always available inside the box. It is impossible to have everything that everyone wants available in a graphical business user or development interface. Leveraging a SDK allows customers and partners the ability to create what they need when they want it without the reliance on the software vendor. With QlikView Expressor there is an option to use a script editor depending on the complexity of the data access or transformation needed. This functionality is comparable to using QlikView script or building extensions for a QlikView application. QlikView Expressor Datascript is a lightweight, fast interpreted scripting language based on Lua. It is easy to learn and provides an extensible library of additional modules that enable custom functionality to be defined and shared across all QlikView Expressor applications. Datascript can also come in handy when certain file management and job control flow capability is needed as file system, ftp and web service type modules can be made available. Figure 6: A Datascript module that accesses, parses and flattens Facebook generic profile data Metadata-Driven QlikView Applications and Powerful Data Integration with QlikView Expressor 7

8 Semantic Conformance Mapping Data attributes used by QlikView should be easy to recognize and prepared with consistency. Determining whether account_num is used in the same manner as customer_num or whether Profit Margin is similar to Gain, can lead to confusion and delay in decision making. As applications grow rapidly, management of data and how it s prepared can become an afterthought. Starting with version 3.9, QlikView Expressor has added a new feature that ensures data attributes remain consistent across multiple QlikView Expressor projects. The Conformance Mapping interface enables consistent naming of attributes representing a given data element. It reduces the proliferation of unnecessary variations that can cause inconsistent results in data processing. Conformance Mapping makes it simple to unify the attributes mapped to fields in a Schema. When an attribute shares similar properties with other attributes in the Workspace, it can be made to conform to one of the other attributes. QlikView Expressor Studio supports this in the following manner: For a given field in a schema, the Studio shows other attributes in the workspace that are mapped to fields of the same name known as Candidates. The user may then update the given field s mapped-attribute, to conform to one or more already existing in the workspace. Figure 7: Conformance Mapper, displaying list of possible candidates for the employee_first_name field Metadata-Driven QlikView Applications and Powerful Data Integration with QlikView Expressor 8

9 Metadata Analysis Search and Usage You cannot manage what you can t find. Understanding where data elements originate, how they are processed and where they end up reduces the many risks associated with managing data, such as its security, privacy and sensitivity. Managing these risks is necessary, but there s one problem: in order to achieve compliance companies must be able to reveal where data comes from, where it flows to, and how it s transformed as it travels through the enterprise. This is where tools that provide impact analysis come in handy; being able to analyze where data is, and how it flows so you can manage and secure it appropriately as it moves across the Enterprise. Starting with version 3.9, the Metadata Analysis Search and Usage interface helps locate QlikView Expressor artifacts (dataflows, schemas, types, connections, attributes, fields, etc.) within workspaces, projects and libraries that are used to manage and prepare data for QlikView and other data targets. It achieves this using the following two methods, Search and Usage. Search supports a variety of user input parameters, including dates and fuzzy matching, to help you locate various artifacts across the workspace. Figure 8: Search facility locating defined attribute bonus Metadata-Driven QlikView Applications and Powerful Data Integration with QlikView Expressor 9

10 Usage - supports the selection and searching of artifacts by Uses or Used by Uses displays all artifacts that the selected artifact uses i.e. a schema using a type i.e. an operator template using a connection and a Schema Figure 9: Usage facility locating where and what is using the ReadSalesForcefromFile Template Used by displays all artifacts that the selected artifact is used by Figure 10: Usage facility locating the usage of the MSQLServerConnection artifact Metadata-Driven QlikView Applications and Powerful Data Integration with QlikView Expressor 10

11 Extensions SDK What is a QlikView Expressor Extension? A QlikView Expressor Extension is a plug-in (or add-on) that adds new operators and metadata artifacts to those included in the core Expressor product. Those capabilities can provide access to data from sources that are not accessible through the standard operators and artifact types such as Read and Write Table, Database and File Connection, and Table and Delimited Schema. Extensions can also be designed to perform transformations on data that cannot be performed by the standard QlikView Expressor operators. The Extensions SDK Starting with version 3.9, the Extension SDK will enable a set of toolkits and wizards that provide a framework with common functions for developing Extensions for QlikView Expressor. With Extensions, developers can provide clients with tools to integrate data from specialized sources and perform specialized transformations on data. An Extension s operators, Connections and Schema integrate into the Studio interface and seamlessly work in conjunction with other Standard, Enterprise, and Extension artifacts and operators. Figure 11: Extension Builder with Descriptor Wizards to create custom operators and artifacts The Extensions SDK provides a set of compilation, utility, and data type conversion functions using built-in Datascript Modules (DSM). DSMs are the standard QlikView Expressor scripting module for Datascript which is based on the Lua open-source scripting language. Extensions build on these common functions add functionality to the QlikView Expressor Studio and support custom data sources and specialized transformations. Extensions developed with the SDK can be installed easily into an existing QlikView Metadata-Driven QlikView Applications and Powerful Data Integration with QlikView Expressor 11

12 Expressor software installation. All Extensions are installed and activated through the Manage Extensions option on the Studio menu. Figure 12: Extension created, packaged and then enabled by the QlikView Expressor Extensions Manager Fig. 13: Operators list with custom built operators, dataflow using those operators and custom properties Metadata-Driven QlikView Applications and Powerful Data Integration with QlikView Expressor 12

13 References For detailed information on these features and much more please review the latest documentation found on the QlikCommunity or installed with QlikView Expressor Desktop. Documentation Forum QlikView Expressor Product Page QlikView Expressor Manual QlikCommunity QlikView Expressor Documents Lua QlikTech International AB. All rights reserved. QlikTech, QlikView, Qlik, Q, Simplifying Analysis for Everyone, Power of Simplicity, New Rules, The Uncontrollable Smile and other QlikTech products and services as well as their respective logos are trademarks or registered trademarks of QlikTech International AB. All other company names, products and services used herein are trademarks or registered trademarks of their respective owners. The information published herein is subject to change without notice. This publication is for informational purposes only, without representation or warranty of any kind, and QlikTech shall not be liable for errors or omissions with respect to this publication. The only warranties for QlikTech products and services are those that are set forth in the express warranty statements accompanying such products and services, if any. Nothing herein should be construed as constituting any additional warranty. Metadata-Driven QlikView Applications and Powerful Data Integration with QlikView Expressor 13

QLIKVIEW GOVERNANCE DASHBOARD FAQ

QLIKVIEW GOVERNANCE DASHBOARD FAQ QLIKVIEW GOVERNANCE DASHBOARD FAQ What is the QlikView Governance Dashboard?.... 2 What is the value of the QlikView Governance Dashboard?.... 2 Who should use the QlikView Governance Dashboard?.... 2

More information

QLIKVIEW GOVERNANCE DASHBOARD 1.0

QLIKVIEW GOVERNANCE DASHBOARD 1.0 QLIKVIEW GOVERNANCE DASHBOARD 1.0 A QlikView Technical Brief April 2013 qlikview.com Table of Contents About the QlikView Governance Dashboard 3 What s New Since Beta 2? 4 Summary Sheet 4 File Details

More information

GOVERNANCE OVERVIEW. A QlikView Technology White Paper. qlikview.com. December 2011

GOVERNANCE OVERVIEW. A QlikView Technology White Paper. qlikview.com. December 2011 GOVERNANCE OVERVIEW A QlikView Technology White Paper December 2011 qlikview.com Table of Contents Overview 3 Application Governance 4 Development 4 Usage 9 Security 12 Data Governance 13 QVD layer 13

More information

The QlikView deployment framework

The QlikView deployment framework Technical Brief The QlikView deployment framework January, 2014 Table of Contents Introduction 2 Who is this document for? 2 The QlikView deployment framework 3 A sample QDF setup 4 What s included in

More information

QLIKVIEW MOBILE SECURITY

QLIKVIEW MOBILE SECURITY QLIKVIEW MOBILE SECURITY QlikView Technical Brief Published: March, 2011 qlikview.com QlikView Mobile Security Mobile devices are convenient, versatile and, for many employees, they are indispensable.

More information

QLIKVIEW DATA FLOWS TECHNICAL BRIEF

QLIKVIEW DATA FLOWS TECHNICAL BRIEF QLIKVIEW DATA FLOWS TECHNICAL BRIEF A QlikView Technical Brief September 2013 qlikview.com Table of Contents Introduction 3 Overview 3 Data Sourcing 5 Loading and Modeling Data 6 Provisioning Data 9 Using

More information

THE QLIKVIEW BUSINESS DISCOVERY PLATFORM

THE QLIKVIEW BUSINESS DISCOVERY PLATFORM THE QLIKVIEW BUSINESS DISCOVERY PLATFORM With, organizations can rapidly deploy fast, flexible Business Discovery apps that provide information workers with dynamic views of the information they need to

More information

QLIKVIEW DEPLOYMENT FOR BIG DATA ANALYTICS AT KING.COM

QLIKVIEW DEPLOYMENT FOR BIG DATA ANALYTICS AT KING.COM QLIKVIEW DEPLOYMENT FOR BIG DATA ANALYTICS AT KING.COM QlikView Technical Case Study Series Big Data June 2012 qlikview.com Introduction This QlikView technical case study focuses on the QlikView deployment

More information

QlikView 11 Source Control Walkthrough

QlikView 11 Source Control Walkthrough QlikView 11 Source Control Walkthrough A QlikView Technology White Paper Originally published: August, 2011 Updated August, 2012 www.qlikview.com 1 Table of Contents BACKGROUND... 3 SOURCE CONTROL BASICS...

More information

QLIKVIEW FOR LIFE SCIENCES. Partnering for Innovation and Sustainable Growth

QLIKVIEW FOR LIFE SCIENCES. Partnering for Innovation and Sustainable Growth QLIKVIEW FOR LIFE SCIENCES Partnering for Innovation and Sustainable Growth A BUSINESS MODEL BUILT FOR INSIGHT Success in today s life sciences industry requires insight into volumes of data, the sharing

More information

THE QLIKVIEW PRODUCT FAMILY

THE QLIKVIEW PRODUCT FAMILY THE QLIKVIEW PRODUCT FAMILY is the world s first associative, in-memory Business Discovery platform. It enables business users to assemble data from multiple sources, explore it, make discoveries, and

More information

QLIKVIEW SERVER LINEAR SCALING

QLIKVIEW SERVER LINEAR SCALING QLIKVIEW SERVER LINEAR SCALING QlikView Scalability Center Technical Brief Series June 212 qlikview.com Introduction This technical brief presents an investigation about how QlikView Server scales in performance

More information

SAP BusinessObjects BI Clients

SAP BusinessObjects BI Clients SAP BusinessObjects BI Clients April 2015 Customer Use this title slide only with an image BI Use Cases High Level View Agility Data Discovery Analyze and visualize data from multiple sources Data analysis

More information

SAP HANA Live & SAP BW Data Integration A Case Study

SAP HANA Live & SAP BW Data Integration A Case Study SAP HANA Live & SAP BW Data Integration A Case Study Matthias Kretschmer, Andreas Tenholte, Jürgen Butsmann, Thomas Fleckenstein July 2014 Disclaimer This presentation outlines our general product direction

More information

QLIKVIEW IN THE ENTERPRISE

QLIKVIEW IN THE ENTERPRISE QLIKVIEW IN THE ENTERPRISE IT Overview The QlikView Business Discovery platform is a natural fit within an organization s Information Architecture, allowing IT and BI groups to serve the ever-growing analytical

More information

MAINTAINING STABILITY. Cost Reduction and Expense Management for the Financial Services Sector

MAINTAINING STABILITY. Cost Reduction and Expense Management for the Financial Services Sector MAINTAINING STABILITY Cost Reduction and Expense Management for the Financial Services Sector MAINTAINING STABILITY IN THE MOST DEMANDING SECTOR IN THE WORLD In order to survive and flourish in today s

More information

SAP BusinessObjects Edge BI, Standard Package Preferred Business Intelligence Choice for Growing Companies

SAP BusinessObjects Edge BI, Standard Package Preferred Business Intelligence Choice for Growing Companies SAP Solutions for Small Businesses and Midsize Companies SAP BusinessObjects Edge BI, Standard Package Preferred Business Intelligence Choice for Growing Companies SAP BusinessObjects Edge BI, Standard

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

The QlikView Business Discovery platform

The QlikView Business Discovery platform The Business Discovery platform With, organizations can rapidly deploy fast, flexible Business Discovery apps that provide information workers with dynamic views of the information they need to make decisions.

More information

Visualization Starter Pack from SAP Overview Enabling Self-Service Data Exploration and Visualization

Visualization Starter Pack from SAP Overview Enabling Self-Service Data Exploration and Visualization Business Intelligence Visualization Starter Pack from SAP Overview Enabling Self-Service Data Exploration and Visualization In today s environment, almost every corporation has to work with enormous data

More information

SWEDBANK EMPOWERS 5,000+ USERS WITH CUSTOMER ANALYSIS TOOL USING QLIKVIEW

SWEDBANK EMPOWERS 5,000+ USERS WITH CUSTOMER ANALYSIS TOOL USING QLIKVIEW SWEDBANK EMPOWERS 5,000+ USERS WITH CUSTOMER ANALYSIS TOOL USING QLIKVIEW QlikView is an immensely powerful Business Discovery platform. The solution gives users the power to gain access to and freely

More information

QLIKVIEW SERVER MEMORY MANAGEMENT AND CPU UTILIZATION

QLIKVIEW SERVER MEMORY MANAGEMENT AND CPU UTILIZATION QLIKVIEW SERVER MEMORY MANAGEMENT AND CPU UTILIZATION QlikView Scalability Center Technical Brief Series September 2012 qlikview.com Introduction This technical brief provides a discussion at a fundamental

More information

SAP HANA SPS 09 - What s New? Development Tools

SAP HANA SPS 09 - What s New? Development Tools SAP HANA SPS 09 - What s New? Development Tools (Delta from SPS 08 to SPS 09) SAP HANA Product Management November, 2014 2014 SAP SE or an SAP affiliate company. All rights reserved. 1 Overview What s

More information

Connectivity Pack for Microsoft Guide

Connectivity Pack for Microsoft Guide HP Vertica Analytic Database Software Version: 7.0.x Document Release Date: 2/20/2015 Legal Notices Warranty The only warranties for HP products and services are set forth in the express warranty statements

More information

QLIKVIEW ON MOBILE: Beyond Reporting. A QlikView White Paper. qlikview.com. December 2012

QLIKVIEW ON MOBILE: Beyond Reporting. A QlikView White Paper. qlikview.com. December 2012 QLIKVIEW ON MOBILE: Beyond Reporting A QlikView White Paper December 2012 qlikview.com Table of Contents QlikView on Mobile Means Discovery 3 Business Discovery on the Go 3 Reporting Alone Doesn t Drive

More information

ORACLE APPLICATION EXPRESS 5.0

ORACLE APPLICATION EXPRESS 5.0 ORACLE APPLICATION EXPRESS 5.0 Key Features Fully supported nocost feature of the Oracle Database Simple 2-Tier Architecture Develop desktop and mobile applications 100% Browserbased Development and Runtime

More information

Unified Data Integration Across Big Data Platforms

Unified Data Integration Across Big Data Platforms Unified Data Integration Across Big Data Platforms Contents Business Problem... 2 Unified Big Data Integration... 3 Diyotta Solution Overview... 4 Data Warehouse Project Implementation using ELT... 6 Diyotta

More information

White Paper. Unified Data Integration Across Big Data Platforms

White Paper. Unified Data Integration Across Big Data Platforms White Paper Unified Data Integration Across Big Data Platforms Contents Business Problem... 2 Unified Big Data Integration... 3 Diyotta Solution Overview... 4 Data Warehouse Project Implementation using

More information

Leveraging Rational Team Concert's build capabilities for Continuous Integration

Leveraging Rational Team Concert's build capabilities for Continuous Integration Leveraging Rational Team Concert's build capabilities for Continuous Integration Krishna Kishore Senior Engineer, RTC IBM Krishna.kishore@in.ibm.com August 9-11, Bangalore August 11, Delhi Agenda What

More information

Qlik Sense Enabling the New Enterprise

Qlik Sense Enabling the New Enterprise Technical Brief Qlik Sense Enabling the New Enterprise Generations of Business Intelligence The evolution of the BI market can be described as a series of disruptions. Each change occurred when a technology

More information

How to Implement a SAP HANA Database Procedure and consume it from an ABAP Program Step-by-Step Tutorial

How to Implement a SAP HANA Database Procedure and consume it from an ABAP Program Step-by-Step Tutorial How to Implement a SAP HANA Database Procedure and consume it from an ABAP Program Step-by-Step Tutorial Table of Contents Prerequisites... 3 Benefits of using SAP HANA Procedures... 3 Objectives... 3

More information

ArcGIS Viewer for Silverlight An Introduction

ArcGIS Viewer for Silverlight An Introduction Esri International User Conference San Diego, California Technical Workshops July 26, 2012 ArcGIS Viewer for Silverlight An Introduction Rich Zwaap Agenda Background Product overview Getting started and

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

QlikView for Telecommunications. Reducing Telecommunications Costs

QlikView for Telecommunications. Reducing Telecommunications Costs QlikView for Telecommunications Reducing Telecommunications Costs QlikView: Reducing Costs in Telecommunications Collaboration, visibility and efficiency: necessities for efficient and reliable service

More information

Unlock the Value of Your Microsoft and SAP Software Investments

Unlock the Value of Your Microsoft and SAP Software Investments SAP Technical Brief SAP Gateway Objectives Unlock the Value of Your Microsoft and SAP Software Investments Bridging the integration gap between SAP and Microsoft environments Bridging the integration gap

More information

Real-Time Analytics: Integrating Social Media Insights with Traditional Data

Real-Time Analytics: Integrating Social Media Insights with Traditional Data SAP Brief SAP Rapid Deployment s SAP HANA Sentiment Intelligence Rapid-Deployment Objectives Real-Time Analytics: Integrating Social Media Insights with Traditional Data Capturing customer sentiment from

More information

SAP BusinessObjects Design Studio Deep Dive. Ian Mayor and David Stocker SAP Session 0112

SAP BusinessObjects Design Studio Deep Dive. Ian Mayor and David Stocker SAP Session 0112 SAP BusinessObjects Design Studio Deep Dive Ian Mayor and David Stocker SAP Session 0112 Legal Disclaimer 2013 SAP AG. All rights reserved. 2 SAP BusinessObjects Client Tools Build Custom Experiences Dashboards

More information

Consumption of OData Services of Open Items Analytics Dashboard using SAP Predictive Analysis

Consumption of OData Services of Open Items Analytics Dashboard using SAP Predictive Analysis Consumption of OData Services of Open Items Analytics Dashboard using SAP Predictive Analysis (Version 1.17) For validation Document version 0.1 7/7/2014 Contents What is SAP Predictive Analytics?... 3

More information

WHY IT ORGANIZATIONS CAN T LIVE WITHOUT QLIKVIEW

WHY IT ORGANIZATIONS CAN T LIVE WITHOUT QLIKVIEW WHY IT ORGANIZATIONS CAN T LIVE WITHOUT QLIKVIEW A QlikView White Paper November 2012 qlikview.com Table of Contents Unlocking The Value Within Your Data Warehouse 3 Champions to the Business Again: Controlled

More information

Informatica PowerCenter Data Virtualization Edition

Informatica PowerCenter Data Virtualization Edition Data Sheet Informatica PowerCenter Data Virtualization Edition Benefits Rapidly deliver new critical data and reports across applications and warehouses Access, merge, profile, transform, cleanse data

More information

Create and Distribute Rich Media for Optimized, Omnichannel Customer Engagement

Create and Distribute Rich Media for Optimized, Omnichannel Customer Engagement SAP Brief SAP Customer Relationship Management SAP Digital Asset Management by OpenText Objectives Create and Distribute Rich Media for Optimized, Omnichannel Customer Engagement Make the most of your

More information

SAP BusinessObjects Business Intelligence Suite Document Version: 4.1 Support Package 3-2014-05-07. Patch 3.x Update Guide

SAP BusinessObjects Business Intelligence Suite Document Version: 4.1 Support Package 3-2014-05-07. Patch 3.x Update Guide SAP BusinessObjects Business Intelligence Suite Document Version: 4.1 Support Package 3-2014-05-07 Table of Contents 1 Document History....3 2 Introduction....4 2.1 About this Document....4 2.1.1 Constraints....4

More information

Contents. Introduction... 1

Contents. Introduction... 1 Managed SQL Server 2005 Deployments with CA ERwin Data Modeler and Microsoft Visual Studio Team Edition for Database Professionals Helping to Develop, Model, and Maintain Complex Database Architectures

More information

SAP HANA SPS 09 - What s New? HANA IM Services: SDI and SDQ

SAP HANA SPS 09 - What s New? HANA IM Services: SDI and SDQ SAP HANA SPS 09 - What s New? HANA IM Services: SDI and SDQ (Delta from SPS 08 to SPS 09) SAP HANA Product Management November, 2014 2014 SAP SE or an SAP affiliate company. All rights reserved. 1 Agenda

More information

Measure Your Data and Achieve Information Governance Excellence

Measure Your Data and Achieve Information Governance Excellence SAP Brief SAP s for Enterprise Information Management SAP Information Steward Objectives Measure Your Data and Achieve Information Governance Excellence A single solution for managing enterprise data quality

More information

Unleash your intuition

Unleash your intuition Introducing Qlik Sense Unleash your intuition Qlik Sense is a next-generation self-service data visualization application that empowers everyone to easily create a range of flexible, interactive visualizations

More information

Setting up Visual Enterprise Integration (WM6)

Setting up Visual Enterprise Integration (WM6) SAP Mobile Platform 3.0 June 2015 English Setting up Visual Enterprise Integration (WM6) Building Block Configuration Guide SAP SE Dietmar-Hopp-Allee 16 69190 Walldorf Germany Copyright 2015 SAP SE or

More information

The Edge Editions of SAP InfiniteInsight Overview

The Edge Editions of SAP InfiniteInsight Overview Analytics Solutions from SAP The Edge Editions of SAP InfiniteInsight Overview Enabling Predictive Insights with Mouse Clicks, Not Computer Code Table of Contents 3 The Case for Predictive Analysis 5 Fast

More information

SAP HANA Big Data Intelligence rapiddeployment

SAP HANA Big Data Intelligence rapiddeployment SAP HANA 1.0 November 2015 English SAP HANA Big Data Intelligence rapiddeployment solution: Software and Delivery Requirements SAP SE Dietmar-Hopp-Allee 16 69190 Walldorf Germany Document Revisions 0 1

More information

QLIKVIEW ON MOBILE: BEYOND REPORTING

QLIKVIEW ON MOBILE: BEYOND REPORTING QLIKVIEW ON MOBILE: BEYOND REPORTING A QlikView White Paper October, 2011 qlikview.com Table of Contents QlikView on Mobile Means Business Discovery 3 Business Discovery on the Go 3 Reporting Alone Doesn

More information

Extend Business Scope and Improve Governance with SAP Content Management

Extend Business Scope and Improve Governance with SAP Content Management SAP Brief SAP Content Management for Microsoft SharePoint by OpenText Objectives Extend Business Scope and Improve Governance with SAP Content Management Ensure content compliance and harness the power

More information

2015-09-24. SAP Operational Process Intelligence Security Guide

2015-09-24. SAP Operational Process Intelligence Security Guide 2015-09-24 SAP Operational Process Intelligence Security Guide Content 1 Introduction.... 3 2 Before You Start....5 3 Architectural Overview.... 7 4 Authorizations and Roles.... 8 4.1 Assigning Roles to

More information

Content Management for SAP Business Suite powered by SAP HANA

Content Management for SAP Business Suite powered by SAP HANA SAP Brief Extensions SAP Extended Enterprise Content Management by OpenText Objectives Content Management for SAP Business Suite powered by SAP HANA Link all types of content to workflows and processes

More information

Semarchy Convergence for Data Integration The Data Integration Platform for Evolutionary MDM

Semarchy Convergence for Data Integration The Data Integration Platform for Evolutionary MDM Semarchy Convergence for Data Integration The Data Integration Platform for Evolutionary MDM PRODUCT DATASHEET BENEFITS Deliver Successfully on Time and Budget Provide the Right Data at the Right Time

More information

Powering Content-Rich Customer Success Centers for Omnichannel Support

Powering Content-Rich Customer Success Centers for Omnichannel Support SAP Brief SAP Extensions SAP Knowledge Central by MindTouch Objectives Powering Content-Rich Customer Success Centers for Omnichannel Support Deliver knowledge when and where it s needed Deliver knowledge

More information

Software and Delivery Requirements

Software and Delivery Requirements SAP HANA Big Data Intelligence rapiddeployment solution November 2014 English SAP HANA Big Data Intelligence rapiddeployment solution: Software and Delivery Requirements SAP SE Dietmar-Hopp-Allee 16 69190

More information

SAP Business One OnDemand. SAP Business One OnDemand Solution Overview

SAP Business One OnDemand. SAP Business One OnDemand Solution Overview SAP Business One OnDemand SAP Business One OnDemand Solution Overview SAP Business One OnDemand Table of Contents 4 Executive Summary Introduction SAP Business One Today 8 A Technical Overview: SAP Business

More information

Integrate, Automate, and Personalize Business Communications with Greater Ease

Integrate, Automate, and Personalize Business Communications with Greater Ease SAP Brief SAP NetWeaver SAP Document Presentment by OpenText Objectives Integrate, Automate, and Personalize Business Communications with Greater Ease Differentiate communications while maintaining control

More information

Simplify Complex Architectures and See the Potential Impact of New Technologies

Simplify Complex Architectures and See the Potential Impact of New Technologies SAP Brief SAP Technology SAP PowerDesigner Objectives Simplify Complex Architectures and See the Potential Impact of New Technologies Empower data, information, and enterprise architects Empower data,

More information

University Competence Center: Leading a Co-Innovation Project on SAP Cloud Appliance Library

University Competence Center: Leading a Co-Innovation Project on SAP Cloud Appliance Library 2014 SAP SE or an SAP affiliate company. All rights reserved. University Competence Center: Leading a Co-Innovation Project on SAP Cloud Appliance Library Organization University Competence Center, an

More information

QlikView for utilities. Reducing Utilities Costs

QlikView for utilities. Reducing Utilities Costs QlikView for utilities Reducing Utilities Costs QlikView: Reducing Costs in utilities Today s utilities market is multi-faceted, complex and unpredictable. Privatization, streamlined regulation and competition

More information

Making Every Project Business a Best-Run Business

Making Every Project Business a Best-Run Business SAP Functions in Detail SAP Business Suite SAP Commercial Project Management Making Every Project Business a Best-Run Business Table of Contents 3 Quick Facts 4 Facilitating Optimal Project Delivery for

More information

Streamline Processes and Gain Business Insights in the Cloud

Streamline Processes and Gain Business Insights in the Cloud SAP Brief SAP s for Small Businesses and Midsize Companies SAP Business One Cloud Objectives Streamline Processes and Gain Business Insights in the Cloud Drive profitable growth affordably and without

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

QLIKVIEW ARCHITECTURAL OVERVIEW

QLIKVIEW ARCHITECTURAL OVERVIEW QLIKVIEW ARCHITECTURAL OVERVIEW A Technology White Paper Published: September, 2011 Originally published: October, 2010 qlikview.com Table of Contents Making Sense of the Platform 3 Most BI Software Is

More information

Enabling Better Business Intelligence and Information Architecture With SAP PowerDesigner Software

Enabling Better Business Intelligence and Information Architecture With SAP PowerDesigner Software SAP Technology Enabling Better Business Intelligence and Information Architecture With SAP PowerDesigner Software Table of Contents 4 Seeing the Big Picture with a 360-Degree View Gaining Efficiencies

More information

Bridge Development and Operations for faster delivery of applications

Bridge Development and Operations for faster delivery of applications Technical white paper Bridge Development and Operations for faster delivery of applications HP Continuous Delivery Automation software Table of contents Application lifecycle in the current business scenario

More information

Understanding Security and Rights in SAP BusinessObjects Business Intelligence 4.1

Understanding Security and Rights in SAP BusinessObjects Business Intelligence 4.1 Understanding Security and Rights in SAP BusinessObjects Business Intelligence 4.1 Session Code*: 0313 Greg Wcislo Disclaimer This presentation outlines our general product direction and should not be

More information

Integrating SharePoint Sites within WebSphere Portal

Integrating SharePoint Sites within WebSphere Portal Integrating SharePoint Sites within WebSphere Portal November 2007 Contents Executive Summary 2 Proliferation of SharePoint Sites 2 Silos of Information 2 Security and Compliance 3 Overview: Mainsoft SharePoint

More information

Run Better in Weeks to Address Current and Future Business Needs

Run Better in Weeks to Address Current and Future Business Needs SAP Brief SAP Rapid Deployment s Objectives Run Better in Weeks to Address Current and Future Business Needs Accelerate your time to value Accelerate your time to value Meeting core business objectives

More information

EMERGING TRENDS Business Process Management

EMERGING TRENDS Business Process Management >>White Paper June 2009 EMERGING TRENDS Business Process Management >> Romeo Elias, Chief Operating Officer, Founder, Interneer Inc. Contents Introduction... 3 Hosted or SaaS... 3 Simplicity and Savings...

More information

Five Strategies Small and Medium Enterprises Can Use to Successfully Implement High Value Business Mobility

Five Strategies Small and Medium Enterprises Can Use to Successfully Implement High Value Business Mobility Five Strategies Small and Medium Enterprises Can Use to Successfully Implement High Value Business Mobility Smartphone and tablet-based business mobility has become commonplace in enterprises of all sizes.

More information

Week 2 Unit 1: Database Schemas and Database Tables

Week 2 Unit 1: Database Schemas and Database Tables Week 2 Unit 1: Database Schemas and Database Tables 2 Database Schemas and Database Tables The SAP HANA Repository Object management, versioning, and transport Software component delivery and patching

More information

Formulate Winning Sales and Operations Strategies Through Integrated Planning

Formulate Winning Sales and Operations Strategies Through Integrated Planning SAP Brief SAP Supply Chain Management SAP Sales and Operations Planning Objectives Formulate Winning Sales and Operations Strategies Through Integrated Planning Keep pace with rapidly changing market conditions

More information

Getting Smart About Revenue Recognition and Lease Accounting

Getting Smart About Revenue Recognition and Lease Accounting SAP Thought Leadership Paper Revenue Recognition and Lease Accounting Getting Smart About Revenue Recognition and Lease Accounting What the Rule Changes Mean for Your Business Table of Contents 4 New Rules

More information

The Clear Path to Business Intelligence

The Clear Path to Business Intelligence SAP Solution in Detail SAP Solutions for Small Businesses and Midsize Companies SAP Crystal Solutions The Clear Path to Business Intelligence Table of Contents 3 Quick Facts 4 Optimize Decisions with SAP

More information

How to Configure an Example SAP Cloud Applications Studio (PDI) Solution for SAP Cloud for Customer

How to Configure an Example SAP Cloud Applications Studio (PDI) Solution for SAP Cloud for Customer How-To Guide Document Version: 1411 2014.12.15 How to Configure an Example SAP Cloud Applications Studio (PDI) Solution for SAP Cloud for Customer How to configure an example SAP Cloud Applications Studio

More information

SAP Business Intelligence Suite Patch 10.x Update Guide

SAP Business Intelligence Suite Patch 10.x Update Guide SAP BusinessObjects Business Intelligence Suite Document Version: 4.0 Support Package 10-2014-07-25 SAP Business Intelligence Suite Patch 10.x Update Guide Table of Contents 1 Introduction.... 3 1.1 About

More information

ORACLE DATA INTEGRATOR ENTERPRISE EDITION

ORACLE DATA INTEGRATOR ENTERPRISE EDITION ORACLE DATA INTEGRATOR ENTERPRISE EDITION Oracle Data Integrator Enterprise Edition 12c delivers high-performance data movement and transformation among enterprise platforms with its open and integrated

More information

Putting the power of Web 2.0 into practice.

Putting the power of Web 2.0 into practice. White paper July 2008 Putting the power of Web 2.0 into practice. How rich Internet applications can deliver tangible business benefits Page 2 Contents 2 Introduction 3 What Web 2.0 technology can do for

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

An Oracle White Paper October 2013. Oracle Data Integrator 12c New Features Overview

An Oracle White Paper October 2013. Oracle Data Integrator 12c New Features Overview An Oracle White Paper October 2013 Oracle Data Integrator 12c Disclaimer This document is for informational purposes. It is not a commitment to deliver any material, code, or functionality, and should

More information

Set Up Hortonworks Hadoop with SQL Anywhere

Set Up Hortonworks Hadoop with SQL Anywhere Set Up Hortonworks Hadoop with SQL Anywhere TABLE OF CONTENTS 1 INTRODUCTION... 3 2 INSTALL HADOOP ENVIRONMENT... 3 3 SET UP WINDOWS ENVIRONMENT... 5 3.1 Install Hortonworks ODBC Driver... 5 3.2 ODBC Driver

More information

SAS Enterprise Data Integration Server - A Complete Solution Designed To Meet the Full Spectrum of Enterprise Data Integration Needs

SAS Enterprise Data Integration Server - A Complete Solution Designed To Meet the Full Spectrum of Enterprise Data Integration Needs Database Systems Journal vol. III, no. 1/2012 41 SAS Enterprise Data Integration Server - A Complete Solution Designed To Meet the Full Spectrum of Enterprise Data Integration Needs 1 Silvia BOLOHAN, 2

More information

Optimize Retail Label and Poster Printing with SAP Software

Optimize Retail Label and Poster Printing with SAP Software SAP Brief Extensions SAP Label and Poster Printing by GK Objectives Optimize Retail Label and Poster Printing with SAP Software Take control of retail printing processes Take control of retail printing

More information

Managing Procurement with SAP Business One

Managing Procurement with SAP Business One SAP Product Brief SAP s for Small Businesses and Midsize Companies SAP Business One Objectives Managing Procurement with SAP Business One Integrate optimized procurement with the entire business Integrate

More information

Application Test Management and Quality Assurance

Application Test Management and Quality Assurance SAP Brief Extensions SAP Quality Center by HP Objectives Application Test Management and Quality Assurance Deliver new software with confidence Deliver new software with confidence Testing is critical

More information

WHAT IS THE DIFFERENCE BETWEEN SAN AND NAS AND HOW CAN I USE THEM IN MY QLIKVIEW ENVIRONMENT?

WHAT IS THE DIFFERENCE BETWEEN SAN AND NAS AND HOW CAN I USE THEM IN MY QLIKVIEW ENVIRONMENT? WHAT IS THE DIFFERENCE BETWEEN AND NAS AND HOW CAN I USE THEM IN MY QLIKVIEW ENVIRONMENT? QlikView Technical Brief February 2012 qlikview.com This document will highlight some of the conceptual differences

More information

Enabling Better Business Intelligence and Information Architecture With SAP Sybase PowerDesigner Software

Enabling Better Business Intelligence and Information Architecture With SAP Sybase PowerDesigner Software SAP Technology Enabling Better Business Intelligence and Information Architecture With SAP Sybase PowerDesigner Software Table of Contents 4 Seeing the Big Picture with a 360-Degree View Gaining Efficiencies

More information

HP Operations Orchestration Software

HP Operations Orchestration Software HP Operations Orchestration Software Software Version: 9.00 HP Project and Portfolio Management Integration Guide Document Release Date: June 2010 Software Release Date: June 2010 Legal Notices Warranty

More information

9044 - Enhance Performance Management Reporting

9044 - Enhance Performance Management Reporting September 9 11, 2013 9044 - Enhance Performance Management Reporting Anaheim, California and Analysis Leveraging SAP BI Tools Sean Johnson SAP Agenda Overview of Enterprise Performance Management Value

More information

Accelerate Business Intelligence Adoption with Interactive, Mobile Dashboards

Accelerate Business Intelligence Adoption with Interactive, Mobile Dashboards SAP Brief SAP BusinessObjects Business Intelligence s SAP BusinessObjects Dashboards Objectives Accelerate Business Intelligence Adoption with Interactive, Mobile Dashboards Create high-impact, interactive

More information

White Paper: Deploying QlikView

White Paper: Deploying QlikView White Paper: Deploying QlikView White Paper: Deploying QlikView From Personal Edition to Enterprise Deployment V1.0 CFG QlikTech May 2010 www.qlikview.com White Paper: Deploying QlikView Contents: Introduction

More information

Create Mobile, Compelling Dashboards with Trusted Business Warehouse Data

Create Mobile, Compelling Dashboards with Trusted Business Warehouse Data SAP Brief SAP BusinessObjects Business Intelligence s SAP BusinessObjects Design Studio Objectives Create Mobile, Compelling Dashboards with Trusted Business Warehouse Data Increase the value of data with

More information

How to address top problems in test data management

How to address top problems in test data management How to address top problems in test data management Data reuse, sub-setting and masking Business white paper Table of contents Why you need test data management... 3 The challenges of preparing and managing

More information

Test Data Management Concepts

Test Data Management Concepts Test Data Management Concepts BIZDATAX IS AN EKOBIT BRAND Executive Summary Test Data Management (TDM), as a part of the quality assurance (QA) process is more than ever in the focus among IT organizations

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

SAP BusinessObjects SOLUTIONS FOR ORACLE ENVIRONMENTS

SAP BusinessObjects SOLUTIONS FOR ORACLE ENVIRONMENTS SAP BusinessObjects SOLUTIONS FOR ORACLE ENVIRONMENTS BUSINESS INTELLIGENCE FOR ORACLE APPLICATIONS AND TECHNOLOGY SAP Solution Brief SAP BusinessObjects Business Intelligence Solutions 1 SAP BUSINESSOBJECTS

More information