Lockheed Martin s SAP Business Suite powered by SAP HANA Migration

Size: px
Start display at page:

Download "Lockheed Martin s SAP Business Suite powered by SAP HANA Migration"

Transcription

1 Lockheed Martin s SAP Business Suite powered by SAP HANA Migration Session: ITM122 Gary Norris Lockheed Martin

2 Agenda Lockheed Martin Corporation Overview SAP Implementation History at Lockheed Martin Aeronautics How Custom Are we at Aeronautics? Learning Points SOH Development Team Custom Code Migration Steps/Processes Analyze Custom code base for Hard Errors, Data Errors and Performance Errors Data Errors include incorrect program decision due to order of data retrieved from DB. Performance errors include slow run times and/or a material amount of resource consumption. Hard Errors include ST22 program abend, job termination with no error log, looping timeouts, etc. Determine Proactive solutions to mitigate potential errors. Fix all possible high risk errors before first ITC. Test, Test, Test and then Test Again. SOH Development Team Custom Code Migration Tools How to Ensure a Stable Suite on Hana Migration Lockheed Martin s Overall Lessons Learned 2

3 Lockheed Martin Corporation Overview Lockheed Martin Co. 112,000 Employees Worldwide Missiles and Fire Control Aeronautics Operations: 572 facilities in 500 cities and 50 states throughout the U.S.; Internationally, business locations in 70 nations and territories 29,000+ Employees Across the Company and Around the World U-2 Palmdale, CA Fort Worth, TX Marietta, GA F-22 Information Systems & Global Services Space Systems YF-22 F-117 F-16 C-130J Mission Systems and Training X-35 F-35C CV F-35A CTOL F-35B STOVL C-5 3

4 Lockheed Martin Aeronautics: SAP Implementation History Lockheed Martin Aeronautics is known for building the most technologically advanced military aircraft in the world. The most recent of these aircraft include the 5th-Generation F-22 Raptor and F-35 Lightning II. October 2007Began MRP/Supply Chain Implementation Deployment 2 July 2009 MRP/Supply Chain Implementation Deployment Go Live January 2008SAP Financials Go Live January 2013 SAP HANA Side Car Goes Live April 2015 SAP SOH Goes Live Went live with SAP Financials 1994 Lockheed Martin becomes a customer of SAP October 2006 Began SAP FI/CO Project SAP Systems will enable LM Aeronautics to reach F-35 peak production goals and is critical to the long-term success of the program. 4

5 Lockheed Martin Aeronautics: SAP Implementation History External Portal Suppliers Exostar Global Trade Services (GTS) Supplier Network Collaboration (SNC) PI Computer Aided Process Planning (CAPP) * Shop Floor Management (SFM) * Transportation Management System (TMS) MCA (Spares Planning Optimization) ECC Internal Portal BW Portal Business Warehouse Users MCA (Spares Planning Optimization) HANA OneAero Vision HANA (Side Car) Lockheed Martin Aeronautics will transform business processes, systems and information through the implementation of SAP software, combined with significant process improvements, positioning us to meet the challenges of effectively producing the Joint Strike Fighter (JSF,) achieving horizontal integration and retiring high-risk, aging systems. 5

6 Lockheed Martin Aeronautics: SAP Custom Code Custom Z Objects in PRD Count SXCI BADIs 125 User Exits 100 Core Mods (access keys issued, not including OSS notes) 746 DOMA - Domain 1,233 DTED - Data Element Definition 878 DTEL - Data Element 6,090 ENHC - Composite Enhancement Implementation 49 ENHO - Enhancement Implementation 451 ENHS - Enhancement Spot 7 IEXT - Enhancement 18 FORM - SAPscript form 8 FUGR - Function Group 1,240 FUNC - Function Module 1,408 METH - Method (ABAP Objects) 1,996 CLSD - Class Definition (ABAP Objects) 193 MSAG - Message Class 54 PROG Programs/Includes 3,748 REPS - Report Source Code 1,770 SHLP - Search Help 229 SSFO - SAP Smart Form 76 SSST - SAP Smart Style 28 TABL - Table 2,817 TRAN - Transaction 1,648 ACTUAL lines of Z Code easily available to count in SAP ECC Z Package Line Count 1,835,678 ECC Estimating Solution 137,267 SAP SNC (est.) 150,000 Enhancement implementations: Explicit/Implicit, Adobe Forms, Smartforms, XSLT,etc. (10%) 200,000 Actual Z Code lines 2,322,945 6

7 LEARNING POINTS Development Steps to Migrate SAP ECC to SAP Suite On Hana Processes/Tools used to Migrate SAP ECC to SAP Suite On Hana How to Ensure a Stable Suite on Hana Migration Lockheed Martin s overall lessons learned and results from their Suite on Hana Migration. 7

8 Development Migration Steps 1. Analyze Custom code base for Hard Errors, Data Errors and Performance Errors Data Errors include incorrect program decision due to order of data retrieved from database. Performance errors include slow run times and/or a material amount of resource consumption. Hard Errors include ST22 program abend, job termination with no error log, looping timeouts, etc. 2. Determine Proactive solutions to mitigate potential errors. 3. Fix all possible high risk errors before first ITC. 4. Test, Test, Test and then Test Again. 8

9 Analyze Custom Code Base SAP Code Inspector Based on recommended SAP best practices, Lockheed Martin used the SAP Code Inspector (SCI) as a fundamental tool of our custom code migration. Lockheed Martin only used limited SCI parameters to analyze our code base. SAP SCI variant = Functional_DB. Other canned variants available with NTW 7.4/SP5. Only SCI Error and Warning messages were acted upon. 9

10 Analyze Custom Code Base SCI Code Inspector Data Errors Determine and identify needed ABAP corrections. ABAP syntax changes needed to maintain functionality and insure data accuracy (Data Errors). Without these changes, Suite on HANA results may differ from current results. Examples: No longer use Oracle implicit sorting. No usage of Oracle database Hints. Order of data retrieved from database. 10

11 Analyze Custom Code Base SCI Code Inspector Data Errors Post go-live problem with Select Single. Problem related to explicit logic depending on order of retrieved database output. Data in Oracle (with index) always retrieved in certain order. With HANA the order of the data may be different. These are harder to detect, but can be remediated by using Order By or Sort statement. 11

