Introduction to SAP HANA SQLScript Rich Heilman SESSION CODE: BT162

Size: px
Start display at page:

Download "Introduction to SAP HANA SQLScript Rich Heilman SESSION CODE: BT162"

Transcription

1 Introduction to SAP HANA SQLScript Rich Heilman SESSION CODE: BT162

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 3

3 Agenda Overview Wizard, Editor & Viewer Debugger SQLScript Language Features User Defined Functions(UDFs) Triggers ABAP Connectivity 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 4

4 Overview

5 Overview What? SQLScript is An interface for applications to access SAP HANA Extension of ANSI Standard SQL Language for creating stored procedures in HANA Declarative Logic SELECT queries Calculation Engine(CE) functions Orchestration Logic Data Definition Language(DDL) Data Manipulation Language(DML) Assignment & imperative logic 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 6

6 Overview Why? Main goal is to allow the execution of data intensive calculations inside SAP HANA Two reasons why this is required to achieve the best performance: Eliminate data transfer between database & application tiers Calculations need to be executed in the database layer to get the maximum benefit from SAP HANA features such as fast column operations, query optimization and parallel execution SAP SE or an SAP affiliate company. All rights reserved. Public 7

7 Overview Advantages Compared to plain SQL queries, SQLScript has the following advantages: Returns multiple results, while a SQL query returns only one result set Complex logic can be broken down into smaller chunks of code. Enables modular programming, reuse and a better understandability by functional abstraction. For structuring complex queries, standard SQL only allows the definition of SQL views. However, SQL views have no parameters SQLScript supports local variables for intermediate results with implicitly defined types. With standard SQL, it would be required to define globally visible views even for intermediate steps SQL Script has control logic such as if/else that is not available in SQL 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 8

8 Overview Application Development Technologies Front-end Technologies http/s HTML5 / SAPUI5 Client-side JavaScript Client: Browser or Mobile Presentation logic Control Flow Technologies OData Server-Side JavaScript XMLA SAP HANA XS Control flow logic Data Processing Technologies SQL / SqlScript Calculation Engine Functions Application Function Library (AFL) Data Calculation logic 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 9

9 Overview Traditional Programming Model vs. New Programming Model Traditional: Data to Code New Model: Code to Data Massive data copies creates bottleneck Application Layer Code Transfer Minimum Result Set Application Layer DB Layer DB Layer Code 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 10

10 Overview SQLScript Code Example BEGIN Query 1 product_ids = select "ProductId", "Category", "DescId" from "SAP_HANA_EPM_DEMO"."sap.hana.democontent.epm.data::products" where "Category" = 'Notebooks' or "Category" = 'PC'; -- Query 2 product_texts = select "ProductId", "Category", "DescId", "Text" from :product_ids as prod_ids inner join "SAP_HANA_EPM_DEMO"."sap.hana.democontent.epm.data::texts" as texts on prod_ids."descid" = texts."textid"; -- Query 3 out_notebook_count = select count(*) as cnt from :product_texts where "Category" = 'Notebooks'; Q1 Q2 Input Q5 -- Query 4 out_pc_count = select count(*) as cnt from :product_texts where "Category" = 'PC'; Q3 Q4 -- Query 5 out_total_count = select count(*) as cnt from "SAP_HANA_EPM_DEMO"."sap.hana.democontent.epm.data::products ;... END; Notebooks PCs Total 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 11

11 Overview Parallel Processing SELECT statements are executed in parallel unless: Any local scalar parameters and variables are used in the procedure Any read/write procedures or DML/DDL operations are executed Any imperative logic is used within the procedure, such as IF statements of FOR loops Any SQL statements are used that are not assigned to a intermediate variable or parameter 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 12

12 Wizard, Editor & Viewer

13 Wizard, Editors & Viewer Stored Procedure Wizard in SAP HANA Studio Stored Procedure under Database Development Two file formats.hdbprocedure is the new artifact type which will be the recommended file format moving forward..procedure is still supported, but has been deprecated and eventually will be removed. Target schema definition 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 14

