Create Cool Lumira Visualization Extensions with SAP Web IDE Dong Pan SAP PM and RIG Analytics Henry Kam Senior Product Manager, Developer Ecosystem

Size: px
Start display at page:

Download "Create Cool Lumira Visualization Extensions with SAP Web IDE Dong Pan SAP PM and RIG Analytics Henry Kam Senior Product Manager, Developer Ecosystem"

Transcription

1 Create Cool Lumira Visualization Extensions with SAP Web IDE Dong Pan SAP PM and RIG Analytics Henry Kam Senior Product Manager, Developer Ecosystem 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 1

2 Legal disclaimer The information in this presentation is confidential and proprietary to SAP and may not be disclosed without the permission of SAP. This presentation is not subject to your license agreement or any other service or subscription agreement with SAP. SAP has no obligation to pursue any course of business outlined in this document or any related presentation, or to develop or release any functionality mentioned therein. This document, or any related presentation and SAP's strategy and possible future developments, products and or platforms directions and functionality are all subject to change and may be changed by SAP at any time for any reason without notice. The information in this document is not a commitment, promise or legal obligation to deliver any material, code or functionality. This document is provided without a warranty of any kind, either express or implied, including but not limited to, the implied warranties of merchantability, fitness for a particular purpose, or non-infringement. This document is for informational purposes and may not be incorporated into a contract. SAP assumes no responsibility for errors or omissions in this document, except if such damages were caused by SAP s willful misconduct or gross negligence. All forward-looking statements are subject to various risks and uncertainties that could cause actual results to differ materially from expectations. Readers are cautioned not to place undue reliance on these forward-looking statements, which speak only as of their dates, and they should not be relied upon in making purchasing decisions SAP SE or an SAP affiliate company. All rights reserved. Public 2

3 Agenda SAP Lumira Visualization SDK Overview Demo - Create a New Visualization Extension Demo Manage & Consume the Visualization Extension on Lumira Desktop Cool Examples of Lumira Visualization Extensions Lumira SDK Roadmap 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 3

4 SAP Lumira Visualization SDK Overview

5 Current Visualizations Available within Lumira Bar & Column Charts Bar, Column, Stacked Bar, Stacked Column, Bar with 2 X-Axes, Columin with 2 Y-Axes, 3D Column Line Charts Line, Area, Combined Column Line, Line with 2 Y-Axes, Combined Column Line with 2 Y-Axes Pie Charts Pie, Donut, Pie with Depth Geographic Charts Geo Bubble, Geo Choropleth, Geo Pie, Geo Map Scatter Charts Scatter Plot, Bubble, Scatter Matrix Map Charts Heat Map, Tree Map Tables Numeric Point Charts Others Box Plot, Funnel, Network, Parallel Coordinates, Radar, Tag Cloud, Tree, Waterfall 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 5

6 Introduction to Visualization Extensions Create and share visualizations specific to your Industry or Line of Business. Achieve precise control over appearance, animations and interactivity. Build on hundreds of open-source examples SAP SE or an SAP affiliate company. All rights reserved. Public 6

7 Case Study #1: Financial Services Custom Visualization Extension for Marketing Analytics The Challenge Help answer questions around Marketing attribution using data visualization Visualize aggregate view of full paths that lead to conversions vs. non-conversions Flow visualizations or alluvial diagrams are good for visualizing pairs but not full paths The solution Create a custom visualization extension based on D3 for SAP Lumira 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 7

8 Case Study #1: Financial Services D3 Sequences Sunburst in SAP Lumira 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 8

9 Case Study #2: Hospitality Industry Visualization Extensions for Site Location Analysis The Challenge Provide analysts with a flexible tool to analyze performance of site locations Visualize both spatial patterns and temporal trends SAP Lumira does not yet support heat maps The solution SAP technology partner created series of visualizations extensions for SAP Lumira 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 9

10 Case Study #2: Hospitality Industry Temporal Heat Map 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 10

11 Case Study #2: Hospitality Industry Interactive Tile-Based Geo Map 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 11

12 Case Study #2: Hospitality Industry Geo Map with Heat Map Overlay 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 12

13 Visualization Extension Basics A visualization extension is JavaScript code that transforms data into SVG or HTML CVOM Charting library that provides the extension APIs Lumira Extension Extension Framework Web IDE VizPacker Uses CVOM to draw visualizations Adds a new chart type to CVOM OSGI-inspired framework that manages bundles of JavaScript code SAP s IDE in the cloud Plugin for Web IDE that simplifies development of CVOM extensions 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 13

14 Data Bindings Dimensions categorize data and provide context for numbers. For example, Location, Time, and Customer are common dimensions. Measure Set Measures are numeric values associated with dimensions. For example, Revenue, Profit and Quantity are common measures Dimension Sets Dimension and Measure Sets are groupings of columns that appear in Lumira s feeder panel, pictured right SAP SE or an SAP affiliate company. All rights reserved. Public 14

15 JavaScript Representation of Data Year Make Model Length 1997 Ford E Mercury Cougar 2.38 data = [ { "Year": "1997", "Make": "Ford", "Model": "E350", "Length": "2.34 },{ "Year": "2000", "Make": "Mercury", "Model": "Cougar", "Length": "2.38 }]; 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 15

