Datenmanagement für SAP Applikationen. Rudolf Munz SAP AG

Size: px
Start display at page:

Download "Datenmanagement für SAP Applikationen. Rudolf Munz SAP AG"

Transcription

1 Datenmanagement für SAP Applikationen Rudolf Munz SAP AG

2 Agenda SAP Architecture Table Buffer Content Server livecache BI Accelerator Summary Special Data Containers Future DBMS Requirements Summary SAP AG 2007, Datenmanagement für SAP Applikationen / Rudolf Munz / 2

3 Agenda SAP Architecture Table Buffer Content Server livecache BI Accelerator Summary Special Data Containers Future DBMS Requirements Summary SAP AG 2007, Datenmanagement für SAP Applikationen / Rudolf Munz / 3

4 1992: SAP Introduces the 3-tier Architecture Frontend WAN-enabled, few roundtrips, data volume < 10 KB Application Server Database Server LAN required, many roundtrips, data volume about 20 KB SAP AG 2007, Datenmanagement für SAP Applikationen / Rudolf Munz / 4

5 SAP Application Server Scalability Frontends Application Server... Scalability... Database Server SAP AG 2007, Datenmanagement für SAP Applikationen / Rudolf Munz / 5

6 SAP Philosophies and Successes First in real time applications First in application integration via single shared database First in Unix and Windows First in SQL DBMS First in Graphical User Interfaces for commercial applications First in Virtual Machine concepts SAP AG 2007, Datenmanagement für SAP Applikationen / Rudolf Munz / 6

7 Size of SAP ERP Data Model (Part of Business Suite 05) tables columns views indexes rows (initial size) 57 GB disk footprint (initial size) 270 millions lines of code SAP AG 2007, Datenmanagement für SAP Applikationen / Rudolf Munz / 7

8 Published Results for SD Benchmarks SD Benchmark (three-tier): Highest number of users 200, , , , , ,000 80,000 Number of SD Benchmark Users 168, ,000 60,000 47,528 40,000 20, ,400 14,400 6,030 19,360 26,000 SAP AG 2007, Datenmanagement für SAP Applikationen / Rudolf Munz / 8

9 Typical OLTP CPU Load Distribution Rel. CPU-Usage / Dialog Step Platform & Release dependent 68% 82% 79% 81% 10% 84% 8% 9% 7% 7% 22% 8% 9% 14% 11% FI SD PP MM ATO SAP Standard Benchmarks + = Application Server = Database Server SAP AG 2007, Datenmanagement für SAP Applikationen / Rudolf Munz / 9

10 Agenda SAP Architecture Table Buffer Content Server livecache BI Accelerator Summary Special Data Containers Future DBMS Requirements Summary SAP AG 2007, Datenmanagement für SAP Applikationen / Rudolf Munz / 10

11 Table Buffer Design Rationale Optimize read performance of stable or nearly stable data Granules are tables or primary key ranges Only primary key or key prefix accesses supported Stored in shared memory of application server Replicated in all application servers No transactional consistency for data in table buffer Invalidation and refresh of buffered tables and key ranges Async propagation of changes to other application servers SAP AG 2007, Datenmanagement für SAP Applikationen / Rudolf Munz / 11

12 Table Buffer in Application Server Application Server Database Server Work Process DB Interface Key Table Buffer DBMS SELECT * FROM... Open SQL SQL Data SQL Data Native SQL DB Open SQL Catalog SQL Data SAP AG 2007, Datenmanagement für SAP Applikationen / Rudolf Munz / 12

13 Performance of Table Buffer vs. DBMS (PK Access) Local DBMS ABAP VM Table Buffer µs SAP AG 2007, Datenmanagement für SAP Applikationen / Rudolf Munz / 13

14 Typical OLTP Traffic Distribution Application Server Database Server Work Process DB Interface Key Table Buffer DBMS SELECT * FROM... 80% SQL Data 20% Native SQL 98% SQL Data Cache 2% Disks 70% reads 80% primary key 20% medium complex 30% writes SAP AG 2007, Datenmanagement für SAP Applikationen / Rudolf Munz / 14

15 Agenda SAP Architecture Table Buffer Content Server livecache BI Accelerator Summary Special Data Containers Future DBMS Requirements Summary SAP AG 2007, Datenmanagement für SAP Applikationen / Rudolf Munz / 15