14 Wizard, Editor & Viewer Editor Integration with SAP HANA Development Perspective Source code based editor Client side syntax checking Code hints Syntax highlighting Semantic code completion CTRL+SPACE to trigger Lists relevant objects based on context Searches for any matches within the object name 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 15

15 Wizard, Editor & Viewer Editor Integration in the Web-Based Development Workbench Keyword code completion Syntax highlighting.hdbprocedure file format only 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 16

16 Wizard, Editor & Viewer SQLScript Procedure Viewer Procedures in the catalog can now be viewed in the SQLScript editor in read-only mode. Allows for setting/removing of breakpoints within the runtime object SAP SE or an SAP affiliate company. All rights reserved. Public 17

17 Wizard, Editor & Viewer Procedure Code Breakdown Schema definition developer can define which schema in which the run-time object of the procedure will be created 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 18

18 Wizard, Editor & Viewer Procedure Code Breakdown Package hierarchy and procedure name contains the complete package hierarchy as well as the name of the procedure, separated by double colon(::) 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 19

19 Wizard, Editor & Viewer Procedure Code Breakdown Input/output parameter definition developer can define both input parameters with default values as well as output parameters. Parameters can reference simple types, in-line table types, or global types defined via CDS 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 20

20 Wizard, Editor & Viewer Procedure Code Breakdown Metadata declarations: developer can set language(sqlscript/r), security(invoker/definer), default schema and read/write access 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 21

21 Wizard, Editor & Viewer Procedure Code Breakdown Script body developer writes the body of the script between the BEGIN and END statements 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 22

22 Debugger

23 Debugger Debug Perspective within SAP HANA Studio Resume/Terminate Variable evaluation Breakpoint management Break on break-points Basic step debugging 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 24

24 Debugger Debug Configuration Define procedure to be debugged Debug both repository and catalog procedures 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 25

25 Debugger Debug Configuration Debug with input parameters 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 26

26 Debugger External Debugging Attach to running session By connection ID By application user ID 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 27

27 Debugger Debugging in the Web-based Development Workbench Set breakpoints in the runt-time object in the catalog Call procedure from the SQL console Resume & step over functions Scalar & table variable/parameter evaluations 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 28

28 SQLScript Language Features

29 SQLScript Language Features Declarative Logic Allows the developer to declare the data selection via SELECT or CE(Calculation Engine) functions Developer defines the what Engine defines the how and executes accordingly Massive parallelized 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 30

30 SQLScript Language Features Imperative Logic Allows developer to control the flow of the logic within SQLScript. Scalar variable manipulation DDL/DML logic WHILE loops Branching logic based on some conditions, for example IF/ELSE Executed exactly as scripted, procedurally No parallel processing 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 31

31 SQLScript Language Features Arrays Allows the developer to define and construct arrays within SQLScript Set elements Return elements Remove elements Concatenate two arrays Turn array into a table Turn a column of a table into an array Return cardinality of an array 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 32

32 SQLScript Language Features Dynamic Filtering Allows developers to apply a dynamic WHERE clause to SELECT statements Both database tables and intermediate table variables are supported 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 33

33 SQLScript Language Features Exception Handling Exception handling is a method for handling exception and completion conditions in an SQLScript procedures The DECLARE EXIT HANDLER statement allows you to define exception handlers to process exception conditions in your procedures. You use the DECLARE CONDITION parameter to name exception conditions, and optionally, their associated SQL state values. You can use SIGNAL or RESIGNAL with specified error code in user-defined error code range. A user-defined exception can be handled by the handler declared in the procedure. Also it can be handled by the caller which can be another procedure or client SAP SE or an SAP affiliate company. All rights reserved. Public 34

34 SQLScript Language Features Exception Handling Declare exit handlers for generic SQL exceptions Declare exit handlers for specific SQL error codes 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 35

35 SQLScript Language Features Exception Handling Signaling and catching user-defined conditions 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 36