12 Analyze Custom Code Base SCI Code Inspector Data Errors SCI variant parameters: Security Checks Critical Statements Use of ADBC Interface Robust Programming Depooling/Declustering: Search SELECT for Pool/Cluster-Tables w/o ORDER BY Search Problematic statements for result of SELECTION/OPEN CURSOR without ORDER BY 12

13 Analyze Custom Code Base SCI Code Inspector Data Errors SCI code inspector results: 3240 Messages 451 Errors 172 Warnings 2639 Informational Only Error and Warning messages were remediated, based on SAP best practices 13

14 Analyze Custom Code Base Performance Errors Lockheed Martin Aeronautics: HANA Historical Metrics Sidecar HANA work: Kernel Switches averaged = 72%, 2 nd DB = 70%, Views = 81% For SOH: overall average was 70%, with some degradation when all the stress ships were loaded. The 70% faster applies to both QE8/7 and the PE1-Performance boxes. In PE1-Perf, a nightly batch ran 1/3 faster (reduced overall batch processing time by a third). 14

15 Analyze Custom Code Base Performance Errors Required acceleration changes. SAP best practices and HANA Sidecar experience showed these problems highly likely to decrease performance. Example: a nested Select Single statement within a Loop construct. Remediation: use Select For All Entries outside the Loop construct. Remember this change should not change functionality or the results. 15

16 Analyze Custom Code Base Performance Errors Potential acceleration changes. These problems may cause a performance decrease. Example: a Select * From statement. Remediation: use defined and specific field list to retrieve only the data needed for processing. Any program changes should only accelerate existing functionality, avoid any functionality changes. 16

17 Analyze Custom Code Base Performance Errors Used STAD, ST03, ST03N reporting tools to find potential acceleration candidates. Produce reports of high database utilization. Look for instances of high utilization plus greater than 50% of total processing time consumed in database query. Collect baseline performance statistics. Analyze performance acceleration candidates. Select top 10 or 25 or n*. Analyze individual candidates. Rank candidates for remediation work. 17

18 Analyze Custom Code Base Performance Errors Use SAT or ST12 traces to analyze candidates for specific changes needed. Which tables are being most used. Under-performing Select statements. Select Single statements within Loop At logic. Other Select statements within loop logic. Possible candidates for joining tables during queries. Possible use of Select For All Entries. 18

19 Analyze Custom Code Base Performance Errors Use SCI Code Inspector to help find problems. SAP SCI variant = Performance_Checklist_HDB. Performance_Checklist_XL includes loop checks. Potential to use program scans to find specific logic problems such as Select Single within Loop logic. Look for effective use of Binary Search logic when reading tables. Look for corrections needed for Sort statement used for Binary Search logic. 19

20 Analyze Custom Code Base Hard Errors Use of Order By Primary Key without retrieving all keys fields, combined with For All Entries created ST22 abend. Use of Select Single logic within Loop construct trying to access large table was potential time-out problem. Found that use of database access within a Loop construct can definitely degrade HANA performance; these should be evaluated. 20

21 Development Migration Steps 2. Determine Proactive solutions to mitigate potential errors 3. Fix all possible high risk errors before first ITC 4. Test, Test, Test and then Test Again. 21

22 SOH Development Team Migration Tools SAP SCI Code Inspector (transaction code SCI) Runtime check monitor (transaction code srtcm) Please refer to OSS note and the online help: m?frameset=/en/ce/30e9746f b8e4bd9d9ee0996/frameset.htm&current_toc=/en/e4/e3e6e3a 8514af2be58552a3ba40b1b/plain.htm&node_id=39&show_children=false Custom Z syntax search programs 22

23 Ensure a Stable Suite on Hana Migration Don t wait, Start today: Consider Hana Side Car (gain experience, fix custom core processes) Upgrade to more current SAP version if you haven t upgraded lately (consider EP7) Start Custom Code Analysis Now Proactively Mitigate as many Data Errors, Performance Errors and Hard Errors as possible before migration Test 100% of all programs that need to work the day you go live 23

24 Lockheed Martin Aeronautics: Lessons Learned Do not expect HANA to return data ordered the same way Oracle did!!! Order By Primary Key best used with Select *. Order By needs all key fields retrieved. If all key fields not selected, better use Sort By instead of Order By. SCI code inspector is not fool-proof, analyze before making code changes. SCI may say to add an Order By, but is already a Sort. Run SCI multiple times, including post-remediation, to insure all needed changes are found. 24

25 Lockheed Martin Aeronautics: Lessons Learned Test All Programs and Transactions that you want to work 100% Ensure that your management and functional customers truly understand the risks of a true database migration (it isn t just an upgrade) 25

26 BEST PRACTICES Start early with your custom code analysis Start early with your custom code repairs, be proactive Test, Test, 100% of programs that need to work at go-live If possible upgrade to EP7 in a non-soh environment to test the effects of the upgrade in code base so that upgrade code related errors are not confused with SOH migration errors. Ensure that your management and functional customers truly understand the risks of a true database migration (it isn t just an upgrade) 26

27 BEST PRACTICES Links: Best Practices: OSS Notes:

28 Questions?? For any questions after this session please reach out to: Gary Norris 28

29 THANK YOU FOR PARTICIPATING Please provide feedback on this session by completing a short survey via the event mobile application. SESSION CODE: ITM122 29

30 Appendix: SCI Example SCI parameters: 30

31 Appendix: SCI Example SCI example: 31

32 Appendix: SCI Example SCI example (cont.): 32

33 Appendix: SCI Example SCI example (cont.): 33

34 Appendix: SCI Example SCI example (cont.): 34

SAP TechEd. Open Sesame: How Lockheed Paved the Way to Enterprise Procurement Analytics. Pit C. Tan Session DMM218

SAP TechEd. Open Sesame: How Lockheed Paved the Way to Enterprise Procurement Analytics. Pit C. Tan Session DMM218 SAP TechEd Open Sesame: How Lockheed Paved the Way to Enterprise Procurement Analytics Pit C. Tan Session DMM218 2015 LOCKHEED MARTIN CORPORATION. ALL RIGHTS RESERVED. 1 Who I Am Current role: Analytics

