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

Size: px
Start display at page:

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

Transcription

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

2 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 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 or omissions in this document, except if such damages were caused by SAP intentionally or grossly negligent SAP SE or an SAP affiliate company. All rights reserved. Public 2

3 Scalability Setting the stage Scalability is the ability of a computer hardware/software to take full advantage of its changed context in a re-scaled situation, e.g. by adding or reducing resources Vertical Scalability (Scale-up) Adding resources within the same computing unit, e.g. #CPUs, #Ds Horizontal Scalability (Scale-out) Adding multiple computing units and making them work as one logical computing unit SAP HANA is designed for scale-up and scale-out since the beginning 2014 SAP SE or an SAP affiliate company. All rights reserved. Public 3

4 Scale-up

5 Micro-Architecture Trends NUMA (Non Uniform Memory Access) remote CPU 1 CPU 1 local each socket has its own memory controller (IMC) Core1 Core2 Core1 Core2 scales well, but there are NUMA-effects Core3 Core4 remote Core3 Core4 memory access is non-uniform -> local vs. remote access high-speed interconnect CPU 1 CPU 1 Core1 Core2 Core1 Core2 Core3 Core4 Core3 Core SAP SE or an SAP affiliate company. All rights reserved. Public 5

6 HANA Parallel Query Processing multi-user multi-query ( multi-plan ) intra-plan-parallelism ( multi-pops ) intra-pop-parallelism ( multi-threads ) Core 1: Query 1: Join Aggregate Sort Core 2: Query 2: Join Aggregate Sort Core 3: Core 4: Query 3: Join Aggregate Core 5: Core 6: Jobs over time HANA global optimizer generates efficient execution plan for each query (rule-based, cost-based) Execution plans are cached and reused by HANA Each execution plan is split into multiple plan operators (e.g. join, agg, sort) that are executed in parallel Plan operators generate job graphs, containing job nodes Job nodes are dispatched for execution to available treads by the Job Executor 2014 SAP SE or an SAP affiliate company. All rights reserved. Public 6

7 Summary: Vertical Scalability in HANA (scale-up) Parallelism in HANA HANA is heavily optimized for state-of-the-art HW architectures HANA uses massive intra-plan and intra-operator parallelism for query execution HANA tries to use all available resources for maximal parallelization Challenge: NUMA-effects on large multi-socket systems Remark: Virtualization of CPU resources can reinforce NUMA-effects Job Scheduler Central place in HANA to execute plan-operator jobs Re-adjust dynamically the concurrency level avoiding over-parallelization Can consider additional.ini configuration data to limit the concurrency level 2014 SAP SE or an SAP affiliate company. All rights reserved. Public 7

8 Scale-out

9 Horizontal Scalability (scale-out) General Scale-out means expanding to multiple servers rather than a single, bigger server in one database system Multiple servers (nodes) are switched together to one logical, but physically distributed database system When to scale-out? Overcome hardware limitations of one single server (memory, cpu) Scale-out aims to distribute data and workload Attention Scale-out requires deep knowledge about data, application and hardware Scale-out increases data center operation costs Scale-out affects your scaling factor by inter-node communication 2014 SAP SE or an SAP affiliate company. All rights reserved. Public 9

10 HANA s Shared-Nothing Architecture A shared-nothing architecture helps to minimize the inter-node communication in distributed environments Topology Each node runs on its own local data (shared-nothing) Data Volume Master node HDB net Standby node(s) without own persistence Log Volume Shared file system for node fail-over and recovery (HW partner implementation) Nodes communicate via internal HDB net protocol All nodes belonging to the same HANA system must have the same HW setup Data Volume Log Volume Slave node Standby node(s) Auto fail-over 2014 SAP SE or an SAP affiliate company. All rights reserved. Public 10

11 Minimize Inter-Node Communication with Data Distribution Data distribution aims to find the best balance between data model, data usage and actual workload to minimize internode communication Analyze Distribute Data model Types of data, e.g. master data, transactional data and configuration data Referential integrity between tables Data usage Data interdependencies, e.g. table groups Data access paths Workload Mixed workloads, i.e. read/ write, analytical/transactional Update frequency Table co-location Locate interdependent tables on the same node, e.g. for referential integrity Locate tables within the same statement on the same node, e.g. for collocated joins or transactions Horizontal Partitioning Locate interdependent table partitions on the same node Table Replication Duplicate tables to multiple nodes, e.g. for master data referenced by many tables 2014 SAP SE or an SAP affiliate company. All rights reserved. Public 11