36 SQLScript Language Features Exception Handling RESIGNAL user defined exceptions to the caller RESIGNAL can also be executed explicitly within the body of the exit handler 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 37

37 SQLScript Language Features Autonomous Transactions Allows developer to create an isolated block of code which runs as an independent transaction BEGIN AUTONOMOUS TRANSACTION END statement block Committed statements inside autonomous transaction block will be persisted regardless of a rollback of the main transaction. COMMIT & ROLLBACK are allowed only within the AUTONOMOUS TRANSACTION block For tables updated within the main procedure body, access to those tables is not allowed in the autonomous transaction block Used commonly for logging tasks 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 38

38 SQLScript Language Features Cursors Allows developers to iterate over a result set and perform row-based processing and calculations SAP SE or an SAP affiliate company. All rights reserved. Public 39

39 User Defined Functions(UDF)

40 User Defined Functions Overview Language used within the body is SQLScript, other languages are supported. Functions are read-only, side effect free. Two types, both have a wizard and associated editor: Table User Defined Function(.hdbtablefunction artifact) Scalar User Defined Function(.hdbscalarfunction artifact) 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 41

41 User Defined Functions Table UDF Can have any number of input parameters Returns exactly one table Table operations are allowed within the body Consumed in the FROM clause of a SELECT statement 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 42

42 User Defined Functions Scalar UDF Can have any number of input parameters Can return multiple values Cursors, SELECT INTO, and procedure calls are allowed within the body but not recommended Input parameters can not be table type Consumed from the field list or the WHERE clause of the SELECT statement. Also callable via direct assignment( x := my_scalar_func() ) 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 43

43 Triggers

44 Triggers Overview Special type of stored procedure that automatically executes when an event occurs in the database server Triggers can be executed BEFORE or AFTER an event on a given table, such as INSERT, UPDATE, or DELETE Management of objects can only be done via SQL Console. Support for storing the artifacts in the repository is coming in a future support package 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 45

45 Triggers Limitations INSTEAD_OF trigger not supported Statement level trigger is only supported for row-store tables Access to subject table is blocked, no operations on the table which the trigger was created on. Maximum trigger number per single table per DML is 1024, which means a table can have maximum 1024 insert triggers, 1024 update triggers and 1024 delete triggers in the same time Trigger execution order is not guaranteed Statements not supported in the body of a trigger include: Result set assignments(select resultset into table) Exit/Continue/Return statements Cursor operations Procedure calls(before SPS09) Dynamic SQL 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 46

46 Triggers Examples 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 47

47 Triggers Examples 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 48

48 ABAP Connectivity

49 How can my ABAP code benefit from SAP HANA? The new paradigm Calculation AS ABAP Data to Code Code to Data SAP HANA Database Calculation Code pushdown means delegating data intense calculations to the database layer 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 50

50 Secondary database connections Secondary connections can be used to access local or remote database systems are maintained via SM30 for table DBCON; entries can be transported require specification of connection data including user (=DB schema) and password are supported in the Open SQL syntax by using the CONNECTION supplement form an own transaction context Service note describes the prerequisites and procedure for setting up a secondary connection to HANA SAP SE or an SAP affiliate company. All rights reserved. Public 51

51 ABAP Database Connectivity(ADBC) CL_SQL_CONNECTION GET_CONNECTION CREATE_STATEMENT and PREPARE_STATEMENT ROLLBACK and COMMIT Have a look at the Classbuilder (SE24) or Transaction SE80! CL_SQL_PREPARED_STATEMENT / CL_SQL_STATEMENT PREPARE / CLOSE Prepare / release an SQL Statement SET_PARAM - Set an Input/Output Parameter (variants for CLOB, BLOB, STRUCT, TABLE (available soon)) PREPARED_QUERY, PREPARED_UPDATE - Execute a Prepared Query / DML Operation EXECUTE_DDL, EXECUTE_QUERY, EXECUTE_UPDATE - Execute DDL, Query, DML (Insert, Update, Delete) CL_SQL_RESULT_SET SET_PARAM - Set an Input/Output Parameter (variants for CLOB, BLOB, STRUCT, TABLE) NEXT, NEXT_PACKAGE Read next record in the resulting set, or next set of records for internal tables 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 52

