Enhance your Analytics using Logical Data Warehouse and Data Virtualization thru SAP HANA smart data access SESSION CODE: 0210

Size: px
Start display at page:

Download "Enhance your Analytics using Logical Data Warehouse and Data Virtualization thru SAP HANA smart data access SESSION CODE: 0210"

Transcription

1 Enhance your Analytics using Logical Data Warehouse and Data Virtualization thru SAP HANA smart data access Balaji Krishna, Product Management SAP HANA Platform. SAP SESSION CODE: 0210

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 forwardlooking statements, which speak only as of their dates, and they should not be relied upon in making purchasing decisions.

3 LEARNING POINTS Understand smart data access(sda) features offered as part of SAP HANA Platform Learn how to deploy Logical Data Warehouses using Data Virtualization techniques like SDA Extend the in-memory Data Fabric capabilities using SAP HANA

4 AGENDA Overview of smart data access (Data Virtualization) Technical Architecture Common Workflows using SDA Customer Use cases Roadmap Q & A

5 Development SAP HANA Platform More than just a database Any Apps Any App Server SAP Business Suite and BW ABAP App Server SQL MDX R JSON Open Connectivity SAP HANA Platform Extended Application Services Supports any Device App Server UI Integration Services Web Server Processing Engine OLTP OLAP Search Text Analysis Predictive Events Spatial Rules Planning Calculators Database Services Application Function Libraries & Data Models Administration Predictive Analysis Libraries Business Function Libraries Data Models & Stored Procedures Integration Services Data Virtualization Replication ETL/ELT Mobile Synch Streaming Deployment: On-Premise Hybrid On-Demand SAP HANA platform converges Database, Data Processing and Application Platform capabilities & provides Libraries for predictive, planning, text, spatial, and business analytics so businesses can operate in real-time SAP AG. All rights reserved. Public 5

6 SAP HANA Smart Data Access Data virtualization for on-premise and hybrid cloud environments Benefits Enables access to remote data access just like local table Smart query processing including query decomposition with predicate push-down, functional compensation Supports data location agnostic development No special syntax to access heterogeneous data sources Heterogeneous data sources Oracle, MS SQL, Teradata, DB2, Netezza Hadoop Hive (Hortonworks, Cloudera, MapR, etc.) Spark SAP HANA (BWoH, SoH) SAP Sybase ASE and IQ SAP Sybase ESP, SQLA 2014 SAP AG or an SAP affiliate company. All rights reserved. 6

7 AGENDA Overview of smart data access (Data Virtualization) Technical Architecture Common Workflows using SDA Customer Use cases Roadmap Q & A

8 Components Data Consumers Transactions + Analytics Applications Performance and query optimization Leverage remote compute engines Relational Views Query monitoring and statistics Data virtualization Components Data-type Transformation Query Monitoring Query Optimization In-Flight Data Cleansing & Transformation Data Statistics Recommendation Engine Security Data Caching Powerful transformations and information validation Smart placement and caching recommendations Buit-In Adapters Adapter SDK Other data sources (SDK, databases, files, web services, etc.) Remote Data Sources Current Future Teradata Hadoop Oracle/DB2 ASE etc SAP AG or an SAP affiliate company. All rights reserved. 8

9 SAP HANA smart data access High Level Component Diagram SAP HANA Studio Schema Management Security Management Modeler Configuration Query Monitoring Administration Federation Perspectives Query optimization and execution Identifies query fragment which can be sent to the target for remote processing Performs functional compensation Adapter framework enables data type conversions Driver manager loads database specific drivers Access methods enable integration with other HANA query processing components SAP HANA HANA Views Analytical Model Persistence Layer (Repository & Catalog) Base Tables Virtual Tables Federation Model Query Processing Query Optimization Remote Query Execution Federation Support Federation Adapter Framework Access Methods Data Type Conversions Virtual Access Layer Driver Manager ASE ODBC Driver Teradata..ODBC Driver ASE TD Added for HANA Federation 2014 SAP AG or an SAP affiliate company. All rights reserved. 9

10 SUMMARY OF KEY FEATURES FEATURE DESCRIPTION Data Sources Oracle, MSSQL, DB2, IQ, ASE, Teradata, Hadoop, Netezza, HANA (BWoH, SoH) DDL Support Select, Insert, Update Delete Create/Drop Source (allows for the creation of data source targets) Create/Drop Virtual Tables (allows virtual tables, which point to remote tables to be created and modified). Optimization Push down filters, Push down aggregates, Semi-Join reduction, join relocation, etc. Execution Functional Compensation Functional Translation Parallel execution Security Access remote sources via secondary credentials/technical user Adapter Framework Provides uniform access to remote data, via ODBC adapters Transforms remote server data types to HANA data types Studio Support Create/Drop data sources/virtual tables Execute and Monitor queries Analyze query plans Calc View Support for Virtual Tables

