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

Size: px
Start display at page:

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

Transcription

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

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 AG. All rights reserved. 2

3 Agenda SAP HANA Studio Features and modeling overview Calculation View Features relevant for advanced data modeling SQLScript Focusing on the use case with calculation view Modeling recommendations How to build content Best practices Especially, related to performance Working with multiple fact tables 2011 SAP AG. All rights reserved. 3

4 SAP HANA Studio Features and Modeling

5 SAP HANA Studio Features Modeling Information Models To create multiple views of transactional data that can be used for analytical purposes Choice to publish and consume at 3 levels of modeling Attribute View Analytic View Calculation View Database Views / Column Stores Import/Export Models Data Source schemas (metadata) mass and selective load Landscape Data Provisioning (both initial load and replication) Trouble Shooting / Trace / Log Data Preview Physical Tables Information Models 2011 SAP AG. All rights reserved. 5

6 SAP HANA Modeling Terminology Data Attributes descriptive data (known as Characteristics SAP BW terminology) Calculated Attributes Measures data that can be quantified and calculated (known as key figures in SAP BW) Calculated Measures & Restricted Measures Views Attribute Views i.e. dimensions / JOIN Views Analytic Views i.e. cubes / OLAP views Calculation Views similar to virtual/multi provider with services concept in BW Graphical Calculation View Script Calculation View (SQL Script, CE Functions) Procedures Functions re-usable functionality from within Script Calculation Views Analytic Privilege security object Who has access to which report including restriction on row level data 2011 SAP AG. All rights reserved. 6

7 Modeling for SAP HANA 1.0 1/3 Using SAP HANA Studio Step 1: Attribute View Separate Master Data Modeling from Fact Data Build the needed master data objects as Attribute Views Step 2: Analytical View Create Cube-like view by joining attributes view to Fact data Build a Data Foundation based on transactional table Join attribute views to data foundation 2011 SAP AG. All rights reserved. 7

8 Modeling for SAP HANA 1.0 2/3 Using SAP HANA Studio Step 3: Calculation View When working with multiple fact tables, or when Joins are not sufficient create a Calculation View that is something that looks like a View and has SQL Script inside Composite view of other views (tables, JOIN, OLAP views) Consists of a Graphical & Script based editor SQLScript is a HANA-specific functional script language 2011 SAP AG. All rights reserved. 8

9 Modeling for SAP HANA 1.0 3/3 Using SAP HANA Studio Step 4: Analytic Privileges Analysis authorizations for row-level security 2011 SAP AG. All rights reserved. 9

10 Calculation View Features relevant for advanced data modeling

11 Characteristics of Calculation View Calculation Views are A column view that is visible to reporting tools When the view is accessed, a function is implicitly executed 2 types of Calculation Views (Graphical & Script) Calculation Views are side affect free / READ-ONLY functions Column View A function is implicitly executed Calculation View 2011 SAP AG. All rights reserved. 11

12 2 Types of Calculation Views Composite views, re-uses Analytical and Attribute views SQL / SQL Script / Custom Functions Graphical Calculation View SQL Script Calculation View Union Projection Analytical View Projection Analytical View 2011 SAP AG. All rights reserved. 12 Union

13 Calculation View Graphical No SQL / SQL Script coding needed Can consume other Analytical Views, Attribute Views, Calculation Views & tables Union, Join, Projection nodes provided, enhance existing view functionality Attribute View Analytical View Calculation View UNION Combining multiple Analytical Views UNION 2.. N (Input Sources) Use Union with Constant values when working with Multiple (2..N) Analytical Views / fact tables 2011 SAP AG. All rights reserved. 13

