Oracle LogMiner (10g)

Size: px
Start display at page:

Download "Oracle LogMiner (10g)"

Transcription

1 Oracle LogMiner (10g) Introduction and Case Studies Martin Frauendorfer, SAP Active Global Support 2008

2 Agenda 1. Introduction 2. Case Study 1: ORA Problem 3. Case Study 2: Core Dump Problem SAP 2007 / Page 2

3 Oracle LogMiner (1) What is the LogMiner? Based on LogMiner it is possible to extract data from the redo logs, e.g.: DML operations that were executed (redo information) DML operations to undo the executed DML operations (undo information) DDL operations Timestamp of the executed operations SCN of the executed operations Using LogMiner on Oracle 10g is rather simple in the standard case: Make sure that the necessary redo logs are available in the archive directory Start LogMiner and provide the timeframe you want to analyze LogMiner will then make the redo log data available via V$LOGMNR_CONTENTS Select the desired data from V$LOGMNR_CONTENTS SAP 2007 / Page 3

4 Oracle LogMiner (2) Redologs t EXECUTE DBMS_LOGMNR.START_LOGMNR - ( STARTTIME => TO_DATE(' :00:00', 'DD.MM.YYYY HH24:MI:SS'), - ENDTIME => TO_DATE(' :00:00', 'DD.MM.YYYY HH24:MI:SS'), ); Data extraction V$LOGMNR_CONTENTS Individual selections WHERE SEG_NAME = TATAF WHERE SQL_REDO LIKE DROP% WHERE OPERATION = DDL SAP 2007 / Page 4

5 Oracle LogMiner (3) Data Extraction: Command: EXECUTE DBMS_LOGMNR.START_LOGMNR - ( STARTTIME => <start_time> - ); ENDTIME => <end_time> - OPTIONS => DBMS_LOGMNR.DICT_FROM_ONLINE_CATALOG+ - Explanation of options: DBMS_LOGMNR.CONTINUOUS_MINE+ - DBMS_LOGMNR.COMMITTED_DATA_ONLY - DICT_FROM_ONLINE_CATALOG: Dictionary information is retrieved from data dictionary of current database CONTINUOUS_MINE: Necessary redo logs are determined by Oracle automatically COMMITTED_DATA_ONLY: Output contains only already committed data Compared to Oracle 9i it is usually no longer necessary to manually create a dictionary or make the redo logs known to LogMiner. Instead the specification of a start time and an end time is usually sufficient. SAP 2007 / Page 5

6 Oracle LogMiner (4) V$LOGMINER_CONTENTS: Important values available for each change: SCN: System change number TIMESTAMP: Timestamp COMMIT_TIMESTAMP: Commit timestamp SEG_OWNER: Owner of involved segment SEG_NAME: Name of involved segment SESSION_INFO: Information related to Oracle session OPERATION: Type of change (INSERT, UPDATE, DELETE, DDL, ) SQL_REDO: SQL statement to redo the change SQL_UNDO: SQL statement to undo the change SAP 2007 / Page 6

7 Oracle LogMiner (5) SELECT TIMESTAMP, OPERATION, SQL_REDO FROM V$LOGMNR_CONTENTS WHERE SEG_NAME = '<segment_name>'; SELECT SQL_UNDO FROM V$LOGMNR_CONTENTS WHERE OPERATION = 'DELETE' AND SEG_NAME = '<segment_name>'; Changes of a certain segment Generation of statements to undo DELETE operations related to a segment Recorded COMMITs per minute SELECT TO_CHAR(TIMESTAMP, 'DD.MM.YYYY HH24:MI') "MINUTE", COUNT(*) NUMBER_OF_COMMITS FROM V$LOGMNR_CONTENTS GROUP BY TO_CHAR(TIMESTAMP, 'DD.MM.YYYY HH24:MI') ORDER BY 1; V$LOGMNR_CONTENTS DROP of a table DDL statements SELECT TIMESTAMP, SQL_REDO FROM V$LOGMNR_CONTENTS WHERE OPERATION = 'DDL' AND UPPER(SQL_REDO) LIKE 'DROP%<segment_name>%'; SELECT TIMESTAMP, SQL_REDO, SEG_NAME SEGMENT_NAME FROM V$LOGMNR_CONTENTS WHERE OPERATION = 'DDL'; SAP 2007 / Page 7

8 Oracle LogMiner (6) Obvious situations when LogMiner can be pretty useful: A table was dropped accidentally You can determine the exact SCN of the DROP. Then on a separate system a recovery can be done up to the SCN before the DROP. So all data can be retrieved that existed in the table at the time of the DROP. It is not clear when and how table data was changed You can determine exact timestamps and other details of the DML operations that accessed the table. Based on this you can be able to understand the root cause. You want to understand why a high amount of redo logs is generated The LogMiner information is able to tell you which kind of changes happen most frequently. Less obvious situations when LogMiner can be pretty useful: Errors ORA-08103: object no longer exists See subsequent case studies Core dumps during DML operations See subsequent case studies SAP 2007 / Page 8

9 Case Study 1: ORA (1) What does ORA-08103: object no longer exists indicate? In most of the cases this error is an indication for a block corruption. Rather than containing data the block is completely filled with zero values. In some cases like in this case study it really means that an accessed object no longer exists. This scenario can happen if a long running SELECT is started and during its execution the accessed table is dropped. In SAP environments this will usually not happen because normally no DROP is executed. Nevertheless there are some situations where DROPs take place and theoretically an ORA can result, e.g.: During BRSPACE online reorganizations when the source table is dropped During certain BI activities when tables or partitions are dropped SAP 2007 / Page 9

10 Case Study 1: ORA (2) What was the initial situation in the concrete case? SAP 2007 / Page 10 A customer suffered from sporadic, not reproducible ORA errors. Consistency checks were always fine so there was no block corruption. Tracefiles were generated in <sapdata_home>/saptrace/usertrace containing information like the following: *** ACTION NAME:(5896) :37: *** MODULE NAME:(SAPLRSDRS) :37: *** SERVICE NAME:(<sid>.world) :37: *** SESSION ID:(82.14) :37: *** :37: ksedmp: internal or fatal error ORA-08103: object no longer exists Current SQL statement for this session: SELECT /*+ STAR_TRANSFORMATION FACT( T_00 ) */... FROM "/BIC/FZPCA01" T_00... The related BI fact table was always /BIC/FZPCA01. As no block corruption exists, a DROP should be responsible for the error. In order to find out more the above error on 23:37:12 was checked in detail.

