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

Size: px
Start display at page:

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

Transcription

1 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

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. / Page 2

3 Agenda 1. Architecture Overview 2. Row Store 3. Column Store 4. Persistency Layer 5. Modeling 6. Q&A 2011 SAP AG. All rights reserved. / Page 3

4 Architecture Overview In-Memory Computing Engine and Surroundings In-Memory Computing Studio MS Excel Clients (planned, e.g.) BI4 Explorer Administration Modeling Dashboard Design SAP BI4 universes (WebI,...) BI4 Analysis Load Controller ERP Replication Agent In-Memory Computing Engine Session Management ERP DB SAP Business Objects BI4 Data Services Designer Data Services SBO BI4 Information Design Tool SBO BI4 servers ( program for client) Replication Server Page Management Data Volumes Request Processing / Execution Control SQL Parser MDX SQL Script Calc Engine Relational Engines Row Store Column Store Persistence Layer Disk Storage Logger Log Volumes Transaction Manager Authorization Manager Metadata Manager Other Source Systems SAP NetWeaver BW 3rd Party 2011 SAP AG. All rights reserved. / Page 4

5 Architecture Overview The Engine Administration Load Controller ERP DB IMC Studio ERP Modeling Replication Agent Log Business Objects Enterprise Data Services Designer Data Services Replication Server SBO Information Design Tool SBO server programs for clients Page Management MS Excel In-Memory Xcelsius Computing SAP Engine BI universes (WebI,...) Request Processing / Execution Control SQL Parser MDX SQL Script Session Management Clients (planned, e.g.) SBOP Explorer 4.0 Calc Engine Relational Engines Row Store Column Store Persistence Layer Logger Transaction Manager Authorization Manager Metadata Manager SBOP Analysis Other Source Systems SAP NetWeaver BW Data Volumes 3rd Party Disk Storage Log Volumes 2011 SAP AG. All rights reserved. / Page 5

6 Architecture Overview Loading Data into SAP HANA In-Memory Computing Studio MS Excel Clients (planned, e.g.) BI4 Explorer Administration Modeling Dashboard Design SAP BI4 universes (WebI,...) BI4 Analysis Load Controller ERP Replication Agent In-Memory Computing Engine Session Management ERP DB Business Objects Enterprise Data Services Designer Data Services SBO Information Design Tool SBO BI4 servers ( program for client) Other Source Systems SAP NetWeaver BW 3rd Party Replication Server Page Management Data Volumes Request Processing / Execution Control SQL Parser MDX SQL Script Calc Engine Relational Engines Row Store Column Store Persistence Layer Disk Storage Logger Log Volumes Transaction Manager Authorization Manager Metadata Manager 2011 SAP AG. All rights reserved. / Page 6

7 Architecture Overview Data Modeling In-Memory Computing Studio MS Excel Clients (planned, e.g.) BI4 Explorer Administration Modeling Dashboard Design SAP BI4 universes (WebI,...) BI4 Analysis Load Controller ERP Replication Agent In-Memory Computing Engine Session Management ERP DB Business Objects Enterprise Data Services Designer Data Services SBO Information Design Tool SBO BI4 servers ( program for client) Other Source Systems SAP NetWeaver BW 3rd Party Replication Server Page Management Data Volumes Request Processing / Execution Control SQL Parser MDX SQL Script Calc Engine Relational Engines Row Store Column Store Persistence Layer Disk Storage Logger Log Volumes Transaction Manager Authorization Manager Metadata Manager 2011 SAP AG. All rights reserved. / Page 7

8 Architecture Overview Reporting In-Memory Computing Studio MS Excel Clients (planned, e.g.) BI4 Explorer Administration Modeling Dashboard Design SAP BI4 universes (WebI,...) BI4 Analysis Load Controller ERP Replication Agent In-Memory Computing Engine Session Management ERP DB Business Objects Enterprise Data Services Designer Data Services SBO Information Design Tool SBO BI4 servers ( program for client) Other Source Systems SAP NetWeaver BW 3rd Party Replication Server Page Management Data Volumes Request Processing / Execution Control SQL Parser MDX SQL Script Calc Engine Relational Engines Row Store Column Store Persistence Layer Disk Storage Logger Log Volumes Transaction Manager Authorization Manager Metadata Manager 2011 SAP AG. All rights reserved. / Page 8

9 Architecture Overview Administration In-Memory Computing Studio MS Excel Clients (planned, e.g.) BI4 Explorer Administration Modeling Dashboard Design SAP BI4 universes (WebI,...) BI4 Analysis Load Controller ERP Replication Agent In-Memory Computing Engine Session Management ERP DB Business Objects Enterprise Data Services Designer Data Services SBO Information Design Tool SBO BI4 servers ( program for client) Other Source Systems SAP NetWeaver BW 3rd Party Replication Server Page Management Data Volumes Request Processing / Execution Control SQL Parser MDX SQL Script Calc Engine Relational Engines Row Store Column Store Persistence Layer Disk Storage Logger Log Volumes Transaction Manager Authorization Manager Metadata Manager 2011 SAP AG. All rights reserved. / Page 9

10 SAP High-Performance Analytic Appliance 1.0 (optional) SAP BusinessObjects BI clients (optional) SAP In-Memory Computing Studio Admin & model SQL MDX JDBC ODBC ODBO BICS SQL DBC Authentication Content mgmt SAP BusinessObjects BI 4.0 Repository SAP In-Memory Computing Engine (existing) SAP Business Application Replication Server SAP HANA Replication Agent sync load (optional) SAP BusinessObjects Data Services 4.0 Any source DB Server 2011 SAP AG. All rights reserved. / Page 10

11 Request Processing and Execution Control Conceptual View Standard SQL Processed directly by DB engine SQL Script, MDX and planning engine interface Domain-specific programming languages or models Converted into calculation models Calc Engine Create logical execution plan for calculation models Execute user defined functions Relational Engine DB optimizer produces physical executing plan Access to row and column store 2011 SAP AG. All rights reserved. / Page 11

12 Calc Engine for Dummies The easiest way to think of Calculation Models is to see them as dataflow graphs, where the modeler can define data sources as inputs and different operations (join, aggregation, projection, ) on top of them for data manipulations. The Calculation Engine will break up a model, for example some SQL Script, into operations that can be processed in parallel (rule based model optimizer). Then these operations will be passed to the database optimizer which will determine the best plan for accessing row or column stores (algebraic transformations and cost based optimizations based on database statistics) SAP AG. All rights reserved. / Page 12

13 Calc Engine for Dummies Example 2011 SAP AG. All rights reserved. / Page 13

14 Agenda 1. Architecture Overview 2. Row Store 3. Column Store 4. Persistency Layer 5. Modeling 6. Q&A 2011 SAP AG. All rights reserved. / Page 14