16 Obtaining metadata about the data bindings data.meta.measures() [ Year, Length ] data.meta.measures( Measure Set 1 ) [ Year ] data.meta.measures( Measure Set 2 ) [ Length ] data.meta.dimensions() [ Make, Model ] data.meta.dimensions( Dimension Set 1 ) [ Make ] data.meta.dimensions( Dimension Set 2 ) [ Model ] data = [ { "Year": "1997", "Make": "Ford", "Model": "E350", "Length": "2.34 },{ "Year": "2000", "Make": "Mercury", "Model": "Cougar", "Length": "2.38 }]; 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 16

17 Rendering Render = Transform data into DOM The developer tooling generates data binding code for your extension. Drawing code, being unique to your extension, must be written. D3.js JavaScript library for manipulating documents based on data Provided with Lumira Works with both SVG and HTML Not required if you don t want to use it 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 17

18 Getting Started Sign up for a free HCP account Develop an extension in Web IDE Share your creation Software SAP Lumira 1.21 or later Google Chrome (preferred) Free HANA Cloud Platform account See Web IDE Getting Started guide: Knowledge JavaScript HTML5 jquery D3 (Data Driven Documents) - optional SAP Web IDE See SCN post from Dong Pan: SAP Lumira Visualization Extension - Hello World from SAP Web IDE 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 18

19 Demo: Create a New Visualization Extension

20 What Do We Want to Create? Sankey diagrams are a specific type of flow diagram, in which the width of the arrows is shown proportionally to the flow quantity. It is typically used to visualize energy or material or cost transfers between processes. Sankey diagrams put a visual emphasis on the major transfers or flows within a system. They are helpful in locating dominant contributions to an overall flow SAP SE or an SAP affiliate company. All rights reserved. Public 20

21 Which Charting Library to Use Options Low-level charting libraries, e.g. D3 Pro: Highly flexible and powerful Con: No built-in chart. Developer must create the chart from scratch. High-level charting libraries, e.g. Google Visualization API Pro: Usually ships with built-in charts. Only customization necessary. Con: Not fully flexible with chart customization SAP SE or an SAP affiliate company. All rights reserved. Public 21

22 Best Practices Prefer SVG over HTML If HTML is required, implement in modules.js: modulefunc.exportcontent() modulefunc.supportexporttocontenttype() Namespace CSS Avoid conflicts with other extensions Satisfy dependencies via requirejs Don t modify global state or create global variables Reference only your own DOM node and internal paths Don t reference nodes outside of the given container Use sap.viz.extapi.env.resource to get paths to non-js files Use data.meta Avoid hard-coding column names Set min/max number of members in Dimension and Measure Sets 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 39

23 Demo: Managing Visualization Extensions on Lumira Desktop

24 Managing Extensions on Lumira Desktop Lumira Desktop comes with an Extension Manager no more manual copy & pasting 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 41

25 Use the Visualization Extension on Lumira Desktop Create a Lumira chart based on the newly-installed visualization extension Note the dataset s column names are different from the original dataset used to build the chart. The chart is able to interpret it and render properly SAP SE or an SAP affiliate company. All rights reserved. Public 42

26 Cool Examples of Lumira Chart Extensions

27 Chord Diagram Chord diagrams show directed relationships among a group of entities SAP SE or an SAP affiliate company. All rights reserved. Public 44

28 Sankey Diagram (D3-based) Sankey diagrams visualize the magnitude of flow between nodes in a network SAP SE or an SAP affiliate company. All rights reserved. Public 45

29 Force-Directed Graph Force-directed graph simulates the equilibrium state of a system of force, resulting in edges of more or less equal length and minimum No. of edge crossings, an aesthetically pleasing way to represent relationships among networked entities SAP SE or an SAP affiliate company. All rights reserved. Public 46

30 Stacked Column Chart with Overlayed Line Not a super cool chart but demonstrates the use of dynamic number of measures 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 47

31 Google Maps-based Geo Pie Chart A geo pie chart that can render data on a variety of geography inputs, including: cities of all sizes, street address, postal code, fuzzy geography input as well as geohierarchy SAP SE or an SAP affiliate company. All rights reserved. Public 48

32 Google Maps-based Geo Pie Chart cont d A geo pie chart that can render data on a variety of geography inputs, including: cities of all sizes, street address accuracy, fuzzy geography input as well as geohierarchy SAP SE or an SAP affiliate company. All rights reserved. Public 49

33 Today (1.27) Extension Discovery from Lumira Desktop Link from Extension Manager SAP SE or an SAP affiliate company. All rights reserved. Public 50

34 More Visualization Extensions on GitHub SAP SE or an SAP affiliate company. All rights reserved. Public 51

35 Lumira Product road map overview - key themes and capabilities Today Planned Innovations Future Direction Extensibility Develop Viz Extensions in VizPacker plugin for Web IDE Viz extension API for properties panel customization (Viz room only) DA extensions - version 2 for 3rd party extensions (acquire data in desktop then deploy static data views to Server for Teams and Server for BI Platform) Install extensions via Desktop extension manager 3rd party extension discovery in Desktop Embeddibility Static URL Embedding for Lumira Cloud and Lumira Server for HANA/HCP Extensibility Improved development experience in WebIDE (sample projects) New Object Oriented Viz extension API Reuse CVOM components to build new extensions (i.e. tooltip, time axis) Customization API to customize existing built-in charts Viz Extension support for Server for Teams and Server for BI Platform (consume and use in browser) DA extension v2 Server side data refresh and end user query parameter prompting for Server for Teams and Server for BI Platform Embeddibility URL embedding APIs for Server for Teams and Server for BI Platform Extensibility Viz extension data persistence In app purchase of extensions Viz Extension Category Support Geo Content extension Lumira 1.25 This is the current state of planning and may be changed by SAP at any time SAP SE or an SAP affiliate company. All rights reserved. Public 52