11 Case Study 1: ORA (3) Analysis steps: A DROP may not immediately result in an error if a complex join is processed (like in this case). Therefore it is important to check for DROP operations between the start of the SQL statement (SQL_ID: g09p4p0k4qp38) and the error time. Based on the Oracle active session history it was possible to determine that the execution started at 23:32:17: Now the following LogMiner extraction can be started: EXECUTE DBMS_LOGMNR.START_LOGMNR - ( STARTTIME => TO_DATE(' :32:00', 'DD.MM.YYYY HH24:MI:SS'), - ); ENDTIME => TO_DATE(' :38:00', 'DD.MM.YYYY HH24:MI:SS'), - OPTIONS => DBMS_LOGMNR.DICT_FROM_ONLINE_CATALOG+ - DBMS_LOGMNR.CONTINUOUS_MINE - ASH Information SAP 2007 / Page 11

12 Case Study 1: ORA (4) Analysis steps (2): As next step a SELECT for DDL operations can be performed on V$LOGMNR_CONTENTS: SELECT TO_CHAR(TIMESTAMP, 'dd.mm.yyyy hh24:mi:ss') TIMESTAMP, SQL_REDO FROM V$LOGMNR_CONTENTS WHERE OPERATION = 'DDL'; Among others the output contained the following: TIMESTAMP SQL_REDO :35:08 ALTER TABLE "/BIC/FZPCA01" DROP PARTITION "/BIC/FZPCA "; Similar checks for other occurrences of ORA also returned DROP PARTITION operations on table /BIC/FZPCA01. At this point it was very likely that the DROP PARTITION command is the root cause of the ORA SAP 2007 / Page 12

13 Case Study 1: ORA (5) Analysis steps (3): But what is special in this system? If there is a general problem in BI / SEM we should see the ORA more frequently DROP PARTITION was executed in this case as part of a BI compression activity. According to the customer it is guaranteed that the SELECT operations always retrieve data from partitions that are not dropped at the same time. Further analysis showed that this information was really correct. So the big question was: Why are SELECT operations cancelled although they need not to read any data from the dropped partition? SAP 2007 / Page 13

14 Case Study 1: ORA (6) Analysis steps (4): The answer can be found by looking at the execution plan of the SELECT: Execution Plan Although only data from one partition is needed, the CBO decides to perform a PARTITION RANGE ALL! As a consequence also the dropped partition is accessed! But why does the CBO decide to use this bad execution plan instead of a single partition access? Because the statistics indicate that the table is empty: Table /BIC/FZPCA01 SAP 2007 / Page 14 Last statistics date Analyze Method Compute Number of rows 0 Number of blocks allocated 0 Number of empty blocks Average space Chain count 0 Average row length 0 Partitioned YES

15 Case Study 1: ORA (7) Analysis steps (5): If the table is empty, it doesn t matter for the CBO if it has to scan only 1 or many empty partitions. The costs are optimal in any case. So it decided to do the PARTITION RANGE ALL access. Instead of being empty the table had 1.8 million records at the time of the problem. This resulted in a rather long SELECT runtime and the intermittent ORA errors. What is the final solution? New CBO statistics had to be created. Then the CBO recognized that a single partition scan is much better. The dropped partitions were no longer accessed. The ORA no longer appeared And last but not least: The query performance was also much better. Lesson learned: An ORA can be caused by outdated CBO statistics! SAP 2007 / Page 15

16 Case Study 2: Core Dumps What was the problem situation? A BI compression run failed reproducible with ORA ORA indicates that no connection between SAP work process and Oracle shadow process exists any more. There can be dozens of root causes for ORA-03113, but in this particular case on Oracle side a trace file with the following content was written: Exception signal: 11 0xf454 (0000F454) e This means that the Oracle shadow process was terminated due to signal 11 from the operating system which is the main problem here. Unfortunately not any additional information was available: No stack trace in the Oracle trace file No core dump written No SQL statement logged Checks for corruptions and bitmap index issues didn t reveal any problem. From the Oracle active session history it was only clear that an UPDATE on table /BIC/EC3CACCGCR must have been failed, but it was not clear, which concrete values were used in the failing SQL statement. SAP 2007 / Page 16

17 Case Study 2: Core Dumps (2) Analysis Steps (1): At this point it is important to determine the exact SQL statement (with real values, not bind variables) that runs into the core dump, but this is not easy at all because: The failure happens within a stored procedure generated by BI where millions of records are updated. Therefore not the individual UPDATE statements, but only the stored procedure is displayed on SAP side in transactions like ST05 (SQL trace) or ST22 (short dump) or in work process trace files. The Oracle active session history only displays the SQL statement with bind variables, but not with real values. Activating a SQL trace on Oracle side results in a significant slowdown and huge trace files (that exceeded the available filesystem space at the customer). Therefore it was useful to check the individual UPDATE statements based on LogMiner. SAP 2007 / Page 17

18 Case Study 2: Core Dumps (3) Analysis Steps (2): The problem was reproduced again. In the Oracle ORA trace file the timestamp :47:34 was found. LogMiner was started with a restriction to the short time frame of the termination: EXECUTE DBMS_LOGMNR.START_LOGMNR - ( STARTTIME => TO_DATE( :47:34', 'DD.MM.YYYY HH24:MI:SS'), - ENDTIME => TO_DATE( :47:38', 'DD.MM.YYYY HH24:MI:SS'), - OPTIONS => DBMS_LOGMNR.DICT_FROM_ONLINE_CATALOG+ - DBMS_LOGMNR.CONTINUOUS_MINE - ); Now the SCN of the most recent UPDATE can be determined: SELECT TO_CHAR(TIMESTAMP, dd.mm.yyyy hh24:mi:ss ) TIMESTAMP, SCN FROM V$LOGMNR_CONTENTS WHERE OPERATION = UPDATE AND SEG_NAME = /BIC/EC3CACCGCR ORDER BY SCN; SAP 2007 / Page 18

19 Case Study 2: Core Dumps (4) Analysis Steps (3): The result was: TIMESTAMP SCN :47: :47: :47: :47: :47: :47: :47: :47: :47: :47: :47: :47: The ten records with SCN must have been the last successful UPDATEs before the failure. SAP 2007 / Page 19

