BRSPACE Online Reorganizations

Size: px
Start display at page:

Download "BRSPACE Online Reorganizations"

Transcription

1 BRSPACE Online Reorganizations Top Ten Pitfalls and Problems Martin Frauendorfer, SAP Active Global Support November 2009

2 Agenda 1. Overview 2. Pitfalls and Problems SAP 2009 / Page 2

3 Overview (1) Reorganizations in general A reorganization in a database context is the recreation or cleanup of one or several segments. Several types of reorganization exist: Index reorganization (e.g. via REBUILD or COALESCE), mainly used to reduce index fragmentation Table reorganization with tools like: BRSPACE (online, offline, export / import) Oracle tools (DBMS_REDEFINITION, MOVE, EXP / IMP, EXPDP / IMPDP, ) SAP functionality (ICNV, SE14, ) Tablespace reorganization (reorganization of all tables in the tablespace and recreation of the tablespace) In this presentation we concentrate on the BRSPACE online reorganization of tables (which also includes tablespace reorganizations). SAP 2009 / Page 3

4 Overview (2) In which situations can a table reorganization be useful? Reduction of table size Cleanup of table fragmentation Change of table storage parameters (e.g. INITRANS) Move of table to a different tablespace Reduction of chained and migrated rows Reduction of number of allocated extents Transition from LONG to LOB columns (Oracle >= 10g) Reduction of hot spots on disk level Activation of Transparent Data Encryption Change of table structure SAP 2009 / Page 4

5 Overview (3) In which situations can a tablespace reorganization be useful? Activation of LMTS Activation of ASSM Cleanup of freespace block corruption Reduction of database size Reduction of backup size Reduction of filesystem size Reduction of fragmentation Reduction of number of datafiles Increase of number of datafiles Transition to new tablespace layout Other change to tablespace layout Optimization of filesystem layout SAP 2009 / Page 5

6 Overview (4) How does a BRSPACE online reorganization work? SAP 2009 / Page 6 Determination of CREATE commands for target table and indexes based on DBMS_METADATA.GET_DDL Creation of target table with naming convention <source_table>#$ Export of source table CBO statistics based on DBMS_STATS.EXPORT_TABLE_STATS Copy of source table data to target table based on DBMS_REDEFINITION.START_REDEF_TABLE. This package will implicitly create a materialized view log MLOG$_<source_table> to track all changes that are performed on the source table while the reorganization is running. Creation of target indexes with naming convention <source_index>#$ Import of source table CBO statistics to target table based on DBMS_STATS.IMPORT_TABLE_STATS Finalizing of the online reorganization using DBMS_REDEFINITION.FINISH_REDEF_TABLE. In this step all changes in the materialized log are applied to the target table and the names of source and target table are exchanged. The source table is dropped. The #$ suffix of the target table indexes is removed.

7 Overview (5) What are the advantages of a BRSPACE Online Reorganization? SAP 2009 / Page 7 It uses the advantages of DBMS_REDEFINITION: The reorganization can be performed in parallel to production operation. This means the table is accessible and records can be inserted / updated / deleted. If anything goes wrong during the reorganization the source table still exists unchanged and no restore / recovery is necessary. Compared to an offline reorganization via export / import all data has to be copied only once and not twice It provides possibilities for client and server side parallelism in order to speed up the reorganization if sufficient system resources exist and the reorganization should finish within a specific time window. It has already proven to be a reliable reorganization tool at many customers. It performs a lot of useful activities implicitly that would require a lot of manual efforts and impose the risk of errors if DBMS_REDEFINITION is used directly.

8 Overview (6) What are the restrictions of a BRSPACE Online Reorganization? It is only available as of Oracle 9i. It cannot handle tables with LONG or LONG RAW columns. As of 10g it is possible to convert them during an online reorganization on the fly to LOB columns (if SAP >= 6.40 is used). Temporarily twice the space is needed because both source and target table and indexes exist in parallel. If a table has no primary key constraint (or no unique index with NOT NULL columns) a ROWID based online reorganization is necessary that requires overhead (ROWID index, ROWID column). The setup of the materialized view is an overhead that can negatively impact the performance of the reorganization of many very small tables. Structure changes on the source table and its indexes must not be performed during the reorganization (as they would be lost). SAP 2009 / Page 8

9 Overview (7) How is a normal BRSPACE Online Reorganization started? Table reorganization: brspace -f tbreorg -t <table_name> Tablespace reorganization: brspace -f tbreorg -s <source_tsp> -t "*" -n <target_tsp> Additional useful options exist, e.g.: -p <degree> BRSPACE parallelism degree -e <degree> PX parallelism degree -l <category> Initial extent size category -i <target_ind_tsp> Definition of target index tablespace (if different from target table tablespace) For more detailed information see note and the BRSPACE online documentation. SAP 2009 / Page 9

10 Pitfalls and Problems - Overview Top Pitfalls and Problems 1. What is a good parameter and redo log configuration? 2. What has to be considered for PSAPTEMP? 3. What about PSAPUNDO? 4. And why is the DEFAULT tablespace sometimes used significantly? 5. Why do tables sometimes grow during reorganization? 6. What about SAP technical settings? 7. Is it useful to convert from LONG to LOB? 8. What is a good way of parallelism? 9. Why should I look for invalid objects? 10. Why does a DROP sometimes take ages? SAP 2009 / Page 10

11 Pitfalls and Problems - 1. Configuration 1. Database Configuration SAP 2009 / Page 11 A good online reorganization performance needs a slightly different database configuration than normal system operation. Oracle parameters: DB_FILE_MULTIBLOCK_READ_COUNT >= 128 Fast full table scan on the source table when creating the target table PGA_AGGREGATE_TARGET as large as possible Fast index creations in PGA with minimum PSAPTEMP accesses If Oracle parallel execution is used: PARALLEL_EXECUTION_MESSAGE_SIZE >= PARALLEL_MAX_SERVERS >= 2 * BRSPACE parallelism degree * Oracle parallelism degree PARALLEL_ADAPTIVE_MULTI_USER = FALSE Otherwise Oracle may reduce the desired parallelism degree SESSIONS, PROCESSES: Sufficiently large to cope with the increased PARALLEL_MAX_SERVERS value DB_CACHE_SIZE >= 1 GB Large buffer pool doesn't provide significant advantage