More information

Session 4112 BW NLS Data Archiving: Keeping BW in Tip-Top Shape for SAP HANA. Sandy Speizer, PSEG SAP Principal Architect

Session 4112 BW NLS Data Archiving: Keeping BW in Tip-Top Shape for SAP HANA. Sandy Speizer, PSEG SAP Principal Architect Session 4112 BW NLS Data Archiving: Keeping BW in Tip-Top Shape for SAP HANA Sandy Speizer, PSEG SAP Principal Architect Public Service Enterprise Group PSEG SAP ECC (R/3) Core Implementation SAP BW Implementation

More information

LRDR Program Overview. Mr. Richard Hagy Director, Business Development March 8, 2017

LRDR Program Overview. Mr. Richard Hagy Director, Business Development March 8, 2017 LRDR Program Overview Mr. Richard Hagy Director, Business Development March 8, 2017 Today s Ballistic Missile Defense System 2 Long Range Discrimination Radar Ballistic Missile Threats are Growing more

More information

SAP ABAP Training Course Content :

SAP ABAP Training Course Content : SAP ABAP Training Course Content : Topics Covered: Introduction to ERP Introduction to SAP & R/3 Architecture Introduction to ABAP/4 What is ABAP? Logon to SAP Environment Transaction Codes Multitasking

More information

Executing Remote Static Checks in Context of HANA Migration

Executing Remote Static Checks in Context of HANA Migration Executing Remote Static Checks in Context of HANA Migration NOTE This topic does not address the common usage of remote static checks in the Code Inspector. It focuses rather on static checks that are

More information

SAP HANA Inspirience Day

SAP HANA Inspirience Day SAP HANA Inspirience Day Best practice ingredients for a successful SAP HANA project Maurice Sens SAP Lead Architect, T-Systems Nederland Today's issues with SAP Business Warehouse and SAP systems. Massive

More information

COURSE LISTING. Courses Listed. Training for Database & Technology with Development in ABAP Dialog Programming. Beginner. Intermediate.

COURSE LISTING. Courses Listed. Training for Database & Technology with Development in ABAP Dialog Programming. Beginner. Intermediate. Training for Database & Technology with Development in ABAP Dialog Programming Courses Listed Beginner NW001 - SAP NetWeaver - Overview Intermediate SAPTEC - Technology Fundamentals for SAP S/4HANA and

More information

HOW TO DO BUSINESS WITH Lockheed Martin. Copyright 2017, Lockheed Martin Corporation. All rights reserved 0000.PPT 8/8/2017 1

HOW TO DO BUSINESS WITH Lockheed Martin. Copyright 2017, Lockheed Martin Corporation. All rights reserved 0000.PPT 8/8/2017 1 HOW TO DO BUSINESS WITH Lockheed Martin Copyright 2017, Lockheed Martin Corporation. All rights reserved 0000.PPT 8/8/2017 1 Vision Lockheed Martin is the Leading Aerospace and Global Security Company,

More information

SAP R/3: DART Data Retention Tool. Author Girish Awade

SAP R/3: DART Data Retention Tool. Author Girish Awade SAP R/3: DART Data Retention Tool Author Girish Awade Agenda Introduction Configuring DART Data Extraction Archive Retrieval Example 2 Agenda Introduction 3 Introduction I ve archived my data and now the

More information

Planning Applications Kit - In Memory Planning in Action. Dr. Gerd Schöffl / CSA Technology

Planning Applications Kit - In Memory Planning in Action. Dr. Gerd Schöffl / CSA Technology Planning Applications Kit - In Memory Planning in Action Dr. Gerd Schöffl / CSA Technology Legal disclaimer This presentation is not subject to your license agreement or any other agreement with SAP. SAP

More information

Monitoring Agent for SAP Applications Fix pack 11. Reference IBM

Monitoring Agent for SAP Applications Fix pack 11. Reference IBM Monitoring Agent for SAP Applications 7.1.1 Fix pack 11 Reference IBM Monitoring Agent for SAP Applications 7.1.1 Fix pack 11 Reference IBM Note Before using this information and the product it supports,

More information

Future Shifts in Enterprise Architecture Evolution. IPMA Marlyn Zelkowitz, SAP Industry Business Solutions May 22 nd, 2013

Future Shifts in Enterprise Architecture Evolution. IPMA Marlyn Zelkowitz, SAP Industry Business Solutions May 22 nd, 2013 Future Shifts in Enterprise Architecture Evolution IPMA Marlyn Zelkowitz, SAP Industry Business Solutions May 22 nd, 2013 Agenda Terminology & Definitions Evolution to Cloud Cloud Adoption Appendix 2013

More information

Oracle Database 12c Performance Management and Tuning

Oracle Database 12c Performance Management and Tuning Course Code: OC12CPMT Vendor: Oracle Course Overview Duration: 5 RRP: POA Oracle Database 12c Performance Management and Tuning Overview In the Oracle Database 12c: Performance Management and Tuning course,

More information

HA400 ABAP Programming for SAP HANA

HA400 ABAP Programming for SAP HANA HA400 ABAP Programming for SAP HANA. COURSE OUTLINE Course Version: 14 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved. No part of this

More information

HA400 ABAP Programming for SAP HANA

HA400 ABAP Programming for SAP HANA ABAP Programming for SAP HANA SAP HANA Course Version: 08 Course Duration: 3 Day(s) Publication Date: 2014 Publication Time: Copyright Copyright SAP AG. All rights reserved. No part of this publication

More information

SAP ABAP ONLINE TRAINING COURSE

SAP ABAP ONLINE TRAINING COURSE SAP ABAP ONLINE TRAINING COURSE CONTENT What is SAP ABAP? ABAP is one of the many application-specific fourth-generation languages (4GLs) first developed in the 1980s. It was originally the report language

More information

SAP TechEd. Using SAPUI5 to Enhance Enterprise Learning Manager Capabilities. Rob Becker. Session MOB115

SAP TechEd. Using SAPUI5 to Enhance Enterprise Learning Manager Capabilities. Rob Becker. Session MOB115 SAP TechEd Using SAPUI5 to Enhance Enterprise Learning Manager Capabilities Rob Becker Session MOB115 1 Who Are We Lockheed Martin Corporation Global defense, security, aerospace, and advanced technology