20 Case Study 2: Core Dumps (5) Analysis Steps (4): The simplified next steps are now: Determine E fact table ROWID of the last successful records based on the SQL_REDO information in V$LOGMNR_CONTENTS Determine E fact table key columns of the last successful records based on the ROWID Determine F fact table records with same key columns Determine subsequent E and F fact table record Perform the UPDATE on the subsequent E fact table record by adding the F fact table delta values Core Dump! At this point the failing UPDATE could be simplified until it turned out that the following column command was the problem: UPDATE "/BIC/EC3CACCGCR" SET "/BIC/N_VP_LSAL" = "/BIC/N_VP_LSAL" WHERE KEY_C3CACCGCRP = 0 AND KEY_C3CACCGCRT = 147 AND KEY_C3CACCGCRU = 9 AND KEY_C3CACCGCR1 = 23 AND KEY_C3CACCGCR2 = 19 AND KEY_C3CACCGCR3 = 2 AND KEY_C3CACCGCR4 = 2 AND KEY_C3CACCGCR5 = 20; SAP 2007 / Page 20

21 Case Study 2: Core Dumps (6) Analysis Steps (5): The former value of /BIC/N_VP_LSAL was E-33. A dump of this number delivered: DUMP("/BIC/N_VP_LSAL") Typ=2 Len=3: 79,1,102 It turned out that this number is an invalid FLOAT number that was inserted in the database due to Oracle bug described in SAP note As the small value was a consequence of rounding errors it was okay to update the wrong value with a correct 0 value and the problem was resolved. SAP 2007 / Page 21

22 Thank you! SAP 2007 / Page 22

23 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 2007 / Page 23

Enhanced Change and Transport System (CTS+) in a SAP NetWeaver Portal landscape. January 2008

Enhanced Change and Transport System (CTS+) in a SAP NetWeaver Portal landscape. January 2008 Enhanced Change and Transport System (CTS+) in a SAP NetWeaver Portal landscape January 2008 1 Agenda 1. Transports in the Portal 2. What is CTS+ 3. Transports in the Portal with CTS+ SAP 2007 / Page 2

More information

The SAP Transaction Model: Know Your Applications

The SAP Transaction Model: Know Your Applications The SAP Transaction Model: Know Your Applications SYSTEMATIC THOUGHT LEADERSHIP FOR INNOVATIVE BUSINESS Shel Finkelstein, Rainer Brendle, Dean Jacobs, Manfred Hirsch and Ulrich Marquard SAP Labs {firstname.lastname}@sap.com

More information

SAP NetWeaver 7.0: ETL and EII

SAP NetWeaver 7.0: ETL and EII SAP NetWeaver 7.0: ETL and EII Overview Product Management SAP NetWeaver BI November 2007 Agenda 1. Overview 2. ETL 2.1. Extraction 2.2. Transformation 2.3. Data Distribution 2.4. Real-Time Data Acquisition

More information

The Open Group Conference London. SAP EAF and TOGAF 9. History, differences, similarities and recommendations for the future

The Open Group Conference London. SAP EAF and TOGAF 9. History, differences, similarities and recommendations for the future The Open Group Conference London SAP EAF and TOGAF 9 History, differences, similarities and recommendations for the future A personal (and software vendor) perspective! Steve Kirby Principal Enterprise

More information

The SAP Eclipse Story. Rainer Ehre, NW C Tools Malte Kaufmann, NW C Tools 10/11/2007

The SAP Eclipse Story. Rainer Ehre, NW C Tools Malte Kaufmann, NW C Tools 10/11/2007 The SAP Eclipse Story Rainer Ehre, NW C Tools Malte Kaufmann, NW C Tools 10/11/2007 Agenda 1. Eclipse Positioning in SAP s Product Strategy 2. SAP Eclipse History 3. Demo SAP NetWeaver Developer Studio

More information

SAP NetWeaver 7.0 Product Availability Matrix (PAM)

SAP NetWeaver 7.0 Product Availability Matrix (PAM) SAP NetWeaver 7.0 Product Availability Matrix (PAM) This PAM represents current planning for NW only and not for the SAP products using NW and can be subject to further changes without further notice SAP

More information

Introduction to Data Archiving

Introduction to Data Archiving Introduction to Data Archiving Georg Fischer, Product Manager PDMS SAP AG This presentation outlines our general product direction and should not be relied on in making a purchase decision. This presentation

More information

What s New? SAP HANA SPS 07 Fuzzy Search (Delta from SPS 06 to SPS 07) SAP HANA Product Management November, 2013

What s New? SAP HANA SPS 07 Fuzzy Search (Delta from SPS 06 to SPS 07) SAP HANA Product Management November, 2013 What s New? SAP HANA SPS 07 Fuzzy Search (Delta from SPS 06 to SPS 07) SAP HANA Product Management November, 2013 Scope The scope of the extended development topic SAP HANA Fuzzy Search covers Fault-tolerant

More information

What s New? SAP HANA SPS 07 SAP HANA tailored data center integration. SAP HANA Product Management November, 2013

What s New? SAP HANA SPS 07 SAP HANA tailored data center integration. SAP HANA Product Management November, 2013 What s New? SAP HANA SPS 07 SAP HANA tailored data center integration SAP HANA Product Management November, 2013 Content This presentation provides an overview of the additional deployment option called

More information

What s New? SAP HANA SPS 07 Administration & Monitoring (Delta from SPS 06 to SPS 07) SAP HANA Product Management November, 2013

What s New? SAP HANA SPS 07 Administration & Monitoring (Delta from SPS 06 to SPS 07) SAP HANA Product Management November, 2013 What s New? SAP HANA SPS 07 Administration & Monitoring (Delta from SPS 06 to SPS 07) SAP HANA Product Management November, 2013 Content This presentation provides an overview of the changes regarding

More information

Overview on POWER List concept Designing new POWER Lists Implementing new POWER Lists. SAP AG 2007, SAP All-in-One: UE Workshop 1 JJ 2007

Overview on POWER List concept Designing new POWER Lists Implementing new POWER Lists. SAP AG 2007, SAP All-in-One: UE Workshop 1 JJ 2007 POWER Lists (Part I) Contents: Overview on POWER List concept Designing new POWER Lists Implementing new POWER Lists SAP AG 2007, SAP All-in-One: UE Workshop 1 The topic of POWER Lists is divided into

More information

MaxDB No-Reorganization Principle Data Storage Without I/O Bottlenecks Release 7.6

MaxDB No-Reorganization Principle Data Storage Without I/O Bottlenecks Release 7.6 MaxDB No-Reorganization Principle Data Storage Without I/O Bottlenecks Release 7.6 Heike Gursch Werner Thesing 1 Overview No-reorganization principle B* trees Shadow page algorithm SAP 2007 / MaxDB Internals

More information

What s New? SAP HANA SPS 07 SAP HANA Platform Lifecycle Management (Delta from SPS 06 to SPS 07) SAP HANA Product Management November, 2013