12 Pitfalls and Problems - 1. Configuration 1. Database Configuration (2) SAP 2009 / Page 12 Redo Log Configuration Usually all changes of an online reorganization are recorded in the redo logs, so there can be a significant amount of additional redo logs generated With current BRSPACE patches you can use the option "-NBR" to create the target indexes with NOLOGGING No redo log information is created for the indexes Theoretically it is possible to switch off logging for the target table, too. Almost no redo log information created at all Dangerous, because in case of recovery across the reorganization time the table data is lost! Only useful during a dedicated reorganization time window and with a good backup after the reorganization Redo logs should be created large enough to avoid log switches within less than one minute Avoids unnecessary checkpoint and log switch load ARCHIVELOG mode can be disabled in case of a dedicated reorganization time window and a good backup after the reorganization.

13 Pitfalls and Problems - 2. PSAPTEMP 2. PSAPTEMP Problems with PSAPTEMP can result in a long reorganization runtime or terminations. PSAPTEMP recommendations: Define PSAPTEMP as LMTS/T tablespace (see SAP Note ) in order to avoid delays due to space transactions Make sure that PSAPTEMP is assigned as temporary tablespace to the SAP user and to SYS. Make sure that there are no I/O bottlenecks when accessing PSAPTEMP. PSAPTEMP must be large enough to hold the size of the largest reorganized index. If BRSPACE parallelism is used ("-p <degree>" option), PSAPTEMP must be large enough for the <degree> largest indexes that are reorganized in parallel. In case of a sorted reorganization ("-r <index>" option), PSAPTEMP must be large enough to hold the table data. Consider AUTOEXTEND or RESUMABLE to be on the save side SAP 2009 / Page 13

14 Pitfalls and Problems - 3. PSAPUNDO 3. PSAPUNDO PSAPUNDO is only used to a minor extent: The data transfer into the target table works with APPEND, so no undo is generated. The creation of the indexes also doesn't create undo. Concurrent DML operations logged in the MLOG$ table and finally applied to the target table generate undo. PSAPUNDO recommendations: Use Automatic Undo Management (AUM, SAP Note ) Usually no increase of PSAPUNDO necessary Larger PSAPUNDO may be required if reorganization is done in parallel to significant DML operations (in general not recommended). SAP 2009 / Page 14

15 Pitfalls and Problems - 4. Default Tablespace 4. Default Tablespace The default tablespace is used in two situations: The MLOG$ table with the recorded DML operations is created in the default tablespace. If a table has no primary index, a ROWID index (I_SNAP$...) is created in the default tablespace. Default tablespace recommendations: Make sure that a default tablespace with sufficient free space or AUTOEXTEND is assigned to both the SAP user and SYS. Use LMTS or make sure that NEXT and MAXEXTENTS is set sufficiently high in order to avoid max extents errors. SAP 2009 / Page 15

16 Pitfalls and Problems - 5. Table Growth 5. Table Growth SAP 2009 / Page 16 Normally a reorganization will reduce the table size or at least keep it on the same level. Sometimes the size reduction is not as high as expected or there is even a size increase The most typical reasons are: The reorganized table has no primary index. In this case a ROWID based reorganization rather than a PK constraint reorganization is done and a ROWID column has to be added to the target table. This column is hidden after the reorganization, but it still allocates space ( table increase up to 30 %) Typically happens with SAP conversion tables (QCM tables) and BW fact tables Should be avoided whenever possible (e.g. cleanup of QCM tables, MOVE based reorganization of BW fact tables) A large INITIAL_EXTENT value is used E.g. because of a former SAPDBA reorg with Compress Extents Use BRSPACE option "-l 2" to set the initial extent to 64K.

17 Pitfalls and Problems - 6. Technical Settings 6. Technical Settings The SAP technical settings contain a data class (TABART) that maps a table to a tablespace: Table TABART Tablespace DBSTATC SPROT PSAPPROTD DD09L TAORA / IAORA The TABART is used whenever a table or index is newly created (e.g. during a transport of a new table or new index or during a system copy). If an existing table or index is modified, the current tablespace is used regardless of the TABART. Whenever you move tables and indexes to different tablespaces, you should consider the TABART settings. Otherwise segments may be created in wrong tablespaces. BRSPACE is TABART aware. SAP 2009 / Page 17

18 Pitfalls and Problems - 6. Technical Settings 6. Technical Settings (2) Recommendations: Use the "-l" option to define an appropriate existing or new TABART whenever creating a new tablespace using "brspace -f tscreate": "-l <tabart>": New tabart <tabart> "-l all": All standard TABARTs "-l <source_tsp>": TABART of tablespace <source_tsp> Maintain TABARTs also in the other systems of the system landscape. TABART can point to different tablespaces in different systems. Follow SAP Notes and in order to avoid problems during system copies. In BW TABARTs are also maintained in special BW tables like RSDCUBE, RSDODSO, RSTS, RSDS and RSDCHABAS. These entries also have to be adapted. See SAP Note for more information. SAP 2009 / Page 18

19 Pitfalls and Problems - 7. LONG2LOB 7. LONG2LOB Conversion Tables with LONG and LONG RAW columns can't be reorganized online - unless an implicit LONG2LOB conversion is performed (BRSPACE parameter "-a long2lob") In general it is useful to convert to LOB columns, but there are some restrictions: Oracle >= 10g, SAP >= 6.40 ORA errors possible on SAP side (for bugfix see SAP Note ) ORA errors possible if PX is used (for bugfix see SAP Note ) High water mark enqueues possible with LOBs in ASSM (for bugfix see SAP Note ). Several LOB related DBSL problems in SAP 7.1x (for bugfixes see SAP Notes , , , and ) Small performance impact due to LOBs reported (see SAP Note ), can usually be neglected SAP 2009 / Page 19

20 Pitfalls and Problems - 8. Parallelism 8. Parallelism Settings Two possibilities of parallelism: "-p <degree>": BRSPACE parallelism degree, reorganization of multiple different tables in parallel "-e <degree>": Oracle parallel execution (PX) degree, several Oracle PX slaves work on the reorganization of one table in parallel Reorganization in parallel to production operation System resources (I/O, CPU) mustn't be exceeded. Time is less critical Use no or a rather small parallelism setting (e.g. "-p 2 - e 2") Reorganization in a dedicated time window with low or no parallel production operation Use the system resources (I/O, CPU) as good as possible. Often I/O is the bottleneck and not CPU, but I/O capacities are often hard to determine. Starting point can be e.g. "-p 6 -e 4" for tablespace reorganizations or "-e 8" for individual table reorganization SAP 2009 / Page 20