16 Content Server Design Rationale Documents are attachments to SAP Business Objects Separation of document content from OLTP data Read and write traffic of documents offloaded from OLTP database Insert/update/delete of documents not recorded in OLTP database log Improved cache utilization in OLTP database server Reduced size of OLTP database Direct content delivery to SAP Frontend (Viewer) Application server sessions use two database sessions, dual session support in database abstraction layer OLTP DBMS Content Server (based on MaxDB) SAP AG 2007, Datenmanagement für SAP Applikationen / Rudolf Munz / 16

17 Content Server Architecture Frontends Ap plication Server Content Server Database Server SAP AG 2007, Datenmanagement für SAP Applikationen / Rudolf Munz / 17

18 Content Server Consistency Documents are never updated, Update = delete + insert References to documents (DocID) stored in OLTP data Two-phase commit is avoided by write discipline 1. Insert new document into Content Server and commit 2. Insert or update Business Object in OLTP DBMS and commit If step 2 succeeds, we are done Normal case If step 1 or 2 fail, garbage in the Content Server may be left Exception Steps can be repeated SAP AG 2007, Datenmanagement für SAP Applikationen / Rudolf Munz / 18

19 Agenda SAP Architecture Table Buffer Content Server livecache BI Accelerator Summary Special Data Containers Future DBMS Requirements Summary SAP AG 2007, Datenmanagement für SAP Applikationen / Rudolf Munz / 19

20 livecache Features Main memory-based object management system (OMS) Persistent and shared C++ objects Favors modeling of tree- or network-like complex object structures Mainly used for SAP s supply chain management (planning & optimization) Data-intensive application logic is executed as Stored Procedures Application coding and data management in same address space Navigations on shared data are nearly as fast as on private data Navigations are 50 to 100 times faster compared to SQL Reader isolation with respect to concurrent writers (multi-version read) Writer isolation with respect to concurrent writers (versioning) SAP AG 2007, Datenmanagement für SAP Applikationen / Rudolf Munz / 20

21 livecache = MaxDB + MoreDB Applications livecache Applications MaxDB (SQL) MoreDB (OMS) OMS SAP AG 2007, Datenmanagement für SAP Applikationen / Rudolf Munz / 21

22 livecache Architecture Application Server ABAP Applications SQL Packets livecache Applications Stored Procedures in C++ livecache Server SQL OMS Object Management System Record & Page Manager SAP AG 2007, Datenmanagement für SAP Applikationen / Rudolf Munz / 22

23 Shared and Private Data in livecache Session A Session B Session C Session D Transient Transient Transient Transient C++ C++ C++ C++ Objects Object Cache Objects Object Cache Objects Object Cache Objects Object Cache Private Data (Heap) Data Cache Main-memory Database (Persistent C++ Objects) Shared Data SAP AG 2007, Datenmanagement für SAP Applikationen / Rudolf Munz / 23

24 Navigational Performance (in µs) SQL Key SQL Key SP OMS Key OMS OID Object Cache C++ Pointer SAP AG 2007, Datenmanagement für SAP Applikationen / Rudolf Munz / 24

25 livecache Statistics (Customer Scenario) Database size (in GB) 110 Transactions / sec 33 livecache roundtrips / sec Object reads / sec Object writes / sec Log in KB / sec 660 Log in pages /sec 82 Average load in a 24x7 environment Peak load is factor 2 higher SAP AG 2007, Datenmanagement für SAP Applikationen / Rudolf Munz / 25

26 Agenda SAP Architecture Table Buffer Content Server livecache BI Accelerator Summary Special Data Containers Future DBMS Requirements Summary SAP AG 2007, Datenmanagement für SAP Applikationen / Rudolf Munz / 26

27 Business Intelligence Waves Wave 1: Reporting is part of the OLTP system (past) Unpredictable query load Reporting on flat OLTP tables No support of multi-dimensional data, no OLAP, no history Wave 2: Dedicated Data Warehouse (now) Separation of OLTP systems and Data Warehouse (DWH) Periodic extracts of OLTP data to DWH (ETL) OLAP on multi-dimensional data, history Wave 3: Realtime Analytics (future) Separation of OLTP and OLAP systems Transactional consistency between OLTP and OLAP data Driver: SOA and BI functionality as part of transactional applications SAP AG 2007, Datenmanagement für SAP Applikationen / Rudolf Munz / 27