11 FUCTIONAL COMPENSATION EXAMPLES Few examples of functional compensation happening in HANA Full outer join A FULL OUTER JOIN B ON (A.a = B.b). Even if both the tables are on the same ASE server, we would still do the outer join in HANA as ASE doesn t support it. STDDEV/VAR for Teradata We will compensate this in HANA if the STDDEV and VAR are on integer columns as Teradata doesn t support that. Also, there might be other built-in functions that remote server doesn t support which we will compensated in HANA.

12 Join Relocation using Temporary Table on Remote Source HANA SQL select TOP 100 "CUST"."CUSTOMER_ID", COUNT(*), PAYMENT_METHOD, SUM("FACT_01"."QUANTITY") from WORKSHOP.CUST join "WORKSHOP"."FACT_01" on "CUST"."CUSTOMER_ID" = "FACT_01"."CUSTOMER_ID" where "CUST"."CUSTOMER_SCORE" > 97 group by "CUST"."CUSTOMER_ID", PAYMENT_METHOD order by SUM("FACT_01"."QUANTITY") DESC Rows Fetched from Remote Server Remote Query Tree HANA Sends SQL to Remote Database SELECT SQ.* FROM ( SELECT "FACT_01"."CUSTOMER_ID" AS "CUSTOMER_ID", COL0, "FACT_01"."PAYMENT_METHOD" AS "PAYMENT_METHOD", COUNT(*) AS SUM("FACT_01"."QUANTITY") AS COL1 FROM NLSUSER."FACT_01" "FACT_01" GROUP BY "FACT_01"."CUSTOMER_ID","FACT_01"."PAYMENT_METHOD" ) SQ, #CUSTOMER_ID_4 WHERE SQ."CUSTOMER_ID" = #CUSTOMER_ID_4.CUSTOMER_ID HANA SDA Inserts 2,073 rows into a temporary table in remote source Then forms SQL Query to join to temporary table on remote database insert into #CUSTOMER_ID_4 values( ) 2014 SAP AG or an SAP affiliate company. All rights reserved. 13

13 AGENDA Overview of smart data access (Data Virtualization) Technical Architecture Common Workflows using SDA Customer Use cases Roadmap Q & A

14 SAP HANA Studio SAP HANA Studio SAP HANA Transactions + Analytics Applications Enables users to develop applications on SAP HANA Create remote sources, create virtual tables, set security policies SAP HANA Tables Virtual Tables Access remote sources and build virtual tables, using remote table schema and data types Adapter Framework Built-In Adapters Third Party Adapters Create Calc Views using Virtual Tables Execute queries and analyze query plan Monitor queries Data Sources 2014 SAP AG or an SAP affiliate company. All rights reserved. 15

15 CREATING A REMOTE SOURCE 1 Right Click to add remote sources 2 Add remote sources INFORMATION TO FILL IN Adapter Name Server Name Port # Server Name Credentials for remote source 2014 SAP AG or an SAP affiliate company. All rights reserved. 16

16 CREATING A VIRTUAL TABLE 1 Right Click on Tables and add New Virtual Table 2 Browse tables on remote source, and select table 3 Based on remote table schema, HANA creates virtual table with same columns, and closest datatypes which match HANA data types 4 The virtual table created is visible under Tables Note: icon is different compared to any other HANA tables 2014 SAP AG or an SAP affiliate company. All rights reserved. 17

17 QUERY MONITORING 1 Click on Smart Data Access to open monitoring window 3 Using Information Provided User Can Analyze Queries and Decide What Remote Tables To Move Into HANA for enhancing performance 2 Query Monitoring Window Provides Information On: Query Executed Start Time Execution Time Rows Retrieved Server Accessed SQL Text Sent to Remote Source 2014 SAP AG or an SAP affiliate company. All rights reserved. 18

18 Calc View support for Virtual Tables When creating a calculation view, it will be possible to add virtual tables as data sources. Virtual tables can also be referenced by the calculation scenarios. The support for adding virtual tables in the calculation view can also be done from SAP HANA Studio. Optimizations such as push down of filters is also supported is these Calc scenarios. As of SPS08 Virtual Tables are supported in Analytic and Attribute Views as part of migration to Calc Views

19 AGENDA Overview of smart data access (Data Virtualization) Technical Architecture Common Workflows using SDA Customer Use cases Roadmap Q & A

20 USE CASES USE CASE Developing Apps Using Dispersed Enterprise-Wide Data DESCRIPTION Build applications on HANA, but access data from other sources using HANA smart data access, without moving data into HANA Supported databases Oracle, MS SQL, DB2, HANA, ASE, IQ, Teradata, HIVE/Hadoop, Netezza Federation of data in Hadoop/HIVE IQ as near-line-store for HANA archived data Access Hadoop/HIVE data from HANA virtual tables via ODBC Using smart data access feature, HANA customers can access IQ as near line store Store archived data in IQ, and real time in HANA Access IQ data as hot-archive

21 SAP HANA and Hadoop SAP HANA Studio BI Clients SQL Query Layer SAP HANA tables Virtual tables for Hadoop Tables Meta data for Data Sources ODBC Connectivity Hive triggers map-reduce job HIVE JDBC ODBC Command Line Interface Web Interface Thrift Server Driver (Computer, Optimizer, Executor) Metastore HADOOP (MAP-REDUCE+HDFS) Job Tracker Name Node Date Node + Task Tracker 2014 SAP AG or an SAP affiliate company. All rights reserved. 22