21 Pitfalls and Problems - 9. Invalid Objects 9. Invalid objects Different kinds of invalid objects can result in errors and terminations during online reorganizations. Therefore the following should be checked in advance: Make sure that no index or index partition of the tables to be reorganized is in status UNUSABLE. Perform a rebuild if required. Make sure that no invalid triggers exist on the tables to be reorganized (e.g. /BIC/05 BW triggers). Drop or validate these triggers. Make sure that no SYS objects exist in the Oracle DDIC with status = INVALID. Particularly important are packages like DBMS_REDEFINITION, DBMS_METADATA, DBMS_STATS and underlying objects. Make sure that the source tables are consistent (SAP Note 23345). As an example the REBUILD ONLINE bug described in SAP Note can result in ORA ( cannot CREATE UNIQUE INDEX; duplicate keys found ) errors when creating the unique index on the target table and the whole table reorganization is terminated. SAP 2009 / Page 21

22 Pitfalls and Problems DROP Performance 10. DROP Performance Usually it is a matter of seconds (or less) to drop a table or an index. But: Under certain circumstances dropping the source table (or the source tablespace) can take longer than the whole reorganization. In real life we have already seen situations where a DROP of a single table took several days! The reason are typically space transactions in dictionary managed tablespaces - every formerly allocated extent needs to be freed individually. Due to an inadequate Oracle index design on the DDIC tables FET$ and UET$ the cleanup has a square complexity (4 times higher runtime for twice the number of extents). Even worse: As space transactions require the unique space transaction (ST) enqueue, other extent operations in the system may be blocked for a long time. SAP 2009 / Page 22

23 Pitfalls and Problems DROP Performance 10. DROP Performance (2) Recommendations Check for critical segments in dictionary managed tablespaces with more than 5000 extents. The higher the number of extents, the more critical. More than extents is definitly a big problem. If segments are returned, you have several options: Reduce the number of extents in smaller portions in advance (e.g. by copying and truncating the table with REUSE SPACE and doing ALTER TABLE DEALLOCATE UNUSED KEEP <size> with <size> decreasing over time) Reorganize the critical tables individually during certain defined timeframes. Test how long the DROP takes and provide a sufficient time window for the reorganization in production. In extreme situations it can even make sense to recreate the database with LMTS using R3load. See SAP Note (section TYPE = ST) for more information. SAP 2009 / Page 23

24 Thank you! SAP 2009 / Page 24

25 Copyright 2008 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. SAP, R/3, mysap, mysap.com, xapps, xapp, SAP NetWeaver, Duet, Business ByDesign, ByDesign, PartnerEdge 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 and associated logos displayed 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. 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. 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 Weitergabe und Vervielfältigung dieser Publikation oder von Teilen daraus sind, zu welchem Zweck und in welcher Form auch immer, ohne die ausdrückliche schriftliche Genehmigung durch SAP AG nicht gestattet. In dieser Publikation enthaltene Informationen können ohne vorherige Ankündigung geändert werden. Einige von der SAP AG und deren Vertriebspartnern vertriebene Softwareprodukte können Softwarekomponenten umfassen, die Eigentum anderer Softwarehersteller sind. SAP, R/3, mysap, mysap.com, xapps, xapp, SAP NetWeaver, Duet, Business ByDesign, ByDesign, PartnerEdge und andere in diesem Dokument erwähnte SAP-Produkte und Services sowie die dazugehörigen Logos sind Marken oder eingetragene Marken der SAP AG in Deutschland und in mehreren anderen Ländern weltweit. Alle anderen in diesem Dokument erwähnten Namen von Produkten und Services sowie die damit verbundenen Firmenlogos sind Marken der jeweiligen Unternehmen. Die Angaben im Text sind unverbindlich und dienen lediglich zu Informationszwecken. Produkte können länderspezifische Unterschiede aufweisen. Die in diesem Dokument enthaltenen Informationen sind Eigentum von SAP. Dieses Dokument ist eine Vorabversion und unterliegt nicht Ihrer Lizenzvereinbarung oder einer anderen Vereinbarung mit SAP. Dieses Dokument enthält nur vorgesehene Strategien, Entwicklungen und Funktionen des SAP -Produkts und ist für SAP nicht bindend, einen bestimmten Geschäftsweg, eine Produktstrategie bzw. -entwicklung einzuschlagen. SAP übernimmt keine Verantwortung für Fehler oder Auslassungen in diesen Materialien. SAP garantiert nicht die Richtigkeit oder Vollständigkeit der Informationen, Texte, Grafiken, Links oder anderer in diesen Materialien enthaltenen Elemente. Diese Publikation wird ohne jegliche Gewähr, weder ausdrücklich noch stillschweigend, bereitgestellt. Dies gilt u. a., aber nicht ausschließlich, hinsichtlich der Gewährleistung der Marktgängigkeit und der Eignung für einen bestimmten Zweck sowie für die Gewährleistung der Nichtverletzung geltenden Rechts. SAP übernimmt keine Haftung für Schäden jeglicher Art, einschließlich und ohne Einschränkung für direkte, spezielle, indirekte oder Folgeschäden im Zusammenhang mit der Verwendung dieser Unterlagen. Diese Einschränkung gilt nicht bei Vorsatz oder grober Fahrlässigkeit. Die gesetzliche Haftung bei Personenschäden oder die Produkthaftung bleibt unberührt. Die Informationen, auf die Sie möglicherweise über die in diesem Material enthaltenen Hotlinks zugreifen, unterliegen nicht dem Einfluss von SAP, und SAP unterstützt nicht die Nutzung von Internetseiten Dritter durch Sie und gibt keinerlei Gewährleistungen oder Zusagen über Internetseiten Dritter ab. Alle Rechte vorbehalten. SAP 2009 / Page 25

SAP ERP 6.0 Enterprise Compensation Management

SAP ERP 6.0 Enterprise Compensation Management SAP ERP 6.0 Enterprise Compensation Management ECM Content Overview The mysap HR Enterprise Compensation Management (ECM) module supports companies in defining, streamlining, and putting into practice

More information

Anpassung von Projektmanagement Standards Nutzungsmöglichkeiten von Konstruktionstechniken aus der Referenzmodellierung