28 BI Accelerator Query Performance Booster BI Tools or Applications Storage on disk SAP NetWeaver BI Query processing in main memory DBMS BI Accelerator SAP AG 2007, Datenmanagement für SAP Applikationen / Rudolf Munz / 28

29 Column-Wise Storage OLTP DBMS store tables row-wise BI Accelerator stores tables column-wise Row1 Row2 Att 1 Col1 Col2 Att 2 Att 2... SAP AG 2007, Datenmanagement für SAP Applikationen / Rudolf Munz / 29

30 Data Compression Column-wise Storage Dictionary Sorted array of all used values Values stored with front compression Column values Array of dictionary indexes Minimal number of bits used to represent values Column Dictionary ValueID Value 1 IBM 2 Microsoft Compression rate Factor 3-6 RowID ValueID 1 17 SAP 17 SAP Press 19 SAP SI Column Values SAP AG 2007, Datenmanagement für SAP Applikationen / Rudolf Munz / 30

31 Partitioning of Columns into Main Memory of Blades Columns Part 1 Part 2... Fact Table Fact Table Fact Table Part 1 Part 2... Part N Part N Column Part 1 Columns Part 2 Columns Part... Columns Part N Blade Server Blade Server Blade Server Blade Server Column Storage SAP AG 2007, Datenmanagement für SAP Applikationen / Rudolf Munz / 31

32 Incremental Data Loads Queries Data Loads BI Accelerator Engine Delta Part Supports fast loads Queries run against both parts Static Part Delta Part Holds data until they are merged Fast merge Merge of delta part triggered by Size Schedule Manually SAP AG 2007, Datenmanagement für SAP Applikationen / Rudolf Munz / 32

33 Query Execution Times (Sample Queries) Query DBMS (sec) BI Accelerator (sec) Improvement (factor) Rows after filtering Rows after aggregation Query Query Query Query Query Query Query Query Query Query Query Query Query Query SAP AG 2007, Datenmanagement für SAP Applikationen / Rudolf Munz / 33

34 Agenda SAP Architecture Table Buffer Content Server livecache BI Accelerator Summary Special Data Containers Future DBMS Requirements Summary SAP AG 2007, Datenmanagement für SAP Applikationen / Rudolf Munz / 34

35 Summary: Special Data Containers OLTP data Transactional SQL engine Row-wise storage Additional caching of stable data in main memory of application server OLAP data SQL engine without transactions and logging Column-wise storage Main memory database MPP approach (data partitioning into blades) Objects (C++, Java, ABAP) Transactional Object Management System Main memory database Data-intensive application logic executed as Stored Procedures Alternative to OLTP data management based on SQL Documents SQL DBMS Document repository Documents attached to Business Objects (DocID in OLTP data) Separation of document and OLTP workload SAP AG 2007, Datenmanagement für SAP Applikationen / Rudolf Munz / 35

36 Scenario: RFID-Tagged Products in a Supply Chain Events Products with an RFID tag are moved in a global supply chain All movements are detected as an RFID event by RFID sensors Customer specific RFID tag and event data (e. g. XML) Extremely high volume of RFIDs and associated RFID events Customer scenario 1KB / event 120 TB / year = 337 GB / day = 14 GB / hour = 3.9 MB / sec (best case, 10x peaks) Challenging write workload Challenging read workload with search capabilities on all attributes Distributed event capturing, storing, and retrieval Infrastructure to capture, store, and retrieve (RFID) events? SAP AG 2007, Datenmanagement für SAP Applikationen / Rudolf Munz / 36

37 Agenda SAP Architecture Table Buffer Content Server livecache BI Accelerator Summary Special Data Containers Future DBMS Requirements Summary SAP AG 2007, Datenmanagement für SAP Applikationen / Rudolf Munz / 37

38 Invisible DBMS Many DBMS instances in embedded systems Many DBMS instances in an enterprise IT landscape Central administration Central user and role management We will run short of DBAs DBA-free operation required Self-management = self-tuning + self-administration Implicit reorganization Implicit Update Statistics Implicit index tuning - Determine unused indexes - Propose / create useful indexes Workload analysis and adaptation (self-tuning) Online everything for automatic configuration changes Adapt to new system quotas SAP AG 2007, Datenmanagement für SAP Applikationen / Rudolf Munz / 38