22 Remote caching for Hadoop sources When SAP HANA dispatches a federated query to HIVE, it involves series of map and reduce job execution. This could take few minutes to hours to complete a query depending on the data size in Hadoop and the current cluster capacity. In most cases, the data in Hadoop cluster is not frequently updated and successive execution of map/reduce jobs might result in same tuples. As of SP07, HANA allows this result view to be materialized in the remote system thus avoiding the repetitive execution of the same query. This behavior can be controlled by hinting the optimizer to use remote caching. Syntax Select * from hive_activity_log where incident_type = ERROR and plant = 001 with hint (USE_REMOTE_CACHE)

23 smart data access with BW on HANA Generate HANA models from BW Infocubes Expose these models as Virtual tables in a 2 nd HANA instance Applications/Analytics Applications/ Analytics Virtual Table Physical Tables SAP HANA 2014 SAP AG or an SAP affiliate company. All rights reserved. 24

24 The Virtual BW Open ODS View * Pilot only (Note ) BW on HANA Virtual Access BW Query Open ODS Layer Open ODS View Virtual Virtual Table Table/Vie w Smart Data Access External Sources BW Managed Persistence Virtual Access * BW Query Open ODS Layer Open ODS View Virtual DSO w/ fields* Persistent Virtual Table Table/Vie w Open ODS View offers Metadata object as an abstraction layer for underlying source object HANA virtual tables as supported source objects via SDA Querying on field level Supported for Teradata, Sybase ASE/IQ, Hadoop Optimized Query execution by pushing down to HANA Supported scenarios: Virtual Access Persistent Access * Switch from Virtual to Persistent * Based on Field based DSO including DTP and Transformation Direct staging into DSO bypassing PSA No need to adjust existing queries Easy assignment of semantics Underlying object (Table, DB View, DataSource) can be tagged as Text, Master data or Facts Single fields of the object can be linked to already existing Open ODS Views or InfoObjects 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 license agreement or any other agreement with SAP. SAP has no obligation to pursue any course of business outlined in this presentation or to develop or release any functionality mentioned in this presentation. This presentation and SAP's strategy and possible future developments are subject to change and may be changed by SAP at any time for any reason without notice. 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. SAP assumes no responsibility for errors omissions in this document, except if such damages were caused by SAP intentionally or grossly negligent SAP AG or an SAP affiliate company. All rights reserved. 25

25 MII SDA Adapter for Manufacturing The SAP Smart Data Access (SAP SDA) adapter for SAP Manufacturing Integration and Intelligence (SAP MII) can be used to connect an SAP MII back-end system through SAP SDA to an SAP HANA system. Queries on the SAP MII side are exposed as virtual tables to SAP HANA. The adapter transforms queries to their virtual tables into appropriate SAP MII service queries. The results from SAP MII are then transformed into rows of the virtual tables. For detailed information on setting up the SAP SDA adapter for SAP MII refer to SAP Note SAP AG or an SAP affiliate company. All rights reserved. 26

26 AGENDA Overview of smart data access (Data Virtualization) Technical Architecture Common Workflows using SDA Customer Use cases Roadmap Q & A

27 Use Cases SAP HANA smart data access Product road map overview key themes and capabilities High Performance Distributed Data Access Support for SAP HANA, Teradata, Hadoop/HIVE, SAP Sybase IQ, SAP Sybase ASE, Oracle, MS SQL Define remote data sources, virtual tables, to access data in remote servers from HANA Query Optimization with query push down to ensure minimal data transfer from remote sources to HANA Compute and utilize data statistics for virtual table Secure access to remote servers via technical and secondary credentials Query Monitoring and Collection of key query execution metrics for optimization HANA Studio Support for virtual table development and monitoring support Dynamic, Enterprise Data Virtualization With Recommendation Engine Support other databases such as MaxDB, etc. Provide SDK for adding support for additional data sources, on-demand Tighter Hadoop integration thru direct support for HDFS (as HANA UDF) Enhanced performance with caching, and more query optimizations Increased DML Support with support for insert/update/delete on virtual tables Enhanced HANA Studio Support ease of application development Tighter integration with SAP data sources, including HANA to HANA (SoH, BWoH) Support for Import/Exporting Virtual Tables CDS support for Virtual Tables Application Transparency with Synchronized Cache, and Enhanced Recommendation Engine In-Flight Data Cleansing and Transformation Application transparency Support for Hadoop PIG Advanced SDA for Hadoop: windowing, table partitioned functions Provide recommendation engine to enable customers to optimize performance Support for SSO to Remote Sources Expanded DDL, and DML support with ability to create tables on remote sources, and pass through mode Multi Node Transaction Support insert, update, delete: SAP Sybase Control Center integration Extend BW/HANA to consume data from Teradata Big-Data Use Cases - Hadoop + HANA NLS - IQ as NLS for HANA HANA landscape integration - Integrate new apps on HANA with BW on HANA deployments Consume enterprise-wide data in HANA for analytical and transactional apps Enable optimal data placement via recommendation engine - decide what data to move into HANA for better performance Expand use cases, by supporting transactions against other data sources via HANA Enable fast reporting/drill down use cases via caching Deeper NLS support ability to insert data from HANA to IQ Minimal application disruption and enable support for packaged apps Expand use cases which consume web data Expanded transactional use cases for heterogeneous data sources, through HANA Deploy use cases in environments with data quality / data representation challenges TODAY (HANA SP08) Planned Innovations Future Direction This is the current state of planning and may be changed by SAP at any time SAP AG or an SAP affiliate company. All rights reserved. 28