15 In-Memory Computing Engine High Level Architecture Row Store One of the relational engines Interfaced from calculation / execution layer Pure in-memory store Persistence managed in persistence layer SAP in-memory computing engine HANA 2011 SAP AG. All rights reserved. / Page 15

16 Row Store Architecture Row Store Block Diagram Row Store Block Diagram Transactional Version Memory Contains temporary versions Needed for Multi-Version Concurrency Control (MVCC) Segments Contain the actual data (content of row-store tables) in pages Page Manager Memory allocation Keeping track of free/used pages Version Memory Consolidation Think garbage collector for MVCC Persistence Layer Invoked in write operations (log) And in performing savepoints checkpoint writer 2011 SAP AG. All rights reserved. / Page 16

17 Row Store Architecture Highlights Write Operations Mainly go into Transactional Version Memory INSERT also writes to Persisted Segment Persisted Segment Contains data that may be seen by any ongoing transaction Data that has been committed before any active transaction was started) Version Consolidation Moves visible version from Transaction Version Memory into Persisted Segment (based on Commit ID) Recent versions of changed records Clears outdated record versions from Transactional Version Memory Transactional Version Memory Main Memory Write Operations Read Operations Version Memory Consolidation Persisted Segment Data that may be seen by all active transactions Memory Handling Row store tables are linked list of memory pages Pages are grouped in segments Page size: 16 KB 2011 SAP AG. All rights reserved. / Page 17

18 Indexes for Row Store Tables Primary Index / Row ID / Index Persistence Each row-store table has a primary index Primary index maps ROW ID primary key of table ROW ID: a number specifying for each record its memory segment and page How to find the memory page for a table record? A structure called ROW ID contains the segment and the page for the record The page can then be searched for the records based on primary key ROW ID is part of the primary index of the table Secondary indexes can be created if needed Persistence of indexes in row store Indexes in row store only exist in memory No persistence of index data Index definition stored with table metadata Indexes filled on-the-fly when system loads tables into memory on system start-up 2011 SAP AG. All rights reserved. / Page 18

19 Agenda 1. Architecture Overview 2. Row Store 3. Column Store 4. Persistency Layer 5. Modeling 6. Q&A 2011 SAP AG. All rights reserved. / Page 19

20 In-Memory Computing Engine High Level Architecture Column Store One of the relational engines Interfaced from calculation / execution layer Pure in-memory store Persistence managed in persistence layer Optimized for high performance of read operation Good performance of write operations Efficient data compression SAP in-memory computing engine HANA 2011 SAP AG. All rights reserved. / Page 20

21 Column Store Architecture Column Store Block Diagram Column Store Block Diagram Optimizer and Executor Handles queries and execution plan Main and Delta Storage Compressed data for fast read Delta data for fast write Asynchronous delta merge Consistent View Manager Transaction Manager Persistence Layer 2011 SAP AG. All rights reserved. / Page 21

22 Column Store Highlights Storage Separation (Main & Delta) Enables high compression and high write performance at the same time Write Operations Only in delta storage because write optimized. The update is performed by inserting a new entry into the delta storage. Compressed and Read optimized Main Memory Write Operations Write optimized Data Compression in Main Storage Compression by creating dictionary and applying further compression methods Speed up Data load into CPU cache Equality check Search The compression is computed during delta merge operation. Main Delta Read Operations Read Operations Always have to read from both main & delta storages and merge the results. Engine uses multi version concurrency control (MVCC) to ensure consistent read operations. Delta Merge Operation See next slide 2011 SAP AG. All rights reserved. / Page 22

23 Column Store Delta Management Delta Merge Operation Purpose To move changes in delta storage into the compressed and read optimized main storage Characteristics Happens asynchronously Even during merge operation the columnar table will be still available for read and write operations To fulfil this requirement, a second delta and main storage are used internally Before Merge During Merge After Merge Write Operations Merge Operations Write Operations Write Operations Main Delta Main Main New Delta Delta New Main New Delta New Read Operations Read Operations Read Operations 2011 SAP AG. All rights reserved. / Page 23

24 Agenda 1. Architecture Overview 2. Row Store 3. Column Store 4. Persistency Layer 5. Modeling 6. Q&A 2011 SAP AG. All rights reserved. / Page 24

25 Persistence Layer Purpose and Scope Why Does An In-memory Database Need A Persistence Layer? Main Memory is volatile. What happens upon Database restart? Power outage?... Data needs to be stored in a non-volatile way Backup and restore SAP in-memory computing engine offers one persistence layer which is used by row store and column store Regular savepoints full persisted image of DB at time of savepoint Logs capturing all DB transactions since last savepoint (redo logs and undo logs written) restore DB from latest savepoint onwards Ability to create "snapshots" used for backups 2011 SAP AG. All rights reserved. / Page 25

26 Persistence Layer System Restart and Population of In-memory Stores Actions During System Restart Last savepoint must be restored plus Undo logs must be read for uncommitted transactions saved with last savepoint Redo logs for committed transactions since last savepoint Complete content of row store is loaded into memory Column store tables may be marked for preload or not Only tables marked for preload are loaded into memory during startup If table is marked for loading on demand, the restore procedure is invoked on first access 2011 SAP AG. All rights reserved. / Page 26

27 Agenda 1. Architecture Overview 2. Row Store 3. Column Store 4. Persistency Layer 5. Modeling 6. Q&A 2011 SAP AG. All rights reserved. / Page 27

28 Row Store vs. Column Store When to Use Which Store Modeling Only Possible For Column Tables This answers the frequently asked question: "Where should I put a table row store or column store?" Information Modeler only works with column tables Replication server creates tables in column store per default Data Services creates tables in column store per default SQL to create column table: "CREATE COLUMN TABLE..." Store can be changed with "ALTER TABLE " System Tables Are Created Where They Fit Best Administrative tables in row store: Schema SYS caches, administrative tables of engine Tables from statistics server Administrative tables in column store: Schema _SYS_BI metadata of created views + master data for MDX Schema _SYS_BIC some generated tables for MDX Schema _SYS_REPO e.g. lists of active/modified versions of models 2011 SAP AG. All rights reserved. / Page 28

29 SAP In-Memory Computing Studio Look and Feel Quick Launch View Navigator View Properties View 2011 SAP AG. All rights reserved. / Page 29

30 SAP In-Memory Computing Studio Features Information Modeler Features Modeling No materialized aggregates Database views Choice to publish and consume at 4 levels of modeling Attribute View, Analytic View, Analytic View enhanced with Attribute View, Calculation View Data Preview Physical tables Information Models Import/Export Models Data Source schemas (metadata) mass and selective load Landscapes Data Provisioning for SAP Business Applications (both initial load and replication) Analytic Privileges / Security 2011 SAP AG. All rights reserved. / Page 30

31 Modeling Process Flow Import Source System metadata Physical tables are created dynamically (1:1 schema definition of source system tables) Create Information Models Database Views are created Attribute Views Analytic Views Calculation Views Consume Consume with choice of client tools BICS, SQL, MDX Provision Data Physical tables are loaded with content. Deploy Column views are created and activated 2011 SAP AG. All rights reserved. / Page 31