12 HANA Data Distribution Table Placement Table Placement is the definition of generic table distribution patterns to control the physical location of (column-)tables and how many partitions of a table are to be created in a distributed HANA system Step 1. Classification In HANA it is possible to classify a table by additional metadata, like schema_name, group name, group_type The table classification can be set with the create / alter table statement The table classifications are stored in the table sys.table_groups_ Step 2. Table Placement Configuration For each table classification you can assign a table placement configuration A table placement configuration defines, on which node type, disk-volume (SPS09) a table and its partitions shall be located A table placement configuration also defines when a table shall be partitioned (works only if the table has a partition specification), e.g. initial_partitions, min_rows_partitioning and repartitioning_threshold The table placement values are inserted via SQL commands into table _sys_rt.table_placement (HANA studio -> SQL-console) When is the Table Placement Configuration evaluated During create/alter table and table redistribute operations The table placement can be overruled with the location_clause, partition_clause or move_clause information in the DDL statement 2014 SAP SE or an SAP affiliate company. All rights reserved. Public 12

13 HANA Data Distribution Table Redistribution Save and restore old table locations Typical operations use a dedicated user with required privileges 1. Generate Plan Review Plan 2. Execute Plan Collects information about landscape and database Evaluates table placement information and.ini-parameter Apply heuristic algorithm to optimize table placement Save execution plan with execution order SYS.REORG_PLAN_ Read plan Parallel execution of plan items Plan is always executed completely No automatic rollback, but restore of old table locations possible Execute Plan 2014 SAP SE or an SAP affiliate company. All rights reserved. Public 13

14 HANA Scale-out Solutions BW on HANA BW workload characteristics Mostly OLAP workload in rather static distribution environment OLAP load benefits from parallel processing on distributed partitions Master Node Handles OLTP load and DDL statements: ABAP system tables, meta data, operational tables and all row tables are stored Symmetric scale-out across the system Master-Node OLTP tables Slave-Node Slave Nodes will handle OLAP load exclusively: Master data + cubes/dsos/psas are distributed evenly across all slaves Cube, DSO and PSA tables are partitioned dependent on the table placement rules Useful information global.ini [table_placement] method= 2 (keeps row-store tables on the master node) note # (BW scale-out configuration recommendations) BW ABAP App-Server OLAP tables Slave-Node OLAP tables Standby-Node 2014 SAP SE or an SAP affiliate company. All rights reserved. Public 14

15 HANA Scale-out Solutions Suite on HANA Symmetric hardware across the system Suite workload characteristics Mixed OLTP/OLAP workloads across all nodes (2PC, Cross-joins) Table access patterns dynamic and differ from customer to customer Dynamic Table distribution Buffered SQL statements in the statement cache are parsed and prioritized based on DB statistics Determine disjoint table groups Table groups are placed on same node while balancing memory and CPU Useful information note # (Suite scale-out configuration recommendations) Note # (Suite on distributed HANA database) Suite ABAP App-Server Master-Node Table groups Slave-Node Table groups Slave-Node Table groups Standby-Node 2014 SAP SE or an SAP affiliate company. All rights reserved. Public 15

16 Takeaways Scale-up first! Scale-up Most common and easiest way for databases to scale No changes in the database or application required HANA parallelism strongly supports latest multi-cpu, multi-core HW architectures HANA NUMA-aware scheduling and memory allocation is under development Scale-out Requires deep knowledge about data and workload to achieve good scaling Scale-out works good in static distribution environments, like OLAP Scale-out in mixed OLAP/OLTP environments can be challenging Optimizing scale-out performance is an iterative task 2014 SAP SE or an SAP affiliate company. All rights reserved. Public 16