More information

SAP- ABAP/4 ADVANCED COURSE CONTENT

SAP- ABAP/4 ADVANCED COURSE CONTENT SAP- ABAP/4 ADVANCED COURSE CONTENT SAP Basic Introduction SAP R/3 Overview SAP POC BRD Creation Blue-Print Roadmap Asap Methodology Project Management Overview ABAP Dictionary Concepts Tables, Data Elements

More information

IBM s Integrated Data Management Solutions for the DBA

IBM s Integrated Data Management Solutions for the DBA Information Management IBM s Integrated Data Management Solutions for the DBA Stop Stressing and Start Automating! Agenda Daily Woes: Trials and tribulations of the DBA Business Challenges: Beyond the

More information

Business Process Monitoring for non-abap/non-sap

Business Process Monitoring for non-abap/non-sap Business Process Monitoring for non-abap/non-sap Application Monitoring SAP AG Global CoE Business Process Integration Active Global Support SAP 2010 / BPMon via Web Service / Page 1 Agenda 1. Introduction

More information

COURSE LISTING. Courses Listed. with ABAP Dialog Programming. 25 December 2017 (08:57 GMT) NW001 - SAP NetWeaver - Overview

COURSE LISTING. Courses Listed. with ABAP Dialog Programming. 25 December 2017 (08:57 GMT) NW001 - SAP NetWeaver - Overview with ABAP Dialog Programming Courses Listed NW001 - SAP NetWeaver - Overview SAPTEC - SAP NetWeaver Application Server Fundamentals BC100 - ( ABAP) BC100E - Introduction to Programming with ABAP BC400

More information

COURSE LISTING. Courses Listed. with HANA Programming. 13 February 2018 (04:51 GMT) HA100 - SAP HANA

COURSE LISTING. Courses Listed. with HANA Programming. 13 February 2018 (04:51 GMT) HA100 - SAP HANA with HANA Programming Courses Listed HA100 - SAP HANA BC404 - ABAP Programming in Eclipse HA300 - SAP HANA Modeling HA400 - SAP HANA ABAP E_HANAAW_12 - SAP Certified Development Specialist - ABAP for SAP

More information

Intelligent Enterprise meets Science of Where. Anand Raisinghani Head Platform & Data Management SAP India 10 September, 2018

Intelligent Enterprise meets Science of Where. Anand Raisinghani Head Platform & Data Management SAP India 10 September, 2018 Intelligent Enterprise meets Science of Where Anand Raisinghani Head Platform & Data Management SAP India 10 September, 2018 Value The Esri & SAP journey Customer Impact Innovation Track Record Customer

More information

Code Inspector User Manual

Code Inspector User Manual Code Inspector User Manual Version 2 January 2002 Table of Contents INTRODUCING THE CODE INSPECTOR... 2 CALLING THE CODE INSPECTOR... 2 RESULTS OF THE INSPECTION... 3 CHECKING SEVERAL OF YOUR OBJECTS...

More information

Presented to Procurement & Facilities: October 30, 2014

Presented to Procurement & Facilities: October 30, 2014 EP010 Contract Summary & Report Basics Presented to Procurement & Facilities: October 30, 2014 Overview Getting Started Why EP010 Contract Summary? How Do I Get Access? Security Role and GRC CUPS How to

More information

SAP-ABAP Training Program. Topics Covered. ABAP Dictionary Concepts

SAP-ABAP Training Program. Topics Covered. ABAP Dictionary Concepts SAP-ABAP Training Program Duration: 90 Hrs Training Mode: Class Room/On-line Training Methodology: Real-time Project oriented Training Features: 1. Trainers from Corporate 2. Unlimited Lab facility 3.

More information

Extending the Reach of LSA++ Using New SAP BW 7.40 Artifacts Pravin Gupta, TekLink International Inc. Bhanu Gupta, Molex SESSION CODE: BI2241

Extending the Reach of LSA++ Using New SAP BW 7.40 Artifacts Pravin Gupta, TekLink International Inc. Bhanu Gupta, Molex SESSION CODE: BI2241 Extending the Reach of LSA++ Using New SAP BW 7.40 Artifacts Pravin Gupta, TekLink International Inc. Bhanu Gupta, Molex SESSION CODE: BI2241 Agenda What is Enterprise Data Warehousing (EDW)? Introduction

More information

Performance Optimization

Performance Optimization Joe Darlak and Jesper Christensen SAP BW: Administration and Performance Optimization Galileo Press Bonn Boston Foreword 13 Preface 15 PART I Initial System Setup 1.1 Infrastructure Architecture 22 1.1.1

More information

Where did Visual Explain Go?

Where did Visual Explain Go? Where did Visual Explain Go? Doug Clifton Executive IT Specialist cliftonw@us.ibm.com Information Management Agenda Visual Explain History Stats Advisor DB2 Management Clients Package Optimization Service

More information

Oracle Database 12c: Program with PL/SQL Duration: 5 Days Method: Instructor-Led

Oracle Database 12c: Program with PL/SQL Duration: 5 Days Method: Instructor-Led Oracle Database 12c: Program with PL/SQL Duration: 5 Days Method: Instructor-Led Course Description This training starts with an introduction to PL/SQL and then explores the benefits of this powerful programming

More information

Mainframe Optimization System z the Center of Enterprise Computing

Mainframe Optimization System z the Center of Enterprise Computing Mainframe Optimization System z the Center of Enterprise Computing Presented By: Mark Neft Accenture Application Modernization & Optimization Strategy Lead August 7,2012 Session : 11813 Presentation Abstract:

More information

SAP ABAP WORKBENCH CONCEPTS PART 1 AND 2. INd_rasN. 1 P a g e. KIDS Information Center

SAP ABAP WORKBENCH CONCEPTS PART 1 AND 2. INd_rasN. 1 P a g e. KIDS Information Center 1 P a g e 2 P a g e 3 P a g e 4 P a g e 5 P a g e 6 P a g e 7 P a g e 8 P a g e 9 P a g e 10 P a g e 11 P a g e 12 P a g e 13 P a g e 14 P a g e 15 P a g e 16 P a g e 17 P a g e 18 P a g e 19 P a g e 20

More information