36 Create Cool Lumira Visualization Extensions with SAP Web IDE Q & A Brought to you by the Customer Experience Group 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 53

37 Further Information SAP Lumira Web Site: SAP Lumira Developer Landing Page: SAP Lumira Tutorials: SAP Lumira Events: SAP Lumira Product Documentation -> Developer Information SCN Lumira Community Landing Page: Blog: Hello World Example: Blog: Introducing the All-New Visualization SDK for SAP Lumira: SAP SE or an SAP affiliate company. All rights reserved. Public 54

Location Analytics Integrating GIS technologies with SAP Business intelligence,

Location Analytics Integrating GIS technologies with SAP Business intelligence, Location Analytics Integrating GIS technologies with SAP Business intelligence, Jag Dhillon SAP Analytics Presales Consultant November 2014 Agenda Importance of Location Analytics SAP Location Analytics

More information

Leveraging BI Tools & HANA. Tracy Nguyen, North America Analytics COE April 15, 2016

Leveraging BI Tools & HANA. Tracy Nguyen, North America Analytics COE April 15, 2016 Leveraging BI Tools & HANA Tracy Nguyen, North America Analytics COE April 15, 2016 Legal disclaimer The information in this presentation is confidential and proprietary to SAP and may not be disclosed

More information

Building Your Company s Data Visualization Strategy

Building Your Company s Data Visualization Strategy Building Your Company s Data Visualization Strategy Ian Mayor SAP BI Product Strategy Session 0702 2014 SAP AG or an SAP affiliate company. All rights reserved. Public 1 Legal disclaimer The information

More information

Scott Mackenzie & Thomas B. Kuruvilla SAP Lumira Deployment Options for Teams, and the SAP BusinessObjects BI Platform.

Scott Mackenzie & Thomas B. Kuruvilla SAP Lumira Deployment Options for Teams, and the SAP BusinessObjects BI Platform. Scott Mackenzie & Thomas B. Kuruvilla SAP Lumira Deployment Options for Teams, and the SAP BusinessObjects BI Platform Session #2875 Legal Disclaimer The information in this presentation is confidential

More information

Session 3119 Mobilizing Your Dashboards Best Tips for the Mobile Market. Scott Leaver, SAP and Matt Lloyd, SAP

Session 3119 Mobilizing Your Dashboards Best Tips for the Mobile Market. Scott Leaver, SAP and Matt Lloyd, SAP Session 3119 Mobilizing Your Dashboards Best Tips for the Mobile Market Scott Leaver, SAP and Matt Lloyd, SAP Legal Disclaimer The information in this presentation is confidential and proprietary to SAP

More information

Introducing SAP Cloud for Analytics. Pras Chatterjee, Senior Director Product Marketing, EPM November 2015

Introducing SAP Cloud for Analytics. Pras Chatterjee, Senior Director Product Marketing, EPM November 2015 Introducing SAP Cloud for Analytics Pras Chatterjee, Senior Director Product Marketing, EPM November 2015 Legal disclaimer The information in this presentation is confidential and proprietary to SAP and

More information

SAP Agile Data Preparation

SAP Agile Data Preparation SAP Agile Data Preparation Speaker s Name/Department (delete if not needed) Month 00, 2015 Internal Legal disclaimer The information in this presentation is confidential and proprietary to SAP and may

More information

Ingo Hilgefort Advanced Data Visualization with SAP BusinessObjects Design Studio Session # 2686

Ingo Hilgefort Advanced Data Visualization with SAP BusinessObjects Design Studio Session # 2686 Ingo Hilgefort Advanced Data Visualization with SAP BusinessObjects Design Studio Session # 2686 Legal Disclaimer This presentation outlines our general product direction and should not be relied on in

More information

EA104 World Premiere of SAP BusinessObjects Design Studio. Eric Schemer, Senior Director Product Management, BI Clients, SAP AG October, 2013

EA104 World Premiere of SAP BusinessObjects Design Studio. Eric Schemer, Senior Director Product Management, BI Clients, SAP AG October, 2013 EA104 World Premiere of SAP BusinessObjects Design Studio Eric Schemer, Senior Director Product Management, BI Clients, SAP AG October, 2013 Disclaimer This presentation outlines our general product direction

More information

Understanding the SAP BI Strategy

Understanding the SAP BI Strategy Understanding the SAP BI Strategy Blair Wheadon, GM of Enterprise BI September 2014 Use this title slide only with an image Legal disclaimer The information in this presentation is confidential and proprietary

More information

SAP SE - Legal Requirements and Requirements

SAP SE - Legal Requirements and Requirements Finding the signals in the noise Niklas Packendorff @packendorff Solution Expert Analytics & Data Platform Legal disclaimer The information in this presentation is confidential and proprietary to SAP and

More information

SAP S/4HANA Embedded Analytics

SAP S/4HANA Embedded Analytics Frequently Asked Questions November 2015, Version 1 EXTERNAL SAP S/4HANA Embedded Analytics The purpose of this document is to provide an external audience with a selection of frequently asked questions

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

Design & Innovation from SAP AppHaus Realization with SAP HANA Cloud Platform. Michael Sambeth, Business Development HCP, SAP (Suisse) SA 18.06.

Design & Innovation from SAP AppHaus Realization with SAP HANA Cloud Platform. Michael Sambeth, Business Development HCP, SAP (Suisse) SA 18.06. Design & Innovation from SAP AppHaus Realization with SAP HANA Cloud Platform Michael Sambeth, Business Development HCP, SAP (Suisse) SA 18.06.2015 Legal disclaimer The information in this presentation