17 How to find SAP HANA documentation on this topic? In addition to this learning material, you can find SAP HANA platform documentation on SAP Help Portal knowledge center at The knowledge centers are structured according to the product lifecycle: installation, security, administration, development: SAP HANA Platform SPS What s New Release Notes Installation Administration Development References Documentation sets for SAP HANA options can be found at SAP HANA Options SAP HANA Advanced Data Processing SAP HANA Dynamic Tiering SAP HANA Enterprise Information Management SAP HANA Predictive SAP HANA Real-Time Replication SAP HANA Smart Data Streaming SAP HANA Spatial 2014 SAP SE or an SAP affiliate company. All rights reserved. Public 17

18 Thank you Contact information Ruediger Karl SAP HANA Product Management 2014 SAP SE or an SAP affiliate company. All rights reserved.

19 2014 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication may be reproduced or transmitted in any form or for any purpose without the express permission of SAP SE or an SAP affiliate company. SAP and other SAP products and services mentioned herein as well as their respective logos are trademarks or registered trademarks of SAP SE (or an SAP affiliate company) in Germany and other countries. Please see for additional trademark information and notices. Some software products marketed by SAP SE and its distributors contain proprietary software components of other software vendors. National product specifications may vary. These materials are provided by SAP SE or an SAP affiliate company for informational purposes only, without representation or warranty of any kind, and SAP SE or its affiliated companies shall not be liable for errors or omissions with respect to the materials. The only warranties for SAP SE or SAP affiliate company products and services are those that are set forth in the express warranty statements accompanying such products and services, if any. Nothing herein should be construed as constituting an additional warranty. In particular, SAP SE or its affiliated companies have 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 SE s or its affiliated companies strategy and possible future developments, products, and/or platform directions and functionality are all subject to change and may be changed by SAP SE or its affiliated companies 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. All forwardlooking 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 19

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

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

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

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

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

Price and Revenue Management - Manual Price Changes. SAP Best Practices for Retail

Price and Revenue Management - Manual Price Changes. SAP Best Practices for Retail Price and Revenue Management - Manual Price Changes SAP Best Practices for Retail Purpose, Benefits, and Key Process Steps Purpose For the creation of manual price changes via the Price Planning Workbench,

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

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

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

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

K75 SAP Payment Engine for Credit transfer (SWIFT & SEPA) Process Diagram

K75 SAP Payment Engine for Credit transfer (SWIFT & SEPA) Process Diagram K75 SAP Payment Engine for Credit transfer (SWIFT & SEPA) Process Diagram Purpose, Benefits, and Key Process Steps Purpose The purpose of this scenario is to describe and / or support testing of the entire

More information

Streamline Processes and Gain Business Insights in the Cloud

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

More information

Integrated Finance, Risk, and Profitability Management for Insurance

Integrated Finance, Risk, and Profitability Management for Insurance SAP Brief SAP for Insurance SAP Cost and Revenue Allocation for Financial Products Objectives Integrated Finance, Risk, and Profitability Management for Insurance Gain deep business insights Gain deep

More information

SAP 3D Visual Enterprise Rapid-Deployment Solution

SAP 3D Visual Enterprise Rapid-Deployment Solution SAP 3D Visual Enterprise 8.0 July 2014 English SAP 3D Visual Enterprise Rapid-Deployment Solution SAP AG Dietmar-Hopp-Allee 16 69190 Walldorf Germany Copyright 2014 SAP AG or an SAP affiliate company.

More information

SM250 IT Service Management Configuration

SM250 IT Service Management Configuration SM250 IT Service Management Configuration. COURSE OUTLINE Course Version: 16 Course Duration: 4 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved. No part

More information

Cut Costs and Improve Agility by Simplifying and Automating Common System Administration Tasks

Cut Costs and Improve Agility by Simplifying and Automating Common System Administration Tasks SAP Brief Objectives Cut Costs and Improve Agility by Simplifying and Automating Common System Administration Tasks Simplify management of SAP software landscapes Simplify management of SAP software landscapes

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

Certificate SAP INTEGRATION CERTIFICATION

Certificate SAP INTEGRATION CERTIFICATION Certificate SAP INTEGRATION CERTIFICATION SAP SE hereby confirms that the enterprise storage solution E-Series of the company NetApp Inc. has been certified for operating SAP HANA. This certificate confirms

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

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

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

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

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

More information

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

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

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

Integration capabilities of SAP S/4HANA to SAP Cloud Solutions