Verint Enterprise Feedback Management TM. EFM 15.1 FP3 Release Overview October 2016

Verint Enterprise Feedback Management TM. EFM 15.1 FP3 Release Overview October 2016 Verint Enterprise Feedback Management TM EFM 15.1 FP3 Release Overview October 2016 Table of Contents Welcome to 15.1 FP3... 1 Advanced Dashboard... 1 Custom Filters By Question... 2 Custom Filter Groups...

More information

AlwaysOn Availability Groups: Backups, Restores, and CHECKDB

AlwaysOn Availability Groups: Backups, Restores, and CHECKDB AlwaysOn Availability Groups: Backups, Restores, and CHECKDB www.brentozar.com sp_blitz sp_blitzfirst email newsletter videos SQL Critical Care 2016 Brent Ozar Unlimited. All rights reserved. 1 What I

More information

Introduction: Overview

Introduction: Overview HELP.LOLIS Release 4.6C SAP AG Copyright Copyright 2001 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

More information

Translation Tools for Coordinators (BC-DOC-TTL)

Translation Tools for Coordinators (BC-DOC-TTL) Translation Tools for Coordinators (BC-DOC-TTL) HELP.BCDOCTTC Release 4.6C SAP AG Copyright Copyright 2001 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted in any

More information

Trigger-Based Data Replication Using SAP Landscape Transformation Replication Server

Trigger-Based Data Replication Using SAP Landscape Transformation Replication Server Installation Guide SAP Landscape Transformation Replication Server Document Version: 1.6 2017-06-14 CUSTOMER Trigger-Based Data Replication Using SAP Landscape Transformation Replication Server - For SAP

More information

The New ABAP Debugger

The New ABAP Debugger The New ABAP Debugger "How to find and correct the most elusive problems in ABAP" Tony Cecchini The New ABAP Debugger Part 1 This ebook will deal with the NEW ABAP debugger in ECC. Part 1 will explore

More information

UNFAIR ADVANTAGE Your Road to SAP Hana 2016 PURE STORAGE INC.

UNFAIR ADVANTAGE Your Road to SAP Hana 2016 PURE STORAGE INC. UNFAIR ADVANTAGE Your Road to SAP Hana 1 1 AGENDA Road to S4 Hana Road to S4 Hana Your Business Opportunity Why is your storage decision important for SAP? Pure Storage and SAP Global Partnership SAP Co-Innovation

More information

What's Currently Happening with Continuous Delivery on the z/os stack?

What's Currently Happening with Continuous Delivery on the z/os stack? Marna WALLE, mwalle@us.ibm.com Member of the IBM Academy of Technology z/os System Installation IBM z Systems, Poughkeepsie NY USA What's Currently Happening with Continuous Delivery on the z/os stack?

More information

Oracle Database: SQL and PL/SQL Fundamentals

Oracle Database: SQL and PL/SQL Fundamentals Oracle University Contact Us: 001-855-844-3881 & 001-800-514-06-9 7 Oracle Database: SQL and PL/SQL Fundamentals Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals training

More information

THE BENEFITS OF DOING THE SAME THING, THE SAME WAY, EVERYWHERE

THE BENEFITS OF DOING THE SAME THING, THE SAME WAY, EVERYWHERE Approved for Public Release THE BENEFITS OF DOING THE SAME THING, THE SAME WAY, EVERYWHERE Tim Swett, Lianne Poisson, Twila Pfieffer, Danny Poisson Raytheon Company GBS Information Technology liveworx.com

More information

Oracle Solaris 10 Recommended Patching Strategy

Oracle Solaris 10 Recommended Patching Strategy 1 Oracle Solaris 10 Recommended Patching Strategy Gerry Haskins, Director, Software Patch Services Oracle Solaris Systems 11 th January 2011 The following is intended to outline our

More information

Oracle Database 11g: Performance Tuning DBA Release 2

Oracle Database 11g: Performance Tuning DBA Release 2 Course Code: OC11PTDBAR2 Vendor: Oracle Course Overview Duration: 5 RRP: POA Oracle Database 11g: Performance Tuning DBA Release 2 Overview This course starts with an unknown database that requires tuning.

More information

About the company. What we do? Cybersecurity solutions adapted to protect enterprise business applications (SAP & Oracle).

About the company. What we do? Cybersecurity solutions adapted to protect enterprise business applications (SAP & Oracle). About the company 2 What we do? Cybersecurity solutions adapted to protect enterprise business applications (SAP & Oracle). Agenda 3 Building a business case for SAP Vulnerability Management How to start

More information

Synchronization mechanisms between SAP BW and SAP HANA authorizations

Synchronization mechanisms between SAP BW and SAP HANA authorizations Synchronization mechanisms between SAP BW and SAP HANA authorizations April 25 th, 2017 Christophe Decamps What we will cover Introduction SAP Security and HANA Authorizations Scenarios SAP HANA Security:

More information

Title: Episode 11 - Walking through the Rapid Business Warehouse at TOMS Shoes (Duration: 18:10)

Title: Episode 11 - Walking through the Rapid Business Warehouse at TOMS Shoes (Duration: 18:10) SAP HANA EFFECT Title: Episode 11 - Walking through the Rapid Business Warehouse at (Duration: 18:10) Publish Date: April 6, 2015 Description: Rita Lefler walks us through how has revolutionized their

More information

Legal Considerations and Case Studies

Legal Considerations and Case Studies Cybersecurity for Small & Mid-Size Businesses Phil Schenkenberg, J.D., CIPP/US Cyrus Malek, J.D., Certification in Cybersecurity and Privacy Law Legal Considerations and Case Studies Copyright, Briggs

More information

Oracle Database: Introduction to SQL/PLSQL Accelerated

Oracle Database: Introduction to SQL/PLSQL Accelerated Oracle University Contact Us: Landline: +91 80 67863899 Toll Free: 0008004401672 Oracle Database: Introduction to SQL/PLSQL Accelerated Duration: 5 Days What you will learn This Introduction to SQL/PLSQL

More information

Data Center Consolidation and Migration Made Simpler with Visibility

Data Center Consolidation and Migration Made Simpler with Visibility Data Center Consolidation and Migration Made Simpler with Visibility Abstract The ExtraHop platform takes the guesswork out of data center consolidation and migration efforts by providing complete visibility