What s New? SAP HANA SPS 07 SAP HANA Platform Lifecycle Management (Delta from SPS 06 to SPS 07) SAP HANA Product Management November, 2013 What s New? SAP HANA SPS 07 SAP HANA Platform Lifecycle Management (Delta from SPS 06 to SPS 07) SAP HANA Product Management November, 2013 Agenda Overview SAP HANA lifecycle management tools offerings

More information

SAP HANA Revision Strategy. SAP HANA Product Management May 2014

SAP HANA Revision Strategy. SAP HANA Product Management May 2014 SAP HANA Revision Strategy SAP HANA Product Management May 2014 Table of Contents SAP HANA Revision Understand the difference between Support Package Stack, Support Packages and Revisions SAP HANA Release

More information

Technical Architecture Overview SAP BPC

Technical Architecture Overview SAP BPC Technical Architecture Overview SAP BPC Agenda Presentation Purpose Provide an overview of the technology components that comprise the BPC platform Today. Explain how components can be mixed to design

More information

What s New? SAP HANA SPS 07 Security (Delta from SPS 06 to SPS 07) SAP HANA Product Management November, 2013

What s New? SAP HANA SPS 07 Security (Delta from SPS 06 to SPS 07) SAP HANA Product Management November, 2013 What s New? SAP HANA SPS 07 Security (Delta from SPS 06 to SPS 07) SAP HANA Product Management November, 2013 Agenda Authentication User/role management Authorization Encryption Audit logging Documentation

More information

Tips & Tricks for FOX Formulas in BW-BPS

Tips & Tricks for FOX Formulas in BW-BPS SAP NetWeaver Know-How Network Conference Call Tips & Tricks for FOX Formulas in BW-BPS Marc F. Bernard Platinum Consultant SAP NetWeaver RIG Americas SAP Labs, LLC Thursday, March 10, 2005 Learning Objectives

More information

SAP NetWeaver IT Scenario Overview <insert scenario name>

SAP NetWeaver IT Scenario Overview <insert scenario name> SAP NetWeaver IT Scenario Overview Using Room Extensions SAP NetWeaver Product Management Introduction to Room Extensions Mapping Plan Example How to develop an Extension Value Set

More information

Rounding Specification. Globalization Product Management Japan / SAP Japan November 27 th, 2012

Rounding Specification. Globalization Product Management Japan / SAP Japan November 27 th, 2012 Rounding Specification Globalization Product Management Japan / SAP Japan November 27 th, 2012 Disclaimer This message outlines our general product direction and should not be relied on in making a purchase

More information

What s New? SAP HANA SPS 07 Real-Time Data Replication with SAP Landscape Transformation Replication Server (Delta from SPS 06 to SPS 07)

What s New? SAP HANA SPS 07 Real-Time Data Replication with SAP Landscape Transformation Replication Server (Delta from SPS 06 to SPS 07) What s New? SAP HANA SPS 07 Real-Time Data Replication with SAP Landscape Transformation Replication Server (Delta from SPS 06 to SPS 07) SAP HANA Product Management November, 2013 Agenda o Overview o

More information

Andreas Stolz NetWeaver RIG Expert, SAP AG Walldorf, Nov. 2006

Andreas Stolz NetWeaver RIG Expert, SAP AG Walldorf, Nov. 2006 XI Operations Nordic SAP User Group Andreas Stolz NetWeaver RIG Expert, SAP AG Walldorf, Nov. 2006 Learning Objectives As a result of this workshop, you will be able to: Describe Process Integration system

More information

Adobe Forms Integration in SAP Web AS Marc Chan Sr. NetWeaver Consultant NetWeaver RIG US

Adobe Forms Integration in SAP Web AS Marc Chan Sr. NetWeaver Consultant NetWeaver RIG US Adobe Forms Integration in SAP Web AS 6.40 Marc Chan Sr. NetWeaver Consultant NetWeaver RIG US Agenda Scenario Overview Technical Architecture and Demo SAP AG 2004, Adobe Forms Integration with Web AS

More information

SAP Exchange Infrastructure - Graphical Mapping

SAP Exchange Infrastructure - Graphical Mapping SAP Exchange Infrastructure - Graphical Mapping Joachim Orb SAP AG Thomas Volmering SAP AG Learning Objectives As a result of this workshop, you will be able to: Handle the graphical mapping editor Use

More information

Oracle 11g Ten Less Popular Features

Oracle 11g Ten Less Popular Features Oracle 11g Ten Less Popular Features Martin Frauendorfer, SAP Active Global Support martin.frauendorfer@sap.com November 2011 Agenda Introduction 1. SQL Monitoring 2. Extended Statistics 3. SQL Repair

More information

Yu-Nong Zhang, Roland Hamm, SAP AG

Yu-Nong Zhang, Roland Hamm, SAP AG SAP NetWeaver Java Development Infrastructure (aka NWDI) 19.04.2005 Yu-Nong Zhang, Roland Hamm, SAP AG NWDI - Inhouse Experience Demo: Migrating an J2EE application into NetWeaver Development Infrastructure

More information

Eddy Neveux Solution Architect North America May 26-28, 2015 Public

Eddy Neveux Solution Architect North America May 26-28, 2015 Public SAP HANA 101 Eddy Neveux Solution Architect North America May 26-28, 2015 Public SAP Business One Innovation summit - Barcelona 2015 SAP SE or an SAP affiliate company. All rights reserved. Public 1 Agenda

More information

CANopen Object Browser, Version 0.5

CANopen Object Browser, Version 0.5 CANopen Object Browser, Version 0.5 CANopen Object Browser for generic CAN Interfaces The CANopen Object Browser is a tool to display and browse through a CANopen Object Dictionary based on EDS-Files.

More information

CANopen Object Browser, Version 0.2

CANopen Object Browser, Version 0.2 CANopen Object Browser, Version 0.2 CANopen Object Browser for Linux The CANopen Object Browser is a tool to display and browse through a CANopen Object Dictionary based on EDS-Files. The program allows

More information

Innovations in V6.5 Consolidation

Innovations in V6.5 Consolidation Innovations in V6.5 Consolidation 2013-07-15 2013 APIS IT GmbH IQ Software Update Tutorial Excerpt: Consolidation 1 Copyright / authors: Version: July 01, 2013 Authors: Training team of APIS Informationstechnologien

More information

Installation Instructions Valid for EPLAN Platform Version 2.6 Status: 07 / 2016

Installation Instructions Valid for EPLAN Platform Version 2.6 Status: 07 / 2016 Installation Instructions Valid for EPLAN Platform Version 2.6 Status: 07 / 2016 EPLAN Software & Service GmbH & Co. KG Technical Information Copyright 2016 EPLAN Software & Service GmbH & Co. KG EPLAN

More information