Integration capabilities of SAP S/4HANA to SAP Cloud Solutions Document Version: 1.00 2015-08-10 Integration capabilities of SAP S/4HANA to SAP Cloud Solutions What you need to know when it comes to S/4HANA Integration Javit Gellaw (SAP SE) Table of Contents 1 INTRODUCTION

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 Solution Manager: The IT Solution from SAP for IT Service Management and More

SAP Solution Manager: The IT Solution from SAP for IT Service Management and More SAP Solution Manager SAP Solution Manager: The IT Solution from SAP for IT Service Management and More Table of Contents 2 SAP Solution Manager A Fully Scalable IT Platform 3 Supporting 15 Certified ITIL

More information

Multi Channel Sales Order Management: Mail Order. SAP Best Practices for Retail

Multi Channel Sales Order Management: Mail Order. SAP Best Practices for Retail Multi Channel Sales Order Management: Mail Order SAP Best Practices for Retail Purpose, Benefits, and Key Process Steps Purpose Multi Channel Sales Order Management: Mail Order describes a Business-to-Consumer

More information

SuccessFactors Global Human Capital Management (HCM) Academy and Admin Training Schedule (Q3 Q4 2014)

SuccessFactors Global Human Capital Management (HCM) Academy and Admin Training Schedule (Q3 Q4 2014) SuccessFactors Global Human Capital Management (HCM) Academy and Admin Training Schedule (Q3 Q4 2014) The SuccessFactors Global HCM Training Schedule makes it easier to locate and enroll in the training

More information

SAP HANA virtualized Technology Roadmap. Arne Arnold, SAP HANA Product Management September, 2014

SAP HANA virtualized Technology Roadmap. Arne Arnold, SAP HANA Product Management September, 2014 Technology Roadmap Arne Arnold, SAP HANA Product Management September, 2014 High-Level Overview Why care about SAP HANA virtualized Why SAP HANA virtualized offer customers reduced TCO and additional options

More information

Protect Your Connected Business Systems by Identifying and Analyzing Threats

Protect Your Connected Business Systems by Identifying and Analyzing Threats SAP Brief SAP Technology SAP Enterprise Threat Detection Objectives Protect Your Connected Business Systems by Identifying and Analyzing Threats Prevent security breaches Prevent security breaches Are

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

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

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

Optimize Application Performance and Enhance the Customer Experience

Optimize Application Performance and Enhance the Customer Experience SAP Brief Extensions SAP Extended Diagnostics by CA Objectives Optimize Application Performance and Enhance the Customer Experience Understanding the impact of application performance Understanding the

More information

Rapid database migration of SAP Business Suite to SAP HANA (V4.10): Software and Delivery Requirements. SAP HANA November 2014 English

Rapid database migration of SAP Business Suite to SAP HANA (V4.10): Software and Delivery Requirements. SAP HANA November 2014 English November 2014 English Rapid database migration of SAP Business Suite to (V4.10): Software and Delivery Requirements SAP SE Dietmar-Hopp-Allee 16 69190 Walldorf Germany Copyright 2014 SAP SE or an SAP affiliate

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

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

How To Use An Automotive Consulting Solution In Ansap

How To Use An Automotive Consulting Solution In Ansap Automotive Consulting Solution Warranty Management - Claim Copier Agenda 1. Benefit for the Customer 2. Description of the Function 3. The Function in the System 4. Technical Information 2 Customer Benefit

More information

Simplify and Secure Cloud Access to Critical Business Data

Simplify and Secure Cloud Access to Critical Business Data SAP Brief SAP Technology SAP Cloud Identity Objectives Simplify and Secure Cloud Access to Critical Business Data Gain simplicity and security in a single cloud solution Gain simplicity and security in

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

SAP Learning Hub: Your Competitive Advantage for a Career in SAP Solutions

SAP Learning Hub: Your Competitive Advantage for a Career in SAP Solutions Frequently Asked Questions SAP Learning Hub, Student Edition SAP Learning Hub: Your Competitive Advantage for a Career in SAP Solutions SAP edition, offers a range of educational content tailored to the

More information

Automotive Consulting Solution. CHEP - EDI- Container Data

Automotive Consulting Solution. CHEP - EDI- Container Data Automotive Consulting Solution CHEP - EDI- Container Data Agenda 1. Benefit for the Customer 2. Description of the Function 3. The Function in the System 4. Technical Information 2 Customer Benefit Solution