39 Continuous Availability High Availability configurations are in place Protection against unplanned downtimes (hardware, system software, desaster) Hot-standby with failover from master to slave (OS cluster) Customers want business continuity 24 x 365 instead of 24 x 7 Applications facing customers or partners Think of Google, Ebay, Amazon,... in the consumer space Continuous Availability addresses planned downtime Configuration changes ( online everything ) Patches for the current release (rolling patch services in a cluster) Upgrades to the next application release (to be solved) Migration to new application coding and an extended persistency layer Old and new persistency layer run in parallel (during upgrade phase) Changes get propagated from old to new persistency layer Application server and DBMS involved SAP AG 2007, Datenmanagement für SAP Applikationen / Rudolf Munz / 39

40 Unlimited Scalability Nearly unlimited main memory Active part of an OLTP database can be kept in main memory Effects of all open transactions can be kept in main memory Optimization potential: dedicated main memory data structures vs. serializable data structures for logging and checkpointing Nearly unlimited CPU power (multi-cores) Eliminate reader/writer synchronization (= multi-version concurrency control) Reduce low-level writer/writer synchronization Context switches are expensive and should be avoided Fast synchronization techniques (compare and swap) Differentiate between safe and unsafe phases of changes Differentiate between extensions and structural changes Look for collision-free algorithms Cache misses determine CPU performance (level 2 cache vs. main memory) Locality of coding (profile-based optimization) Locality of main memory data (e. g. for scanning) SAP AG 2007, Datenmanagement für SAP Applikationen / Rudolf Munz / 40

41 Tenant-aware DBMS New software delivery model: Software-as-a-Service Hosted applications for many (small) tenants Interesting for small and medium enterprises with little IT skills All tenants run the same application, data are tenant-specific Data isolation between tenants is a must DBMS instance per tenant is too expensive (admin and system costs) Solution 1: Tenant-aware data model Requires discipline in application development and additional QA efforts No programming access to the persistency layer by tenants Solution 2: Tenant-aware DBMS Implicit tenant-enabling by the DBMS: DBMS virtualization Resource sharing for caches, data volumes, log Each tenants gets an own (virtual) DBMS instance No changes in the application coding Allows for tenant-specific extensions SAP AG 2007, Datenmanagement für SAP Applikationen / Rudolf Munz / 41

42 Agenda SAP Architecture Table Buffer Content Server livecache BI Accelerator Summary Special Data Containers Future DBMS Requirements Summary SAP AG 2007, Datenmanagement für SAP Applikationen / Rudolf Munz / 42

43 Summary Table Buffer Content Server livecache BI Accelerator? Specialized data containers for Stable OLTP data Documents Objects OLAP data Events Invisible DBMS Continuous Availability Unlimited Scalability Tenant-aware DBMS New operational requirements Eliminate DBMS administration Always up Exploit hardware trends Virtualization at the DBMS level SAP AG 2007, Datenmanagement für SAP Applikationen / Rudolf Munz / 43

44 Copyright 2007 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, OS/2, Parallel Sysplex, MVS/ESA, AIX, S/390, AS/400, OS/390, OS/400, iseries, pseries, xseries, zseries, System i, System i5, System p, System p5, System x, System z, System z9, z/os, AFP, Intelligent Miner, WebSphere, Netfinity, Tivoli, Informix, i5/os, POWER, POWER5, POWER5+, OpenPower and PowerPC are trademarks or registered trademarks of IBM Corporation. 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. MaxDB is a trademark of MySQL AB, Sweden. SAP, R/3, mysap, mysap.com, xapps, xapp, SAP NetWeaver, 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 in several other countries all over the world. 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 2007, Datenmanagement für SAP Applikationen / Rudolf Munz / 44

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

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

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

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

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

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

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

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

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

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

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

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

SAP GRC Access Control: Background jobs for risk analysis and remediation (formerly Virsa Compliance Calibrator)

SAP GRC Access Control: Background jobs for risk analysis and remediation (formerly Virsa Compliance Calibrator) SAP GRC Access Control: Background jobs for risk analysis and remediation (formerly Virsa Compliance Calibrator) Applies to: SAP GRC Access Control, version 5.2 Summary This document discusses the background

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

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

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

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

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

Monitoring and Management of Landscapes with SAP NetWeaver Administrator. Dieter Krieger, SAP AG