14 Calculation View Graphical - Projection Projection nodes improves performance by narrowing the data set Further optimization can be done by applying filters Define Calculated Columns (Example: midstr(string("erdat"),strlen(string("erdat"))-9,4) Calculated Columns are calculated before aggregation 2011 SAP AG. All rights reserved. 14

15 Calculation View Graphical - Union Use UNION to join multiple Analytical Views 2 modeling options with Unions Standard Union Union with Constant Values 2011 SAP AG. All rights reserved. 15

16 Calculation View Graphical - Output Add Attributes and Measures to the Output Define the structure of the column store Define Calculated Measures across subject areas Column Store Activate Calculated Measures Across Subject Areas 2011 SAP AG. All rights reserved. 16

17 Calculation View SQLScript (Script-based) SQL or SQLScript required to create Script based Calculation Views Write SQL Select statements against existing raw tables or Column Stores (preferred) Define output structure, activation creates column store based on Script Output Analytical View Projection Union 2011 SAP AG. All rights reserved. 17

18 SQLScript

19 SQLScript (is a collection of SQL extensions to push data-intensive logic into the DB layer) Functional extension - Allows the definition of (side-effect free) functions which can be used to express and encapsulate complex data flows Data type extension - Allows the definition of types without corresponding tables Traditional Model Data to Code Application New Model Code to Data Application Massive data copies Bottle neck!! Layer Code Only transfer results Layer Will be implemented as Calculation Views DB Layer DB Layer Code 2011 SAP AG. All rights reserved. 19

20 SQLScript Alternative to using SQL built-in functions should be used in Calculation Views exclusively where possible Calculation Engine functions should not be mixed with standard SQL statements Client queries can be well optimized and parallelized by the engine Usually much better performance results than calculation view via SQL Preferred Parallel query execution Only selected fields will be fetched 2011 SAP AG. All rights reserved. 20

21 SQLScript Build In Functions Preferred SELECT on Column table SELECT on Attribute view SELECT on Analytical view SELECT on Calculation View WHERE HAVING SQL SELECT A, B, C from "COLUMN_TABLE" SELECT A, B, C from "ATTRIBUTE_VIEW" SELECT A, B, C, SUM(D) from "ANALYTIC_VIEW" GROUP BY A, B, C SELECT A, B, C, SUM(D) from CALC_VIEW" GROUP BY A, B, C SELECT A, B, C, SUM(D) from "ANALYTIC_VIEW" WHERE B = 'value' AND C = 'value' CE-Build In Function CE_COLUMN_TABLE("COLUMN_TABLE", [A, B, C]) CE_JOIN_VIEW("ATTRIBUTE_VIEW", [A, B, C]) CE_OLAP_VIEW("ANALYTIC_VIEW", [A, B, C]); CE_CALC_VIEW("ANALYTIC_VIEW", [A, B, C]); var_tab = CE_COLUMN_TABLE("COLUMN_TABLE"); CE_PROJECTION(:var_tab, [A, B, C], ' "B" = ''value'' AND "C" = ''value'' '); GROUP BY SELECT A, B, C, SUM(D) FROM"COLUMN_TABLE" GROUP BY A, B, C var_tab= CE_COLUMN_TABLE("COLUMN_TABLE"); CE_AGGREGATION( (:var_tab, SUM(D), [A, B, C]); INNER JOIN LEFT OUTER JOIN SELECT A, B, Y, SUM(D) from "COLTAB1" INNER JOIN "COLTAB2" WHERE "COLTAB1"."KEY1" = "COLTAB2"."KEY1" AND "COLTAB1"."KEY2" = "COLTAB2"."KEY2" SELECT A, B, Y, SUM(D) from "COLTAB1" LEFT OUTER JOIN "COLTAB2" WHERE "COLTAB1"."KEY1" = "COLTAB2"."KEY1" AND "COLTAB1"."KEY2" = "COLTAB2"."KEY2" CE_JOIN("COLTAB1","COLTAB2", [KEY1, KEY2], [A, B, Y, D]) CE_LEFT_OUTER_JOIN("COLTAB1","COLTAB2", [KEY1, KEY2], [A, B, Y, D]) SQL Expressions SELECT A, B, C, SUBSTRING(D,2,5) FROM "COLUMN_TABLE" var_tab = CE_COLUMN_TABLE("COLUMN_TABLE"); CE_PROJECTION( :var_tab, ["A", "B", "C", CE_CALC('midstr("D",2,5)', string) ]); UNION ALL var_tab1 = SELECT A, B, C, D FROM "COLUMN_TABLE1"; var_tab1 = CE_COLUMN_TABLE("COLUMN_TABLE1",[A,B,C,D]); var_tab2 = SELECT A, B, C, D FROM "COLUMN_TABLE2"; var_tab2 = CE_COLUMN_TABLE("COLUMN_TABLE2",[A,B,C,D]); SELECT * FROM :var_tab1 UNION ALL SELECT * FROM :var_tab2; CE_UNION_ALL(:var_tab1,:var_tab2); 2011 SAP AG. All rights reserved. 21

22 SQLScript CE-Build in Function Example 2011 SAP AG. All rights reserved. 22

23 SQLScript CE-Build in Function (CE_OLAP_VIEW) Parameter 1 Analytical View Name Parameter 2 (optional) Field names(1 N) Variable name / temporary table VAR1 = SELECT FROM MATNR, KUNNR, REGIO, LAND1... SUM(CM2) CEA1_ SAP AG. All rights reserved. 23

24 SQLScript CE-Build in Function (CE_PROJECTION) Parameter 1 Input data set variable Projected field Function Expressions Parameter 2 Projection field names VAR2 = SELECT FROM MATNR, KUNNR, REGIO, LAND1 AS LANDX, 0 AS KPLIKZ, NetRevenue as NETREV, CM2 :VAR1; 2011 SAP AG. All rights reserved. 24

25 SQLScript CE-Build in Function (CE_CALC) VAR3= SELECT MATNR, KUNNR, REGIO, LAND1,... CM2 FROM CEP1_ SAP AG. All rights reserved. 25

26 SQLScript CE-Build in Function (CE_PROJECTION & FILTER) VAR4 = SELECT FROM WHERE MATNR, KUNNR, REGIO, LAND1 AS LANDX, 0 AS KPLIKZ, NetRevenue as NETREV, CM2 :VAR3 KUNNR!= 001 AND PERIO = 5 Parameter 3 Filter 2011 SAP AG. All rights reserved. 26

27 SQLScript CE-Build in Function (CE_UNION_ALL) var_out = table type / output of function 2 Parameters (Data set var1, Data set var2) VAR_OUT = SELECT * FROM :VAR3 UNION SELECT * FROM :VAR SAP AG. All rights reserved. 27

28 SQLScript Table Type var_out Column Store Allows for the definition of new Table Types Similar to a database table but do not have an instance Used to define function parameters Created when the Calculation View is activated 2011 SAP AG. All rights reserved. 28

29 SQLScript Procedures Read-only procedure can be created Following restrictions will apply for the procedures created in the information modeler IN (Input) parameters can be of scalar or table type OUT (Output) parameters must be of type table Tables types required for the signature are generated automatically Activated procedure can be called by other procedures Name of procedure: _SYS_BIC. <package-name>/<proc> 2011 SAP AG. All rights reserved. 29

30 Recommendations? How to build content

31 Recommendations How to build content 2/2 Preferred Usage Pros Cons 1: Column Table 2: Analytical View 3: Calculation View (SQL) 4: Calculation View (CE Functions) 5: Calculation View (Graphical) Used for simple applications and showcases. No additional modeling required. For most clients easy to consume. No support for analytical privileges, multi language and client handling. Complex calculation and logic / currency conversion / security shifted to client side. In general low performance. Used for analytical purposes where reading operations on mass data is required. Very high performance on SELECT. Supported by modeling. Well optimized. Limitations in regards to functions. Support measures from a single fact table. Used for simple calculations where only a few fields are used. Building calculation views via SQL syntax is easy. Client queries can be less optimized and could significantly be slower compared to other models. Used for analytical purposes that cannot be expressed using Attribute or Analytical views. Perform statements against existing Attribute & Analytical Views. Client queries can be well optimized and parallelized. Usually better performance results than SQL. Syntax is different in compared to wellknown SQL Language. Limitations in regards to functions. Preferred Used for analytical purposes that cannot be expressed using Attribute or Analytical views. Model execution flow between existing Analytical and Calculation Views. No SQL or SQL Script knowledge required. Union with Constant Values fully supported. Client queries can be well optimized and parallelized. Limitations in regards to functions. Preferred 2011 SAP AG. All rights reserved. 31

32 Recommendations - How to build content Calculation View Analytical View Attribute View Tables 2011 SAP AG. All rights reserved. 32

33 Best Practices Especially, recommendations related to performance

34 How to work with multiple fact tables 1/5 Design considerations How to combine multiple Analytic Views? Business situation may require The combination of two or more fact tables Measures originate from all fact tables Analytic View 1 Analytic View 2 DO NOT DO: Create an analytic view for each fact table, and join the two together. This approach may have severe performance implications. Analytic View 1 Analytic View 2 Recommended solution: Model one analytic view for each fact table and union them. Analytic View 1 U Analytic View 2 In case you have the same measures the solution is straight forward. In case of different measures use union with constant 2011 SAP AG. All rights reserved. 34

35 How to work with multiple fact tables 2/5 Union with Constant Values Situation You have measures coming from two fact tables Solution Create one analytic view for each of the fact tables Create a calcualtion view that implements a union over both Analytic views Set the counter parts for measures to contant Zeros for all tables that do not provide that measure Set the counter parts for dimensions to constant NULLs for all tables that do not provide the dimension When to consider You can use multiple (2..N) analytic views in one union operation also The patterns follows the concept of a MultiProvider in BW 2011 SAP AG. All rights reserved. 35

36 Standard Union 3/5 Analytical View A CUSTOMER AMOUNT FLAG A A A Analytical View P CUSTOMER AMOUNT FLAG P P P CUSTOMER AMOUNT FLAG A A P A P P Standard Union Result after aggregation CUSTOMER AMOUNT FLAG A P A P 2011 SAP AG. All rights reserved. 36

37 Union with Constant Values (Preferred) 4/5 Analytical View A CUSTOMER AMOUNT_A Analytical View P CUSTOMER AMOUNT_P CUSTOMER AMOUNT_A AMOUNT_P Union with Constant values Result after aggregation CUSTOMER AMOUNT_A AMOUNT_P SAP AG. All rights reserved. 37

38 CO-PA Union vs Union Constant Values 5/5 Standard Union Union with Constant values Actual Fact / Analytical View 1 Planned Fact / Analytical View SAP AG. All rights reserved. 38

39 Demo

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 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 HANA Technical Academy. 18.6.2014, WU Wien

SAP HANA Technical Academy. 18.6.2014, WU Wien SAP HANA Technical Academy 18.6.2014, WU Wien Agenda SAP HANA Introduction and Overview SAP HANA Studio Hands-on labs Modeling SAP HANA Views Attribute Views Analytic Views Calculation Views Hands-on labs

More information

The safer, easier way to help you pass any IT exams. SAP Certified Application Associate - SAP HANA 1.0. Title : Version : Demo 1 / 5

The safer, easier way to help you pass any IT exams. SAP Certified Application Associate - SAP HANA 1.0. Title : Version : Demo 1 / 5 Exam : C_HANAIMP_1 Title : SAP Certified Application Associate - SAP HANA 1.0 Version : Demo 1 / 5 1.Which of the following nodes can you use when you create a calculation view with the SAP HANA studio

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

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

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

Modeling Guide for SAP Web IDE for SAP HANA

Modeling Guide for SAP Web IDE for SAP HANA PUBLIC SAP HANA Platform SPS 11 Document Version: 1.1 2016-03-15 Content 1 Introduction to Modeling in the SAP HANA Web IDE.... 4 1.1 Modeling in Web-based Environments....4 2.... 6 2.1 Attributes and

More information

MOC 20461C: Querying Microsoft SQL Server. Course Overview

MOC 20461C: Querying Microsoft SQL Server. Course Overview MOC 20461C: Querying Microsoft SQL Server Course Overview This course provides students with the knowledge and skills to query Microsoft SQL Server. Students will learn about T-SQL querying, SQL Server

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

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

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

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

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

8902 How to Generate Universes from SAP Sybase PowerDesigner. Revision: 27.08.2013

8902 How to Generate Universes from SAP Sybase PowerDesigner. Revision: 27.08.2013 8902 How to Generate Universes from SAP Sybase PowerDesigner Revision: 27.08.2013 Objectives After reviewing this content, you will be able to: Explain Dimensional Modeling for Cubes in SAP Sybase PowerDesigner

More information

SAP BW on HANA : Complete reference guide

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

More information

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

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

More information

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

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

Introduction to SAP HANA SQLScript Rich Heilman SESSION CODE: BT162

Introduction to SAP HANA SQLScript Rich Heilman SESSION CODE: BT162 Introduction to SAP HANA SQLScript Rich Heilman SESSION CODE: BT162 Disclaimer This presentation outlines our general product direction and should not be relied on in making a purchase decision. This presentation

More information

An Overview of SAP BW Powered by HANA. Al Weedman

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

More information

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

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

More information

Introducing Microsoft SQL Server 2012 Getting Started with SQL Server Management Studio

Introducing Microsoft SQL Server 2012 Getting Started with SQL Server Management Studio Querying Microsoft SQL Server 2012 Microsoft Course 10774 This 5-day instructor led course provides students with the technical skills required to write basic Transact-SQL queries for Microsoft SQL Server

More information

SAP HANA In-Memory Database Sizing Guideline

SAP HANA In-Memory Database Sizing Guideline SAP HANA In-Memory Database Sizing Guideline Version 1.4 August 2013 2 DISCLAIMER Sizing recommendations apply for certified hardware only. Please contact hardware vendor for suitable hardware configuration.

More information

Querying Microsoft SQL Server

Querying Microsoft SQL Server Course 20461C: Querying Microsoft SQL Server Module 1: Introduction to Microsoft SQL Server 2014 This module introduces the SQL Server platform and major tools. It discusses editions, versions, tools used

More information

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

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

More information

SAP BO 4.1 COURSE CONTENT

SAP BO 4.1 COURSE CONTENT Data warehousing/dimensional modeling/ SAP BW 7.0 Concepts 1. OLTP vs. OLAP 2. Types of OLAP 3. Multi Dimensional Modeling Of SAP BW 7.0 4. SAP BW 7.0 Cubes, DSO s,multi Providers, Infosets 5. Business

More information

Querying Microsoft SQL Server 2012

Querying Microsoft SQL Server 2012 Course 10774A: Querying Microsoft SQL Server 2012 Length: 5 Days Language(s): English Audience(s): IT Professionals Level: 200 Technology: Microsoft SQL Server 2012 Type: Course Delivery Method: Instructor-led

More information

Course ID#: 1401-801-14-W 35 Hrs. Course Content

Course ID#: 1401-801-14-W 35 Hrs. Course Content Course Content Course Description: This 5-day instructor led course provides students with the technical skills required to write basic Transact- SQL queries for Microsoft SQL Server 2014. This course

More information

Course 10774A: Querying Microsoft SQL Server 2012

Course 10774A: Querying Microsoft SQL Server 2012 Course 10774A: Querying Microsoft SQL Server 2012 About this Course This 5-day instructor led course provides students with the technical skills required to write basic Transact-SQL queries for Microsoft

More information

Course 10774A: Querying Microsoft SQL Server 2012 Length: 5 Days Published: May 25, 2012 Language(s): English Audience(s): IT Professionals

Course 10774A: Querying Microsoft SQL Server 2012 Length: 5 Days Published: May 25, 2012 Language(s): English Audience(s): IT Professionals Course 10774A: Querying Microsoft SQL Server 2012 Length: 5 Days Published: May 25, 2012 Language(s): English Audience(s): IT Professionals Overview About this Course Level: 200 Technology: Microsoft SQL

More information

Oracle Database 10g: Introduction to SQL

Oracle Database 10g: Introduction to SQL Oracle University Contact Us: 1.800.529.0165 Oracle Database 10g: Introduction to SQL Duration: 5 Days What you will learn This course offers students an introduction to Oracle Database 10g database technology.

More information

MOC 20461 QUERYING MICROSOFT SQL SERVER

MOC 20461 QUERYING MICROSOFT SQL SERVER ONE STEP AHEAD. MOC 20461 QUERYING MICROSOFT SQL SERVER Length: 5 days Level: 300 Technology: Microsoft SQL Server Delivery Method: Instructor-led (classroom) COURSE OUTLINE Module 1: Introduction to Microsoft

More information

SQL Server Administrator Introduction - 3 Days Objectives

SQL Server Administrator Introduction - 3 Days Objectives SQL Server Administrator Introduction - 3 Days INTRODUCTION TO MICROSOFT SQL SERVER Exploring the components of SQL Server Identifying SQL Server administration tasks INSTALLING SQL SERVER Identifying

More information

Querying Microsoft SQL Server 20461C; 5 days

Querying Microsoft SQL Server 20461C; 5 days Lincoln Land Community College Capital City Training Center 130 West Mason Springfield, IL 62702 217-782-7436 www.llcc.edu/cctc Querying Microsoft SQL Server 20461C; 5 days Course Description This 5-day

More information

How to Archive Data from SAP NetWeaver BW to SAP Sybase IQ as Near line Storage

How to Archive Data from SAP NetWeaver BW to SAP Sybase IQ as Near line Storage SAP How-to Guide Database & Technology SAP NetWeaver Business Warehouse SAP HANA Appliance How to Archive Data from SAP NetWeaver BW to SAP Sybase IQ as Near line Storage Applicable Releases: SAP NetWeaver

More information

Querying Microsoft SQL Server Course M20461 5 Day(s) 30:00 Hours

Querying Microsoft SQL Server Course M20461 5 Day(s) 30:00 Hours Área de formação Plataforma e Tecnologias de Informação Querying Microsoft SQL Introduction This 5-day instructor led course provides students with the technical skills required to write basic Transact-SQL

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 HANA als Entwicklungsplattform. Matthias Kupczak HANA Center of Excellence (CoE) Switzerland SAP Forum - 12. Juni 2013

SAP HANA als Entwicklungsplattform. Matthias Kupczak HANA Center of Excellence (CoE) Switzerland SAP Forum - 12. Juni 2013 SAP HANA als Entwicklungsplattform Matthias Kupczak HANA Center of Excellence (CoE) Switzerland SAP Forum - 12. Juni 2013 1 SAP HANA A Database for application logic? 2 3 SAP HANA 4 Extended Services (XS)

More information

SAP High-Performance Analytic Appliance 1.0 (SAP HANA) A First Look At The System Architecture

SAP High-Performance Analytic Appliance 1.0 (SAP HANA) A First Look At The System Architecture SAP High-Performance Analytic Appliance 1.0 (SAP HANA) A First Look At The System Architecture Marc Bernard SAP Technology Regional Implementation Group February 2011 Disclaimer This presentation outlines

More information

Oracle 10g PL/SQL Training

Oracle 10g PL/SQL Training Oracle 10g PL/SQL Training Course Number: ORCL PS01 Length: 3 Day(s) Certification Exam This course will help you prepare for the following exams: 1Z0 042 1Z0 043 Course Overview PL/SQL is Oracle's Procedural

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

Introduction to Querying & Reporting with SQL Server

Introduction to Querying & Reporting with SQL Server 1800 ULEARN (853 276) www.ddls.com.au Introduction to Querying & Reporting with SQL Server Length 5 days Price $4169.00 (inc GST) Overview This five-day instructor led course provides students with the

More information

SAP BusinessObjects BI Content Lifecycle Management Best Practices

SAP BusinessObjects BI Content Lifecycle Management Best Practices SAP BusinessObjects BI Content Lifecycle Management Disclaimer This presentation outlines our general product direction and should not be relied on in making a purchase decision. This presentation is not

More information

Oracle Database 12c: Introduction to SQL Ed 1.1

Oracle Database 12c: Introduction to SQL Ed 1.1 Oracle University Contact Us: 1.800.529.0165 Oracle Database 12c: Introduction to SQL Ed 1.1 Duration: 5 Days What you will learn This Oracle Database: Introduction to SQL training helps you write subqueries,

More information

SQL Server. 2012 for developers. murach's TRAINING & REFERENCE. Bryan Syverson. Mike Murach & Associates, Inc. Joel Murach

SQL Server. 2012 for developers. murach's TRAINING & REFERENCE. Bryan Syverson. Mike Murach & Associates, Inc. Joel Murach TRAINING & REFERENCE murach's SQL Server 2012 for developers Bryan Syverson Joel Murach Mike Murach & Associates, Inc. 4340 N. Knoll Ave. Fresno, CA 93722 www.murach.com murachbooks@murach.com Expanded

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 Business Objects BO BI 4.1

SAP Business Objects BO BI 4.1 SAP Business Objects BO BI 4.1 SAP Business Objects (a.k.a. BO, BOBJ) is an enterprise software company, specializing in business intelligence (BI). Business Objects was acquired in 2007 by German company

More information

Building Your Company s Data Visualization Strategy

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

More information

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

The safer, easier way to help you pass any IT exams. Exam : C_HANASUP_1. SAP Certified Support Associate - SAP HANA 1.0.

The safer, easier way to help you pass any IT exams. Exam : C_HANASUP_1. SAP Certified Support Associate - SAP HANA 1.0. Exam : C_HANASUP_1 Title : SAP Certified Support Associate - SAP HANA 1.0 Version : DEMO 1 / 4 1.In the SAP HANA studio, which of the following SQL thread details can you monitor by using the Threads subtab

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

Exploring the Synergistic Relationships Between BPC, BW and HANA

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

More information

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

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

More information

SAP HANA - Main Memory Technology: A Challenge for Development of Business Applications. Jürgen Primsch, SAP AG July 2011

SAP HANA - Main Memory Technology: A Challenge for Development of Business Applications. Jürgen Primsch, SAP AG July 2011 SAP HANA - Main Memory Technology: A Challenge for Development of Business Applications Jürgen Primsch, SAP AG July 2011 Why In-Memory? Information at the Speed of Thought Imagine access to business data,

More information

Landscape Deployment Recommendations for. SAP Fiori Front-End Server

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

More information

SAP BW powered by SAP HANA: Understanding the Impact of HANA Optimized InfoCubes Josh Djupstrom SAP Labs

SAP BW powered by SAP HANA: Understanding the Impact of HANA Optimized InfoCubes Josh Djupstrom SAP Labs [ SAP BW powered by SAP HANA: Understanding the Impact of HANA Optimized InfoCubes Josh Djupstrom SAP Labs [ Objectives At the end of this session, you will be able to: Understand the motivation for HANA

More information

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

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

More information

In-memory databases and innovations in Business Intelligence

In-memory databases and innovations in Business Intelligence Database Systems Journal vol. VI, no. 1/2015 59 In-memory databases and innovations in Business Intelligence Ruxandra BĂBEANU, Marian CIOBANU University of Economic Studies, Bucharest, Romania babeanu.ruxandra@gmail.com,

More information

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

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

More information

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

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

SAP Agile Data Preparation

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

More information

Course 20461C: Querying Microsoft SQL Server Duration: 35 hours

Course 20461C: Querying Microsoft SQL Server Duration: 35 hours Course 20461C: Querying Microsoft SQL Server Duration: 35 hours About this Course This course is the foundation for all SQL Server-related disciplines; namely, Database Administration, Database Development

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

Data warehousing/dimensional modeling/ SAP BW 7.3 Concepts

Data warehousing/dimensional modeling/ SAP BW 7.3 Concepts Data warehousing/dimensional modeling/ SAP BW 7.3 Concepts 1. OLTP vs. OLAP 2. Types of OLAP 3. Multi Dimensional Modeling Of SAP BW 7.3 4. SAP BW 7.3 Cubes, DSO's,Multi Providers, Infosets 5. Business

More information

SAP BusinessObjects Dashboards

SAP BusinessObjects Dashboards SAP BusinessObjects Dashboards 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

More information

Predictive Analytics Powered by SAP HANA. Cary Bourgeois Principal Solution Advisor Platform and Analytics

Predictive Analytics Powered by SAP HANA. Cary Bourgeois Principal Solution Advisor Platform and Analytics Predictive Analytics Powered by SAP HANA Cary Bourgeois Principal Solution Advisor Platform and Analytics Agenda Introduction to Predictive Analytics Key capabilities of SAP HANA for in-memory predictive

More information

Selecting the Right SAP BusinessObjects BI Client Product based on your business requirements for SAP BW Customers

Selecting the Right SAP BusinessObjects BI Client Product based on your business requirements for SAP BW Customers Selecting the Right SAP BusinessObjects BI Client Product based on your business requirements for SAP BW Customers Ingo Hilgefort Director Solution Management Disclaimer This presentation outlines our

More information

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

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

More information

Oracle SQL. Course Summary. Duration. Objectives

Oracle SQL. Course Summary. Duration. Objectives Oracle SQL Course Summary Identify the major structural components of the Oracle Database 11g Create reports of aggregated data Write SELECT statements that include queries Retrieve row and column data

More information

Querying Microsoft SQL Server 2012

Querying Microsoft SQL Server 2012 Querying Microsoft SQL Server 2012 MOC 10774 About this Course This 5-day instructor led course provides students with the technical skills required to write basic Transact-SQL queries for Microsoft SQL

More information

50439B: Basics of Transact SQL with SQL Server 2008 R2

50439B: Basics of Transact SQL with SQL Server 2008 R2 50439B: Basics of Transact SQL with SQL Server 2008 R2 Duration: 3 days Class Description This instructor-led course provides students with the necessary knowledge to work with the data in SQL Server 2008R2.

More information

AV-005: Administering and Implementing a Data Warehouse with SQL Server 2014

AV-005: Administering and Implementing a Data Warehouse with SQL Server 2014 AV-005: Administering and Implementing a Data Warehouse with SQL Server 2014 Career Details Duration 105 hours Prerequisites This career requires that you meet the following prerequisites: Working knowledge

More information

SAP HANA Backup and Recovery (Overview, SPS08)

SAP HANA Backup and Recovery (Overview, SPS08) SAP HANA Backup and Recovery (Overview, SPS08) Andrea Kristen, SAP HANA Product Management October 2014 Disclaimer This presentation outlines our general product direction and should not be relied on in

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

CHAPTER 5: BUSINESS ANALYTICS

CHAPTER 5: BUSINESS ANALYTICS Chapter 5: Business Analytics CHAPTER 5: BUSINESS ANALYTICS Objectives The objectives are: Describe Business Analytics. Explain the terminology associated with Business Analytics. Describe the data warehouse

More information

RUN BETTER. 2013 SAP AG. All rights reserved. 1

RUN BETTER. 2013 SAP AG. All rights reserved. 1 RUN BETTER 2013 SAP AG. All rights reserved. 1 Project SEEED Processing of Encrypted Data in SAP HANA Internal Outsourcing Data to the Cloud What do you think are the problems? 2013 SAP AG. All rights

More information

Oracle Database 11g SQL

Oracle Database 11g SQL AO3 - Version: 2 19 June 2016 Oracle Database 11g SQL Oracle Database 11g SQL AO3 - Version: 2 3 days Course Description: This course provides the essential SQL skills that allow developers to write queries

More information

ORACLE OLAP. Oracle OLAP is embedded in the Oracle Database kernel and runs in the same database process

ORACLE OLAP. Oracle OLAP is embedded in the Oracle Database kernel and runs in the same database process ORACLE OLAP KEY FEATURES AND BENEFITS FAST ANSWERS TO TOUGH QUESTIONS EASILY KEY FEATURES & BENEFITS World class analytic engine Superior query performance Simple SQL access to advanced analytics Enhanced

More information

Ingo Hilgefort. Integrating SAP. Business Objects BI with SAP NetWeaver. Bonn Boston

Ingo Hilgefort. Integrating SAP. Business Objects BI with SAP NetWeaver. Bonn Boston Ingo Hilget Integrating SAP Business Objects BI with SAP NetWeaver Bonn Boston Contents at a Glance 1 SAP Business Objects BI and SAP NetWeaver Overview... 21 2 Installation and Configuration... 39 3 Semantic

More information

IBM Cognos Business Intelligence Version 10.1.1. Dynamic Query Guide

IBM Cognos Business Intelligence Version 10.1.1. Dynamic Query Guide IBM Cognos Business Intelligence Version 10.1.1 Dynamic Query Guide Note Before using this information and the product it supports, read the information in Notices on page 21. Product Information This

More information

How To Upgrade Your System With Bib 4.6.1.1

How To Upgrade Your System With Bib 4.6.1.1 Best Practices and Methodologies for Upgrading SAP BusinessObjects Enterprise to SAP BusinessObjects BI 4.0 Disclaimer This presentation outlines our general product direction and should not be relied

More information

Introduction and Overview for Oracle 11G 4 days Weekends

Introduction and Overview for Oracle 11G 4 days Weekends Introduction and Overview for Oracle 11G 4 days Weekends The uses of SQL queries Why SQL can be both easy and difficult Recommendations for thorough testing Enhancing query performance Query optimization

More information

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

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

More information

Efficient Data Access and Data Integration Using Information Objects Mica J. Block

Efficient Data Access and Data Integration Using Information Objects Mica J. Block Efficient Data Access and Data Integration Using Information Objects Mica J. Block Director, ACES Actuate Corporation mblock@actuate.com Agenda Information Objects Overview Best practices Modeling Security

More information

SQL Server 2012 Business Intelligence Boot Camp

SQL Server 2012 Business Intelligence Boot Camp SQL Server 2012 Business Intelligence Boot Camp Length: 5 Days Technology: Microsoft SQL Server 2012 Delivery Method: Instructor-led (classroom) About this Course Data warehousing is a solution organizations

More information

Provisional Master Data in Integrated Business Planning for SAP Simple Finance An Example-Based How-To Guide

Provisional Master Data in Integrated Business Planning for SAP Simple Finance An Example-Based How-To Guide Provisional Master Data in Integrated Business Planning for SAP Simple Finance An Example-Based How-To Guide Applies to: Integrated Business Planning in SAP Simple Finance Summary SAP customers who use

More information

HP Vertica and MicroStrategy 10: a functional overview including recommendations for performance optimization. Presented by: Ritika Rahate

HP Vertica and MicroStrategy 10: a functional overview including recommendations for performance optimization. Presented by: Ritika Rahate HP Vertica and MicroStrategy 10: a functional overview including recommendations for performance optimization Presented by: Ritika Rahate MicroStrategy Data Access Workflows There are numerous ways for

More information

SAP HANA Operation Expert Summit BUILD - High Availability & Disaster Recovery

SAP HANA Operation Expert Summit BUILD - High Availability & Disaster Recovery SAP HANA Operation Expert Summit BUILD - High Availability & Disaster Recovery Dr. Ralf Czekalla/SAP HANA Product Management May 09, 2014 Customer Disclaimer This presentation outlines our general product

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

Writing Queries Using Microsoft SQL Server 2008 Transact-SQL

Writing Queries Using Microsoft SQL Server 2008 Transact-SQL Lincoln Land Community College Capital City Training Center 130 West Mason Springfield, IL 62702 217-782-7436 www.llcc.edu/cctc Writing Queries Using Microsoft SQL Server 2008 Transact-SQL Course 2778-08;

More information

Oracle Database: SQL and PL/SQL Fundamentals

Oracle Database: SQL and PL/SQL Fundamentals Oracle University Contact Us: 1.800.529.0165 Oracle Database: SQL and PL/SQL Fundamentals Duration: 5 Days What you will learn This course is designed to deliver the fundamentals of SQL and PL/SQL along

More information

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

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

More information

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

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

More information

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