More information

SAP Strategie für BI und Data Mining

SAP Strategie für BI und Data Mining SAP Strategie für BI und Data Mining Mohamed Abdel Hadi, Andreas Forster SAP Schweiz Christian Mewes, Robert Eberle Raiffeisen Schweiz April 20, 2015 Legal disclaimer The information in this presentation

More information

SAP BusinessObjects Business Intelligence 4 Innovation and Implementation

SAP BusinessObjects Business Intelligence 4 Innovation and Implementation SAP BusinessObjects Business Intelligence 4 Innovation and Implementation TABLE OF CONTENTS 1- INTRODUCTION... 4 2- LOGON DETAILS... 5 3- STARTING AND STOPPING THE APPLIANCE... 6 4.1 Remote Desktop Connection

More information

0513 - Make It Look Like Your Own: Customizing SAP BI 4.1

0513 - Make It Look Like Your Own: Customizing SAP BI 4.1 September 9 11, 2013 Anaheim, California 0513 - Make It Look Like Your Own: Customizing SAP BI 4.1 Derrick Wan, BusinessObjects BI Platform, SAP Disclaimer The information in this presentation is confidential

More information

Real-Time Reconciliation of Invoice and Goods Receipts powered by SAP HANA. Stefan Karl, Finance Solutions, SAP ASUG Presentation, May 2013

Real-Time Reconciliation of Invoice and Goods Receipts powered by SAP HANA. Stefan Karl, Finance Solutions, SAP ASUG Presentation, May 2013 Real-Time Reconciliation of Invoice and Goods Receipts powered by SAP HANA Stefan Karl, Finance Solutions, SAP ASUG Presentation, May 2013 Legal disclaimer The information in this presentation is confidential

More information

Franco Furlan Middle and Eastern Europe CoE for Analytics

Franco Furlan Middle and Eastern Europe CoE for Analytics Franco Furlan Middle and Eastern Europe CoE for Analytics 1 Creating Value through Finance Organizations Business Partnership Compliance Financial Planning and Analysis Accounting and Financial Close Treasury

More information

Operational Analytics for APO, powered by SAP HANA. Eric Simonson Solution Management SAP Labs eric.simonson@sap.com

Operational Analytics for APO, powered by SAP HANA. Eric Simonson Solution Management SAP Labs eric.simonson@sap.com Operational Analytics for APO, powered by SAP HANA Eric Simonson Solution Management SAP Labs eric.simonson@sap.com Solution Overview Data Replication Solution in Detail Demand Solution in Detail Supply

More information

Maximierung des Geschäftserfolgs durch SAP Predictive Analytics. Andreas Forster, May 2014

Maximierung des Geschäftserfolgs durch SAP Predictive Analytics. Andreas Forster, May 2014 Maximierung des Geschäftserfolgs durch SAP Predictive Analytics Andreas Forster, May 2014 Legal Disclaimer The information in this presentation is confidential and proprietary to SAP and may not be disclosed

More information

Mobile app for Android Version 1.0.x, January 2014

Mobile app for Android Version 1.0.x, January 2014 Mobile app for Android Version 1.0.x, January 2014 Legal disclaimer The information in this presentation is confidential and proprietary to SAP and may not be disclosed without the permission of SAP. This

More information

SAP Business One mobile app for Android Version 1.0.x November 2013

SAP Business One mobile app for Android Version 1.0.x November 2013 SAP Business One mobile app for Android Version 1.0.x November 2013 Legal disclaimer The information in this presentation is confidential and proprietary to SAP and may not be disclosed without the permission

More information

Agil visualisering och dataanalys

Agil visualisering och dataanalys Agil visualisering och dataanalys True Business and IT collaboration in Analytics Niklas Packendorff @packendorff SAPSA Impuls 2014 Legal disclaimer The information in this presentation is confidential

More information

SAP Predictive Analytics Roadmap Charles Gadalla SAP SESSION CODE: #####

SAP Predictive Analytics Roadmap Charles Gadalla SAP SESSION CODE: ##### SAP Predictive Analytics Roadmap Charles Gadalla SAP SESSION CODE: ##### LEARNING POINTS What are SAP s Advanced Analytics offerings Advanced Analytics gives a competitive advantage, it can no longer be

More information

New Payroll Experience Payroll Control Center in 2015. Customer

New Payroll Experience Payroll Control Center in 2015. Customer Payroll Control Center in 2015 Customer Legal disclaimer The information in this presentation is confidential and proprietary to SAP and may not be disclosed without the permission of SAP. This presentation

More information

Data Visualization Frameworks: D3.js vs. Flot vs. Highcharts by Igor Zalutsky, JavaScript Developer at Altoros

Data Visualization Frameworks: D3.js vs. Flot vs. Highcharts by Igor Zalutsky, JavaScript Developer at Altoros Data Visualization Frameworks: D3.js vs. Flot vs. Highcharts by Igor Zalutsky, JavaScript Developer at Altoros 2013 Altoros, Any unauthorized republishing, rewriting or use of this material is prohibited.

More information

SAP HANA SPS 09 - What s New? SAP DB Control Center DBA Tool to manage Data Center

SAP HANA SPS 09 - What s New? SAP DB Control Center DBA Tool to manage Data Center SAP HANA SPS 09 - What s New? SAP DB Control Center DBA Tool to manage Data Center (Delta from SPS 08 to SPS 09) SAP HANA Product Management November, 2014 2014 SAP AG or an SAP affiliate company. All