More information

What Does the Future Look Like for Business Continuity Professionals?

What Does the Future Look Like for Business Continuity Professionals? What Does the Future Look Like for Business Continuity Professionals? October 26, 2016 Brian Zawada, FBCI President, US Chapter of the Business Continuity Institute Agenda and Objectives Change Standards

More information

Taming the Beast: Optimizing Oracle EBS for Radical Efficiency

Taming the Beast: Optimizing Oracle EBS for Radical Efficiency Taming the Beast: Optimizing Oracle EBS for Radical Efficiency Presenter Mahesh Vanapalli, Sr. Applications DBA Bachelor s Degree in Computer Science and Engineering from Graduate of Nagarjuna University

More information

FIVE BEST PRACTICES FOR ENSURING A SUCCESSFUL SQL SERVER MIGRATION

FIVE BEST PRACTICES FOR ENSURING A SUCCESSFUL SQL SERVER MIGRATION FIVE BEST PRACTICES FOR ENSURING A SUCCESSFUL SQL SERVER MIGRATION The process of planning and executing SQL Server migrations can be complex and risk-prone. This is a case where the right approach and

More information

REALIZE YOUR. DIGITAL VISION with Digital Private Cloud from Atos and VMware

REALIZE YOUR. DIGITAL VISION with Digital Private Cloud from Atos and VMware REALIZE YOUR DIGITAL VISION with Digital Private Cloud from Atos and VMware Today s critical business challenges and their IT impact Business challenges Maximizing agility to accelerate time to market

More information

How to Check BW system Before Go-Live

How to Check BW system Before Go-Live How to Check BW system Before Go-Live Applies to: SAP Net Weaver BW 7.0. For more information, visit the EDW homepage Summary Detailed description on how & what to check SAP BW system Before Go-Live Author:

More information

Optimizing and Modeling SAP Business Analytics for SAP HANA. Iver van de Zand, Business Analytics

Optimizing and Modeling SAP Business Analytics for SAP HANA. Iver van de Zand, Business Analytics Optimizing and Modeling SAP Business Analytics for SAP HANA Iver van de Zand, Business Analytics Early data warehouse projects LIMITATIONS ISSUES RAISED Data driven by acquisition, not architecture Too

More information

Consuming HANA Live in SAP BW data model

Consuming HANA Live in SAP BW data model Consuming HANA Live in SAP BW data model Agenda Project Architecture SAP HANA Live & SAP BW Data Integration 2 Introduction of Borealis 3 Borealis at a glance 2nd largest polyolefin producer in Europe

More information

Copyright 2018, Oracle and/or its affiliates. All rights reserved.

Copyright 2018, Oracle and/or its affiliates. All rights reserved. Beyond SQL Tuning: Insider's Guide to Maximizing SQL Performance Monday, Oct 22 10:30 a.m. - 11:15 a.m. Marriott Marquis (Golden Gate Level) - Golden Gate A Ashish Agrawal Group Product Manager Oracle

More information

Reporting Duplicate Entries

Reporting Duplicate Entries Applies to: SAP BI 7.0 and above. For more information, visit the Business Intelligence Homepage. Summary It is a common reporting requirement to display duplicate entries based on a characteristic. This

More information

<Insert Picture Here> Managing Oracle Exadata Database Machine with Oracle Enterprise Manager 11g

<Insert Picture Here> Managing Oracle Exadata Database Machine with Oracle Enterprise Manager 11g Managing Oracle Exadata Database Machine with Oracle Enterprise Manager 11g Exadata Overview Oracle Exadata Database Machine Extreme ROI Platform Fast Predictable Performance Monitor

More information

Advancing your SAP Solutions A review of future options around SAP on IBM i and SAP HANA

Advancing your SAP Solutions A review of future options around SAP on IBM i and SAP HANA Advancing your SAP Solutions A review of future options around SAP on IBM i and Ron Schmerbauch, SAP on Power IBM i rschmerb@us.ibm.com November 2016 Enhingen, DE Agenda What do things look like in 4Q2016?

More information

American Society for Quality

American Society for Quality US Army BOSS Program Information Session American Society for Quality Choices and Challenges for the Future 10 September 2017 Certified Lean Six Sigma Black Belt Certified Change Management Advanced Practitioner

More information

Last Updated 8/12/2015. Quick Reference Guide For Suppliers Supplier Portal Overview

Last Updated 8/12/2015. Quick Reference Guide For Suppliers Supplier Portal Overview Last Updated 8/12/2015 LM Procure to Pay Quick Reference Guide For Suppliers Supplier Portal Overview Lockheed Martin Procure to Pay Revised August 2015 Procedure This quick reference guide displays the

More information

Exadata Implementation Strategy

Exadata Implementation Strategy Exadata Implementation Strategy BY UMAIR MANSOOB 1 Who Am I Work as Senior Principle Engineer for an Oracle Partner Oracle Certified Administrator from Oracle 7 12c Exadata Certified Implementation Specialist

More information

VCE A NEW WAY TO DELIVER IT

VCE A NEW WAY TO DELIVER IT VCE A NEW WAY TO DELIVER IT August 2011 Johann Schrem, Principal varchitect, VCE EMEA AGENDA Introduction to VCE The IT lifecycle and its challenges A new way to deliver it Summary INTRODUCTION TO VCE

More information

Copyright 2016 Ramez Elmasri and Shamkant B. Navathe

Copyright 2016 Ramez Elmasri and Shamkant B. Navathe CHAPTER 19 Query Optimization Introduction Query optimization Conducted by a query optimizer in a DBMS Goal: select best available strategy for executing query Based on information available Most RDBMSs

More information

Accelerating Digital Transformation with InterSystems IRIS and vsan

Accelerating Digital Transformation with InterSystems IRIS and vsan HCI2501BU Accelerating Digital Transformation with InterSystems IRIS and vsan Murray Oldfield, InterSystems Andreas Dieckow, InterSystems Christian Rauber, VMware #vmworld #HCI2501BU Disclaimer This presentation

More information

SAP ABAP Interview Questions Part 1