32 SAP In-Memory Computing Studio Terminology Information Modeler Terminology Data Attributes descriptive data (known as Characteristics SAP BW terminology) Measures data that can be quantified and calculated (known as key figures in SAP BW) Views Attribute Views i.e. dimensions Analytic Views i.e. cubes Calculation Views similar to virtual provider with services concept in BW Hierarchies Leveled based on multiple attributes Parent-child hierarchy Analytic Privilege security object 2011 SAP AG. All rights reserved. / Page 32

33 SAP In-Memory Computing Studio Navigator View - Default Catalog HANA Instance (<USER>) HANA Server Name and Instance Number User Database schema Schema Content: Column Views, Functions, Tables, Views 2011 SAP AG. All rights reserved. / Page 33

34 SAP In-Memory Computing Studio Navigator View - Information Models Information Models organized in Packages Attribute Views, Analytic Views, Calculation Views, Analytic Privileges organised in folders 2011 SAP AG. All rights reserved. / Page 34

35 Attribute Views Attribute View What is an Attribute View? Attributes add context to data. Attributes are modeled using Attribute Views. Can be regarded as Master Data tables Can be linked to fact tables in Analytical Views A measure e.g. weight can be defined as an attribute. Table Joins and Properties Join Types leftouter, rightouter, fullouter, texttable Cardinality 1:1 N:1 1:N Language Column 2011 SAP AG. All rights reserved. / Page 35

36 Analytical View Analytical View An Analytical View can be regarded as a cube. Analytical Views does not store any data. The data is stored in column store or table view based on the Analytical View Structure. Attribute and Measures Can create Attribute Filters Must have at least one Attribute Must have at least one Measure Can create Restricted Measures Can create Calculated Measures Can rename Attribute and Measures on the property tab 2011 SAP AG. All rights reserved. / Page 36

37 Analytical View Analytical View: Data Preview There are three main views one can select from when previewing data. Raw Data table format of data Distinct Values graphical and text format identifying unique values Analysis select fields (attributes and measures) to display in graphical format SAP AG. All rights reserved. / Page 37

38 Calculation View (Scripting) Calculation View Define Table Output Structure Write SQL Statement. Ensure that the selected fields corresponds to previously defined Output table structure of the function. Example : SQL_A = SELECT MATNR, KUNNR,. FROM <COPA_ACTUAL_ANALYTICAL VIEW 1> SQL_P = SELECT MATTNR_KUNNR, FROM <COPA_PROJECTED_ANALYTICAL VIEW 2> TABLE_OUTPUT_STRUCTURE = SELECT * FROM <SQL_A> UNION SELECT * FROM <SQL_P>; 2011 SAP AG. All rights reserved. / Page 38

39 SAP In-Memory Computing Studio Pre-Delivered Administration Console Navigator View Administration View Properties View 2011 SAP AG. All rights reserved. / Page 39

40 Agenda 1. Architecture Overview 2. Row Store 3. Column Store 4. Persistency Layer 5. Modeling 6. Q&A 2011 SAP AG. All rights reserved. / Page 40

41 Thank you! 2011 SAP AG. All rights reserved. / Page 41

42 Further Information on SAP HANA and In-Memory Technologies In-Memory Computing Real-Real Time Business with HANA SAP Community Network Topic Page SAP Community Forum The SAP NetWeaver BW SAP HANA Relationship SAP HANA Ramp-Up Knowledge Transfer (login required) SAP HANA Documentation (login required during ramp-up) SAP AG. All rights reserved. / Page 42

43 2011 SAP AG. 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 AG. The information contained herein may be changed without prior notice. Some software products marketed by SAP AG and its distributors contain proprietary software components of other software vendors. Microsoft, Windows, Excel, Outlook, and PowerPoint are registered trademarks of Microsoft Corporation. IBM, DB2, DB2 Universal Database, System i, System i5, System p, System p5, System x, System z, System z10, System z9, z10, z9, iseries, pseries, xseries, zseries, eserver, z/vm, z/os, i5/os, S/390, OS/390, OS/400, AS/400, S/390 Parallel Enterprise Server, PowerVM, Power Architecture, POWER6+, POWER6, POWER5+, POWER5, POWER, OpenPower, PowerPC, BatchPipes, BladeCenter, System Storage, GPFS, HACMP, RETAIN, DB2 Connect, RACF, Redbooks, OS/2, Parallel Sysplex, MVS/ESA, AIX, Intelligent Miner, WebSphere, Netfinity, Tivoli and Informix are trademarks or registered trademarks of IBM Corporation. Linux is the registered trademark of Linus Torvalds in the U.S. and other countries. Adobe, the Adobe logo, Acrobat, PostScript, and Reader are either trademarks or registered trademarks of Adobe Systems Incorporated in the United States and/or other countries. Oracle is a registered trademark of Oracle Corporation. UNIX, X/Open, OSF/1, and Motif are registered trademarks of the Open Group. Citrix, ICA, Program Neighborhood, MetaFrame, WinFrame, VideoFrame, and MultiWin are trademarks or registered trademarks of Citrix Systems, Inc. HTML, XML, XHTML and W3C are trademarks or registered trademarks of W3C, World Wide Web Consortium, Massachusetts Institute of Technology. Java is a registered trademark of Sun Microsystems, Inc. JavaScript is a registered trademark of Sun Microsystems, Inc., used under license for technology invented and implemented by Netscape. SAP, R/3, SAP NetWeaver, Duet, PartnerEdge, ByDesign, Clear Enterprise, SAP BusinessObjects Explorer and other SAP products and services mentioned herein as well as their respective logos are trademarks or registered trademarks of SAP AG in Germany and other countries. Business Objects and the Business Objects logo, BusinessObjects, Crystal Reports, Crystal Decisions, Web Intelligence, Xcelsius, and other Business Objects products and services mentioned herein as well as their respective logos are trademarks or registered trademarks of SAP France in the United States and in other countries. All other product and service names mentioned are the trademarks of their respective companies. Data contained in this document serves informational purposes only. National product specifications may vary. The information in this document is proprietary to SAP. No part of this document may be reproduced, copied, or transmitted in any form or for any purpose without the express prior written permission of SAP AG. This document is a preliminary version and not subject to your license agreement or any other agreement with SAP. This document contains only intended strategies, developments, and functionalities of the SAP product and is not intended to be binding upon SAP to any particular course of business, product strategy, and/or development. Please note that this document is subject to change and may be changed by SAP at any time without notice. SAP assumes no responsibility for errors or omissions in this document. SAP does not warrant the accuracy or completeness of the information, text, graphics, links, or other items contained within this material. 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 shall have no liability for damages of any kind including without limitation direct, special, indirect, or consequential damages that may result from the use of these materials. This limitation shall not apply in cases of intent or gross negligence. The statutory liability for personal injury and defective products is not affected. SAP has no control over the information that you may access through the use of hot links contained in these materials and does not endorse your use of third-party Web pages nor provide any warranty whatsoever relating to third-party Web pages SAP AG. All rights reserved. / Page 43