Anpassung von Projektmanagement Standards Nutzungsmöglichkeiten von Konstruktionstechniken aus der Referenzmodellierung SYSTEMATIC THOUGHT LEADERSHIP FOR INNOVATIVE BUSINESS Anpassung von Projektmanagement Standards Nutzungsmöglichkeiten von Konstruktionstechniken aus der Referenzmodellierung Jan vom Brocke (University

More information

SAP Solution Manager Change Request Management. SAP Solution Manager Product Management SAP AG

SAP Solution Manager Change Request Management. SAP Solution Manager Product Management SAP AG SAP Solution Manager Change Request Management SAP Solution Manager Product Management SAP AG Change Request Management Maintenance Activities Project Activities Administration Activities SAP Solution

More information

Run SAP Implementation Partner Program Guide 2009 ADOPTING THE RUN METHODOLOGY INTO YOUR SAP IMPLEMENTATIONS

Run SAP Implementation Partner Program Guide 2009 ADOPTING THE RUN METHODOLOGY INTO YOUR SAP IMPLEMENTATIONS Run SAP Implementation Partner Program Guide 2009 ADOPTING THE RUN METHODOLOGY INTO YOUR SAP IMPLEMENTATIONS Executive Summary The foundation for business process availability is laid in the technical

More information

Performance Testing Results & Sizing Guidelines for your SAP MII Implementation. Salvatore Castro (SAP) Ravi Hegde (Intel)

Performance Testing Results & Sizing Guidelines for your SAP MII Implementation. Salvatore Castro (SAP) Ravi Hegde (Intel) Performance Testing Results & Sizing Guidelines for your SAP MII Implementation Salvatore Castro (SAP) Ravi Hegde (Intel) Disclaimer This presentation on SAP MII Performance Testing is a guide used to

More information

SAP CRM 2007. Detailed View SAP CRM 2007. Web Service Tool

SAP CRM 2007. Detailed View SAP CRM 2007. Web Service Tool SAP CRM 2007 Detailed View SAP CRM 2007 Web Service Tool Disclaimer This Presentation is a preliminary version and not subject to your license agreement or any other agreement with SAP. This document contains

More information

SAP Solution Manager for Implementing SAP Business Suite. Product Management SAP Solution Manager SAP AG

SAP Solution Manager for Implementing SAP Business Suite. Product Management SAP Solution Manager SAP AG SAP Solution Manager for Implementing SAP Business Suite Product Management SAP Solution Manager SAP AG Implementation Projects Project Preparation Business Blueprint Realization Final Preparation Go Live

More information

SAP NetWeaver Master Data Management (MDM)

SAP NetWeaver Master Data Management (MDM) SAP NetWeaver Master Data Management (MDM) Product Information Management with MDM SAP NetWeaver Product Management, SAP AG July 2009 Agenda 1. What is Product Information Management (PIM) 1.1. Definition

More information

SAP NetWeaver Composite Application Framework (CAF)

SAP NetWeaver Composite Application Framework (CAF) SAP NetWeaver Composite Application Framework (CAF) Disclaimer This presentation outlines our general product direction and should not be relied on in making a purchase decision. This presentation is not

More information

SAP Solution Manager for Customizing Synchronization

SAP Solution Manager for Customizing Synchronization SAP Solution Manager for Customizing Synchronization Product Management SAP Solution Manager SAP AG Learning Objectives As a result of this presentation, you will be able to: Describe major challenges

More information

Accelerated Application Delivery

Accelerated Application Delivery Accelerated Application Delivery SAP runs AccAD Insights on Example Landscape SAP NetWeaver Product Management February 2009 public 1 Agenda 1. Overview 2. Detailed AccAD Landscape 3. Performance Improvements

More information

SAP BI - Data Quality with Business Objects Data Services

SAP BI - Data Quality with Business Objects Data Services SAP BI - Data Quality with Business Objects Data Services SAP NetWeaver BI taps into Data Services November 2008 Agenda 1. Motivation 1.1. Data Quality as an issues 2. Business Objects Data Services in

More information

SAP Governance, Risk & Compliance Access Control 5.3. Post-Installation Enterprise Role Management Part I: Configuration

SAP Governance, Risk & Compliance Access Control 5.3. Post-Installation Enterprise Role Management Part I: Configuration SAP Governance, Risk & Compliance Access Control 5.3 Post-Installation Enterprise Role Management Part I: Configuration Authors SAP GRC RIG Team Frank Rambo, SAP GRC RIG, EMEA Region Frank Bannert, SAP

More information

SAP Business One 8.81

SAP Business One 8.81 SAP Business One 8.81 Overview Benno Eberle SME Solution Portfolio Development, Roll-Out October 2010 SAP Business One 8.81 Expert Empowerment Session Objectives At the end of this session, you will be

More information

SAP Solution Manager Value Proposition. Walldorf, April 2007

SAP Solution Manager Value Proposition. Walldorf, April 2007 SAP Solution Manager Value Proposition Walldorf, April 2007 Agenda Application management challenges Implementation / Upgrade Operations Optimization Application management lifecycle Routes to success

More information

SAP CRM 7.0 Detailed View

SAP CRM 7.0 Detailed View SAP CRM 7.0 Detailed View SAP CRM 7.0 Marketing Campaign Management 1 Content 1. Overview 2. Campaign Planning 3. Campaign Development 4. Campaign Optimization 5. Campaign Execution 6. Campaign Analysis

More information

SAP Supplier Relationship Management 7.0

SAP Supplier Relationship Management 7.0 SAP Supplier Relationship Management 7.0 Contract Management Overview Name of Speaker, Department Date For the latest version of this document, please refer to the SAP Service Marketplace extranet at www.service.sap.com/srm,

More information

SAP Solution Manager: Scenarios. Product Management SAP Solution Manager SAP AG

SAP Solution Manager: Scenarios. Product Management SAP Solution Manager SAP AG SAP Solution Manager: Scenarios Product Management SAP Solution Manager SAP AG SAP Solution Manager provides scenarios for all phases of the application management life cycle Implementation of SAP solutions

More information

SAP Perfect Plant Manufacturing Solution. SAP Taiwan Allen Lin 林 信 宇 2010.09.14

SAP Perfect Plant Manufacturing Solution. SAP Taiwan Allen Lin 林 信 宇 2010.09.14 SAP Perfect Plant Manufacturing Solution SAP Taiwan Allen Lin 林 信 宇 2010.09.14 生 產 製 造 的 世 界 趨 勢 協 同 製 造 的 環 境 客 戶 導 向 的 創 新 符 合 法 規 的 規 範 應 用 資 訊 的 輔 助 Cost savings Focus on core competencies Closeness

More information

Prof. Dr. Lutz Heuser, SAP Research Dr. Zoltán Nochta, SAP Research October, 2007

Prof. Dr. Lutz Heuser, SAP Research Dr. Zoltán Nochta, SAP Research October, 2007 Ubiquitous Computing in Geschäftsprozessen SYSTEMATIC THOUGHT LEADERSHIP FOR INNOVATIVE BUSINESS Prof. Dr. Lutz Heuser, SAP Research Dr. Zoltán Nochta, SAP Research October, 2007 Outline 1. Lecture Overview

More information

SAP Solution Manager - Solution Reporting. SAP Solution Manager Product Management SAP AG

SAP Solution Manager - Solution Reporting. SAP Solution Manager Product Management SAP AG SAP Solution Manager - Solution Reporting SAP Solution Manager Product Management SAP AG Reporting Concept EWA Reporting Service Level Reporting Solution Reporting Summary Role of SAP Solution Manager

More information

Enhancement Framework What it means to you

Enhancement Framework What it means to you Enhancement Framework What it means to you Thomas Jung Oliver Mayer SAP NetWeaver Product Management ASUG Call Series Agenda 1. Introduction 2. Enhancement Packages 3. Enhancement Framework 4. Switch Framework

More information

Core Manufacturing. Arne Manthey SAP AG 06/2010

Core Manufacturing. Arne Manthey SAP AG 06/2010 Core Manufacturing Arne Manthey SAP AG 06/2010 System Borders blur ERP ERP MES MOM Shop SFAC Floor Automation Shop Floor Automation Monolithic Systems Distributed Functions SAP 2007 / Page 2 SAP ERP Touchpoint

More information

Next Generation BPM. Michael Hill Product Manager SAP Technology Group Market Development and Enablement SAP Labs, LLC

Next Generation BPM. Michael Hill Product Manager SAP Technology Group Market Development and Enablement SAP Labs, LLC Next Generation BPM with SAP NetWeaver Composition Environment Business Process Modeling with SAP NetWeaver Composition Environment: Overview and Outlook (TechTour) Michael Hill Product Manager SAP Technology

More information

SAP Enterprise Architecture:

SAP Enterprise Architecture: SAP Enterprise Architecture: A governance model to ensure the successful adoption of Enterprise SOA Franck Lopez, Global Director, Enterprise Architecture Field Services, Solution Management SAP Enterprise

More information

LCM263 Managing MaxDB with Database Studio

LCM263 Managing MaxDB with Database Studio LCM263 Managing MaxDB with Database Studio Version 7.7 Suitable for SAP and non-sap environments 1 Disclaimer This presentation outlines our general product direction and should not be relied on in making

More information

TREX SAP NetWeaver s Search and Classification Engine. SAP NetWeaver Product Management July 2008

TREX SAP NetWeaver s Search and Classification Engine. SAP NetWeaver Product Management July 2008 TREX SAP NetWeaver s Search and Classification Engine SAP NetWeaver Product Management July 2008 Agenda Introduction to TREX in SAP NetWeaver TREX Functions and Features TREX Architecture and Details TREX

More information

Managing MaxDB SPC150. Version 7.6

Managing MaxDB SPC150. Version 7.6 Managing MaxDB SPC150 Version 7.6 Content What Has to be Monitored? Standby Database Central Monitoring Transaction DB59 Database Assistant Transaction DB50 Performance Analysis Tools Alert Monitor Transaction

More information

SAP GLOBAL DIVERSITY POLICY

SAP GLOBAL DIVERSITY POLICY SAP GLOBAL DIVERSITY POLICY Date 29.8.2006 1 TABLE OF CONTENTS Cover Sheet... 2 PREFACE... 3 1 DEFINITION... 4 2 OBJECTIVES AND SCOPE... 4 2.1 KEY TARGETS FOR DIVERSITY AT SAP... 5 2.2 COMPLIANCE/SANCTIONS...

More information

Making Programs Unicode Enabled

Making Programs Unicode Enabled Making Programs Unicode Enabled An Overview TD Core AS&DM I18N Technology (AG) May 15, 2009 Agenda 1. ABAP Language Enhancements 2. File Interfaces 3. Communication via RFC 4. Unicode Enabling Tools SAP

More information

SAP NetWeaver Mobile. Capabilities, Customer Experiences, Roadmap. Gerhard Henig, Product Management, SAP AG

SAP NetWeaver Mobile. Capabilities, Customer Experiences, Roadmap. Gerhard Henig, Product Management, SAP AG SAP NetWeaver Mobile Capabilities, Customer Experiences, Roadmap Gerhard Henig, Product Management, SAP AG Disclaimer This presentation outlines our general product direction and should not be relied on

More information

January, 2009. SOA Showcases - Utilities Cases -

January, 2009. SOA Showcases - Utilities Cases - January, 2009 SOA Showcases - Utilities Cases - Showcase overview Grid usage prices, 1 AMI, 1 Sales Proc. Integr., 1 Duet, 1 Customer Portal, 5 Material Mgmt, 1 Intranet portal, 1 Process Integr., 1 Payment

More information

Overview of SAP NetWeaver Business Rules Management with SAP NetWeaver Composition Environment

Overview of SAP NetWeaver Business Rules Management with SAP NetWeaver Composition Environment Overview of SAP NetWeaver Business Rules Management with SAP NetWeaver Composition Environment Michael Hill Product Manager SAP Technology Group Market Development and Enablement SAP Labs, LLC Disclaimer

More information

Use of DB2 purescale with SAP Applications

Use of DB2 purescale with SAP Applications Use of DB2 purescale with SAP Applications December, 2013 Customer SAP Applications on DB2 purescale End users Can use SAP log-on groups to direct similar work to same set of servers Central Services Application

More information

Advanced Manufacturing Summit SAP Manufacturing Execution

Advanced Manufacturing Summit SAP Manufacturing Execution Advanced Manufacturing Summit SAP Manufacturing Execution Product Strategy and Roadmap September 17, 2009 Tracy Wiese Sr. Solution Advisor SEE YOUR WAY CLEAR Strategies for Success in the New Reality Disclaimer

More information

Implementing a Federated Portal Network

Implementing a Federated Portal Network Implementing a Federated Portal Network Jana Richter Product Management Overview: Federated Portal Network Use Cases Integration Concepts & Tools Landscape Considerations Summary Motivation Number of portals

More information

Project Cost Reporting for PPM

Project Cost Reporting for PPM Project Cost Reporting for PPM A PLM Consulting Solution Public Project Cost Reporting for PPM The Consulting Solution Project Cost Reporting supports project-centric and cross-project evaluations in PPM,

More information

BRFplus Field Configuration for Portfolio Management

BRFplus Field Configuration for Portfolio Management for Portfolio Management A PLM Consulting Solution Public The BRFplus Field Configuration allows you to easily modify the field configuration of standard and custom fields, toolbar buttons and tabs on

More information

SAP Service and Asset Management Solution Map. Release 2005

SAP Service and Asset Management Solution Map. Release 2005 SAP Service and Asset Solution Map Release 2005 SAP Service and Asset Service Service Sales and Marketing Service Contract Customer Service and Support Installed Base Warranty and Claims Field Service

More information

SAP Sourcing/CLM Webcast Query & User/Contact Maintenance Web Service

SAP Sourcing/CLM Webcast Query & User/Contact Maintenance Web Service SAP Sourcing/CLM Webcast Query & User/Contact Maintenance Web Service Vikram Shanmugasundaram / SAP Sourcing/CLM Center of Excellence Ed Dunne / SAP Sourcing/CLM Product Management November 2015 SAP Sourcing

More information

SAP Solutions for Information Management Overview, Strategy, & Roadmap. Kristin McMahon May 2013

SAP Solutions for Information Management Overview, Strategy, & Roadmap. Kristin McMahon May 2013 SAP Solutions for Information Management Overview, Strategy, & Roadmap Kristin McMahon May 2013 Safe Harbor Statement The information in this presentation is confidential and proprietary to SAP and may

More information

SAP NetWeaver Gateway Throughput & Scalability. David Freidlin

SAP NetWeaver Gateway Throughput & Scalability. David Freidlin SAP NetWeaver Gateway Throughput & Scalability David Freidlin Agenda Gateway Throughput Gateway Data Scalability Gateway Scaling Out Gateway High Availability 2013 SAP AG. All rights reserved. 2 Gateway

More information

Heterogeneous ABAP System Copy Technical Overview

Heterogeneous ABAP System Copy Technical Overview Heterogeneous ABAP System Copy Technical Overview Boris Zarske SAP Product Management December 2015 Public Goal of this presentation Even if heterogeneous system copies must only be performed by certified

More information

mysap ERP Application Map

mysap ERP Application Map mysap ERP Application Map mysap ERP End-User Service Delivery Analytics Strategic Enterprise Financial Analytics Operations Analytics Workforce Analytics Financials Financial Supply Chain Financial Accounting

More information

Predictive Analytics and the Big Data Challenge

Predictive Analytics and the Big Data Challenge Predictive Analytics and the Big Data Challenge Andrei Grigoriev, MBA, MSc Sr. Director, Custom Development EMEA SAP Nice, April 2014 What is Predictive Analytics Predictive analytics is about analyzing

More information

SAML in UI based SOA Scenarios

SAML in UI based SOA Scenarios SAML in UI based SOA Scenarios SAP NetWeaver Product Management Security June 2008 Agenda 1. Typical Authentication and SSO Scenarios in SOA 2. Windows Integration Authentication using Kerberos with SAP

More information

Enhanced Reporting in SAP All-In-One

Enhanced Reporting in SAP All-In-One Enhanced Reporting in SAP All-In-One Contents: Overview on enhanced reporting in SAP All-in-One Creating Infosets and Infoset queries based on existing reports Connect Infoset queries with POWER Lists

More information

Certificate SAP INTEGRATION CERTIFICATION

Certificate SAP INTEGRATION CERTIFICATION Certificate SAP INTEGRATION CERTIFICATION SAP SE hereby confirms that the interface software MCC SR2015 for the product MCC SR2015 of the MEIERHOFER AG. has been certified for integration with SAP ECC

More information

" # Portal Integration SAP AG 2004, 3

 # Portal Integration SAP AG 2004, 3 ! SAP AG 2004, 2 " # Portal Integration SAP AG 2004, 3 $ %"&' # SAP Netweaver People Integration Multi Channel access Portal Coll Information Integration Information Broadcasting Pre-Calculated, online

More information

SAP Enterprise Portal 6.0 KM Platform Delta Features

SAP Enterprise Portal 6.0 KM Platform Delta Features SAP Enterprise Portal 6.0 KM Platform Delta Features Please see also the KM Platform feature list in http://service.sap.com/ep Product Management Operations Status: January 20th, 2004 Note: This presentation

More information

SAP Product Road Map SAP Mobile Documents

SAP Product Road Map SAP Mobile Documents SAP Product Road Map SAP Mobile Documents 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

More information

Customer Surveys with SAP Contact Center

Customer Surveys with SAP Contact Center Customer Surveys with SAP Contact Center SAP Contact Center software version 7 SAP Contact Center Product Management 2014 Public Agenda Automated post-call survey Agent-driven surveys / information collection

More information

Building a multi-source universe

Building a multi-source universe September 10-13, 2012 Orlando, Florida Building a multi-source universe Pierpaolo Vezzosi 2011 SAP AG. All rights reserved. Public 1 Learning points Learn the details of the multi-source universe technology

More information

mysap Supply Chain Management Solution Map Release 2005

mysap Supply Chain Management Solution Map Release 2005 mysap Supply Chain Management Solution Map Release 2005 Demand & Supply Planning Demand Planning & Forecasting Safety Stock Planning Supply Network Planning Distribution Planning Supply Network Collaboration

More information

Application Map Release 2005

Application Map Release 2005 mysap Supplier Relationship Management Solution Map Application Map Release 2005 Purchasing Planning Purchasing Governance Strategy Development Risk Management Procurement Office Planning Category Management

More information

Multiple Components in One Database -

Multiple Components in One Database - Multiple Components in One Database - Technical Implementation on Different Databases Dr. Georg Leffers SAP AG Technical Setup The following slides show for all databases supported by SAP the technical

More information

Making SAP s User Experience Strategy Reality Nis Boy Naeve, Andreas Hauser SAP SE SESSION CODE: UX204

Making SAP s User Experience Strategy Reality Nis Boy Naeve, Andreas Hauser SAP SE SESSION CODE: UX204 Making SAP s User Experience Strategy Reality Nis Boy Naeve, Andreas Hauser SAP SE SESSION CODE: UX204 Disclaimer This presentation outlines our general product direction and should not be relied on in

More information

Sabine Reich SAP. Test Workbench - Introduction

Sabine Reich SAP. Test Workbench - Introduction Sabine Reich SAP Test Workbench - Introduction Agenda 1 General Concepts 2 Functions of the Test Workbench 3 A Typical Test Procedure 4 Integration into the SAP Solution Manager SAP AG 2002, Title of Presentation,

More information

Capital Project and Portfolio Management

Capital Project and Portfolio Management Capital Project and Portfolio Management Agenda Introduction Capital Project and Portfolio Management Process New Functions and Features for Capital Project and Portfolio Management Process Variant Leveraging

More information

mysap ERP Technology Facts

mysap ERP Technology Facts mysap ERP Technology Facts Agenda mysap ERP Overview Technical Architecture of mysap ERP Transition to mysap ERP Outlook and Roadmap Summary and Further Information SAP AG 2004, mysap ERP Technology Facts,

More information

Optimize Your Business with SAP Enterprise Dashboards (SAP Smart Business) Powered by SAP HANA

Optimize Your Business with SAP Enterprise Dashboards (SAP Smart Business) Powered by SAP HANA Optimize Your Business with SAP Enterprise Dashboards (SAP Smart Business) Powered by SAP HANA SAP HANA Live and SAP Smart Business for real-time operational reporting and exception-based decision making

More information

SMP Security & Identity Management An Introduction

SMP Security & Identity Management An Introduction SMP Security & Identity Management An Introduction SMP Enterprise Grade Mobility Webinar Series Brought to you by the SAP Mobile Rapid Innovation Group (RIG) SAP Mobile Platform: Enterprise Grade Mobility

More information

SAP BusinessObjects Dashboards Influence Session. Scott Leaver Solution Management François Imberton Product Management

SAP BusinessObjects Dashboards Influence Session. Scott Leaver Solution Management François Imberton Product Management Influence Session Scott Leaver Solution Management François Imberton Product Management Influence Session What is this about? Contribute to Dashboards Product Release Content Give feedback on potential

More information

SAP's Journey of Implementing SAP Disclosure Management and Notes Management Session 2002

SAP's Journey of Implementing SAP Disclosure Management and Notes Management Session 2002 SAP's Journey of Implementing SAP Disclosure Management and Notes Management Session 2002 Sonja Simon/Corporate Financial Reporting and Kirk Anderson/EPM Solution Management, May, 2012 Agenda Overview:

More information

A short update on. SAP s User Experience Strategy Sam Yen, Andreas Hauser, Nis Boy Naeve, Volker Zimmermann, Gerrit Kotze - SAP AG April 2014

A short update on. SAP s User Experience Strategy Sam Yen, Andreas Hauser, Nis Boy Naeve, Volker Zimmermann, Gerrit Kotze - SAP AG April 2014 A short update on SAP s User Experience Strategy Sam Yen, Andreas Hauser, Nis Boy Naeve, Volker Zimmermann, Gerrit Kotze - SAP AG April 2014 Disclaimer This presentation outlines our general product direction

More information

Growing pressures that are here to stay

Growing pressures that are here to stay SAP BusinessObjects Planning and Consolidation April 2012 Growing pressures that are here to stay Volatility in markets, commodity prices and stocks Increasing globalization Increased focus on risk Pressure

More information

Simplifying Workflow with SAP NetWeaver. Alan Rickayzen Product Manager, SAP AG

Simplifying Workflow with SAP NetWeaver. Alan Rickayzen Product Manager, SAP AG Simplifying Workflow with SAP NetWeaver Alan Rickayzen Product Manager, SAP AG Workflow in SAP NetWeaver Central Simple Worklist Groupware Integration Summary Business Workflow: Robust, Proven Workflow

More information

SAP xmii Deployment Made Easy. Mo Ghanem, SAP Labs LLC

SAP xmii Deployment Made Easy. Mo Ghanem, SAP Labs LLC SAP xmii Deployment Made Easy Mo Ghanem, SAP Labs LLC xmii Overview xmii integrations Scenarios Deployment Roadmap Deployment Timeline Where to get Help? SAP xapp Manufacturing integration and Intelligence

More information

Setup Guide for Business Process Operations Dashboards SAP Solution Manager 7.1. SAP AG August, 2011

Setup Guide for Business Process Operations Dashboards SAP Solution Manager 7.1. SAP AG August, 2011 Setup Guide for Business Process Operations Dashboards 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

More information

Settlement in TM 9.0 New functionalities with TM 9.0. Ananth Bhat SAP Development, Transportation & Logistics December 2012

Settlement in TM 9.0 New functionalities with TM 9.0. Ananth Bhat SAP Development, Transportation & Logistics December 2012 Settlement in TM 9.0 New functionalities with TM 9.0 Ananth Bhat SAP Development, Transportation & Logistics December 2012 Agenda Shipper Functionality Freight Cost Distribution LSP / Freight Forwarder

More information

Job Scheduling Management Integration with SAP CPS by Redwood SAP Solution Manager 7.1. SAP AG August, 2011

Job Scheduling Management Integration with SAP CPS by Redwood SAP Solution Manager 7.1. SAP AG August, 2011 Job Scheduling Management Integration with SAP CPS by Redwood SAP Solution Manager 7.1 SAP AG August, 2011 Disclaimer This presentation outlines our general product direction and should not be relied on

More information

ITSCM at SAP Best practices

ITSCM at SAP Best practices ITSCM at SAP Best practices ITSCM - Goals and scope ITSCM helps to establish Business Continuity it Management related processes within Global IT as one of SAP Lines of Business (LOB s ) ITSCM assists

More information

Innovation Summit Philadelphia, July 12 th 13 th User Experience

Innovation Summit Philadelphia, July 12 th 13 th User Experience Innovation Summit Philadelphia, July 12 th 13 th User Experience Agenda User Experience as a Strategic Topic New Usages and new Capabilities Understanding Work Practices From Configuration to App Breakouts

More information

SAP Master Data Governance for Financials: What's New with SAP ERP 6.0 Enhancement Package 4 and 5

SAP Master Data Governance for Financials: What's New with SAP ERP 6.0 Enhancement Package 4 and 5 Orange County Convention Center Orlando, Florida May 15-18, 2011 SAP Master Data Governance for Financials: What's New with SAP ERP 6.0 Enhancement Package 4 and 5 Pete Graham Director, LoB Finance, Solutions

More information

mysap Customer Relationship Management - Enterprise Solution Map Edition 2004

mysap Customer Relationship Management - Enterprise Solution Map Edition 2004 mysap Customer Relationship - Enterprise Solution Map Edition 2004 mysap Customer Relationship - Enterprise Marketing Marketing Planning Segmentation Campaign Trade Promotion Lead Personalization Sales

More information

Working in a ubiquitous computing environment

Working in a ubiquitous computing environment Working in a ubiquitous computing environment Challenges for an application software manufacturer Dr. Thomas Ziegert, SAP Corporate Research SAP Corporate Research Overview SAP Corporate Research Investigates

More information

Perforce Best Practices @ SAP. Claudia Loff, SAP AG Thomas Kroll, SAP AG Walldorf, Germany, 2006/08/14

Perforce Best Practices @ SAP. Claudia Loff, SAP AG Thomas Kroll, SAP AG Walldorf, Germany, 2006/08/14 Perforce Best Practices @ SAP Claudia Loff, SAP AG Thomas Kroll, SAP AG Walldorf, Germany, 2006/08/14 Presenters and the other team members Claudia Loff Claudia is project lead of the "Perforce Improvement

More information

Management and Monitoring of a J2EE Server and Applications Using JMX. Reinhold Kautzleben, Gregor Frey Speaker Title, SAP AG

Management and Monitoring of a J2EE Server and Applications Using JMX. Reinhold Kautzleben, Gregor Frey Speaker Title, SAP AG Management and Monitoring of a J2EE Server and Applications Using JMX Reinhold Kautzleben, Gregor Frey Speaker Title, SAP AG How much JMX is required to be in J2EE? JMX 1.2 belongs to the list of required

More information

Unstructured information management

Unstructured information management Unstructured information management Research Cluster in SAP Research Data Management and Analytics Program Alexander Löser Alexander Löser 2004 Doctorial student researcher with HP Research Labs Bristol

More information

Michael Collet 28th January 2005, Frankfurt, GI -Fachgruppe SECMGT

Michael Collet 28th January 2005, Frankfurt, GI -Fachgruppe SECMGT Management@SAP Michael Collet 28th January 2005, Frankfurt, GI -Fachgruppe SECMGT If business has no risk, don t do it! ( frei nach Tom DeMarco & Timothy Lister) Scope of Corporate Management Roll-out

More information

Closed-Loop Engineering Integrated Product Development at a Vehicle Manufacturer

Closed-Loop Engineering Integrated Product Development at a Vehicle Manufacturer Closed-Loop Engineering Integrated Product Development at a Vehicle Manufacturer Dr. Stephan Kohlhoff Geschäftbereich Automotive SAP Deutschland AG & Co KG Agenda Motivation Closed-Loop Engineering Vehicle

More information

SAP ERP Financials. Vision, Strategy & Roadmap. Dr. Jens Baumann ERP Solution Management, SAP AG

SAP ERP Financials. Vision, Strategy & Roadmap. Dr. Jens Baumann ERP Solution Management, SAP AG SAP ERP Financials Vision, Strategy & Roadmap Dr. Jens Baumann ERP Solution Management, SAP AG The New Responsibilities of Finance Transforming Finance with SAP ERP Financials SAP ERP 6.0 A Platform for

More information

The Way to New ERP Horizons

The Way to New ERP Horizons The Way to New ERP Horizons From Monoliths to Molecules, and How They All Can Make Humpty-Dumpty Whole Again Matthias Kaiser, Ph.D. Sr. Research Scientist, SAP Research Visiting Scholar at the Computational

More information

Jeff Gebo NetWeaver RIG, SAP Labs LLC

Jeff Gebo NetWeaver RIG, SAP Labs LLC Send, Receive, and Process Interactive Forms via Email in AS ABAP. Jeff Gebo NetWeaver RIG, SAP Labs LLC Introduction Creating Interactive Forms in AS ABAP SMTP in AS ABAP Sending Email with attached Interactive

More information

Desktop Intelligence Compatibility Pack. Thomas B Kuruvilla Solution Management Business Intelligence September, 2013

Desktop Intelligence Compatibility Pack. Thomas B Kuruvilla Solution Management Business Intelligence September, 2013 Desktop Intelligence ompatibility Pack Thomas B Kuruvilla Solution Management Business Intelligence September, 2013 Legal Disclaimer The information in this presentation is confidential and proprietary

More information

SAP NetWeaver Landscape. Jeff Anders/Solution Management January 2012

SAP NetWeaver Landscape. Jeff Anders/Solution Management January 2012 SAP NetWeaver Landscape Virtualization Management Overview Jeff Anders/Solution Management January 2012 What Customers Have Told Us Managing the transformation to virtual/cloud infrastructure Hybrid business

More information

SAP s User Experience Strategy

SAP s User Experience Strategy SAP s User Experience Strategy May 2015 Public 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 1 Public Disclaimer This presentation outlines our general product direction and should

More information

The Internet of Things Our Strategy and Direction: Driving Customer Value

The Internet of Things Our Strategy and Direction: Driving Customer Value The Internet of Things Our Strategy and Direction: Driving Customer Value Michael Lynch 2015 Internal 2015 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication may be reproduced

More information

How To Develop In Java (J2Ee) And J2Ee (Sap) Together (Sapp)

How To Develop In Java (J2Ee) And J2Ee (Sap) Together (Sapp) SAP NetWeaver Developer Studio and Java Development Infrastructure Karl Kessler Product Manager, SAP AG Agenda SAP NetWeaver Developer Studio! Mission Statement! Eclipse! Java Dictionary, J2EE Tool Set,

More information

Leveraging Utilibill. Tim Vanderheide Bluewater Power V.P. Client Services

Leveraging Utilibill. Tim Vanderheide Bluewater Power V.P. Client Services Leveraging Utilibill Tim Vanderheide Bluewater Power V.P. Client Services Leveraging Utilibill Tim Vanderheide, V.P. Client Services Bluewater Power What is Bluewater Power LDC -- Local Distribution Company

More information

SAP Product Road Map SAP BusinessObjects Design Studio

SAP Product Road Map SAP BusinessObjects Design Studio SAP Product Road Map SAP BusinessObjects Design Studio Road Map Revision: September 24, 2014 Template Revision 20120421 v3.0 Legal disclaimer The information in this presentation is confidential and proprietary

More information

Empowering Partners to Run Better. Ecosystem and Channels Authorized Reseller Program

Empowering Partners to Run Better. Ecosystem and Channels Authorized Reseller Program Empowering Partners to Run Better Ecosystem and Channels Authorized Reseller Program Award-Winning Partner Program For Award-Winning Partners Grow faster Accelerate engagements Earn high margins Enhance

More information

Update on the SAP GUI Family Q3/2012

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

More information

Upgrading SAP Public Budget Formulation (PBF) PBF Development Team October 2012

Upgrading SAP Public Budget Formulation (PBF) PBF Development Team October 2012 Upgrading SAP Public Budget Formulation (PBF) PBF Development Team October 2012 SAP Public Budget Formulation Upgrading from PBF 7.1 to PBF 8.0 SP02 Agenda PBF 8.0 System Pre-Requisites PBF 8.0 Functional

More information