SAP ABAP Interview Questions Part 1 1 of 13 04-Nov-13 12:49 AM SAP ABAP Interview Questions Part 1 Looking for ABAP interview questions? You have come to THE RIGHT place. I have planned to continuously update this blog post. So if you have

More information

Test Suite Knowledge sharing - Solution Manager 7.2. By: Endre Rasmussen At: Coop Norge Date:

Test Suite Knowledge sharing - Solution Manager 7.2. By: Endre Rasmussen At: Coop Norge Date: Test Suite Knowledge sharing - Solution Manager 7.2 By: Endre Rasmussen At: Coop Norge Date: 07.06.18 Expectations Experience Sharing and Demonstration of Test Suite, Solution Manager 7.2 by Coop Coop

More information

MIS 5121: Business Process, ERP Systems & Controls Week 9: Security: User Management, Segregation of Duties (SOD)

MIS 5121: Business Process, ERP Systems & Controls Week 9: Security: User Management, Segregation of Duties (SOD) MIS 5121: Business Process, ERP Systems & Controls Week 9: Security: User Management, Segregation of Duties (SOD) Edward Beaver Edward.Beaver@temple.edu ff Video: Record the Class Discussion v Something

More information

Schwan Food Company s Journey with SAP HANA

Schwan Food Company s Journey with SAP HANA Speakers: Schwan Food Company s Journey with SAP HANA May 14, 2013 From Vision of SAP HANA to EDW on SAP HANA Al Grube Enterprise Information Architect The Schwan Food Company Al.Grube@schwans.com Mark

More information

Fundtech JRE 1.7 Update 45 Issues and Resolution

Fundtech JRE 1.7 Update 45 Issues and Resolution Fundtech JRE 1.7 Update 45 Issues and Resolution 10/17/2013 Summary of Issues Oracle released JRE 1.7 update 45 in the late morning of 10/15/2013. Changes in this version of the JRE created the following

More information

Automated Tools for SAP HANA Performance Optimization

Automated Tools for SAP HANA Performance Optimization Automated Tools for SAP HANA Performance Optimization Webinar Presenters: Albrecht Gass, Chris Hanshew www.smartshifttech.com Agenda 1. Introduction smartshift Technologies 2. SAP HANA Overview 3. SAP

More information

Root Cause Analysis for SAP HANA. June, 2015

Root Cause Analysis for SAP HANA. June, 2015 Root Cause Analysis for SAP HANA June, 2015 Process behind Application Operations Monitor Notify Analyze Optimize Proactive real-time monitoring Reactive handling of critical events Lower mean time to

More information

Making System z the Center of Enterprise Computing

Making System z the Center of Enterprise Computing 8471 - Making System z the Center of Enterprise Computing Presented By: Mark Neft Accenture Application Modernization & Optimization Strategy Lead Mark.neft@accenture.com March 2, 2011 Session 8471 Presentation

More information

EIGNER PLM 5.1 RELEASE NOTES

EIGNER PLM 5.1 RELEASE NOTES EIGNER PLM 5.1 RELEASE NOTES April 22, 2004 Eigner PLM 5.1 represents both: a service release and a feature release. This document outlines improvements as well as major enhancements and additions that

More information

Introduction to SQL/PLSQL Accelerated Ed 2

Introduction to SQL/PLSQL Accelerated Ed 2 Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 67863102 Introduction to SQL/PLSQL Accelerated Ed 2 Duration: 5 Days What you will learn This Introduction to SQL/PLSQL Accelerated course

More information

SAP NLS Update Roland Kramer, SAP EDW (BW/HANA), SAP SE PBS Customer Information Day, July 1st, 2016

SAP NLS Update Roland Kramer, SAP EDW (BW/HANA), SAP SE PBS Customer Information Day, July 1st, 2016 SAP NLS Update 2016 Roland Kramer, SAP EDW (BW/HANA), SAP SE PBS Customer Information Day, July 1st, 2016 Why SAP BW? It is all about three things to know SAPPHIRE 2016 - Quote from Hasso is there anything

More information

Supplier SAP SNC User Guide

Supplier SAP SNC User Guide Supplier SAP SNC User Guide Version 1.0 July 29, 2014 AGCO Corporation Page 1 1 Introduction AGCO has chosen SAP Supplier Network Collaboration (SNC) to improve visibility and capability in North America

More information

1 Dulcian, Inc., 2001 All rights reserved. Oracle9i Data Warehouse Review. Agenda

1 Dulcian, Inc., 2001 All rights reserved. Oracle9i Data Warehouse Review. Agenda Agenda Oracle9i Warehouse Review Dulcian, Inc. Oracle9i Server OLAP Server Analytical SQL Mining ETL Infrastructure 9i Warehouse Builder Oracle 9i Server Overview E-Business Intelligence Platform 9i Server:

More information

How-To Guide SAP NetWeaver Document Version: How To... Configure CM Services in SAP NetWeaver 7.3 and up

How-To Guide SAP NetWeaver Document Version: How To... Configure CM Services in SAP NetWeaver 7.3 and up How-To Guide SAP NetWeaver Document Version: 1.0-2014-07-03 How To... Configure CM Services in SAP NetWeaver 7.3 and up Document History Document Version Description 1.0 First official release of this

More information

PDF / JAVA ENTERPRISE FOR SAP

PDF / JAVA ENTERPRISE FOR SAP 18 March, 2018 PDF / JAVA ENTERPRISE FOR SAP Document Filetype: PDF 374.12 KB 0 PDF / JAVA ENTERPRISE FOR SAP To develop Java projects with enterprise-scale functionality, more than powerful tools and

More information

Oracle Database: Program with PL/SQL

Oracle Database: Program with PL/SQL Oracle University Contact Us: + 420 2 2143 8459 Oracle Database: Program with PL/SQL Duration: 5 Days What you will learn This Oracle Database: Program with PL/SQL training starts with an introduction

More information

SAP HANA Extended Application Services Native Development: Lockheed Martin

SAP HANA Extended Application Services Native Development: Lockheed Martin SAP HANA Extended Application Services Native Development: Lockheed Martin DEV112 Tim Champagne Lockheed Martin Derek Since Deloitte Consulting Learning Points Learn a real world example of the decision

More information

Oracle Database: Program with PL/SQL Ed 2