Budget Control by Cost Center

Budget Control by Cost Center SAP Business One Budget Control by Cost Center Ecosystem & Channels Readiness July 2011 Allows a precise follow up of costs booked using the cost accounting dimensions functionality as introduced in SAP

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

User Experience in Custom Apps

User Experience in Custom Apps User Experience in Custom Apps p o w e r e d b y t h e S A P M o b i l e P l a t f o r m S e a n L o n g U X A r c h i t e c t M a n u e l S a e z - D i r e c t o r M o b i l e I n n o v a t i o n C e

More information

SAP Central Process Scheduling (CPS) 8.0 by Redwood

SAP Central Process Scheduling (CPS) 8.0 by Redwood SAP Central Process Scheduling (CPS) 8.0 by Redwood What s new in SAP CPS 8.0? November 2010 Agenda 1. SAP Central Process Scheduling by Redwood Architecture Overview 2. Enhanced User Interface 3. New

More information

USDL XG WP3 SAP use case. Kay Kadner

USDL XG WP3 SAP use case. Kay Kadner XG WP3 SAP use case Kay Kadner Customer Marketplace Company B Runtime Company D Innovation & Community Community Company A Repository Company C Repository Provider Provider 2 Integrated Demonstrator -

More information

How to Configure Access Control for Exchange using PowerShell Cmdlets A Step-by-Step guide

How to Configure Access Control for Exchange using PowerShell Cmdlets A Step-by-Step guide SAP How-to Guide Mobile Device Management SAP Afaria How to Configure Access Control for Exchange using PowerShell Cmdlets A Step-by-Step guide Applicable Releases: SAP Afaria 7 SP3 HotFix 06, SAP Afaria

More information

Intelligent Business Operations Chapter 1: Overview & Strategy

Intelligent Business Operations Chapter 1: Overview & Strategy Intelligent Business Operations Chapter 1: Overview & Strategy Legal Disclaimer The information in this presentation is confidential and proprietary to SAP and may not be disclosed without the permission

More information

SAP Business ByDesign Reference Systems. Scenario Outline. SAP ERP Integration Scenarios

SAP Business ByDesign Reference Systems. Scenario Outline. SAP ERP Integration Scenarios SAP Business ByDesign Reference Systems Scenario Outline SAP ERP Integration Scenarios Content Scenario Overview Business Scenarios in a Reference System Introduction Typical Usage Process Illustration

More information

SAP Master Data Governance- Hiding fields in the change request User Interface

SAP Master Data Governance- Hiding fields in the change request User Interface SAP Master Data Governance- Hiding fields in the change request User Interface Applies to: ERP 6 Ehp 5 SAP Master Data Governance. For more information, visit the Master Data Management homepage. Summary

More information

SAP Service Tools for Performance Analysis

SAP Service Tools for Performance Analysis SAP Service Tools for Performance Analysis Kerstin Knebusch Active Global Support Month 05, 2013 Public Performance Analysis Wait event based Focus on statements causing high load and / or high wait time

More information

Accounts Receivable. SAP Best Practices

Accounts Receivable. SAP Best Practices Accounts Receivable SAP Best Practices Purpose, Benefits, and Key Steps Purpose This scenario deals with posting accounting data for customers in Accounts Receivable. Benefits The Accounts Receivable is

More information

OData in a Nutshell. August 2011 INTERNAL

OData in a Nutshell. August 2011 INTERNAL OData in a Nutshell August 2011 INTERNAL Objectives At the end of this module, you will be able to: Understand the OData Standard and how it works. Understand how OData uses the Atom Protocol. Understand

More information

Maintaining Different Addresses and Email Ids for a Business Partner via CRM Web UI

Maintaining Different Addresses and Email Ids for a Business Partner via CRM Web UI Maintaining Different Addresses and Email Ids for a Business Partner via CRM Web UI Applies to: CRM 7.0 SP09. For more information, visit the Customer Relationship Management homepage. Summary This article

More information

Matthias Steiner SAP. SAP HANA Cloud Platform A guided tour

Matthias Steiner SAP. SAP HANA Cloud Platform A guided tour Matthias Steiner SAP SAP HANA Cloud Platform A guided tour SAP HANA Cloud Platform A guided tour Matthias Steiner April, 2011 Overview Platform Capabilities Portal Mobile Collaboration Integration Analytics

More information

Business One in Action - How can we post bank fees and charges while posting Incoming or Outgoing Payment transactions?

Business One in Action - How can we post bank fees and charges while posting Incoming or Outgoing Payment transactions? Business One in Action - How can we post bank fees and charges while posting Incoming or Outgoing Payment transactions? Applies to: SAP Business One, Accounting, Banking and Reconciliation Summary: This

More information

SOP through Long Term Planning Transfer to LIS/PIS/Capacity. SAP Best Practices

SOP through Long Term Planning Transfer to LIS/PIS/Capacity. SAP Best Practices SOP through Long Term Planning Transfer to LIS/PIS/Capacity SAP Best Practices Purpose, Benefits, and Key Steps Purpose Check if the budgeted sales quantities can be produced, assess material requirements

More information

Unified Service Description Language Enabling the Internet of Services

Unified Service Description Language Enabling the Internet of Services Unified Service Description Language Enabling the Internet of Services Dr. Kay Kadner, SAP AG, SAP Research, Chair USDL XG kay.kadner@sap.com, 2011-05-16 Growth due to increasing service orientation Source:

More information

Next Generation Digital Banking with SAP

Next Generation Digital Banking with SAP Next Generation Digital Banking with SAP Thorsten Weinrich, Director Business Development, Banking, SAP EMEA October, 2014 Use this title slide only with an image Legal Disclaimer The information in this

More information

TM111. ERP Integration for Order Management (Shipper Specific) COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s)

TM111. ERP Integration for Order Management (Shipper Specific) COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s) TM111 ERP Integration for Order Management (Shipper Specific). COURSE OUTLINE Course Version: 15 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2014 SAP SE. All rights reserved. No part of this

More information

Production Subcontracting (External Processing) SAP Best Practices

Production Subcontracting (External Processing) SAP Best Practices Production Subcontracting (External ing) SAP Best Practices Purpose, Benefits, and Key Steps Purpose During the Manufacturing process, when a "Planned Order" for Production is converted to a "Production

More information

RUN BETTER Become a Best-Run Business with Remote Support Platform for SAP Business One

RUN BETTER Become a Best-Run Business with Remote Support Platform for SAP Business One RUN BETTER Become a Best-Run Business with Remote Support Platform for SAP Business One September 2013 Customer External Become a Best-Run Business with Remote Support Platform for SAP Business One Run