CANopen Commandline Tool

CANopen Commandline Tool [uv-software] can_open February 2009 CANopen Commandline Tool Abstract can_open Request CANopen services from a CANopen device on the command line. Description The CANopen Commanline Tool is a text based

More information

SAP Automation GUI Code Generator (BC-FES-AIT)

SAP Automation GUI Code Generator (BC-FES-AIT) SAP Automation GUI Code Generator (BCFESAIT) HELP.BCFESDEB Release 4.6C SAP Automation GUI Code Generator (BCFESAIT) SAP AG Copyright Copyright 2001 SAP AG. Alle Rechte vorbehalten. Weitergabe und Vervielfältigung

More information

ABAP Course. ABAP Objects and Business Server Pages

ABAP Course. ABAP Objects and Business Server Pages ABAP Course ABAP Objects and Business Server Pages Lecturer: André Bögelsack, UCC Technische Universität München Author: Valentin Nicolescu, André Bögelsack ABAP Course André Bögelsack, Valentin Nicolescu

More information

Hazardous Area Tablet Tab-Ex 01 DZ1 SIM SIM CARD INSTALLATION AL19A

Hazardous Area Tablet Tab-Ex 01 DZ1 SIM SIM CARD INSTALLATION AL19A Hazardous Area Tablet Tab-Ex 01 DZ1 SIM SIM CARD INSTALLATION 100016AL19A 1 Content 1. Requirements...4 2. Required Tools:...4 3. SIM-Card Installation and Replacement instructions...5 3.1 Dissassembly...5

More information

Oracle 10g Performance Case Studies

Oracle 10g Performance Case Studies Oracle 10g Performance Case Studies Martin Frauendorfer Technical Support Consultant, SAP AG martin.frauendorfer@sap.com Copyright 2007 SAP AG. All Rights Reserved No part of this publication may be reproduced

More information

AC500. Application Note. Scalable PLC for Individual Automation. AC500-S safety PLC - Overview of changes in Automation Builder 2.1.x and 2.0.

AC500. Application Note. Scalable PLC for Individual Automation. AC500-S safety PLC - Overview of changes in Automation Builder 2.1.x and 2.0. Application Note AC500 Scalable PLC for Individual Automation AC500-S safety PLC - Overview of changes in Automation Builder 2.1.x and 2.0.x ABB Automation Products GmbH Wallstadter Str. 59 D-68526 Ladenburg

More information

Hardware Requirements

Hardware Requirements Hardware Requirements Hardware Requirements 06.11.06 Unicode non-unicode SAP System Hardware Requirements in SAP Systems Will I need more hardware in a Unicode system than in a non-unicode system? SAP

More information

Using extensible metadata definitions to create a vendor independent SIEM system