Monitoring and Management of Landscapes with SAP NetWeaver Administrator. Dieter Krieger, SAP AG Monitoring and Management of Landscapes with SAP NetWeaver Administrator Dieter Krieger, SAP AG Overview of SAP NetWeaver Administrator Setting up SAP NetWeaver Administrator Using SAP NetWeaver Administrator

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

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

Methodology to Implement SAP Process Integration

Methodology to Implement SAP Process Integration Methodology to Implement SAP Process Integration Applies to: SAP NetWeaver, SAP Exchange Infrastructure, SAP Process Integration Summary When starting a SAP PI project from scratch, it is very important

More information

How To Balance In Sap Bw

How To Balance In Sap Bw How-to Guide SAP NetWeaver 04 How To Load Balancing For Data Load Processing and Warehouse Management In BW Version 1.10 January 2005 Applicable Releases: SAP NetWeaver 04 For source system requirements

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

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

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

More information

SAP Sales and Operations Planning Software Product (xsop)

SAP Sales and Operations Planning Software Product (xsop) SAP Sales and Operations Planning Software Product (xsop) Ray Adams IBU Chemicals March 20 th, 2007 S&OP Overview Functions in xsop Demonstration Wrap-up Why is Sales & Operations Planning needed? Constrained

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

DBA Cockpit for Oracle

DBA Cockpit for Oracle DBA Cockpit for Oracle Ralf Hackmann, Matthias Lienert Database Platforms Group SAP AG Contents Introduction Pages 3-8 Selected New Performance Monitors Pages 9-17 Space Monitoring Pages 18-20 New DBA

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

Posting Messages into XI

Posting Messages into XI Posting Messages into XI Applies to: SAP NetWeaver Exchange Infrastructure Summary This article demonstrates how easy it is to post XML/SOAP messages into SAP NetWeaver Exchange Infrastructure (XI) using

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

Extract Archived Data from SAP ERP

Extract Archived Data from SAP ERP How-to Guide SAP NetWeaver 7.0 How To Extract Archived Data from SAP ERP Version 1.00 May 2006 Applicable Releases: SAP NetWeaver 7.0 (BI capability) Copyright 2008 SAP AG. All rights reserved. No part

More information

Backup & Restore with SAP BPC (MS SQL 2005)

Backup & Restore with SAP BPC (MS SQL 2005) How-to Guide SAP CPM How To Backup & Restore with SAP BPC (MS SQL 2005) Version 1.0 September 2007 Applicable Releases: SAP BPC 5.1 Copyright 2007 SAP AG. All rights reserved. No part of this publication

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

How to configure BusinessObjects Enterprise with Citrix Presentation Server 4.0

How to configure BusinessObjects Enterprise with Citrix Presentation Server 4.0 How to configure BusinessObjects Enterprise with Citrix Presentation Server 4.0 Applies to: BusinessObjects Enterprise XI 3.0 Summary The objective of this document is to provide steps to install and configure

More information

Problems with your Data Model in SAP NetWeaver MDM Do s and Don ts

Problems with your Data Model in SAP NetWeaver MDM Do s and Don ts How-to Guide SAP NetWeaver 7.0 (2004s) How to Avoid Problems with your Data Model in SAP NetWeaver MDM Do s and Don ts Version 1.00 May 2007 Applicable Releases: SAP NetWeaver 2004 SAP NetWeaver 7.0 (2004s)

More information

mysap ERP Talent Management Dr. Christian Acosta-Flamma

mysap ERP Talent Management Dr. Christian Acosta-Flamma mysap ERP Talent Management Dr. Christian Acosta-Flamma The Talent Management Imperative SAP Talent Management Strategy Why SAP for Talent Management Today s Business Environment Today s business challenges

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

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

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

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

prioritize XI messages on integration server

prioritize XI messages on integration server How-to Guide SAP NetWeaver 2004s How To prioritize XI messages on integration server Version 1.00 May 2006 Applicable Releases: SAP NetWeaver 2004s Process Integration Enabling Application-to-Application

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

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

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

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

Utilities for downloading and uploading OO ABAP classes in XML format

Utilities for downloading and uploading OO ABAP classes in XML format SDN Contribution Utilities for downloading and uploading OO ABAP classes in XML format Applies to: SAP WebAS 6.20 and above. Summary This article will present two utility reports for downloading and uploading

More information