More information

Alert Notification in SAP Supply Network Collaboration. SNC Extension Guide

Alert Notification in SAP Supply Network Collaboration. SNC Extension Guide Alert Notification in SAP Supply Network Collaboration SNC Extension Guide Version: 1.2 Date 08.02.2010 1 The SNC Extension Guide is a collection of tips and tricks on how to extend SAP Supply Network

More information

Integrating Easy Document Management System in SAP DMS

Integrating Easy Document Management System in SAP DMS Integrating Easy Document Management System in SAP DMS Applies to: SAP Easy Document Management System Version 6.0 SP12. For more information, visit the Product Lifecycle Management homepage. Summary This

More information

Sample Universe on Microsoft OLAP Cube

Sample Universe on Microsoft OLAP Cube Sample Universe on Microsoft OLAP Cube Applies to: SAP BusinessObjects XI4, the information design tool and Microsoft Analysis Services 2005 & 2008. For more information, visit the Business Objects homepage.

More information

Xcelsius Dashboards on SAP NetWaver BW Implementation Best Practices

Xcelsius Dashboards on SAP NetWaver BW Implementation Best Practices Xcelsius Dashboards on SAP NetWaver BW Implementation Best Practices Patrice Le Bihan, SAP Intelligence Platform & NetWeaver RIG, Americas Dr. Gerd Schöffl, SAP Intelligence Platform & NetWeaver RIG, EMEA

More information

K in Identify the differences between the universe design tool and the information design tool

K in Identify the differences between the universe design tool and the information design tool K in Identify the differences between the universe design tool and the information design tool The information design tool is a new modeling tool for the semantic layer that enables you to manipulate metadata

More information

Ariba Network Integration to SAP ECC

Ariba Network Integration to SAP ECC Ariba Network Integration to SAP ECC Mark Willner Principal Technical Solutions Consultant Ariba an SAP Company» October 2014 ERP Materials Management Core Integration Scenario Ariba Collaborative Commerce,

More information

Enterprise Software - Applications, Technologies and Programming

Enterprise Software - Applications, Technologies and Programming Enterprise Software - Applications, Technologies and Programming Dr. Uwe Kubach, Dr. Gregor Hackenbroich, Dr. Ralf Ackermann SAP Research 2010 SAP AG. All rights reserved. / Page 1 Abstract This lecture

More information

Business Requirements... 3 Analytics... 3 Typical Use Cases... 8 Related Content... 9 Copyright... 10

Business Requirements... 3 Analytics... 3 Typical Use Cases... 8 Related Content... 9 Copyright... 10 SAP BW Data Mining Analytics: Process Reporting Applies to: SAP BW Data Mining. For more information, visit the Analytics homepage. Summary SAP BW Data Mining serves as a process design platform for a

More information

Data Archiving in CRM: a Brief Overview

Data Archiving in CRM: a Brief Overview Data Archiving in CRM: a Brief Overview Applies to: Developing Archiving Solutions in SAP CRM technology. For more information, visit the Customer Relationship Management homepage. Summary This document

More information

Understanding HR Schema and PCR with an Example

Understanding HR Schema and PCR with an Example Understanding HR Schema and PCR with an Example Applies to: SAP ECC 6.0 version, SAP HCM module. For more information, visit the Enterprise Resource Planning homepage. Summary This document will provide

More information

HR400 SAP ERP HCM Payroll Configuration

HR400 SAP ERP HCM Payroll Configuration HR400 SAP ERP HCM Payroll Configuration. COURSE OUTLINE Course Version: 15 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2014 SAP AG. All rights reserved. No part of this publication may be reproduced

More information

Log Analysis Tool for SAP NetWeaver AS Java

Log Analysis Tool for SAP NetWeaver AS Java Log Analysis Tool for SAP NetWeaver AS Java Applies to: SAP NetWeaver 6.40, 7.0x, 7.1x, 7.20 and higher Summary Log Analysis is an SAP tool for analyzing list formatted logs and traces in Application Server

More information

How To Improve Your Business Process With Sap

How To Improve Your Business Process With Sap Business Process Analytics & Improvement SAP Solution Manager 7.1 SAP AG August, 2011 Disclaimer This presentation outlines our general product direction and should not be relied on in making a purchase

More information

Table of Contents. How to Find Database Index usage per ABAP Report and Creating an Index

Table of Contents. How to Find Database Index usage per ABAP Report and Creating an Index How to Find Database Index usage per ABAP Report and Creating an Index Applies to: SAP NETWEAVER WEB AS ABAP. For more information, visit the ABAP homepage Summary The aim of this article is to show how

More information

Third Party Digital Asset Management Integration

Third Party Digital Asset Management Integration Third Party Digital Asset Management Integration Objectives At the end of this unit, you will be able to: Assign Digital Assets to CRM Objects Work with the Where-Used List Describe the necessary customizing

More information

SAPFIN. Overview of SAP ERP Financials COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s)

SAPFIN. Overview of SAP ERP Financials COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s) SAPFIN Overview of SAP ERP Financials. COURSE OUTLINE Course Version: 15 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2014 SAP AG. All rights reserved. No part of this publication may be reproduced

More information

Process Archiving using NetWeaver Business Process Management

Process Archiving using NetWeaver Business Process Management Process Archiving using NetWeaver Business Process Management Applies to: NetWeaver Composition Environment 7.2, 7.3. For more information, visit the Business Process Modeling homepage. Summary This document

More information

BICS Connectivity for Web Intelligence in SAP BI 4.0. John Mrozek / AGS December 01, 2011

BICS Connectivity for Web Intelligence in SAP BI 4.0. John Mrozek / AGS December 01, 2011 BICS Connectivity for Web Intelligence in SAP BI 4.0 John Mrozek / AGS December 01, 2011 Introduction Business Intelligence Consumer Services connectivity for Web Intelligence in SAP BI 4.0 This presentation

More information

NetWeaver Business Client (NWBC) for Incentives and Commissions Management (ICM)

NetWeaver Business Client (NWBC) for Incentives and Commissions Management (ICM) NetWeaver Business Client (NWBC) for Incentives and Commissions Management (ICM) Applies to: Enhancement Pack 5 (Ehp5), EA-APPL, Incentives and Commissions Management (FS-ICM). Summary This article discusses

More information

Compliant, Business-Driven Identity Management using. SAP NetWeaver Identity Management and SBOP Access Control. February 2010

Compliant, Business-Driven Identity Management using. SAP NetWeaver Identity Management and SBOP Access Control. February 2010 Compliant, Business-Driven Identity Management using SAP NetWeaver Identity Management and SBOP Access Control February 2010 Disclaimer This presentation outlines our general product direction and should

More information

R/3 and J2EE Setup for Digital Signature on Form 16 in HR Systems