28 SDA Roadmap- IM in HANA Data Provisioning Virtual Tables Metadata HANA Design Time Built-In Adapters SAP HANA Transformations Data Provisioning Server Adapter Framework Source Protocol Transactional & Analytical Apps HANA Tables Custom Adapters TCP/IP or HTTPS Single design time In memory transformations Real-time and scheduled data replication with transactional consistency and guaranteed delivery Built-In adapters for common sources; open SDK for extensibility 2014 SAP AG or an SAP affiliate company. All rights reserved. 29

29 SUMMARY Enables application developers to write new data intensive applications, without regard to where the data resides, size or the functionality supported Platform will leverage data processing engines (databases, Hadoop, etc.) to synthesize information needed for analysis resulting in high performance However HANA smart data access does not eliminate the need for EDW which addresses the Data Consistency, harmonization and Governance issues required for Compliance Customer benefits: Rapid deployment of high-performance, data intensive transactional and analytical applications Cost Savings Benefit from HANA functionality, without moving all data into HANA

30 How to find SAP HANA documentation on this topic? SAP HANA smart data access Central Note HANA Academy Videos on SDA YouTube SAP BW and SDA - SAP HANA Platform SAP Help Security Administration SAP HANA Administration Guide Development SAP HANA Developer Guide References SAP HANA SQL Reference 2014 SAP AG or an SAP affiliate company. All rights reserved. 31

31 THANK YOU FOR PARTICIPATING Please provide feedback on this session by completing a short survey via the event mobile application. SESSION CODE: 0210 For ongoing education on this area of focus, visit

32 FOLLOW US Follow the ASUGNews team: Tom & Courtney For all things SAP

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

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

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

SAP Database Strategy Overview. Uwe Grigoleit September 2013

SAP Database Strategy Overview. Uwe Grigoleit September 2013 SAP base Strategy Overview Uwe Grigoleit September 2013 SAP s In-Memory and management Strategy Big- in Business-Context: Are you harnessing the opportunity? Mobile Transactions Things Things Instant Messages

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

SAP BW 7.40 Near-Line Storage for SAP IQ What's New?

SAP BW 7.40 Near-Line Storage for SAP IQ What's New? SAP BW 7.40 Near-Line Storage for SAP IQ What's New? Rainer Uhle Product Management SAP EDW (BW / HANA), SAP SE Public Disclaimer This presentation outlines our general product direction and should not

More information

RDP300 - Real-Time Data Warehousing with SAP NetWeaver Business Warehouse 7.40. October 2013

RDP300 - Real-Time Data Warehousing with SAP NetWeaver Business Warehouse 7.40. October 2013 RDP300 - Real-Time Data Warehousing with SAP NetWeaver Business Warehouse 7.40 October 2013 Disclaimer This presentation outlines our general product direction and should not be relied on in making a purchase

More information

Exploring the Synergistic Relationships Between BPC, BW and HANA

Exploring the Synergistic Relationships Between BPC, BW and HANA September 9 11, 2013 Anaheim, California Exploring the Synergistic Relationships Between, BW and HANA Sheldon Edelstein SAP Database and Solution Management Learning Points SAP Business Planning and Consolidation

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

SAP HANA SPS 09 - What s New? SAP HANA Scalability

SAP HANA SPS 09 - What s New? SAP HANA Scalability SAP HANA SPS 09 - What s New? SAP HANA Scalability (Delta from SPS08 to SPS09) SAP HANA Product Management November, 2014 2014 SAP AG or an SAP affiliate company. All rights reserved. 1 Disclaimer This

More information

TE's Analytics on Hadoop and SAP HANA Using SAP Vora

TE's Analytics on Hadoop and SAP HANA Using SAP Vora TE's Analytics on Hadoop and SAP HANA Using SAP Vora Naveen Narra Senior Manager TE Connectivity Santha Kumar Rajendran Enterprise Data Architect TE Balaji Krishna - Director, SAP HANA Product Mgmt. -

More information

SAP BW: The Real-time Data Application Platform How SAP BW uses the SAP database options

SAP BW: The Real-time Data Application Platform How SAP BW uses the SAP database options SAP BW: The Real-time Data Application Platform How SAP BW uses the SAP database options Roland Kramer - Product and Strategy - PM EDW/In-Memory July 2014 Disclaimer This presentation outlines our general

More information