More information

SAP BusinessObjects Dashboarding Strategy and Statement of Direction

SAP BusinessObjects Dashboarding Strategy and Statement of Direction SAP BusinessObjects Dashboarding Strategy and Statement of Direction www.sap.com TABLE OF CONTENTS DISCLAIMER... 3 INTRODUCTION... 3 Engage with SAP... 3 Background... 3 CUSTOMER EXPECTATIONS AND BUSINESS

More information

Data Doesn t Communicate Itself Using Visualization to Tell Better Stories

Data Doesn t Communicate Itself Using Visualization to Tell Better Stories SAP Brief Analytics SAP Lumira Objectives Data Doesn t Communicate Itself Using Visualization to Tell Better Stories Tap into your data big and small Tap into your data big and small In today s fast-paced

More information

The Arts & Science of Tuning HANA models for Performance. Abani Pattanayak, SAP HANA CoE Nov 12, 2015

The Arts & Science of Tuning HANA models for Performance. Abani Pattanayak, SAP HANA CoE Nov 12, 2015 The Arts & Science of Tuning HANA models for Performance Abani Pattanayak, SAP HANA CoE Nov 12, 2015 Disclaimer This presentation outlines our general product direction and should not be relied on in making

More information

A Firsthand Look at the Usability and User Productivity Improvements of SAP CRM Web UI Toros Aledjian SAP Global Design and UX Senior Product Manager

A Firsthand Look at the Usability and User Productivity Improvements of SAP CRM Web UI Toros Aledjian SAP Global Design and UX Senior Product Manager Orange County Convention Center Orlando, Florida June 3-5, 2014 A Firsthand Look at the Usability and User Productivity Improvements of SAP CRM Web UI Toros Aledjian SAP Global Design and UX Senior Product

More information

SAP's Strategy and Roadmap for Cloud for Marketing How Customers Benefit from Adopting Cloud to Empower the Modern Marketer

SAP's Strategy and Roadmap for Cloud for Marketing How Customers Benefit from Adopting Cloud to Empower the Modern Marketer SAP's Strategy and Roadmap for Cloud for Marketing How Customers Benefit from Adopting Cloud to Empower the Modern Marketer Oliver Conze, Global VP Product Management, SAP June 3, 2014 @oliverconze Legal

More information

Enterprise Data Visualization and BI Dashboard

Enterprise Data Visualization and BI Dashboard Strengths Key Features and Benefits Ad-hoc Visualization and Data Discovery Prototyping Mockups Dashboards The application is web based and can be installed on any windows or linux server. There is no

More information

SAP Predictive Analytics

SAP Predictive Analytics SAP Predictive Analytics What s the best that COULD happen? Bringing predictive analytics to the end user SAP Forum Belgium September 9, 2015 Waldemar Adams @adamsw SVP & GM Analytics SAP Europe, Middle-East

More information

Data Visualization Handbook

Data Visualization Handbook SAP Lumira Data Visualization Handbook www.saplumira.com 1 Table of Content 3 Introduction 20 Ranking 4 Know Your Purpose 23 Part-to-Whole 5 Know Your Data 25 Distribution 9 Crafting Your Message 29 Correlation

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

<no narration for this slide>

<no narration for this slide> 1 2 The standard narration text is : After completing this lesson, you will be able to: < > SAP Visual Intelligence is our latest innovation

More information

Increasing Demand Insight and Forecast Accuracy with Demand Sensing and Shaping. Ganesh Wadawadigi, Ph.D. VP, Supply Chain Solutions, SAP

Increasing Demand Insight and Forecast Accuracy with Demand Sensing and Shaping. Ganesh Wadawadigi, Ph.D. VP, Supply Chain Solutions, SAP Increasing Demand Insight and Forecast Accuracy with Demand Sensing and Shaping Ganesh Wadawadigi, Ph.D. VP, Supply Chain Solutions, SAP Legal disclaimer The information in this presentation is confidential

More information

Team Members: Christopher Copper Philip Eittreim Jeremiah Jekich Andrew Reisdorph. Client: Brian Krzys

Team Members: Christopher Copper Philip Eittreim Jeremiah Jekich Andrew Reisdorph. Client: Brian Krzys Team Members: Christopher Copper Philip Eittreim Jeremiah Jekich Andrew Reisdorph Client: Brian Krzys June 17, 2014 Introduction Newmont Mining is a resource extraction company with a research and development

More information

CUSTOMER Presentation of SAP Predictive Analytics

CUSTOMER Presentation of SAP Predictive Analytics SAP Predictive Analytics 2.0 2015-02-09 CUSTOMER Presentation of SAP Predictive Analytics Content 1 SAP Predictive Analytics Overview....3 2 Deployment Configurations....4 3 SAP Predictive Analytics Desktop

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

Empowering Teams and Departments with Agile Visualizations

Empowering Teams and Departments with Agile Visualizations SAP Brief SAP Lumira, Edge Edition Objectives Empowering Teams and Departments with Agile Visualizations A data visualization solution for teams and departments A data visualization solution for teams

More information

R49 Using SAP Payment Engine for payment transactions. Process Diagram

R49 Using SAP Payment Engine for payment transactions. Process Diagram R49 Using SAP Payment Engine for payment transactions Process Diagram Purpose, Benefits, and Key Process Steps Purpose The purpose of this scenario is to show you how to check the result of payment orders

More information

Why Cloud Platforms are the Secret Weapon to Make Your Business More Agile and Competitive