R/3 and J2EE Setup for Digital Signature on Form 16 in HR Systems R/3 and J2EE Setup for Digital Signature on Form 16 in HR Systems Agenda 1. R/3 - Setup 1.1. Transaction code STRUST 1.2. Transaction code SM59 2. J2EE - Setup 2.1. Key Storage 2.2. Security Provider 2.3.

More information

UI Framework Logo exchange without skin copy. SAP Enhancement Package 1 for SAP CRM 7.0

UI Framework Logo exchange without skin copy. SAP Enhancement Package 1 for SAP CRM 7.0 UI Framework Logo exchange without skin copy SAP Enhancement Package 1 for SAP CRM 7.0 1 Objectives At the end of this unit, you will be able to: Change the logo within CRM 7.0 WebClient UI Add a logo

More information

UI Framework Simple Search in CRM WebClient based on NetWeaver Enterprise Search (ABAP) SAP Enhancement Package 1 for SAP CRM 7.0

UI Framework Simple Search in CRM WebClient based on NetWeaver Enterprise Search (ABAP) SAP Enhancement Package 1 for SAP CRM 7.0 UI Framework Simple Search in CRM WebClient based on NetWeaver Enterprise Search (ABAP) SAP Enhancement Package 1 for SAP CRM 7.0 1 Objectives At the end of this unit, you will be able to: Use the new

More information

How to Add an Attribute to a Case, Record and a Document in NW Folder Management (ex-records Management)

How to Add an Attribute to a Case, Record and a Document in NW Folder Management (ex-records Management) How to Add an Attribute to a Case, Record and a Document in NW Folder Management (ex-records Management) Applies to: SAP Folder Management 2.4 & 3.0. For more information, visit the Enterprise Performance

More information

3 rd party Service Desk interface

3 rd party Service Desk interface SAP Solution Manager 3 rd party Service Desk interface Product Management SAP Solution Manager SAP AG Disclaimer This presentation is a preliminary version and not subject to your license agreement or

More information

Integration of SAP Netweaver User Management with LDAP

Integration of SAP Netweaver User Management with LDAP Integration of SAP Netweaver User Management with LDAP Applies to: SAP Netweaver 7.0/7.1 Microsoft Active Directory 2003 Summary The document describes the detailed steps of configuring the integration

More information

How to Create a Support Message in SAP Service Marketplace

How to Create a Support Message in SAP Service Marketplace How to Create a Support Message in SAP Service Marketplace Summary This document explains how to create a message (incident) on the SAP Service Marketplace. It is assumed that the customer has never logged

More information

Implementing Outlook Integration for SAP Business One

Implementing Outlook Integration for SAP Business One Welcome to your RKT Live Expert Session Implementing Outlook Integration for SAP Business One Valerie Arguin Solution Manager Please note that we are recording this session! Your Presenter Please insert

More information

Download and Install Crystal Reports for Eclipse via the Eclipse Software Update Manager

Download and Install Crystal Reports for Eclipse via the Eclipse Software Update Manager Download and Install Crystal Reports for Eclipse via the Eclipse Software Update Manager Applies to: Crystal Reports for Eclipse version 2 Summary This document provides a step-by-step guide on how to

More information

Sending Additional Files from SAP Netweaver PI to third Party System

Sending Additional Files from SAP Netweaver PI to third Party System Sending Additional Files from SAP Netweaver PI to third Party System Applies to: SAP Netweaver PI. Summary The document describes about a scenario where the requirement is to send multiple files from one

More information

SAP Portfolio and Project Management

SAP Portfolio and Project Management SAP Portfolio and Project New Features and Functions in 5.0 Suite Solution, SAP AG November 2010 Legal Disclaimer This presentation outlines our general product direction and should not be relied on in

More information

SAP Business One for iphone and ipad. Version 1.5.x January 2012

SAP Business One for iphone and ipad. Version 1.5.x January 2012 Version 1.5.x January 2012 Legal disclaimer The information in this presentation is confidential and proprietary to SAP and may not be disclosed without the permission of SAP. This presentation is not

More information

AC200. Basics of Customizing for Financial Accounting: General Ledger, Accounts Receivable, Accounts Payable COURSE OUTLINE

AC200. Basics of Customizing for Financial Accounting: General Ledger, Accounts Receivable, Accounts Payable COURSE OUTLINE AC200 Basics of Customizing for Financial Accounting: General Ledger, Accounts Receivable, Accounts Payable. COURSE OUTLINE Course Version: 15 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2015

More information

BW Workspaces Use Cases

BW Workspaces Use Cases BW Workspaces Use Cases Applies to SAP NetWeaver Business Warehouse 7.30 (BW7.30) SP05 and SAP NetWeaver Business Warehouse Accelerator 7.20 (BWA7.20)/HANA 1.0 running as a database for SAP NetWeaver BW

More information

Data Source Enhancement Using User Exit

Data Source Enhancement Using User Exit Data Source Enhancement Using User Exit Applies to: Any SAP system from which data needs to be pulled into SAP BI system. Summary This document describes how to enhance a data source in the source system

More information

Portfolio and Project Management 5.0: Excel Integration for Financial and Capacity Planning

Portfolio and Project Management 5.0: Excel Integration for Financial and Capacity Planning Portfolio and Project Management 5.0: Excel Integration for Financial and Capacity Planning Applies to: Portfolio and Project Management 5.0 Summary Financial and Capacity planning for item, initiative

More information

BW362. SAP BW powered by SAP HANA COURSE OUTLINE. Course Version: 10 Course Duration: 5 Day(s)

BW362. SAP BW powered by SAP HANA COURSE OUTLINE. Course Version: 10 Course Duration: 5 Day(s) BW362 SAP BW powered by SAP HANA. COURSE OUTLINE Course Version: 10 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2015 SAP SE. All rights reserved. No part of this publication may be reproduced

More information

Ronald Bueck SBO Product Definition

Ronald Bueck SBO Product Definition SAP Business One Welcomes you to the Weekly Partner Webinar Series Overview Microsoft Outlook Integration Add-on Ronald Bueck SBO Product Definition Please note that we are recording this session! Your

More information

Ten reasons small and midsize enterprises (SMEs) choose SAP to help transform their business. Copyright/Trademark

Ten reasons small and midsize enterprises (SMEs) choose SAP to help transform their business. Copyright/Trademark Top Ten reasons small and midsize enterprises (SMEs) choose SAP to help transform their business. Copyright/Trademark We are recognized as a leader by industry experts and trusted by SME customers. Our

More information

AC 10.0 Centralized Emergency Access

AC 10.0 Centralized Emergency Access AC 10.0 Centralized Emergency Access Customer Solution Adoption June 2011 Version 2.0 Purpose of this document This document is a detailed guide on the emergency access capability of Access Control 10.0.

More information

SAP NetWeaver MDM 7.1 Features at a Glance. November, 2011