More information

SAP Business Intelligence Adoption V6.41: Software and Delivery Requirements. SAP Business Intelligence Adoption February 2015 English

SAP Business Intelligence Adoption V6.41: Software and Delivery Requirements. SAP Business Intelligence Adoption February 2015 English Business Intelligence Adoption February 2015 English Business Intelligence Adoption V6.41: Software and Delivery Requirements AG Dietmar-Hopp-Allee 16 69190 Walldorf Germany Document Revisions Date 0 11/11/14

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 Sybase Legacy License Audit Process & Methodology

SAP Sybase Legacy License Audit Process & Methodology SAP Sybase Legacy License Audit Process & Methodology Version 2.0 December 2015 TABLE OF CONTENTS MISSION STATEMENT... 4 1 PURPOSE OF THE SAP SYBASE LEGACY LICENSE AUDIT... 4 2 SCOPE... 4 3 METHODOLOGY...

More information

SFSF EC to 3 rd party payroll Integration Software and Delivery Requirements

SFSF EC to 3 rd party payroll Integration Software and Delivery Requirements SAP HCI(PI) August 2015 English SFSF EC to 3 rd party payroll Integration Software and Delivery Requirements SAP SE Dietmar-Hopp-Allee 16 69190 Walldorf Germany Document Revisions Date 0 November 2014

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

Simplify Complex Architectures and See the Potential Impact of New Technologies

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

More information

SAP MII for Manufacturing rapid-deployment solution: Software Requirements

SAP MII for Manufacturing rapid-deployment solution: Software Requirements MII 15.0 October 2015 English SAP MII for Manufacturing rapid-deployment solution: SAP SE Dietmar-Hopp-Allee 16 69190 Walldorf Germany Copyright 2015 SAP SE or an SAP affiliate company. All rights reserved.

More information

PSM-PPM Integration SAP Product Structure Management