Using extensible metadata definitions to create a vendor independent SIEM system Using extensible metadata definitions to create a vendor independent SIEM system Prof. Dr. Kai Oliver Detken (DECOIT GmbH) * Dr. Dirk Scheuermann (Fraunhofer SIT) * Bastian Hellmann (University of Applied

More information

SAP Learning Solution RKT ERP 2005 LSO 6.00

SAP Learning Solution RKT ERP 2005 LSO 6.00 SAP Learning Solution RKT ERP 2005 LSO 6.00 Authoring Environment SAP AG 2005 SAP AG 1 SAP Learning Solution Authoring Environment Metadata management and search Set content to obsolete Repository Explorer

More information

SAP Product Road Map SAP Business Warehouse

SAP Product Road Map SAP Business Warehouse SAP Product Road Map SAP Business Warehouse Road Map Revision: 2015.04.21 Brian Wood and Josh Djupstrom, SAP EDW Product Management (BW/HANA) Customer Template Revision: 20150318 v4.0 Legal disclaimer

More information

ComCom-Ex. Safety instructions

ComCom-Ex. Safety instructions ComCom-Ex Safety instructions 1 Content 1. Application...11 1.1 ATEX & IECEx...11 2. Safety precautions...11 3. Faults and damage...11 4. Safety regulations...12 4.1 Possible devices for connection to

More information

TABLE DISTRIBUTION IN HANA HANA. SAP Active Global Support, June 2012

TABLE DISTRIBUTION IN HANA HANA. SAP Active Global Support, June 2012 TABLE DISTRIBUTION IN HANA HANA SAP Active Global Support, June 2012 Table Distribution : Why Load Balancing Parallelization Table Partitioning - A non-partitioned table can support only 2 billion rows.

More information

Kapsch BusinessCom. When your Anti-Virus turns against you Are you frightened already?

Kapsch BusinessCom. When your Anti-Virus turns against you Are you frightened already? Kapsch BusinessCom When your Anti-Virus turns against you Are you frightened already? Florian Bogner Who Am I Information Security Auditor Speaker and Trainer Bug Bounty Hunter Vulnerabilities identified

More information

SAP NetWeaver MDM MDM Import and Syndication Server & Port Concept

SAP NetWeaver MDM MDM Import and Syndication Server & Port Concept Welcome to your RKT Live Expert Session SAP NetWeaver MDM MDM Import and Syndication Server & Port Concept Michael Reil SAP NetWeaver Product Management Please note that we are recording this session!

More information

Spektroskopiesoftware

Spektroskopiesoftware Spektroskopiesoftware OPUS-ROUTINE for OPUS/IR (Version 3) 08/2000 1991-2000 BRUKER ANALYTISCHE MESSTECHNIK GMBH Text, Abbildungen und Programme wurden mit größter Sorgfalt erarbeitet. Wir können jedoch

More information

4. HIGHER SPHERE GEOMETRY

4. HIGHER SPHERE GEOMETRY 4. HIGHER SPHERE GEOMETRY Objekttyp: Chapter Zeitschrift: L'Enseignement Mathématique Band (Jahr): 25 (1979) Heft 1-2: L'ENSEIGNEMENT MATHÉMATIQUE PDF erstellt am: 12.01.2018 Nutzungsbedingungen Die ETH-Bibliothek

More information

Business Objects Integration Scenario 2

Business Objects Integration Scenario 2 SAP AG May 2010 - Prerequisites Abstract This presentation provides a step by step description how to create an Xcelsius dashboard based on a BI Query (using the SAP NetWeaver BW connection). Prerequisites

More information

SAP Financial Consolidation 10.1, starter kit for IFRS, SP7

SAP Financial Consolidation 10.1, starter kit for IFRS, SP7 SAP Financial Consolidation 10.1, starter kit for IFRS, SP7 Installation guide Copyright 2018 SAP BusinessObjects. All rights reserved. SAP BusinessObjects and its logos, BusinessObjects, Crystal Reports,

More information

SAP Plant Connectivity 2.2

SAP Plant Connectivity 2.2 SAP Plant Connectivity 2.2 PCo Functions / Destinations Release 2.2 Function / Destination Bidirectional Queries Software Development Kit (SDK) for custom agents RFC Destination to EWM RFC Destination

More information

Do Exception Broadcasting

Do Exception Broadcasting How-to Guide SAP NetWeaver 2004s How To Do Exception Broadcasting Version 1.00 October 2006 Applicable Releases: SAP NetWeaver 2004s Copyright 2006 SAP AG. All rights reserved. No part of this publication

More information

SAP NetWeaver Process Integration 7.1

SAP NetWeaver Process Integration 7.1 SAP NetWeaver Process Integration 7.1 Using Integration Processes (ccbpm) in SAP NetWeaver Process Integration 7.1 SAP NetWeaver Regional Implementation Group SAP NetWeaver Product Management December

More information

MODULE 2: CREATE A DECISION TABLE USING RULES COMPOSER (BRM)

MODULE 2: CREATE A DECISION TABLE USING RULES COMPOSER (BRM) SOA EXPERIENCE WORKSHOP MODULE 2: CREATE A DECISION TABLE USING RULES COMPOSER (BRM) Exercises / Solutions SAP NETWEAVER PRODUCT MANAGEMENT SOA SOA EXPERIENCE WORKSHOP 1 Creating a decision table using

More information

What's New in the DBA Cockpit with SAP NetWeaver 7.0

What's New in the DBA Cockpit with SAP NetWeaver 7.0 What's New in the DBA Cockpit with SAP NetWeaver 7.0 Applies to: Database monitoring and administration of SAP systems running on DB2 for Linux, UNIX, and Windows using the latest DBA Cockpit that has

More information

Visual Composer - Task Management Application

Visual Composer - Task Management Application Visual Composer - Task Management Application Applies to: Visual Composer for NetWeaver 2004s. Summary This document describes the basic functionality of the Task Management application, which is now available

More information

1. Introduction. L'Enseignement Mathématique. Band (Jahr): 48 (2002) L'ENSEIGNEMENT MATHÉMATIQUE. PDF erstellt am:

1. Introduction. L'Enseignement Mathématique. Band (Jahr): 48 (2002) L'ENSEIGNEMENT MATHÉMATIQUE. PDF erstellt am: 1. Introduction Objekttyp: Chapter Zeitschrift: L'Enseignement Mathématique Band (Jahr): 48 (2002) Heft 3-4: L'ENSEIGNEMENT MATHÉMATIQUE PDF erstellt am: 19.07.2018 Nutzungsbedingungen Die ETH-Bibliothek

More information

AC500 V2.1 ACSM1. Profibus DP

AC500 V2.1 ACSM1. Profibus DP Application Example www.infoplc.net AC500 Scalable PLC for Individual Automation Connect AC500 V2.1 to ACSM1 with Profibus DP using Drive Manager Connect AC500 V2.1 To ACSM1 With Profibus DP Content www.infoplc.net

More information

SAP Fiori Toolkit. Marc Anderegg, RIG, SAP February, Provided by Rapid Innovation Group (RIG)

SAP Fiori Toolkit. Marc Anderegg, RIG, SAP February, Provided by Rapid Innovation Group (RIG) SAP Fiori Toolkit Marc Anderegg, RIG, SAP February, 2014 Provided by Rapid Innovation Group (RIG) Agenda 1 2 3 4 SAP Fiori Toolkit Overview SAP Fiori Extensibility Concept Overview Demo Useful Links SAP

More information

Install TREX for CAF Version 1.00 March 2006

Install TREX for CAF Version 1.00 March 2006 How-to Guide SAP NetWeaver 04s How To Install TREX for CAF Version 1.00 March 2006 Applicable Releases: SAP NetWeaver 04s Copyright 2006 SAP AG. All rights reserved. No part of this publication may be

More information

Poor Man s Auditing with. Oracle Log Miner

Poor Man s Auditing with. Oracle Log Miner Poor Man s Auditing with Oracle Log Miner Caleb Small, BSc, ISP www.caleb.com/dba Who is Caleb? Lifelong IT career Oracle DBA since v7.0 Former Instructor for Oracle Corp. Independent consultant Faculty

More information

How to Upgr a d e We b Dynpro Them e s from SP S 9 to SP S 1 0

How to Upgr a d e We b Dynpro Them e s from SP S 9 to SP S 1 0 How- to Guide SAP NetW e a v e r 0 4 How to Upgr a d e We b Dynpro Them e s from SP S 9 to SP S 1 0 Ver si o n 1. 0 0 Dec e m b e r 2 0 0 4 Applic a b l e Rele a s e s : SAP NetW e a v e r 0 4 SP Sta c

More information

Modem for SITRANS TK 7NG3190-6KB C79000-B7174-C14 SIEMENS SITRANS TK COM 1 MODEM

Modem for SITRANS TK 7NG3190-6KB C79000-B7174-C14 SIEMENS SITRANS TK COM 1 MODEM Modem for SITRANS TK 7NG3190-6KB I ns t r uct i o n M a nua l SIEMENS 2 SITRANS TK MODEM COM 1 C79000-B7174-C14 SITRANS und SIPROM sind eingetragene Warenzeichen der Siemens AG. Die übrigen Bezeichnungen

More information

Create Partitions in SSAS of BPC Version 1.00 Feb 2009

Create Partitions in SSAS of BPC Version 1.00 Feb 2009 How-to Guide SAP EPM How To Create Partitions in SSAS of BPC Version 1.00 Feb 2009 Applicable Releases: SAP BPC 5.x Copyright 2007 SAP AG. All rights reserved. No part of this publication may be reproduced

More information

Development of an Object Oriented Data Model ADDAM for Applications in Aircraft Design

Development of an Object Oriented Data Model ADDAM for Applications in Aircraft Design Development of an Object Oriented Data Model ADDAM for Applications in Aircraft Design MATLAB EXPO 2014 9 th July, Munich Fellow of Munich Aerospace e.v. Research Associate, Technical University of Munich

More information

Redefine Business by Building Unique Applications on SAP HANA with Red Hat. Jordan Cao Director, SAP Global Product Marketing June, 2016

Redefine Business by Building Unique Applications on SAP HANA with Red Hat. Jordan Cao Director, SAP Global Product Marketing June, 2016 Redefine Business by Building Unique Applications on SAP HANA with Red Hat Jordan Cao Director, SAP Global Product Marketing June, 2016 Custom applications: key to modern IT Packaged Applications 26% App

More information

How To Recover Login Module Stack when login to NWA or Visual Administrator is impossible

How To Recover Login Module Stack when login to NWA or Visual Administrator is impossible SAP NetWeaver How-To Guide How To Recover Login Module Stack when login to NWA or Visual Administrator is impossible Applicable Releases: SAP NetWeaver 7.0 SAP NetWeaver CE 7.1 Topic Area: Security & Identity

More information

Design and implementation of Virtual Security Appliances (VSA) for SME

Design and implementation of Virtual Security Appliances (VSA) for SME Design and implementation of Virtual Security Appliances (VSA) for SME Prof. Dr. Kai-Oliver Detken, DECOIT GmbH (Germany) Christoph Dwertmann, NICTA (Australia) Table of contents Short introduction of

More information

Installation Guide SAP IT Infrastructure Management. Target Audience Consultants Administrators Others

Installation Guide SAP IT Infrastructure Management. Target Audience Consultants Administrators Others Installation Guide SAP IT Infrastructure Management Target Audience Consultants Administrators Others CUSTOMER Document version: 1.1 06/11/2012 Document History Caution Before you start the implementation,

More information

IDoc Class Library (BC-FES-AIT)

IDoc Class Library (BC-FES-AIT) IDoc Class Library (BC-FES-AIT) HELP.BCFESDED Release 4.6C SAP AG Copyright Copyright 2001 SAP AG. Alle Rechte vorbehalten. Weitergabe und Vervielfältigung dieser Publikation oder von Teilen daraus sind,

More information

Learning Series: SAP NetWeaver Process Orchestration, secure connectivity add-on 1b) How to Install Guide