Why Cloud Platforms are the Secret Weapon to Make Your Business More Agile and Competitive Why Cloud Platforms are the Secret Weapon to Make Your Business More Agile and Competitive Matthias Steiner, SAP SE @steinermatt May, 2015 Use this title slide only with an image Disclaimer This presentation

More information

Session 805 -End-to-End SAP Lumira: Desktop to On-Premise, Cloud, and Mobile

Session 805 -End-to-End SAP Lumira: Desktop to On-Premise, Cloud, and Mobile September 9 11, 2013 Anaheim, California Session 805 -End-to-End SAP Lumira: Desktop to On-Premise, Cloud, and Mobile Ashish C. Morzaria, SAP Disclaimer This presentation outlines our general product direction

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

Ignite Your Creative Ideas with Fast and Engaging Data Discovery

Ignite Your Creative Ideas with Fast and Engaging Data Discovery SAP Brief SAP BusinessObjects BI s SAP Crystal s SAP Lumira Objectives Ignite Your Creative Ideas with Fast and Engaging Data Discovery Tap into your data big and small Tap into your data big and small

More information

SAP Audit Management A Preview

SAP Audit Management A Preview SAP Audit Management A Preview SAP AG November 2013 Customer 1 Agenda Business Challenges The Idea The Solution Roadmap Demo 2013 SAP AG. All rights reserved. Customer 2 Disclaimer The information in this

More information

September 9 11, 2013 Anaheim, California Spatial Analytics: 3D Models in SBOP Dashboards

September 9 11, 2013 Anaheim, California Spatial Analytics: 3D Models in SBOP Dashboards September 9 11, 2013 Anaheim, California Spatial Analytics: 3D Models in SBOP Dashboards Robert Abarbanel Agenda SAP 3D Visual Enterprise Lots of SAP Integrations Mobile (Way cool!) Spatial Analytics Applications

More information

SAP Mobile Documents. December, 2015

SAP Mobile Documents. December, 2015 SAP Mobile Documents December, 2015 Disclaimer This presentation outlines our general product direction and should not be relied on in making a purchase decision. This presentation is not subject to your

More information

SAP BusinessObjects Cloud

SAP BusinessObjects Cloud Frequently Asked Questions SAP BusinessObjects Cloud SAP BusinessObjects Cloud To help customers Run Simple, SAP is breaking the limitations of the past. On October 20, 2015, we unveiled a new generation

More information

Landscape Deployment Recommendations for. SAP Fiori Front-End Server

Landscape Deployment Recommendations for. SAP Fiori Front-End Server Landscape Deployment Recommendations for SAP Fiori Front-End New Rollout Channel The rollout channel for publishing landscape deployment recommendations changed. Please have a look at our announcement.

More information

SAP Enterprise Asset Management Enabling Maintenance Professionals

SAP Enterprise Asset Management Enabling Maintenance Professionals SAP Enterprise Asset Management Enabling Maintenance Professionals Pieter van Daal SAP Nederland Product Manager Enterprise Asset Management empower Operational Excellence in the Utility Industry Groningen

More information

SAP Business One mobile app for ios. Version 1.9.x September 2013

SAP Business One mobile app for ios. Version 1.9.x September 2013 SAP Business One mobile app for ios Version 1.9.x September 2013 Legal disclaimer The information in this presentation is confidential and proprietary to SAP and may not be disclosed without the permission

More information

How To Be Successful

How To Be Successful Realizing Value from SAP Mobile EAM and Field Service Solutions MEE Mobile Customer Conference Customer 1 Legal disclaimer The information in this presentation is confidential and proprietary to SAP and

More information

Choosing the right Mobile BI tool: SSRS vs Power BI vs Datazen

Choosing the right Mobile BI tool: SSRS vs Power BI vs Datazen Choosing the right Mobile BI tool: SSRS vs Power BI vs Datazen Andrea Martorana Tusa @bruco441 andrea.martoranatusa@gmail.com Sponsors Organizers getlatestversion.it Speaker @bruco441 Analyst/Developer

More information

Introduction to D3.js Interactive Data Visualization in the Web Browser

Introduction to D3.js Interactive Data Visualization in the Web Browser Datalab Seminar Introduction to D3.js Interactive Data Visualization in the Web Browser Dr. Philipp Ackermann Sample Code: http://github.engineering.zhaw.ch/visualcomputinglab/cgdemos 2016 InIT/ZHAW Visual

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

GR5 Access Request. Process Diagram

GR5 Access Request. Process Diagram GR5 Access Request Process Diagram Purpose, Benefits, and Key Process Steps Purpose This scenario uses business roles to show a new user access provisioning and also demo using simplified access request

More information

Exploring GIS Integration Options for SAP BusinessObjects

Exploring GIS Integration Options for SAP BusinessObjects Exploring GIS Integration Options for SAP BusinessObjects Introduction In conversations with various individuals and businesses over the years, I hear a common question being raised: How do I integrate

More information

Enterprise MDM SAP HANA Powered Intelligent Process Analytics at Colgate Jian Ming Se Colgate / Juergen Bold SAP AG

Enterprise MDM SAP HANA Powered Intelligent Process Analytics at Colgate Jian Ming Se Colgate / Juergen Bold SAP AG Enterprise MDM SAP HANA Powered Intelligent Process Analytics at Colgate Jian Ming Se Colgate / Juergen Bold SAP AG AGENDA Enterprise Master Data Management at Colgate Master Data Governance Analytics

More information