Big Data and the SAP Data Platform Including SAP HANA and Apache Hadoop Balaji Krishna, SAP HANA Product Management

Big Data and the SAP Data Platform Including SAP HANA and Apache Hadoop Balaji Krishna, SAP HANA Product Management Orange County Convention Center Orlando, Florida June 3-5, 2014 Big Data and the SAP Data Platform Including SAP HANA and Apache Hadoop Balaji Krishna, SAP HANA Product Management @balajivkrishna LEARNING

More information

SAP HANA SAP s In-Memory Database. Dr. Martin Kittel, SAP HANA Development January 16, 2013

SAP HANA SAP s In-Memory Database. Dr. Martin Kittel, SAP HANA Development January 16, 2013 SAP HANA SAP s In-Memory Database Dr. Martin Kittel, SAP HANA Development January 16, 2013 Disclaimer This presentation outlines our general product direction and should not be relied on in making a purchase

More information

Lofan Abrams Data Services for Big Data Session # 2987

Lofan Abrams Data Services for Big Data Session # 2987 Lofan Abrams Data Services for Big Data Session # 2987 Big Data Are you ready for blast-off? Big Data, for better or worse: 90% of world s data generated over last two years. ScienceDaily, ScienceDaily

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

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

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

SAP BW on HANA : Complete reference guide

SAP BW on HANA : Complete reference guide SAP BW on HANA : Complete reference guide Applies to: SAP BW 7.4, SAP HANA, BW on HANA, BW 7.3 Summary There have been many architecture level changes in SAP BW 7.4. To enable our customers to understand

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

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

SAP Business Warehouse Powered by SAP HANA for the Utilities Industry

SAP Business Warehouse Powered by SAP HANA for the Utilities Industry SAP White Paper Utilities Industry SAP Business Warehouse powered by SAP HANA SAP S/4HANA SAP Business Warehouse Powered by SAP HANA for the Utilities Industry Architecture design for utility-specific

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

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 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

In-memory computing with SAP HANA

In-memory computing with SAP HANA In-memory computing with SAP HANA June 2015 Amit Satoor, SAP @asatoor 2015 SAP SE or an SAP affiliate company. All rights reserved. 1 Hyperconnectivity across people, business, and devices give rise to

More information

SAP Big Data and Cloud Application Development. Mark Mumy Director, Enterprise Architecture and Big Data mark.mumy@sap.com

SAP Big Data and Cloud Application Development. Mark Mumy Director, Enterprise Architecture and Big Data mark.mumy@sap.com SAP Big Data and Cloud Application Development Mark Mumy Director, Enterprise Architecture and Big Data mark.mumy@sap.com Big Data Exploitation A Business Imperative.. Big Data isn t just one more technology

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

An Overview of SAP BW Powered by HANA. Al Weedman

An Overview of SAP BW Powered by HANA. Al Weedman An Overview of SAP BW Powered by HANA Al Weedman About BICP SAP HANA, BOBJ, and BW Implementations The BICP is a focused SAP Business Intelligence consulting services organization focused specifically

More information

SAP BW 7.4 Real-Time Replication using Operational Data Provisioning (ODP)

SAP BW 7.4 Real-Time Replication using Operational Data Provisioning (ODP) SAP BW 7.4 Real-Time Replication using Operational Data Provisioning (ODP) Dr. Astrid Tschense-Österle, AGS SLO Product Management Marc Hartz, Senior Specialist SCE Rainer Uhle, BW Product Management May

More information

A Few Cool Features in BW 7.4 on HANA that Make a Difference

A Few Cool Features in BW 7.4 on HANA that Make a Difference A Few Cool Features in BW 7.4 on HANA that Make a Difference Here is a short summary of new functionality in BW 7.4 on HANA for those familiar with traditional SAP BW. I have collected and highlighted

More information

Overview of How SAP IQ Augments the SAP Technology Landscape with Temperature Sensitive Data Management

Overview of How SAP IQ Augments the SAP Technology Landscape with Temperature Sensitive Data Management Orange County Convention Center Orlando, Florida June 3-5, 2014 Overview of How SAP IQ Augments the SAP Technology Landscape with Temperature Sensitive Data Management Andrew Neugebauer, Director, SAP

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

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

SAP HANA SPS 09 - What s New? Administration & Monitoring

SAP HANA SPS 09 - What s New? Administration & Monitoring SAP HANA SPS 09 - What s New? Administration & Monitoring (Delta from SPS08 to SPS09) SAP HANA Product Management November, 2014 2014 SAP AG or an SAP affiliate company. All rights reserved. 1 Content

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

Using In-Memory Data Fabric Architecture from SAP to Create Your Data Advantage

Using In-Memory Data Fabric Architecture from SAP to Create Your Data Advantage SAP HANA Using In-Memory Data Fabric Architecture from SAP to Create Your Data Advantage Deep analysis of data is making businesses like yours more competitive every day. We ve all heard the reasons: the

More information

Template Revision 20130104 v3.0