Learning Series: SAP NetWeaver Process Orchestration, secure connectivity add-on 1b) How to Install Guide Learning Series: SAP NetWeaver Process Orchestration, secure connectivity add-on 1b) How to Install Guide April, 2012 Download Location at SMP Files available for download Deploying files via JSPM Importing

More information

Data Validation in Visual Composer for SAP NetWeaver Composition Environment

Data Validation in Visual Composer for SAP NetWeaver Composition Environment Data Validation in Visual Composer for SAP NetWeaver Composition Environment Applies to: Visual Composer for SAP enhancement package 1 for SAP NetWeaver Composition Environment 7.1 For more information

More information

Configure TREX 6.1 for Efficient Indexing. Document Version 1.00 January Applicable Releases: SAP NetWeaver 04

Configure TREX 6.1 for Efficient Indexing. Document Version 1.00 January Applicable Releases: SAP NetWeaver 04 How-to Guide SAP NetWeaver 04 How To Configure TREX 6.1 for Efficient Indexing Document Version 1.00 January 2005 Applicable Releases: SAP NetWeaver 04 Copyright 2005 SAP AG. All rights reserved. No part

More information

How To...Consume HANA Models with Input Parameters in BW Virtual Providers

How To...Consume HANA Models with Input Parameters in BW Virtual Providers SAP How-to Guide Database & Technology SAP HANA Appliance How To...Consume HANA Models with Input Parameters in BW Virtual Providers Applicable Releases: SAP HANA 1.0 SPS 04 SAP BW powered by HANA 7.3

More information

SAP NetWeaver Process Integration 7.1. SAP NetWeaver Regional Implementation Group SAP NetWeaver Product Management December 2007

SAP NetWeaver Process Integration 7.1. SAP NetWeaver Regional Implementation Group SAP NetWeaver Product Management December 2007 SAP NetWeaver Process Integration 7.1 Providing Web Services in Java SAP NetWeaver Regional Implementation Group SAP NetWeaver Product Management December 2007 SAP NetWeaver Process Integration 7.1 1 Benefits

More information

Merging Artist systems. For Artist S, M, 32, 64, 128

Merging Artist systems. For Artist S, M, 32, 64, 128 Merging Artist systems For Artist S, M, 32, 64, 128 Document reference 3.2 S. Franke 10/2012 2012 Riedel Communications GmbH & Co KG. Alle Rechte vorbehalten. Dieses Handbuch ist urheberrechtlich geschützt.

More information

Integrate a Forum into a Collaboration Room

Integrate a Forum into a Collaboration Room How-to Guide SAP NetWeaver 04 How To Integrate a Forum into a Collaboration Room Version 1.00 May 2007 Applicable Releases: SAP NetWeaver 04 SPS20 Copyright 2007 SAP AG. All rights reserved. No part of

More information

RFC C++ Class Library (BC-FES-AIT)

RFC C++ Class Library (BC-FES-AIT) RFC C++ Class Library (BC-FES-AIT) HELP.BCFESDEA Release 4.6C SAP AG Copyright Copyright 2001 SAP AG. Alle Rechte vorbehalten. Weitergabe und Vervielfältigung dieser Publikation oder von Teilen daraus

More information

configure an anonymous access to KM

configure an anonymous access to KM How-to Guide SAP NetWeaver 2004s How To configure an anonymous access to KM Version 1.00 February 2006 Applicable Releases: SAP NetWeaver 2004s Copyright 2006 SAP AG. All rights reserved. No part of this

More information

How To... Configure Integrated Configurations in the Advanced Adapter Engine

How To... Configure Integrated Configurations in the Advanced Adapter Engine SAP NetWeaver How-To Guide How To... Configure Integrated Configurations in the Advanced Adapter Engine Applicable Releases: SAP NetWeaver Process Integration 7.1, EhP 1 Topic Area: SOA Middleware Capability:

More information

SAP NetWeaver How-To Guide

SAP NetWeaver How-To Guide SAP NetWeaver How-To Guide Search and Adapt SAP Best Practice content from Business Process Repository (BPR) Applicable Releases: Business Process Blueprinting 1.0 for SAP Solution Manager 7.1 IT Practice

More information

Disclaimer: This PAM represents the current planning and can be subject of further changes without prior notice.

Disclaimer: This PAM represents the current planning and can be subject of further changes without prior notice. SAP NetWeaver Mobile Always Connected 7.0 Product Availability Matrix Disclaimer: This PAM represents the current planning and can be subject of further changes without prior notice. Device Type: PDA Device

More information

How to Translate a Visual Composer Model Part I

How to Translate a Visual Composer Model Part I How to Translate a Visual Composer Model Part I Applies to: SAP NetWeaver Visual Composer. Summary This How To guide is the first part in a series of guides which explain how to create and maintain translations

More information

How To Configure IDoc Adapters

How To Configure IDoc Adapters How-to Guide SAP NetWeaver 04 How To Configure IDoc Adapters Version 1.00 Feb 2005 Applicable Releases: SAP NetWeaver 04 XI 3.0 SR1 and above Copyright 2005 SAP AG. All rights reserved. No part of this