Big Data Visualization and Dashboards

Big Data Visualization and Dashboards Big Data Visualization and Dashboards Boney Pandya Marketing Manager Greg Harris Systems Engineer Follow us @Jinfonet #BigDataWebinar JReport Highlights Advanced, Embedded Data Visualization Platform:

More information

What s New / 2011.1 Data Visualization. JASON BERES : VP, Product Management jasonb@infragistics.com / @jasonberes / @infragistics

What s New / 2011.1 Data Visualization. JASON BERES : VP, Product Management jasonb@infragistics.com / @jasonberes / @infragistics What s New / 2011.1 Data Visualization JASON BERES : VP, Product Management jasonb@infragistics.com / @jasonberes / @infragistics Agenda 1 / 2011.1 Packaging 2 / Core Investments 3 / Shared XAML Strategy

More information

Update on the SAP GUI Family. Q3/2014 Public

Update on the SAP GUI Family. Q3/2014 Public Update on the SAP GUI Family Q3/2014 Public Disclaimer This presentation outlines our general product direction and should not be relied on in making a purchase decision. This presentation is not subject

More information

SAP Working Capital Analytics Overview. SAP Business Suite Application Innovation January 2014

SAP Working Capital Analytics Overview. SAP Business Suite Application Innovation January 2014 Overview SAP Business Suite Application Innovation January 2014 Overview SAP Business Suite Application Innovation SAP Working Capital Analytics Introduction SAP Working Capital Analytics Why Using HANA?

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

Affinity Insight Retail Basket Analysis

Affinity Insight Retail Basket Analysis Affinity Insight Retail Basket Analysis Shantanu Goswami. SAP Data Science. 2014 Legal disclaimer The information in this presentation is confidential and proprietary to SAP and may not be disclosed without

More information

SAP BusinessObjects. May 2011

SAP BusinessObjects. May 2011 SAP BusinessObjects Mobile Business Intelligence May 2011 Safe Harbor The information in this presentation is confidential and proprietary to SAP and may not be disclosed without the permission of SAP.

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

CEI Document Management in S/4 Initial Call

CEI Document Management in S/4 Initial Call CEI Document Management in S/4 Initial Call, SAP Labs India Dec 2015 Disclaimer The information in this document is confidential and proprietary to SAP and may not be disclosed without the permission of

More information

Assignment 5: Visualization

Assignment 5: Visualization Assignment 5: Visualization Arash Vahdat March 17, 2015 Readings Depending on how familiar you are with web programming, you are recommended to study concepts related to CSS, HTML, and JavaScript. The

More information

Working Capital Analytics Overview. SAP Business Suite Application Innovation March 2015

Working Capital Analytics Overview. SAP Business Suite Application Innovation March 2015 Working Capital Analytics Overview SAP Business Suite Application Innovation March 2015 Abstract As of Smart Financials 1.0 SP02 SAP delivers Working Capital Analytics DSO Analysis Working Capital Analytics

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

Mobile app for Android Version 1.2.x, December 2015

Mobile app for Android Version 1.2.x, December 2015 Mobile app for Android Version 1.2.x, December 2015 Introduction This app allows you to access SAP Business One, SAP s enterprise resource planning application for small businesses, anywhere and anytime.

More information

Table of Contents Find the story within your data

Table of Contents Find the story within your data Visualizations 101 Table of Contents Find the story within your data Introduction 2 Types of Visualizations 3 Static vs. Animated Charts 6 Drilldowns and Drillthroughs 6 About Logi Analytics 7 1 For centuries,

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

Embedded Analytics & Big Data Visualization in Any App

Embedded Analytics & Big Data Visualization in Any App Embedded Analytics & Big Data Visualization in Any App Boney Pandya Marketing Manager Greg Harris Systems Engineer Follow us @Jinfonet Our Mission Simplify the Complexity of Reporting and Visualization

More information

JavaScript (HTML5, CSS3) Toolkits for InfoVis (Graphics)

JavaScript (HTML5, CSS3) Toolkits for InfoVis (Graphics) JavaScript (HTML5, CSS3) Toolkits for InfoVis (Graphics) Group 2 Amir Kanuric, Raoul Rubien, Jörg Schlager 706.057 Information Visualisation SS 2012 Graz University of Technology 2 May 2012 Abstract Graphical

More information

Geo Analysis, Visualization and Performance with JReport 13

Geo Analysis, Visualization and Performance with JReport 13 Geo Analysis, Visualization and Performance with JReport 13 Boney Pandya Marketing Manager Leo Zhao Systems Engineer Follow us @Jinfonet JReport Highlights Advanced, Embedded Data Visualization Platform:

More information

Session 0202: Big Data in action with SAP HANA and Hadoop Platforms Prasad Illapani Product Management & Strategy (SAP HANA & Big Data) SAP Labs LLC,

Session 0202: Big Data in action with SAP HANA and Hadoop Platforms Prasad Illapani Product Management & Strategy (SAP HANA & Big Data) SAP Labs LLC, Session 0202: Big Data in action with SAP HANA and Hadoop Platforms Prasad Illapani Product Management & Strategy (SAP HANA & Big Data) SAP Labs LLC, Bellevue, WA Legal disclaimer The information in this

More information

Partner Certification to Operate SAP Solutions and SAP Software Environments

Partner Certification to Operate SAP Solutions and SAP Software Environments SAP Information Sheet SAP Partner Innovation Lifecycle Services SAP Certification for Outsourcing Operations Partners Quick Facts Partner Certification to Operate SAP Solutions and SAP Software Environments