PSM-PPM Integration SAP Product Structure Management PSM-PPM Integration SAP Product Structure Management A PLM Consulting Solution PSM PPM Integration The PLM Consulting Solution PSM-PPM Integration integrates the display and management of PPM objects (e.g.:

More information

Help Users Rapidly Adopt New Technology for a Faster Return on Investment

Help Users Rapidly Adopt New Technology for a Faster Return on Investment SAP Brief SAP Education SAP Learning Hub Objectives Help Users Rapidly Adopt New Technology for a Faster Return on Investment Encourage rapid adoption through effective user enablement Encourage rapid

More information

Integration Capabilities of SAP S/4HANA to SAP Cloud Solutions

Integration Capabilities of SAP S/4HANA to SAP Cloud Solutions Document Version: 1.00 2016-03-01 Integration Capabilities of SAP S/4HANA to SAP Cloud Solutions What you need to know when it comes to SAP S/4HANA integration Javit Gellaw (SAP SE) Table of Contents 1

More information

Driving Customer Value leveraging SAP s strategy for the Internet of Things Internet of Things Technology Forum Frankfurt

Driving Customer Value leveraging SAP s strategy for the Internet of Things Internet of Things Technology Forum Frankfurt Driving Customer Value leveraging SAP s strategy for the Internet of Things Internet of Things Technology Forum Frankfurt Sindhu Gangadharan VP & Head of Product Management SAP HCI, PI & FSN Personalized

More information

FA7 - Time Management: Attendances/Absences/Overtime/Hajj Leave. Process Diagram

FA7 - Time Management: Attendances/Absences/Overtime/Hajj Leave. Process Diagram FA7 - Time Management: Attendances/Absences/Overtime/Hajj Leave Process iagram SAP ERP + RENEWAL Process Non-SAP Employee SAP ERP + RENEWAL (Personnel Administration) Organizational Management FA7 - Time

More information

Find New Customers and Markets by Analyzing Mobile Network Operator Data

Find New Customers and Markets by Analyzing Mobile Network Operator Data SAP Brief SAP Mobile Services SAP Consumer Insight 365 Objectives Find New Customers and Markets by Analyzing Mobile Network Operator Data Mobile data a paradigm shift in connected consumer analytics Mobile

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

Reimagining Business with SAP HANA Cloud Platform for the Internet of Things

Reimagining Business with SAP HANA Cloud Platform for the Internet of Things SAP Brief SAP HANA SAP HANA Cloud Platform for the Internet of Things Objectives Reimagining Business with SAP HANA Cloud Platform for the Internet of Things Connect, transform, and reimagine Connect,

More information

SRCH2 Solution Brief SRCH2 Event Analytics for Complex Event Streams. Real-Time Transaction Processing with Event Analytics from SRCH2

SRCH2 Solution Brief SRCH2 Event Analytics for Complex Event Streams. Real-Time Transaction Processing with Event Analytics from SRCH2 SRCH2 Solution Brief SRCH2 Event Analytics for Complex Event Streams Objectives Real-Time Transaction Processing with Event Analytics from SRCH2 Solution Benefits Quick Facts Lower the cost and risk of

More information

Running SAP Solutions in the Cloud How to Handle Sizing and Performance Challenges. William Adams SAP AG

Running SAP Solutions in the Cloud How to Handle Sizing and Performance Challenges. William Adams SAP AG Running SAP Solutions in the Cloud How to Handle Sizing and Performance Challenges William Adams SAP AG Agenda What Types of Cloud Environments we are talking about Private Public Critical Performance

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

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

Software and Delivery Requirements

Software and Delivery Requirements SuccessFactors Recruiting April 2015 English SuccessFactors Recruiting rapiddeployment solution: Software and Delivery Requirements SAP SE Dietmar-Hopp-Allee 16 69190 Walldorf Germany Copyright 2015 SAP

More information

Learning Without Limits

Learning Without Limits SAP Brief SAP Education SAP Learning Hub, Professional Edition Objectives Learning Without Limits Maximize the value of SAP software Maximize the value of SAP software The more you or your organization

More information

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

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

More information

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

Gain Contextual Awareness for a Smarter Digital Enterprise with SAP HANA Vora SAP Brief SAP Technology SAP HANA Vora Objectives Gain Contextual Awareness for a Smarter Digital Enterprise with SAP HANA Vora Bridge the divide between enterprise data and Big Data Bridge the divide

More information

In-Store Merchandise and Inventory Management. SAP Best Practices for Retail

In-Store Merchandise and Inventory Management. SAP Best Practices for Retail In-Store Merchandise and Inventory Management SAP Best Practices for Retail Purpose, Benefits, and Key Process Steps Purpose These components of the SAPECC Retail System are used in the store. Together

More information

Software Requirements

Software Requirements EHP6 for SAP ERP 6.0 October 2014 English SAP Commercial Project Management rapiddeployment solution SAP AG Dietmar-Hopp-Allee 16 69190 Walldorf Germany Copyright 2014 SAP SE or an SAP affiliate company.

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

Downport to SAP GUI for documents Access Control Management

Downport to SAP GUI for documents Access Control Management Access Control Management A PLM Consulting Solution Public The PLM Consulting Solution Downport to SAP GUI for documents streamlines the process of managing project authorizations based on SAP PLM 7 Access

More information

Transform Audit Practices and Move Beyond Assurance

Transform Audit Practices and Move Beyond Assurance SAP Brief SAP s for Governance, Risk, and Compliance SAP Audit Management Objectives Transform Audit Practices and Move Beyond Assurance Advance along the technology curve Advance along the technology

More information

SAP Mobile Services Enterprise Knowledgebase Overview and Access Guide

SAP Mobile Services Enterprise Knowledgebase Overview and Access Guide SAP Mobile Services Enterprise Knowledgebase Overview and Access Guide TABLE OF CONTENTS INTRODUCTION... 3 Enterprise Knowledgebase... 3 SAP Mobile Services Community... 3 Feedback... 3 ACCESSING THE ENTERPRIS

More information

Enabling Better Business Intelligence and Information Architecture With SAP PowerDesigner Software

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

More information

SAP Best Practices for SAP Mobile Secure Cloud Configuration March 2015

SAP Best Practices for SAP Mobile Secure Cloud Configuration March 2015 SAP Best Practices for SAP Mobile Secure Cloud Configuration March 2015 2014 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication may be reproduced or transmitted in any

More information

TMC Bonds: Reducing Financial Trading Platform Outages with SAP ASE Cluster Edition

TMC Bonds: Reducing Financial Trading Platform Outages with SAP ASE Cluster Edition 2015 SAP SE or an SAP affiliate company. All rights reserved. TMC Bonds: Reducing Financial Trading Platform Outages with SAP ASE Cluster Edition To keep exchanges and customer applications running, TMC

More information

Information Technology Meets Operational Technology in the Internet of Things

Information Technology Meets Operational Technology in the Internet of Things SAP Brief SAP Extensions SAP HANA IoT Connector by OSIsoft Objectives Information Technology Meets Operational Technology in the Internet of Things Reimagine your entire business Reimagine your entire

More information

The Internet of Things and I4.0 is an Evolution. New Markets (e.g. maintenance hub operator) Data Driven. Services. (e.g. predictive.

The Internet of Things and I4.0 is an Evolution. New Markets (e.g. maintenance hub operator) Data Driven. Services. (e.g. predictive. Industrie 4.0 and Internet of Things July 9, 2015 The Internet of Things and I4.0 is an Evolution Business Impact 40-50% CAGR for M2M market until 2020* IoT Space Data Driven Services (e.g. predictive

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 HANA SPS 09 - What s New? Smart Data Streaming

SAP HANA SPS 09 - What s New? Smart Data Streaming SAP HANA SPS 09 - What s New? Smart Data Streaming (Delta from SPS08 to SPS09) SAP HANA Product Management November, 2014 2014 SAP AG or an SAP affiliate company. All rights reserved. 1 Agenda Introduction

More information

Citrix Receiver. Configuration and User Guide. For Macintosh Users

Citrix Receiver. Configuration and User Guide. For Macintosh Users Citrix Receiver Configuration and User Guide For Macintosh Users rev: 25.03.2015 https://access.sap.com/ TABLE OF CONTENTS Introduction... 3 Installation... 3 Accessing our portal... 3 Accessing from SAP

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 Fiori Infrastructure rapid-deployment solution: Software and Delivery Requirements

SAP Fiori Infrastructure rapid-deployment solution: Software and Delivery Requirements Fiori October 2014 English Version 1.0 Fiori Infrastructure rapid-deployment solution: Software and Delivery Requirements AG Dietmar-Hopp-Allee 16 69190 Walldorf Germany Document Revisions Date 0 26 th

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

Performance Best Practices Guide for SAP NetWeaver Portal 7.3

Performance Best Practices Guide for SAP NetWeaver Portal 7.3 SAP NetWeaver Best Practices Guide Performance Best Practices Guide for SAP NetWeaver Portal 7.3 Applicable Releases: SAP NetWeaver 7.3 Document Version 1.0 June 2012 Copyright 2012 SAP AG. All rights

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

Elevate Your Customer Engagement Strategy with Cloud Services

Elevate Your Customer Engagement Strategy with Cloud Services SAP Brief SAP Services Cloud Services for Customer Relations Objectives Elevate Your Customer Engagement Strategy with Cloud Services Win over today s empowered customers Win over today s empowered customers

More information

Varian Medical Systems: Maximizing the Speed of Mobile Apps with SAP Enterprise Support

Varian Medical Systems: Maximizing the Speed of Mobile Apps with SAP Enterprise Support 2014 SAP AG or an SAP affiliate company. All rights reserved. Varian Medical Systems: Maximizing the Speed of Mobile Apps with SAP Enterprise Support Varian Medical Systems Inc. Industry Life sciences

More information

Complementary Demo Guide

Complementary Demo Guide Complementary Demo Guide Lockbox Payment Process SAP Business ByDesign SAP Business ByDesign Global August 15, 2014 SAP Cloud Reference Systems Table of Content 1 About this Document... 3 1.1 Purpose...

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

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

Powering Content-Rich Customer Success Centers for Omnichannel Support

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

More information

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

Content Management for SAP Business Suite powered by SAP HANA

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

More information

Take advantage of a personal coach and advisor for specific software component needs. November 2013

Take advantage of a personal coach and advisor for specific software component needs. November 2013 Take advantage of a personal coach and advisor for specific software component needs November 2013 Legal disclaimer The information in this presentation is confidential and proprietary to SAP and may not

More information