52 How can my ABAP code benefit from SAP HANA? New features in ABAP 7.4 Usage of HANA-specific features DB-near programming SAP HANA content integration external views SP2 database procedure proxies SP2 HANA transport container SP2 Advanced ABAP database programming ABAP-managed procedures SP5 Fulltext index in DDIC SP2 advanced Open SQL SP5 advanced ABAP view building SP5* Transparent optimizations Fast Data Access (new data exchange protocol) >= SP5** optimized SELECT... INTO ITAB and SELECT SINGLE >= SP5** optimized FOR ALL ENTRIES-clause >= SP5** Benefits of In-Memory Architecture * might also support HANA-specific features in the future (> SP5) / ** >= SP5 means SP5 or later 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 53

53 Integrated development options across ABAP and HANA Consuming HANA views in ABAP SAP HANA offers advanced view modeling, e.g. Attribute views (join views) Analytic views (star schemas) Calculation views (modeled or coded via SQL script) With ABAP < 7.40 these views can be accessed lowlevel via ADBC. With ABAP 7.40 they are natively supported in ABAP Access possible via standard Open SQL Support for automatic client handling Mapping to DDIC types possible Consumption from ABAP Calculation view in SAP HANA 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 54

54 Integrated development options across ABAP and HANA Calling HANA database procedures from ABAP SAP HANA offers writing stored procedures in SQL Script a extension to SQL - for expressing data intensive application logic. With ABAP < 7.40 stored procedures can be called using ADBC, which requires Manual handling of transfer tables for input and output parameters via temporary tables or result views Manual mapping of database types to DDIC types Invocation from ABAP With ABAP 7.40 they are natively supported in ABAP Exporting/Importing parameters like for function modules (including mapping parameter to DDIC types) Stored procedure in SAP HANA 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 55

55 ABAP-managed Database Procedures Overview Basic idea: manage database procedures and their lifecycles from within the ABAP development infrastructure ABAP method is used as container for database procedures additionby DATABASE PROCEDURE indicates that a method is executed in the database additionfor db_platform indicates the database platform (currently supported HDB = SAP HANA database) Implementation of method body is done in SQLScript editing environment is the ABAP class editor embedded syntax check is available for SQLScript code (different from native SQL!) other languages might be supported in the future (for example R) ABAP server creates database procedure in database catalogue during generation runtime artifact is generated into schemasap<sid> (and not_sys_bic) 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 56

56 ABAP-managed Database Procedures Example CLASS zcd201_cl_snippet_amdp DEFINITION... INTERFACES if_amdp_marker_hdb. METHODS: determine_sales_volume IMPORTING VALUE(iv_client) TYPE mandt EXPORTING VALUE(et_sales_volume) TYPE tt_sales_volume. ENDCLASS. CLASS zcd201_cl_snippet_amdp IMPLEMENTATION. METHOD determine_sales_volume BY DATABASE PROCEDURE FOR HDB LANGUAGE SQLSCRIPT USING snwd_so_i snwd_so_sl snwd_pd. -- here you use SQLScript ENDMETHOD. ENDCLASS. Marker interface method additions forward declaration of accessed database objects 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 57

57 Thank you Contact information: Rich Heilman 2015 SAP SE or an SAP affiliate company. All rights reserved.

58 2015 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 59

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

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

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

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

SAP HANA SQLScript Basics, Debugging, and ABAP Connectivity

SAP HANA SQLScript Basics, Debugging, and ABAP Connectivity SAP HANA SQLScript Basics, Debugging, and ABAP Connectivity Rich Heilman, SAP HANA Product Management, SAP Labs, LLC. 2013 SAP AG. All rights reserved. Public 2 Disclaimer This presentation outlines our

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

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

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

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