Sales Rush Sales Order Processing S01- Lean Baseline Package. SAP Lean Baseline Package Version: V1.500 Country: UK Language: EN Date: February 2006

Sales Rush Sales Order Processing S01- Lean Baseline Package. SAP Lean Baseline Package Version: V1.500 Country: UK Language: EN Date: February 2006 SAP Lean Baseline Package Version: V1.500 Country: UK Language: EN Date: February 2006 Sales Rush Sales Order Processing S01- Lean Baseline Package SAP AG Neurottstr. 16 69190 Walldorf Germany 1.1.1 Copyright

More information

How to Configure and Trouble Shoot Email Notification for Process Control 2.5

How to Configure and Trouble Shoot Email Notification for Process Control 2.5 SAP SOLUTIONS FOR GOVERNANCE, RISK, AND COMPLIANCE How-To Guide How to Configure and Trouble Shoot Email Notification for Process Control 2.5 SAP GRC Regional Implementation Group Applicable Releases:

More information

Global Transport Label - General Motors -

Global Transport Label - General Motors - SAP Customer Success Story Automotive Consulting Solutions Print form for the Sales and Distribution process Global Transport Label - General Motors - Agenda GETRAG Corporate Group Description of the Function

More information

Integration of SAP central user administration with Microsoft Active Directory

Integration of SAP central user administration with Microsoft Active Directory Collaboration Technology Support Center Microsoft - Collaboration Brief June 2005 Integration of SAP central user administration with Microsoft Active Directory Chris Kohlsdorf, Senior System Architect

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

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

DATA ARCHIVING IN SAP R/3 ENTERPRISE. Georg Fischer PM Data Archiving SAP AG

DATA ARCHIVING IN SAP R/3 ENTERPRISE. Georg Fischer PM Data Archiving SAP AG DATA ARCHIVING IN SAP R/3 ENTERPRISE Georg Fischer PM Data Archiving SAP AG Agenda Introduction Data Archiving Basics Access to Archived Data Data Archiving Projects Information and Contacts SAP AG 2003,

More information

Roster Configuration (Payroll) in SAP ECC 6.0 Tips & Tricks

Roster Configuration (Payroll) in SAP ECC 6.0 Tips & Tricks Roster Configuration (Payroll) in SAP ECC 6.0 Tips & Tricks Applies to: SAP ECC 6.0 onwards. Summary Roster is an application which shows persons of reserved category against specific roster points. Roster

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

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

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

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

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

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

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

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

SAP CCMS Monitors Microsoft Windows Eventlog

SAP CCMS Monitors Microsoft Windows Eventlog MSCTSC Collaboration Brief November 2004 SAP CCMS Monitors Microsoft Windows Eventlog Christian Klink Member of CTSC Focus Group SAP Technology Consultant SAP Technology Consulting II SAP Deutschland AG

More information

SAP NetWeaver 7.0 Migration of Business Explorer and BI Integrated Planning. Tobias Kaufmann SAP NetWeaver RIG Business Intelligence

SAP NetWeaver 7.0 Migration of Business Explorer and BI Integrated Planning. Tobias Kaufmann SAP NetWeaver RIG Business Intelligence SAP NetWeaver 7.0 Migration of Business Explorer and BI Integrated Planning Tobias Kaufmann SAP NetWeaver RIG Business Intelligence Version 2.4 January, 25th 2008 Frontend-related IT Scenarios System Landscape

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

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

BC407 Reporting: QuickViewer, InfoSet Query and SAP Query

BC407 Reporting: QuickViewer, InfoSet Query and SAP Query Reporting: QuickViewer, InfoSet Query and SAP Query SAP NetWeaver Course Version: 93 Course Duration: 2 Day(s) Publication Date: 12-04-2012 Publication Time: 1050 Copyright Copyright SAP AG. All rights

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

Enabling Full-Text Search for Business Objects in mysap ERP

Enabling Full-Text Search for Business Objects in mysap ERP SDN Contribution Enabling Full-Text Search for Business Objects in mysap ERP Applies to: SAP NetWeaver 2004s, mysap ERP 2005 Summary The SAP NetWeaver Search Engine Service (SES) for business objects is

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

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

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

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

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

How to Create Web Dynpro-Based iviews. Based on SAP NetWeaver 04 Stack 09. Jochen Guertler