More information

<Insert Picture Here> Web 2.0 Data Visualization with JSF. Juan Camilo Ruiz Senior Product Manager Oracle Development Tools

<Insert Picture Here> Web 2.0 Data Visualization with JSF. Juan Camilo Ruiz Senior Product Manager Oracle Development Tools Web 2.0 Data Visualization with JSF Juan Camilo Ruiz Senior Product Manager Oracle Development Tools 1 The preceding is intended to outline our general product direction. It is intended

More information

OpenText Information Hub (ihub) 3.1 and 3.1.1

OpenText Information Hub (ihub) 3.1 and 3.1.1 OpenText Information Hub (ihub) 3.1 and 3.1.1 OpenText Information Hub (ihub) 3.1.1 meets the growing demand for analytics-powered applications that deliver data and empower employees and customers to

More information

Ad Hoc Analysis of Big Data Visualization

Ad Hoc Analysis of Big Data Visualization Ad Hoc Analysis of Big Data Visualization Dean Yao Director of Marketing Greg Harris Systems Engineer Follow us @Jinfonet #BigDataWebinar JReport Highlights Advanced, Embedded Data Visualization Platform:

More information

The Next Wave in Mobility for Enterprise Asset Management Karsten Hauschild, LoB EAM, SAP Labs Bill Padula, VP Business Solutions, Syclo

The Next Wave in Mobility for Enterprise Asset Management Karsten Hauschild, LoB EAM, SAP Labs Bill Padula, VP Business Solutions, Syclo The Next Wave in Mobility for Enterprise Asset Management Karsten Hauschild, LoB EAM, SAP Labs Bill Padula, VP Business Solutions, Syclo Learning Points Get insight into the business context for mobile

More information

How SAP Business Intelligence Solutions provide real-time insight into your organization

How SAP Business Intelligence Solutions provide real-time insight into your organization How SAP Business Intelligence Solutions provide real-time insight into your organization 28 Oct 2015 Agenda 1) What is Business Intelligence (BI) 2) SAP BusinessObjects Features Overview 3) Demo & Report

More information

K88 - Additional Business Operations for Loans. Process Diagram

K88 - Additional Business Operations for Loans. Process Diagram K88 - Additional Business Operations for Loans Process Diagram K88 Additional Business Operations for Loans Payment Plan Change SAP UI/ A Financial Services ->Account Management -> Periodic Tasks -> Communication

More information

4/25/2016 C. M. Boyd, ceilyn_boyd@harvard.edu Practical Data Visualization with JavaScript Talk Handout

4/25/2016 C. M. Boyd, ceilyn_boyd@harvard.edu Practical Data Visualization with JavaScript Talk Handout Practical Data Visualization with JavaScript Talk Handout Use the Workflow Methodology to Compare Options Name Type Data sources End to end Workflow Support Data transformers Data visualizers General Data

More information

SAP BusinessObjects Mobile So gelangen Ihre Informationen auf mobile Geräte. Jörg Diekkämper 24. April 2015

SAP BusinessObjects Mobile So gelangen Ihre Informationen auf mobile Geräte. Jörg Diekkämper 24. April 2015 SAP BusinessObjects Mobile So gelangen Ihre Informationen auf mobile Geräte Jörg Diekkämper 24. April 2015 2005 2013 Quelle 2014 SAP AG or an SAP affiliate company. All rights reserved. 2 2014 SAP AG or

More information

Cost-Effective Data Management and a Simplified Data Warehouse

Cost-Effective Data Management and a Simplified Data Warehouse SAP Information Sheet SAP Technology SAP HANA Dynamic Tiering Quick Facts Cost-Effective Data Management and a Simplified Data Warehouse Quick Facts Summary The SAP HANA dynamic tiering option helps application

More information

What s New in JReport 13.1

What s New in JReport 13.1 Highlights JReport 13.1 focuses on new geographical tools for data visualization, enhanced data analysis and presentation in dashboards and reports, as well as greater performance and scalability when

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

SAP BusinessObjects BI Clients. January 2016

SAP BusinessObjects BI Clients. January 2016 SAP BusinessObjects BI Clients January 2016 SAP Analytics and BI Strategy SAP Analytics Strategy SAP Cloud for Analytics Provide new SaaS Analytics capabilities All analytics capabilities in one product

More information

DMM301 Benefits and Patterns of a Logical Data Warehouse with SAP BW on SAP HANA

DMM301 Benefits and Patterns of a Logical Data Warehouse with SAP BW on SAP HANA DMM301 Benefits and Patterns of a Logical Data Warehouse with SAP BW on SAP HANA Ulrich Christ/Product Management SAP EDW (BW/HANA) Public Disclaimer This presentation outlines our general product direction

More information

SAP HANA Vora : Gain Contextual Awareness for a Smarter Digital Enterprise

SAP HANA Vora : Gain Contextual Awareness for a Smarter Digital Enterprise Frequently Asked Questions SAP HANA Vora SAP HANA Vora : Gain Contextual Awareness for a Smarter Digital Enterprise SAP HANA Vora software enables digital businesses to innovate and compete through in-the-moment

More information

Add Location Intelligence and Analytics into Your BI, Dashboard, and Mobile Apps

Add Location Intelligence and Analytics into Your BI, Dashboard, and Mobile Apps SAP Brief Extensions SAP BusinessObjects BI Location Intelligence by Galigeo Objectives Add Location Intelligence and Analytics into Your BI, Dashboard, and Mobile Apps Location intelligence for geospatial

More information