Template Revision 20130104 v3.0 Data Provisioning from SAP and Non-SAP Data Sources to SAP HANA Prasad illapani SAP HANA & Big Data - Product Management & Strategy SAP Labs LLC., Bellevue, WA Template Revision 20130104 v3.0 Legal Disclaimer

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

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

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 Sybase Replication Server What s New in 15.7.1 SP100. Bill Zhang, Product Management, SAP HANA Lisa Spagnolie, Director of Product Marketing

SAP Sybase Replication Server What s New in 15.7.1 SP100. Bill Zhang, Product Management, SAP HANA Lisa Spagnolie, Director of Product Marketing SAP Sybase Replication Server What s New in 15.7.1 SP100 Bill Zhang, Product Management, SAP HANA Lisa Spagnolie, Director of Product Marketing Agenda SAP Sybase Replication Server Overview Replication

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

Extend your analytic capabilities with SAP Predictive Analysis

Extend your analytic capabilities with SAP Predictive Analysis September 9 11, 2013 Anaheim, California Extend your analytic capabilities with SAP Predictive Analysis Charles Gadalla Learning Points Advanced analytics strategy at SAP Simplifying predictive analytics

More information

SAP Crystal Reports & SAP HANA: Integration & Roadmap Kenneth Li SAP SESSION CODE: 0401

SAP Crystal Reports & SAP HANA: Integration & Roadmap Kenneth Li SAP SESSION CODE: 0401 SAP Crystal Reports & SAP HANA: Integration & Roadmap Kenneth Li SAP SESSION CODE: 0401 LEARNING POINTS Learn about Crystal Reports for HANA Glance at the road map for the product Overview of deploying

More information

Data Management for SAP Business Suite and SAP S/4HANA. Robert Wassermann, SAP SE

Data Management for SAP Business Suite and SAP S/4HANA. Robert Wassermann, SAP SE Data Management for SAP Business Suite and SAP S/4HANA Robert Wassermann, SAP SE Disclaimer This presentation outlines our general product direction and should not be relied on in making a purchase decision.

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

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

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

SAP Business Objects Business Intelligence platform Document Version: 4.1 Support Package 7 2015-11-24. Data Federation Administration Tool Guide

SAP Business Objects Business Intelligence platform Document Version: 4.1 Support Package 7 2015-11-24. Data Federation Administration Tool Guide SAP Business Objects Business Intelligence platform Document Version: 4.1 Support Package 7 2015-11-24 Data Federation Administration Tool Guide Content 1 What's new in the.... 5 2 Introduction to administration

More information

Building Advanced Data Models with SAP HANA. Werner Steyn Customer Solution Adoption, SAP Labs, LLC.

Building Advanced Data Models with SAP HANA. Werner Steyn Customer Solution Adoption, SAP Labs, LLC. Building Advanced Data Models with SAP HANA Werner Steyn Customer Solution Adoption, SAP Labs, LLC. Disclaimer This presentation outlines our general product direction and should not be relied on in making

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

ITM204 Post-Copy Automation for SAP NetWeaver Business Warehouse System Landscapes. October 2013

ITM204 Post-Copy Automation for SAP NetWeaver Business Warehouse System Landscapes. October 2013 ITM204 Post-Copy Automation for SAP NetWeaver Business Warehouse System Landscapes October 2013 Disclaimer This presentation outlines our general product direction and should not be relied on in making

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

Die Technologieplattform der Zukunft. Arne Speck Solution Expert, Mobility & Technology, SAP (Schweiz) AG

Die Technologieplattform der Zukunft. Arne Speck Solution Expert, Mobility & Technology, SAP (Schweiz) AG Die Technologieplattform der Zukunft Arne Speck Solution Expert, Mobility & Technology, SAP (Schweiz) AG Disclaimer This presentation outlines our general product direction and should not be relied on

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

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

Real-Time Enterprise Management with SAP Business Suite on the SAP HANA Platform

Real-Time Enterprise Management with SAP Business Suite on the SAP HANA Platform Real-Time Enterprise Management with SAP Business Suite on the SAP HANA Platform Jürgen Butsmann, Solution Owner, Member of Global Business Development Suite on SAP HANA, SAP October 9th, 2014 Public Agenda

More information

Turn "Big Data" into Business Value with Real-Time BI. Timo Elliott, March 2012

Turn Big Data into Business Value with Real-Time BI. Timo Elliott, March 2012 Turn "Big Data" into Business Value with Real-Time BI Timo Elliott, March 2012 1 Legal Disclaimer The information in this presentation is confidential and proprietary to SAP and may not be disclosed without

More information

BW362 SAP NetWeaver BW, powered by SAP HANA

BW362 SAP NetWeaver BW, powered by SAP HANA SAP NetWeaver BW, powered by SAP HANA SAP NetWeaver - Business Intelligence Course Version: 07 Course Duration: 5 Day(s) Publication Date: 05-08-2014 Publication Time: 1210 Copyright Copyright SAP AG.

More information

SAP HANA From Relational OLAP Database to Big Data Infrastructure