SAP NetWeaver MDM 7.1 Features at a Glance. November, 2011 SAP NetWeaver MDM 7.1 Features at a Glance November, 2011 Legal disclaimer The information in this presentation is confidential and proprietary to SAP and may not be disclosed without the permission of

More information

UI Framework Task Based User Interface. SAP Enhancement Package 1 for SAP CRM 7.0

UI Framework Task Based User Interface. SAP Enhancement Package 1 for SAP CRM 7.0 UI Framework Task Based User Interface SAP Enhancement Package 1 for SAP CRM 7.0 1 Agenda 1. Overview 2. Task Based User Interface 3. Further Information SAP 2009 / Page 2 2 Objectives of the Presentation

More information

Integrate Third Party Collaboration Tools in the SAP NetWeaver Portal. SAP NetWeaver Product Management

Integrate Third Party Collaboration Tools in the SAP NetWeaver Portal. SAP NetWeaver Product Management Integrate Third Party Collaboration Tools in the SAP NetWeaver Portal SAP NetWeaver Product Management Overview Native Third-Party Services Code Samples Summary Integration of Third-Party Collaboration

More information

Fixed Asset in SAP Business One 9.0

Fixed Asset in SAP Business One 9.0 Fixed Asset in SAP Business One 9.0 Hilko Mueller, Solution Management,SAP AG May 2013 2013 SAP AG. All rights reserved. 1 Agenda Fixed Asset Overview Fixed Asset Setup Fixed Asset Application Product

More information

Application Lifecycle Management

Application Lifecycle Management Application Lifecycle Management Best Practice Process Document ALM Process: ITSM - Incident Management Application Lifecycle Management Process ITSM Incident Management Problem Description: How to create,

More information

Single Sign-On between SAP Portal and SuccessFactors

Single Sign-On between SAP Portal and SuccessFactors Single Sign-On between SAP Portal and SuccessFactors Dimitar Mihaylov 7/1/2012 Contents 1. Overview... 3 2. Trust between SAP Portal 7.3 and SuccessFactors... 5 2.1. Initial configuration in SAP Portal

More information

Duet Enterprise Add SAP ERP Reports and SAP BI Queries/Workbooks to Duet Enterprise Configuration

Duet Enterprise Add SAP ERP Reports and SAP BI Queries/Workbooks to Duet Enterprise Configuration Duet Enterprise Add SAP ERP Reports and SAP BI Queries/Workbooks to Duet Enterprise Configuration Applies to: Duet Enterprise 1.0, Feature Pack 1 for Duet Enterprise Summary This paper gives an overview

More information

Questions and Answers: SAP BusinessObjects BI 4.0 and the Semantic Layer for SAP Netweaver BW

Questions and Answers: SAP BusinessObjects BI 4.0 and the Semantic Layer for SAP Netweaver BW Questions and Answers: SAP BusinessObjects BI 4.0 and the Semantic Layer for SAP Netweaver BW Applies to: SAP Business Objects BI 4.0, with the latest tools that access SAP Netweaver BW, BEx queries using

More information

CREATING A PURCHASE ORDER STORE RECORD WEB SERVICE

CREATING A PURCHASE ORDER STORE RECORD WEB SERVICE SAP BEST PRACTICES AND SERVICE SOLUTION MANAGEMENT CREATING A PURCHASE ORDER STORE RECORD WEB SERVICE Exercise / Solution ITAI SADAN, SOLUTION OFFICE, SAP AMERICA SAP BEST PRACTICES AND SERVICE SOLUTION

More information

SAP NetWeaver BRM 7.3

SAP NetWeaver BRM 7.3 SAP NetWeaver BRM 7.3 New Features Overview Arti Gopalan Solution Specialist SAP NetWeaver BRM NetWeaver Orchestration SAP Labs India Agenda Technical Components of NW BRM Rules Composer Rules Manager

More information

ERP Quotation and Sales Order in CRM WebClient UI Detailed View. SAP Enhancement Package 1 for SAP CRM 7.0 CRM Sales - SFA

ERP Quotation and Sales Order in CRM WebClient UI Detailed View. SAP Enhancement Package 1 for SAP CRM 7.0 CRM Sales - SFA ERP Quotation and Sales Order in CRM WebClient UI Detailed View SAP Enhancement Package 1 for SAP CRM 7.0 CRM Sales - SFA ERP Quote, Order, Quantity Contract in CRM WebClient UI Recognizing that many SAP

More information

Run SAP like a Factory

Run SAP like a Factory Run SAP like a Factory Best Practice Process Document ALM Process: Technical Operations Service Level Reporting Process Health Service Level Reporting ALM Process Technical Operations Process Health Service

More information

Installation Guide Customized Installation of SQL Server 2008 for an SAP System with SQL4SAP.VBS

Installation Guide Customized Installation of SQL Server 2008 for an SAP System with SQL4SAP.VBS Installation Guide Customized Installation of SQL Server 2008 for an SAP System with SQL4SAP.VBS Target Audience Technology Consultants System Administrators PUBLIC Document version: 1.00 09/16/2008 Document

More information

Variable Exit in Sap BI 7.0 - How to Start

Variable Exit in Sap BI 7.0 - How to Start Variable Exit in Sap BI 7.0 - How to Start Applies to: This article is applicable to SAP BI 7.0. For more information, visit the Business Intelligence homepage. Summary This document provides an introduction

More information

GRC 10.0 Pre-Installation

GRC 10.0 Pre-Installation GRC 10.0 Pre-Installation Customer Solution Adoption April 4 th 2011 Version 1.1 Purpose of this document To give readers an initial understanding of the GRC 10.0 technical requirements, architecture and

More information

Consume an External Web Service in a Nutshell with good old ABAP

Consume an External Web Service in a Nutshell with good old ABAP Consume an External Web Service in a Nutshell with good old ABAP Applies to: SAP_BASIS, Release 701, SP Level 8 Summary Have you ever tried to consume an external web service out of ABAP? This document

More information

E-Recruiting Job Board Integration using XI

E-Recruiting Job Board Integration using XI E-Recruiting Job Board Integration using XI SAP AG 2005 SAP AG 1 Overview of Integration Scenario E-Recruiting System Configuration Delivered XI Components Basic XI-side Configuration Message Monitoring

More information

Performance Best Practices Guide for SAP NetWeaver Portal 7.3

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

More information

AC 10.0 Business Role Management

AC 10.0 Business Role Management AC 10.0 Business Role Management Customer Solution Adoption July 2011 Version 1.1 Purpose of this document This document allows implementation consultants and administrators to setup the required functionality

More information

How to Schedule Report Execution and Mailing

How to Schedule Report Execution and Mailing How To Guide SAP Business One Document Version: 1.0 2012-09-02 Applicable Releases: SAP Business One 8.81 PL10 and higher, SAP Business One 8.82 Typographic Conventions Type Style Example Description Words

More information

How to Set Up an Authorization for a Business Partner in Customer Relationship Management (CRM) Internet Sales: Sample Case