More information

How To Troubleshoot SSL with BPC Version 1.01 May 2009

How To Troubleshoot SSL with BPC Version 1.01 May 2009 How-to Guide SAP CPM How To Troubleshoot SSL with BPC Version 1.01 May 2009 Applicable Releases: SAP BPC 7 Microsoft Copyright 2007 SAP AG. All rights reserved. No part of this publication may be reproduced

More information

Flasher Utility. QUANCOM Informationssysteme GmbH

Flasher Utility. QUANCOM Informationssysteme GmbH Flasher Utility Copyright Alle Angaben in diesem Handbuch sind nach sorgfältiger Prüfung zusammengestellt worden, gelten jedoch nicht als Zusicherung von Produkteigenschaften. QUANCOM haftet ausschließlich

More information

How to Use Function Keys in Mobile Applications for Handhelds

How to Use Function Keys in Mobile Applications for Handhelds SAP NetWeaver How-To Guide How to Use Function Keys in Mobile Applications for Handhelds Applicable Releases: SAP NetWeaver 7.1 Topic Area: User Productivity Capability: Mobile Version 1.00 June 2009 Copyright

More information

BEST PRACTICES FOR BUILDING STATE-OF-THE-ART WEB DYNPRO JAVA USER INTERFACES SAP NetWeaver CE 7.11 EhP1

BEST PRACTICES FOR BUILDING STATE-OF-THE-ART WEB DYNPRO JAVA USER INTERFACES SAP NetWeaver CE 7.11 EhP1 BEST PRACTICES FOR BUILDING STATE-OF-THE-ART WEB DYNPRO JAVA USER INTERFACES SAP NetWeaver CE 7.11 EhP1 Exercises / Solutions Mykola Gorbarov / SAP AG / SAP NW Core UI&AM F Bertram Ganz / SAP AG / SAP

More information

link SAP BPC Excel from an enterprise portal Version th of March 2009

link SAP BPC Excel from an enterprise portal Version th of March 2009 How-to Guide SAP CPM How To link SAP BPC Excel from an enterprise portal Version 1.00 12 th of March 2009 Applicable Releases: SAP BPC 7.0 M, 7.0 NW Copyright 2007 SAP AG. All rights reserved. No part

More information

How To Configure the Websocket Integration with SAP PCo in SAP MII Self Service Composition Environment Tool

How To Configure the Websocket Integration with SAP PCo in SAP MII Self Service Composition Environment Tool SAP MII Websocket Integration with SAP PCo in Self Service Composition Environment How To Configure the Websocket Integration with SAP PCo in SAP MII Self Service Composition Environment Tool Applicable

More information

A Step-By-Step Guide on File to File Scenario Using Xslt Mapping

A Step-By-Step Guide on File to File Scenario Using Xslt Mapping A Step-By-Step Guide on File to File Scenario Using Xslt Mapping Applies to: SAP Exchange Infrastructure (XI) 3.0 / Process Integration (PI) 7.0 This document is for all XI aspirants who want to create

More information

SAP NetWeaver 04. Unification Terminology

SAP NetWeaver 04. Unification Terminology SAP NetWeaver 04 Unification Terminology Version 1.00 March 2005 Copyright 2005 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted in any form or for any purpose

More information

Process Control 2.5 Implementation Checklist

Process Control 2.5 Implementation Checklist SAP SOLUTIONS FOR GOVERNANCE, RISK, AND COMPLIANCE Checklist Process Control 2.5 Implementation Checklist SAP GRC Regional Implementation Group Applicable Releases: SAP GRC Process Control 2.5 IT Practice

More information

MDM Syndicator Create Flat Syndication File

MDM Syndicator Create Flat Syndication File MDM Syndicator Create Flat Syndication File Applies to: SAP NetWeaver Master Data Management (MDM) SP3, SP4, SP5. Summary This article provides a step-by-step procedure in manually syndicate the data to

More information

Cache Settings in Web Page Composer

Cache Settings in Web Page Composer Cache Settings in Web Page Composer Applies to: EP 7.0, SAP NetWeaver Knowledge Management SPS14. For more information, visit the Content Management homepage. Summary This paper explains what cache settings

More information

WDJ: Adaptive Web Service Model Controller Coding Explained

WDJ: Adaptive Web Service Model Controller Coding Explained WDJ: Adaptive Web Service Controller Coding Explained WDJ: Adaptive Web Service Controller Coding Explained Applies to: Web Dynpro for Java UI Development, SAP NetWeaver 04 SP Stack 17, SAP NetWeaver 04s

More information

How To Develop a Simple Web Service Application Using SAP NetWeaver Developer Studio & SAP XI 3.0

How To Develop a Simple Web Service Application Using SAP NetWeaver Developer Studio & SAP XI 3.0 How-to Guide SAP NetWeaver 04 How To Develop a Simple Web Service Application Using SAP NetWeaver Developer Studio & SAP XI 3.0 Version 1.00 Nov 2005 Applicable Releases: SAP NetWeaver 04 SPS 13 and above

More information

How To Set up NWDI for Creating Handheld Applications in SAP NetWeaver Mobile 7.1

How To Set up NWDI for Creating Handheld Applications in SAP NetWeaver Mobile 7.1 SAP NetWeaver How-To Guide How To Set up NWDI for Creating Handheld Applications in SAP NetWeaver Mobile 7.1 Applicable Releases: SAP NetWeaver Mobile 7.1 Topic Area: User Productivity Capability: Mobile

More information

AC500 PLC. IEC Library V3 Example Project Description

AC500 PLC. IEC Library V3 Example Project Description AC500 PLC IEC 61850 Library V3 Example Project Description AC500 PLC IEC 61850 Library V3 Example Project Description NOTICE This document contains information about one or more ABB products and may include

More information

Zone 2/22. Smart-Ex 201 Ex-Handy 209. Safety Instructions

Zone 2/22. Smart-Ex 201 Ex-Handy 209. Safety Instructions Zone 2/22 Smart-Ex 201 Ex-Handy 209 Safety Instructions 1 Content 1. Application... 14 1.1 ATEX & IECEx... 14 1.2 NEC & CEC... 14 2. Safety precautions... 14 3. Faults and damage... 14 4. Safety regulations...

More information

Network Required for SAP HANA System Replication

Network Required for SAP HANA System Replication SAP How-to Guide SAP HANA Network Required for SAP HANA System Replication Applicable Releases: SAP HANA 1.0 Version 2.0 July 2016 For additional information contact: mechthild.bore-wuesthof@sap.com Copyright

More information