Oracle Database: Program with PL/SQL Ed 2 Oracle University Contact Us: +38 61 5888 820 Oracle Database: Program with PL/SQL Ed 2 Duration: 5 Days What you will learn This Oracle Database: Program with PL/SQL training starts with an introduction

More information

Intelligent Caching in Data Virtualization Recommended Use of Caching Controls in the Denodo Platform

Intelligent Caching in Data Virtualization Recommended Use of Caching Controls in the Denodo Platform Data Virtualization Intelligent Caching in Data Virtualization Recommended Use of Caching Controls in the Denodo Platform Introduction Caching is one of the most important capabilities of a Data Virtualization

More information

Nimble/Cisco SmartStack Integrated Infrastructure for Enterprise-class Oracle Workloads

Nimble/Cisco SmartStack Integrated Infrastructure for Enterprise-class Oracle Workloads Nimble/Cisco SmartStack Integrated Infrastructure for Enterprise-class Oracle Workloads Nimble Storage Overview 2015 NIMBLE STORAGE CONFIDENTIAL: DO NOT DISTRIBUTE 2 Redefining the Storage Market with

More information

This download file shows detailed view for all updates from BW 7.5 SP00 to SP05 released from SAP help portal.

This download file shows detailed view for all updates from BW 7.5 SP00 to SP05 released from SAP help portal. This download file shows detailed view for all updates from BW 7.5 SP00 to SP05 released from SAP help portal. (1) InfoObject (New) As of BW backend version 7.5 SPS00, it is possible to model InfoObjects

More information

E_HANAAW_12. SAP ABAP for HANA Certification Questions & Answers. E_HANAAW_12

E_HANAAW_12. SAP ABAP for HANA Certification Questions & Answers.  E_HANAAW_12 E_HANAAW_12 SAP ABAP for HANA Certification Questions & Answers http:///sap-hana-certification/sap-abap-sap-hana E_HANAAW_12 SAP Certified Development Specialist - ABAP for SAP HANA (Edition 2016) 40 Questions

More information

SharePoint Migration Options in Ben Athawes, Head of SharePoint

SharePoint Migration Options in Ben Athawes, Head of SharePoint SharePoint Migration Options in 2016 Ben Athawes, Head of SharePoint Platform @bathawes Welcome to the Consortium: SharePoint migration projects The end is nigh Things have changed quite a bit! cloud-first

More information

DSS in Transition RMS Pilot

DSS in Transition RMS Pilot DSS in Transition RMS Pilot Raytheon Company Global Security Services Greg Garcia November 15, 2017 Copyright 2017 Raytheon Company. All rights reserved. Agenda DSS in Transition Evolving with the Threat

More information

Oracle - Oracle Database: Program with PL/SQL Ed 2

Oracle - Oracle Database: Program with PL/SQL Ed 2 Oracle - Oracle Database: Program with PL/SQL Ed 2 Code: Lengt h: URL: DB-PLSQL 5 days View Online This Oracle Database: Program with PL/SQL training starts with an introduction to PL/SQL and then explores

More information

Oracle Database 12c R2: Program with PL/SQL Ed 2 Duration: 5 Days

Oracle Database 12c R2: Program with PL/SQL Ed 2 Duration: 5 Days Oracle Database 12c R2: Program with PL/SQL Ed 2 Duration: 5 Days This Database Program with PL/SQL training shows you how to develop stored procedures, functions, packages and database triggers. You'll

More information

Conditionally control code flow (loops, control structures). Create stored procedures and functions.

Conditionally control code flow (loops, control structures). Create stored procedures and functions. TEMARIO Oracle Database: Program with PL/SQL Ed 2 Duration: 5 Days What you will learn This Oracle Database: Program with PL/SQL training starts with an introduction to PL/SQL and then explores the benefits

More information

New website and new features are you making the most of your space?

New website and new features are you making the most of your space? New website and new features are you making the most of your space? Our new website went live at the beginning of November. We hope you ll agree that it s a massive improvement on the last one and that

More information

SAP NetWeaver How-To Guide How To... Configure SAP HANA for CTS

SAP NetWeaver How-To Guide How To... Configure SAP HANA for CTS SAP NetWeaver How-To Guide How To... Configure SAP HANA for CTS Applicable Releases: SAP Solution Manager 7.1 SPS05, SAP NetWeaver 7.3 including enhancement package 1, or SAP NetWeaver 7.4 SAP HANA Platform

More information

RELEASING LATENT VALUE DOCUMENT: CA NETMASTER NETWORK MANAGEMENT R11.5. Releasing the Latent Value of CA NetMaster Network Management r11.

RELEASING LATENT VALUE DOCUMENT: CA NETMASTER NETWORK MANAGEMENT R11.5. Releasing the Latent Value of CA NetMaster Network Management r11. RELEASING LATENT VALUE DOCUMENT: CA NETMASTER NETWORK MANAGEMENT R11.5 Releasing the Latent Value of CA NetMaster Network Management r11.5 Table of Contents Product Situation Analysis Analysis of Problems

More information

BPM Case Study - Managing Regulatory Controls in the Banking and Financial Sector with Activiti. Greg Harley Director - Special Projects BP3 Global

BPM Case Study - Managing Regulatory Controls in the Banking and Financial Sector with Activiti. Greg Harley Director - Special Projects BP3 Global BPM Case Study - Managing Regulatory Controls in the Banking and Financial Sector with Activiti Greg Harley Director - Special Projects BP3 Global What is BPM? BPM Definition: A management discipline that

More information

Raytheon s Strategic IT Energy and Resource Management Program

Raytheon s Strategic IT Energy and Resource Management Program Raytheon s Strategic IT Energy and Resource Management Program 2degrees Champion Award Application February 2015. Copyright 2014 Raytheon Company. All rights reserved. Customer Success Is Our Mission is

More information

IBM Tivoli Monitoring (ITM) And AIX. Andre Metelo IBM SWG Competitive Project Office

IBM Tivoli Monitoring (ITM) And AIX. Andre Metelo IBM SWG Competitive Project Office IBM Tivoli Monitoring (ITM) And AIX Andre Metelo metelo@us.ibm.com IBM SWG Competitive Project Office Have You Seen A DataCenter Like This? Complexity drives error rates Reduces responsiveness Increases

More information