More information

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

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

More information

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

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

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

SAP SE - Legal Requirements and Requirements

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

More information

SAP 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

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

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

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

SAP NetWeaver Application Server Add-On for Code Vulnerability Analysis

SAP NetWeaver Application Server Add-On for Code Vulnerability Analysis SAP NetWeaver Application Server Add-On for Code Vulnerability Analysis Disclaimer This presentation outlines our general product direction and should not be relied on in making a purchase decision. This

More information

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

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

More information

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

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

SAP HANA. Markus Fath, SAP HANA Product Management June 2013

SAP HANA. Markus Fath, SAP HANA Product Management June 2013 SAP HANA Markus Fath, SAP HANA Product Management June 2013 Agenda What is SAP HANA? How do I use SAP HANA? How can I develop applications on SAP HANA? That s it? 2013 SAP AG. All rights reserved. Public

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

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

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

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

More information

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

SAP HANA SPS 09 - What s New? SAP HANA Modeling SAP HANA SPS 09 - What s New? SAP HANA Modeling (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 Disclaimer This

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

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

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

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

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

Week 2 Unit 1: Database Schemas and Database Tables

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

More information

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

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

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

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 Document Center. May 2016. Public

SAP Document Center. May 2016. Public SAP Document Center May 2016 Public The Big Picture for a Digital Platform Applications Applications IoT IoT Platform (Micro-) Services Extensions Icon Digital Boardroom Analytical Applications S/4HANA

More information

Understanding Security and Rights in SAP BusinessObjects Business Intelligence 4.1

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

More information

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

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

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

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

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

Unlock the Value of Your Microsoft and SAP Software Investments

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

More information

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

Setting up Visual Enterprise Integration (WM6)

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

More information

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

How To... Model a Gateway Service Based on Business Entities

How To... Model a Gateway Service Based on Business Entities How-To Guide SAP NetWeaver 7.40 SP07 Document Version: 2.0-2015-01-21 How To... Model a Gateway Service Based on Business Entities Assignment with the Mapping Editor in the SAP Gateway Service Builder

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

Run Better in Weeks to Address Current and Future Business Needs

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

More information

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

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

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 SPS 09 - What s New? SAP DB Control Center DBA Tool to manage Data Center

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

More information

SAP Fiori - Architecture

SAP Fiori - Architecture SAP Fiori - Architecture August 2014 Customer Disclaimer This presentation outlines our general product direction and should not be relied on in making a purchase decision. This presentation is not subject

More information

SAP Mobile - Webinar Series SAP Mobile Platform 3.0 Security Concepts and Features

SAP Mobile - Webinar Series SAP Mobile Platform 3.0 Security Concepts and Features SAP Mobile - Webinar Series SAP Mobile Platform 3.0 Security Concepts and Features Dirk Olderdissen Solution Expert, Regional Presales EMEA SAP Brought to you by the Customer Experience Group 2014 SAP

More information

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

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

More information

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

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

CUSTOMER Presentation of SAP Predictive Analytics

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

More information

RCS UI Field Security (UI Masking) Tobias Keller, Product Owner Custom Development, SAP SE December 2014

RCS UI Field Security (UI Masking) Tobias Keller, Product Owner Custom Development, SAP SE December 2014 RCS UI Field Security (UI Masking) Tobias Keller, Product Owner Custom Development, SAP SE December 2014 Data Security The insider threat 2014 SAP SE. All rights reserved. Customer 2 Data Security SAP

More information

Data Integration using Integration Gateway. SAP Mobile Platform 3.0 SP02

Data Integration using Integration Gateway. SAP Mobile Platform 3.0 SP02 Data Integration using Integration Gateway SAP Mobile Platform 3.0 SP02 DOCUMENT ID: DC02000-01-0302-01 LAST REVISED: February 2014 Copyright 2014 by SAP AG or an SAP affiliate company. All rights reserved.

More information

Managing Procurement with SAP Business One

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

More information

Duration Vendor Audience 5 Days Oracle Developers, Technical Consultants, Database Administrators and System Analysts

Duration Vendor Audience 5 Days Oracle Developers, Technical Consultants, Database Administrators and System Analysts D80186GC10 Oracle Database: Program with Summary Duration Vendor Audience 5 Days Oracle Developers, Technical Consultants, Database Administrators and System Analysts Level Professional Technology Oracle

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

SEC100 Secure Authentication and Data Transfer with SAP Single Sign-On. Public

SEC100 Secure Authentication and Data Transfer with SAP Single Sign-On. Public SEC100 Secure Authentication and Data Transfer with SAP Single Sign-On Public Speakers Las Vegas, Oct 19-23 Christian Cohrs, Area Product Owner Barcelona, Nov 10-12 Regine Schimmer, Product Management

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

Update on the SAP GUI Family. Q3/2014 Public

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

More information

SAP Cloud for Customer integration with SAP ERP: Software and Delivery Requirements

SAP Cloud for Customer integration with SAP ERP: Software and Delivery Requirements SAP Cloud for 1502 March 2015 English SAP Cloud for integration with SAP ERP: Software and Delivery Requirements SAP SE Dietmar-Hopp-Allee 16 69190 Walldorf Germany Document Revisions 0 1 2 Date Copyright

More information

Application Test Management and Quality Assurance

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

More information

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

Protect Your Customers and Brands with Multichannel Two-Factor Authentication

Protect Your Customers and Brands with Multichannel Two-Factor Authentication SAP Brief Mobile Services from SAP SAP Authentication 365 Objectives Protect Your Customers and Brands with Multichannel Two-Factor Authentication Protecting your most valuable asset your customers Protecting

More information

Oracle Warehouse Builder 10g

Oracle Warehouse Builder 10g Oracle Warehouse Builder 10g Architectural White paper February 2004 Table of contents INTRODUCTION... 3 OVERVIEW... 4 THE DESIGN COMPONENT... 4 THE RUNTIME COMPONENT... 5 THE DESIGN ARCHITECTURE... 6

More information

Mobile app for ios Version 1.10.x, August 2014

Mobile app for ios Version 1.10.x, August 2014 Mobile app for ios Version 1.10.x, August 2014 Introduction This app allows you to access SAP Business One, SAP s enterprise resource planning application for small businesses, anywhere and anytime. Managers,

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

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

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

SAP HANA Big Data Intelligence rapiddeployment

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

More information

How to Implement Mash Up to Show ECC Screen in SAP Cloud for Customer

How to Implement Mash Up to Show ECC Screen in SAP Cloud for Customer How-To Guide Document Version: 1411 2014.12.15 How to Implement Mash Up to Show ECC Screen in SAP Cloud for Customer How to implement Mash up to show ECC screen in SAP Cloud for Customer 2 Copyright 2014

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

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 BW Columnstore Optimized Flat Cube on Microsoft SQL Server

SAP BW Columnstore Optimized Flat Cube on Microsoft SQL Server SAP BW Columnstore Optimized Flat Cube on Microsoft SQL Server Applies to: SAP Business Warehouse 7.4 and higher running on Microsoft SQL Server 2014 and higher Summary The Columnstore Optimized Flat Cube

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

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 HANA Client Installation and Update Guide

SAP HANA Client Installation and Update Guide PUBLIC SAP HANA Platform SPS 12 Document Version: 1.0 2016-05-11 Content 1 Introduction....3 1.1 Supported Platforms.... 3 1.2 Software Download.... 4 2 SAP HANA Client on UNIX or Linux....7 2.1 Planning

More information

Developing Applications for Integration between PI and SAP ERP in Different Network Domains or Landscapes

Developing Applications for Integration between PI and SAP ERP in Different Network Domains or Landscapes Developing Applications for Integration between PI and SAP ERP in Different Network Domains or Landscapes Applies to: SAP NetWeaver Process Integration 7.1+ SAP NetWeaver 7.02 (ABAP) Summary This document

More information