SAP HANA From Relational OLAP Database to Big Data Infrastructure SAP HANA From Relational OLAP Database to Big Data Infrastructure Anil K Goel VP & Chief Architect, SAP HANA Data Platform WBDB 2015, June 16, 2015 Toronto SAP Big Data Story Data Lifecycle Management

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

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

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

EO Data by using SAP HANA Spatial Hinnerk Gildhoff, Head of HANA Spatial, SAP Satellite Masters Conference 21 th October 2015 Public

EO Data by using SAP HANA Spatial Hinnerk Gildhoff, Head of HANA Spatial, SAP Satellite Masters Conference 21 th October 2015 Public Leveraging Geospatial Technologies EO Data by using SAP HANA Spatial Hinnerk Gildhoff, Head of HANA Spatial, SAP Satellite Masters Conference 21 th October 2015 Public Disclaimer This presentation outlines

More information

Big Data Analytics Using SAP HANA Dynamic Tiering Balaji Krishna SAP Labs SESSION CODE: BI474

Big Data Analytics Using SAP HANA Dynamic Tiering Balaji Krishna SAP Labs SESSION CODE: BI474 Big Data Analytics Using SAP HANA Dynamic Tiering Balaji Krishna SAP Labs SESSION CODE: BI474 LEARNING POINTS How Dynamic Tiering reduces the TCO of HANA solution Data aging concepts using in-memory and

More information

Turn "Big Data" into Business Value with Real-Time BI. Timo Elliott, March 2012

Turn Big Data into Business Value with Real-Time BI. Timo Elliott, March 2012 Turn "Big Data" into Business Value with Real-Time BI Timo Elliott, March 2012 1 Legal Disclaimer The information in this presentation is confidential and proprietary to SAP and may not be disclosed without

More information

What's New in SAP HANA SPS09 The Modern Platform for All Applications. Balaji Krishna, SAP HANA Product Management

What's New in SAP HANA SPS09 The Modern Platform for All Applications. Balaji Krishna, SAP HANA Product Management What's New in SAP HANA SPS09 The Modern Platform for All Applications Balaji Krishna, SAP HANA Product Management Legal disclaimer The information in this presentation is confidential and proprietary to

More information

Creating a universe on Hive with Hortonworks HDP 2.0

Creating a universe on Hive with Hortonworks HDP 2.0 Creating a universe on Hive with Hortonworks HDP 2.0 Learn how to create an SAP BusinessObjects Universe on top of Apache Hive 2 using the Hortonworks HDP 2.0 distribution Author(s): Company: Ajay Singh

More information

ORACLE DATA INTEGRATOR ENTERPRISE EDITION

ORACLE DATA INTEGRATOR ENTERPRISE EDITION ORACLE DATA INTEGRATOR ENTERPRISE EDITION ORACLE DATA INTEGRATOR ENTERPRISE EDITION KEY FEATURES Out-of-box integration with databases, ERPs, CRMs, B2B systems, flat files, XML data, LDAP, JDBC, ODBC Knowledge

More information

SAP HANA Data Center Intelligence - Overview Presentation

SAP HANA Data Center Intelligence - Overview Presentation SAP HANA Data Center Intelligence - Overview Presentation August, 2014 Customer Disclaimer This presentation outlines our general product direction and should not be relied on in making a purchase decision.

More information

Programming Hadoop 5-day, instructor-led BD-106. MapReduce Overview. Hadoop Overview

Programming Hadoop 5-day, instructor-led BD-106. MapReduce Overview. Hadoop Overview Programming Hadoop 5-day, instructor-led BD-106 MapReduce Overview The Client Server Processing Pattern Distributed Computing Challenges MapReduce Defined Google's MapReduce The Map Phase of MapReduce

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 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 BusinessObjects Business Intelligence 4.1 One Strategy for Enterprise BI. May 2013

SAP BusinessObjects Business Intelligence 4.1 One Strategy for Enterprise BI. May 2013 SAP BusinessObjects Business Intelligence 4.1 One Strategy for Enterprise BI May 2013 SAP s Strategic Focus on Business Intelligence Core Self-service Mobile Extreme Social Core for innovation Complete

More information

SAP HANA Update Overview of SAP HANA SPS 08

SAP HANA Update Overview of SAP HANA SPS 08 SAP HANA Update Overview of SAP HANA SPS 08 SAP HANA Rob Lightfoot - SAP MENA, 2014 V2.0 Disclaimer This presentation outlines our general product direction and should not be relied on in making a purchase

More information

Session 4002: Data Provisioning from SAP and non-sap Data Sources to SAP HANA for both Real time and Batch type Data Replication

Session 4002: Data Provisioning from SAP and non-sap Data Sources to SAP HANA for both Real time and Batch type Data Replication Session 4002: Data Provisioning from SAP and non-sap Data Sources to SAP HANA for both Real time and Batch type Data Replication Prasad Illapani Director, Product Management & Strategy (SAP HANA) SAP Labs

More information

SAP HANA Core Data Services (CDS) Reference

SAP HANA Core Data Services (CDS) Reference PUBLIC SAP HANA Platform SPS 12 Document Version: 1.0 2016-05-11 Content 1 Getting Started with Core Data Services....4 1.1 Developing Native SAP HANA Applications....5 1.2 Roles and Permissions....7 1.3