How to Create Web Dynpro-Based iviews. Based on SAP NetWeaver 04 Stack 09. Jochen Guertler How to Create Web Dynpro-Based iviews Based on SAP NetWeaver 04 Stack 09 Jochen Guertler Copyright Copyright 2004 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted

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

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

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

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

BW370 BI Integrated Planning

BW370 BI Integrated Planning BI Integrated Planning SAP NetWeaver Course Version: 98 Course Duration: 5 Day(s) Publication Date: 2015 Publication Time: Copyright Copyright SAP SE. All rights reserved. No part of this publication may

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

How To... Call BEx Web Applications from SAP BusinessObjects Dashboards (Xcelsius) and vice versa

How To... Call BEx Web Applications from SAP BusinessObjects Dashboards (Xcelsius) and vice versa SAP NetWeaver SAP How-To NetWeaver Guide How-To Guide How To... Call BEx Web Applications from SAP BusinessObjects Dashboards (Xcelsius) and vice versa Applicable Releases: SAP NetWeaver BW 7.01 SP6 and

More information

How To... Integrate Custom Formulas into the Formula Builder

How To... Integrate Custom Formulas into the Formula Builder SAP NetWeaver How-To Guide How To... Integrate Custom Formulas into the Formula Builder Applicable Releases: SAP NetWeaver 2004 SAP NetWeaver 7.0 IT Practice: Business Information Management IT Scenario:

More information

Using SAP Logon Tickets for Single Sign on to Microsoft based web applications

Using SAP Logon Tickets for Single Sign on to Microsoft based web applications Collaboration Technology Support Center - Microsoft - Collaboration Brief March 2005 Using SAP Logon Tickets for Single Sign on to Microsoft based web applications André Fischer, Project Manager CTSC,

More information

Ten reasons to step up to the cloud with SAP Business ByDesign. Copyright/Trademark

Ten reasons to step up to the cloud with SAP Business ByDesign. Copyright/Trademark Top Ten reasons to step up to the cloud with SAP Business ByDesign Copyright/Trademark Tap the power and convenience of cloud computing. Start small and adapt quickly. Rely on software from a leading provider

More information

Integration of Universal Worklist into Microsoft Office SharePoint

Integration of Universal Worklist into Microsoft Office SharePoint Integration of Universal Worklist into Microsoft Office SharePoint Applies to: SAP NetWeaver Portal 7.01 SP3 Microsoft Office SharePoint 2007 For more information, visit the Portal and Collaboration homepage.

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

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

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

BC450 ABAP Performance: Analysis and Optimization

BC450 ABAP Performance: Analysis and Optimization ABAP Performance: Analysis and Optimization SAP NetWeaver Application Server - ABAP Course Version: 93 Course Duration: 5 Day(s) Publication Date: 18-10-2012 Publication Time: 1025 Copyright Copyright

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

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

Collaboration Technology Support Center - Microsoft - Collaboration Brief

Collaboration Technology Support Center - Microsoft - Collaboration Brief Collaboration Technology Support Center - Microsoft - Collaboration Brief February 2007 Single Sign-On to a Microsoft Exchange Cluster Summary Users of the SAP NetWeaver Portal can take advantage of Single

More information

Siteco Relies on SDN for its SAP CRM 5.0 Upgrade

Siteco Relies on SDN for its SAP CRM 5.0 Upgrade Siteco Relies on SDN for its SAP CRM 5.0 Upgrade Applies to: Enterprise Portal Summary Based in Traunreut, Germany, Siteco is one of the leading suppliers and manufacturers of technical indoor and outdoor

More information

SAP SYSTEM MEASUREMENT GUIDE

SAP SYSTEM MEASUREMENT GUIDE Global License Auditing Services SAP SYSTEM MEASUREMENT GUIDE MEASUREMENT PROGRAM AND LICENSE ADMINISTRATION WORKBENCH Version 7.0 Updated Edition, August 2015 Copyright 2015 SAP SE. All rights reserved.

More information

SAP Cloud Strategy - Timeless Software. Frank Stienhans on behalf of Kaj van de Loo SAP

SAP Cloud Strategy - Timeless Software. Frank Stienhans on behalf of Kaj van de Loo SAP SAP Strategy - Timeless Software Frank Stienhans on behalf of Kaj van de Loo SAP Decades-Long Relationships With the World s Largest Enterprises Trading Industries Consumer Industries Financial Process

More information