How to Set Up an Authorization for a Business Partner in Customer Relationship Management (CRM) Internet Sales: Sample Case How to Set Up an Authorization for a Business Partner in Customer Relationship Management (CRM) Internet Sales: Sample Case Applies to: SAP CRM 4.0 Internet Sales and beyond Summary You want to set up

More information

How To Configure MDM to Work with Oracle ASM-Based Products

How To Configure MDM to Work with Oracle ASM-Based Products SAP NetWeaver How-To Guide How To Configure MDM to Work with Oracle ASM-Based Products Applicable Releases: MDM 7.1 SP10 and later Version 1.0 June 2013 Copyright 2013 SAP AG. All rights reserved. No part

More information

SAP BusinessObjects BI4.0 Upgrade Workflows

SAP BusinessObjects BI4.0 Upgrade Workflows SAP BUSINESSOBJECTS BI4.0 Upgrade workflows Dhirendra Gehlot Business Analytics BI Competency Center Aug 2011 SAP BusinessObjects BI4.0 Upgrade Workflows 1.Upgrade Manager Tool 2.Upgrade Overview 3.Platform

More information

Mass Maintenance of Procurement Data in SAP

Mass Maintenance of Procurement Data in SAP Mass Maintenance of Procurement Data in SAP Applies to: SAP ECC 5.0 & SAP ECC 6.0. For more information, visit the Enterprise Resource Planning homepage. Summary: This document helps the P2P consultants

More information

Configuring Distribution List in Compliant User Provisioning

Configuring Distribution List in Compliant User Provisioning Configuring Distribution List in Compliant User Provisioning Applies To: GRC Access Control Suite for 5.3 Summary: Configuration of Distribution List in Compliant User Provisioning will allow a group of

More information

Microsoft Excel 2007 & SAP Business Explorer Compatibility

Microsoft Excel 2007 & SAP Business Explorer Compatibility Microsoft Excel 2007 & SAP Business Explorer Compatibility Update on Latest Developments Marc Bernard SAP Intelligence Platform and NetWeaver RIG May 2010 Disclaimer The information in this presentation

More information

Questions and Answers: SAP BusinessObjects BI 4.0 and the New Semantic Layer for OLAP

Questions and Answers: SAP BusinessObjects BI 4.0 and the New Semantic Layer for OLAP Questions and Answers: SAP BusinessObjects BI 4.0 and the New Semantic Layer for OLAP Applies to: SAP BusinessObjects BI 4.0, the latest version of the Universe Designer called universe design tool and

More information

Configuring Single Sign-on for SAP HANA

Configuring Single Sign-on for SAP HANA Configuring Single Sign-on for SAP HANA Applies to: SAP BusinessObjects Business Intelligence platform 4.0 Feature Pack 3. For more information, visit the Business Objects homepage. Summary This document

More information

SAP NetWeaver MDM 5.5 SP3 SAP Portal iviews Installation & Configuration. Ron Hendrickx SAP NetWeaver RIG Americas Foundation Team

SAP NetWeaver MDM 5.5 SP3 SAP Portal iviews Installation & Configuration. Ron Hendrickx SAP NetWeaver RIG Americas Foundation Team SAP NetWeaver MDM 5.5 SP3 SAP Portal iviews Installation & Configuration Ron Hendrickx SAP NetWeaver RIG Americas Foundation Team Prerequisites Required: Basic MDM knowledge Basic EP6 content management

More information

AC 10.0 Customizing Workflows for Access Management

AC 10.0 Customizing Workflows for Access Management AC 10.0 Customizing Workflows for Access Management Customer Solution Adoption June 2011 Version 2.0 Purpose of this document This document allows implementation consultants and administrators to setup

More information

How To Use the BPC Mass User Management Tool in BPC 10.0 NW

How To Use the BPC Mass User Management Tool in BPC 10.0 NW How To Use the BPC Mass User Management Tool in BPC 10.0 NW Applies to: SAP BusinessObjects Planning & Consolidation 10.0, version for SAP NetWeaver. For more information, visit the Enterprise Performance

More information

Secure MobiLink Synchronization using Microsoft IIS and the MobiLink Redirector

Secure MobiLink Synchronization using Microsoft IIS and the MobiLink Redirector Secure MobiLink Synchronization using Microsoft IIS and the MobiLink Redirector A whitepaper from ianywhere Author: Joshua Savill, Product Manager This whitepaper was written in the context of SQL Anywhere

More information

Sales Planning Detailed View. SAP Enhancement Package 1 for SAP CRM 7.0 CRM Sales - SFA

Sales Planning Detailed View. SAP Enhancement Package 1 for SAP CRM 7.0 CRM Sales - SFA Sales Planning Detailed View SAP Enhancement Package 1 for SAP CRM 7.0 CRM Sales - SFA Table of Contents 1. Overview of Sales Planning 2. Key Features of Sales Planning 3. Architecture 4. Further Information

More information

SAP Sustainability Solutions: Achieving Customer Strategies

SAP Sustainability Solutions: Achieving Customer Strategies SAP Sustainability Solutions: Achieving Customer Strategies BALAMURUGAN KALIA Vice President, Strategic Business Development SAP SEE YOUR WAY CLEAR Strategies for Success in the New Reality Pop Quiz? SAP

More information

Supporting SAP POS Best Practices Setting Log File Sizes and Retention

Supporting SAP POS Best Practices Setting Log File Sizes and Retention Supporting SAP POS Best Practices Setting Log File Sizes and Retention Summary: This paper will serve as a primer in order to familiarize users of SAP POS with the log configuration and location of SAP

More information

Business Process Change Analyzer in SAP Solution Manager 7.1

Business Process Change Analyzer in SAP Solution Manager 7.1 Business Process Change Analyzer in SAP Solution Manager 7.1 Applies to: SAP Solution Manager 7.1 SP5 Summary Business Process change Analyzer is an application within SAP Solution Manager which helps

More information

Analyzing Sales Data for Choosing Forecast Strategies

Analyzing Sales Data for Choosing Forecast Strategies Analyzing Sales Data for Choosing Forecast Strategies Applies to The article applies to the Demand Planner in SAP APO. Works for version 4.7 and upwards. Summary Choosing the right forecasting strategy

More information

LO Extraction Part 2 Database Update Logic

LO Extraction Part 2 Database Update Logic LO Extraction Part 2 Database Update Logic Applies to: SAP BI, NW2004s Business Intelligence, ABAP, BI For more information, visit the EDW homepage. Summary This article explains about LO extraction logic,

More information

September 10-13, 2012 Orlando, Florida. Step-by-step guidelines for building an information governance strategy

September 10-13, 2012 Orlando, Florida. Step-by-step guidelines for building an information governance strategy September 10-13, 2012 Orlando, Florida Step-by-step guidelines for building an information governance strategy 1 Agenda Information Governance strategies How to get started How to grow the information

More information