More information

Move to S/4 HANA Successfully with SAP Services

Move to S/4 HANA Successfully with SAP Services Move to S/4 HANA Successfully with SAP Services Sridhar Rajakumar EMEA HANA Services CoE Legal Disclaimer The information in this presentation is confidential and proprietary to SAP and may not be disclosed

More information

Extending The Value of SAP with the SAP BusinessObjects Business Intelligence Platform Product Integration Roadmap

Extending The Value of SAP with the SAP BusinessObjects Business Intelligence Platform Product Integration Roadmap Extending The Value of SAP with the SAP BusinessObjects Business Intelligence Platform Product Integration Roadmap Naomi Tomioka Phipps Principal Solution Advisor Business User South East Asia 22 nd April,

More information

Data processing goes big

Data processing goes big Test report: Integration Big Data Edition Data processing goes big Dr. Götz Güttich Integration is a powerful set of tools to access, transform, move and synchronize data. With more than 450 connectors,

More information

High Availability & Disaster Recovery. Sivagopal Modadugula/SAP HANA Product Management Session # 0506 May 09, 2014

High Availability & Disaster Recovery. Sivagopal Modadugula/SAP HANA Product Management Session # 0506 May 09, 2014 High Availability & Disaster Recovery Sivagopal Modadugula/SAP HANA Product Management Session # 0506 May 09, 2014 Legal Disclaimer The information in this document is confidential and proprietary to SAP

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

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

<Insert Picture Here> Extending Hyperion BI with the Oracle BI Server

<Insert Picture Here> Extending Hyperion BI with the Oracle BI Server Extending Hyperion BI with the Oracle BI Server Mark Ostroff Sr. BI Solutions Consultant Agenda Hyperion BI versus Hyperion BI with OBI Server Benefits of using Hyperion BI with the

More information

SAP Predictive Analytics: An Overview and Roadmap. Charles Gadalla, SAP @cgadalla SESSION CODE: 603

SAP Predictive Analytics: An Overview and Roadmap. Charles Gadalla, SAP @cgadalla SESSION CODE: 603 SAP Predictive Analytics: An Overview and Roadmap Charles Gadalla, SAP @cgadalla SESSION CODE: 603 Advanced Analytics SAP Vision Embed Smart Agile Analytics into Decision Processes to Deliver Business

More information

Master Data Governance Find Out How SAP Business Suite powered by SAP HANA Delivers Business Value in Real Time

Master Data Governance Find Out How SAP Business Suite powered by SAP HANA Delivers Business Value in Real Time Master Data Governance Find Out How SAP Business Suite powered by SAP HANA Delivers Business Value in Real Time Disclaimer This document is not subject to your license agreement or any other service or

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

ALM 271 From End-User Experience Monitoring to Management Dashboards and Reporting Stefan Lahr, SAP Active Global Support September, 2011

ALM 271 From End-User Experience Monitoring to Management Dashboards and Reporting Stefan Lahr, SAP Active Global Support September, 2011 ALM 271 From End-User Experience Monitoring to Management Dashboards and Reporting Stefan Lahr, SAP Active Global Support September, 2011 Disclaimer This presentation outlines our general product direction

More information

BW362 SAP BW powered by SAP HANA

BW362 SAP BW powered by SAP HANA SAP BW powered by SAP HANA SAP NetWeaver - Business Intelligence Course Version: 08 Course Duration: 5 Day(s) Publication Date: 2014 Publication Time: Copyright Copyright SAP AG. All rights reserved. No

More information

SAP and Hortonworks Reference Architecture

SAP and Hortonworks Reference Architecture SAP and Hortonworks Reference Architecture Hortonworks. We Do Hadoop. June Page 1 2014 Hortonworks Inc. 2011 2014. All Rights Reserved A Modern Data Architecture With SAP DATA SYSTEMS APPLICATIO NS Statistical

More information

Native Connectivity to Big Data Sources in MSTR 10

Native Connectivity to Big Data Sources in MSTR 10 Native Connectivity to Big Data Sources in MSTR 10 Bring All Relevant Data to Decision Makers Support for More Big Data Sources Optimized Access to Your Entire Big Data Ecosystem as If It Were a Single

More information

SAP HANA implementation on SLT with a Non SAP source. Poornima Ramachandra

SAP HANA implementation on SLT with a Non SAP source. Poornima Ramachandra SAP HANA implementation on SLT with a Non SAP source Poornima Ramachandra AGENDA Introduction Planning Implementation Lessons Learnt Introduction The Company Maidenform System Landscape BUSINESS CHALLENGE

More information

EMC: Managing Data Growth with SAP HANA and the Near-Line Storage Capabilities of SAP IQ

EMC: Managing Data Growth with SAP HANA and the Near-Line Storage Capabilities of SAP IQ 2015 SAP SE or an SAP affiliate company. All rights reserved. EMC: Managing Data Growth with SAP HANA and the Near-Line Storage Capabilities of SAP IQ Based on years of successfully helping businesses

More information