Using Oracle9i SCM for Software Configuration Management. An Oracle Technical White Paper July 2002

Size: px
Start display at page:

Download "Using Oracle9i SCM for Software Configuration Management. An Oracle Technical White Paper July 2002"

Transcription

1 Using Oracle9i SCM for Software Configuration Management An Oracle Technical White Paper July 2002

2 INTRODUCTION As organizations strive to build larger, more complex, fully integrated software applications the challenge to manage the development is ever-increasing. Developers are expected to produce quality software that integrates with existing applications and other projects, while working at Internet speed. If control of the versions of software released into a production environment is lost huge costs can be incurred backtracking to a working solution. With global development teams, expected to communicate all changes and dependencies to each other, a more rigorous approach is required beyond and paper based control systems. Software Configuration Management (SCM) aids development by controlling who has access to versions of code and managing the particular versions that go together to create a release. Further control can be achieved by permitting parallel development combined with merging of the development streams. Dependency management between versions and products can also improve the quality and reliability of developed software. Oracle9i Software Configuration Manager (Oracle9i SCM) provides these SCM capabilities as an integral component of Oracle Internet Developer Suite. Education is essential to ensure that development teams take maximum advantage of SCM. This includes a clear understanding of the tools and the benefits of using them. To enable software developers to work together in a carefully managed, secure development environment requires: a repository for storing development objects mechanisms for managing versioned objects controlling access to the repository policies that impose restrictions on versioning operations This document discusses each of the above, adding repository driven impact analysis, and continues with a discussion on how the tools in Oracle Internet Developer Suite integrate with Oracle 9i SCM. Using Oracle Repository for Software Configuration Management 2

3 ORACLE9I SCM OVERVIEW Briefly, Oracle9i SCM is a software configuration management (SCM) system. It was previously available only with Oracle Designer, which is used to model and generate data and applications. The availability of Oracle9i SCM as a separate component helps developers who need an integrated SCM capability for version control and code management outside the Oracle Designer environment. As an integral component of Oracle9iDS, Oracle9i SCM manages structured and unstructured data throughout the development life cycle. It supports multi-developer, multi-stream software development projects of any size and complexity. The key components of Oracle9i SCM are articulated around the repository meta data stored in an Oracle database and various tools that are available to access the meta data as follows: Repository Object Navigator - provides easy to use graphic navigation through repository storage Dependency Manager maintains relationships of dependency among objects, for example which data is used by which code Matrix Diagrammer for analyzing impact of changes on objects Repository Administration Library tools to maintain and administer Oracle Repository Repository Reports provides a variety of reports on Oracle Repository and its usage. STORING DATA Oracle9i SCM acts as a central storage area for structured and unstructured data. Structured data is the meta data used as application building blocks. Application developers use modeling tools such as Oracle9i Designer to create these object definitions in the underlying repository. Unstructured data consists of all types of files and file systems e.g. Oracle Forms.FMB files, text documents, XML files, DTDs, schemas, XSL stylesheets, SQL scripts, Java programs and images. Individual files or complete file systems can be copied into the Oracle9i SCM repository (uploaded), and can then be Using Oracle Repository for Software Configuration Management 3

4 accessed by other tools (e.g., text editors or word processors). Files created in the repository, or uploaded to it, can also be copied to any accessible file system (downloaded). In this overview, we use the generic term 'object' to refer to both structured objects and file system objects. Within the SCM repository, objects are stored in containers. Objects can be manipulated via a Java or PL/SQL API or via tools that use these APIs, such as the Oracle9i SCM Command Line Interface or Repository Object Navigator. For more information on these APIs see the Oracle9i SCM documentation. CONTAINERS Containers are a means of organizing data in a logical fashion, and are similar to directories in a file system. Each object is owned by a container and has a set of audit properties that record details such as the date when the object was created and who created the object. There are two types of container: folders and application systems. Either can hold instances of any type of repository object. Folders are available if you install only the core repository (for example when using the repository as a source control system). Application systems are available (as well as folders) if you install Oracle Designer model in the SCM repository. Containers are also used to control access to repository objects. A user may be granted access to a container and thus to the container objects. Using Oracle Repository for Software Configuration Management 4

5 Workarea Containers Figure 1 Repository Object Navigator showing Containers MANAGING DATA Within the repository there may be many versions of objects. Oracle9i SCM has two primary mechanisms for managing versioned repository objects: WORKAREAS Worakareas are specific views of the repository through which you can work on your own objects. An individual user may not want to see a list of every version of every object in the repository. In addition, some kind of mechanism is needed to ensure that one user does not interfere with another user's work. Oracle9i SCM addresses both these requirements with workareas. Using Oracle Repository for Software Configuration Management 5

6 Figure 2 Workarea views of the Repository CONFIGURATIONS Configurations identify specific versions of objects and group them, e.g., to build a test suite or release a product. A configuration is a collection of repository object versions that are related in some way. Usually a configuration details all the object versions that represent a checkpoint in development or component of an application, for example, all the object versions that make up a payroll production application. Oracle9i SCM provides facilities for the management of configurations, rather like the idea of striping or labeling in some software configuration management systems. A specific object version that is included in a configuration is said to be a member of that configuration. For example, when Using Oracle Repository for Software Configuration Management 6

7 the development of individual objects reaches the stage where you can build a particular application, you need to specify exactly which version of each object is to be used for the build. The same applies when assembling a set of objects to be used for a test or included in a patch release the configuration defines which versions of which objects are to be used. Figure 3 Thick line represents a Configuration through object versions ACCESS TO THE ORACLE9I SCM REPOSITORY Access to the entire repository is controlled through Oracle database security. Anyone wishing to use the Oracle9i SCM must already have an account on the database where it resides. Only a user with database administrator (DBA) privileges can create user accounts on the database. At the time the repository is installed, only the repository owner can access the repository. The repository owner can subsequently authorize other existing database users to access the repository. Once an account is created access to the repository and the tasks users can perform, are determined by Repository privileges and access rights. Privileges allow a user to execute a particular Oracle9i SCM tool. The users who own those items set access rights against workareas, containers and configurations. Your access rights on any other type of repository object are determined from the object's owning container. For example, if you have Select access rights on a container, you also have Select access rights on all objects in that container. Using Oracle Repository for Software Configuration Management 7

8 ORACLE 9I SCM REPOSITORY POLICIES Oracle9i SCM provides users with policies that impose restrictions on the following version control features: branching version labeling locking When an automatic branching policy is set, all checked -out objects check in to the default branch set for each workarea. Doing so ensures that specific development branches are not populated with new object versions at critical periods in development, for example during a build. If no default branch is set, or the automatic branching policy is not set, then objects check in to the same branch they were checked out from. When automatic version labeling is set, the repository automatically assigns a label for an object version when it is checked in. This ensures adherence to a system-specified version-labeling scheme. Users have the option to lock an object version when they check out the object. IMPACT ANALYSIS For many Oracle9i SCM users, it is important to assess the impact on the rest of an application of changing one component - a process known as impact analysis. For example, developers could investigate how many applications use a particular PL/SQL function, and thus discover whether a change to the function would have a significant impact across the enterprise. Oracle9i SCM provides a set of tools that are useful for impact analysis. For example, the Dependency Analyzer is a utility that analyzes the relationships between objects in an application and allows users to determine the effects of change. Using Oracle Repository for Software Configuration Management 8

9 ORACLE9I SCM SETUP Oracle9i SCM features a set of tools enabling Software Configuration Management in complex development environments. The following section describes how an Oracle9i SCM development environment is setup and used. Further detail is available in the online help. First, use the Repository Administration Utility to create a repository and add Repository Users. At least two types of user are required, a developer and a configuration manager. Developers must be able to use the repository tools without reducing their productivity; thus they should be able to easily create a development environment. Use the Repository Object Navigator as the configuration manager to setup a workarea definition. This typically would include the latest object versions of a software development. Include in this definition any branch and configuration rules that may be required for a particular team of developers. Consider the following example: Workarea Ruleset: LATEST(GrantAccess) LATEST(AccessRights) LATEST(Payroll_1) INCLUDE_CONFIG(Payroll{MAIN;1}=Configuration) The above workarea ruleset is taken from an Access Rights project on a Payroll Project and reads, in order: include all the latest files that exist on a branch named GrantAccess. This is the task branch on which a developer is working. then include all the latest files on the AccessRights branch, as long as they do not exist in the above rule. This is known as the project branch. then include all the latest files on the Payroll_1 branch, as long as they do not exist in the above rule. This is known as the Release branch. Using Oracle Repository for Software Configuration Management 9

10 then include all files that exist in the named configuration, again provided they are not already included in the above two rules. Using the Workarea Wizard save the above Workarea ruleset to a file. This file is made available to developers working on the Access Rights Project. Viewed as a set of branches this looks like the following: Release Project Task Branch Branch Branch Figure 4 Branch Schematic Each developer takes the Workarea ruleset file and creates his/her own workarea and private task branch. A local filesystem directory is mapped to the root folder of the folder system, enabling files to be checked out and worked upon. Files are created or modified and once complete are checked onto the developer s task branch. A modified or new file from the task branch is then merged onto the Project branch by the developer or team leader. A team leader would then merge the Project branch onto the Release branch. At each stage, both before and after merging, testing is performed. The Repository Object Navigator and Commandline Tool are ideal for creating the above environment. The Version History Viewer enables discrete versions of a file to be examined, compared and merged. Once all the required files from a project branch are complete and merged a configuration is created of the Release branch at a point in time. This configuration is used to create a workarea from which Using Oracle Repository for Software Configuration Management 10

11 a complete set of files can be downloaded to the filesystem. This then forms the release set of software, which in turn goes on for testing. Multi developer software projects with many code streams and developer branches are supported, taking advantage of the underlying Oracle database performance and scalability features. ORACLE9I SCM AS AN INTEGRAL PART OF ORACLE INTERNET DEVELOPER SUITE Oracle9i SCM provides configuration management services for software development projects from inception through deployment. It serves as an integrating mechanism in collaborative development environments by providing access to relevant models, documents and code for team members. Within Oracle Internet Developer Suite, the following products offer access to Oracle9i SCM repository: Oracle JDeveloper (applicable to release 3.2 onward) Oracle Forms and Reports Oracle Designer The remainder of this paper illustrates how each of the above works with Oracle Repository. Using Oracle Repository for Software Configuration Management 11

12 ORACLE JDEVELOPER (APPLICABLE TO RELEASE 3.2 ONWARD) Oracle JDeveloper can use Oracle9i SCM for code management. As shown in Figure 5, its main menu allows files to be checked in/out of the Repository. Access is also given to the Repository toolset. Files can be versioned, compared and merged as well as parsed to give dependency information: Figure 5 Oracle JDeveloper 3.2 Integration with Oracle Repository Parsing Java files provides dependency information that can be viewed in summary or detail form using the Dependency Manager, as illustrated by Figure 6: Using Oracle Repository for Software Configuration Management 12

13 Figure 6 Parsed Java file -showing dependencies ORACLE FORMS AND REPORTS Oracle Forms and Oracle Reports permit the source code (.fmb or.rdf ) to be stored and maintained from Oracle Repository. Oracle Forms.fmb files can be versioned, compared, merged and parsed to offer dependency information. Oracle Reports.rdf files can be versioned and parsed. Figure 7 shows an example check-in of a report file. Using Oracle Repository for Software Configuration Management 13

14 Figure 7 Oracle Reports integration with Oracle Repository ORACLE DESIGNER Oracle Designer structured objects (i.e. Table and Entity definitions) are stored in Oracle Repository. They can also be versioned, compared, merged and parsed to offer dependency information using the Oracle Repository toolset. As an example, Figure 8 illustrates check-in of an Entity Relationship diagram. Using Oracle Repository for Software Configuration Management 14

15 Figure 8 Oracle Designer Entity Relationship Diagrammer showing check in of a structured Entity SUMMARY Several Software Configuration Management tools exist, ranging from single user, single code stream to multi user, multi code stream. Oracle Repository offers a highly scalable, multi user SCM environment, ideally suited to large-scale projects where rapid change and continuous delivery and maintenance are required. Oracle Repository provides a multi-user, managed and secure development environment enabling the building of complex integrated applications. Oracle Repository stores both structured and unstructured information, ensuring that all project documentation, definitions and code are stored in one place. Without management of all project artifacts developers might work on the wrong code, Using Oracle Repository for Software Configuration Management 15

16 wasting valuable resources. As developers are required to be more productive and react to change more quickly a managed and integrated SCM environment becomes essential. Using Oracle Repository for Software Configuration Management 16

17 Oracle Corporation World Headquarters 500 Oracle Parkway Redwood Shores, CA U.S.A. Worldwide Inquiries: Fax Copyright Oracle Corporation 2001 All Rights Reserved This document is provided for informational purposes only, and the information herein is subject to change without notice. Please report any errors herein to Oracle Corporation. Oracle Corporation does not provide any warranties covering and specifically disclaims any liability in connection with this document. Oracle is a registered trademark, and Oracle8i, Oracle8, PL/SQL, and Oracle Expert are trademarks of Oracle Corporation. All other company and product names mentioned are used for identification purposes only and may be trademarks of their respective owners. Using Oracle Repository for Software Configuration Management 17

An Oracle White Paper June 2014. Security and the Oracle Database Cloud Service

An Oracle White Paper June 2014. Security and the Oracle Database Cloud Service An Oracle White Paper June 2014 Security and the Oracle Database Cloud Service 1 Table of Contents Overview... 3 Security architecture... 4 User areas... 4 Accounts... 4 Identity Domains... 4 Database

More information

An Oracle White Paper June, 2012. Provisioning & Patching Oracle Database using Enterprise Manager 12c.

An Oracle White Paper June, 2012. Provisioning & Patching Oracle Database using Enterprise Manager 12c. An Oracle White Paper June, 2012 Provisioning & Patching Oracle Database using Enterprise Manager 12c. Table of Contents Executive Overview... 2 Introduction... 2 EM Readiness:... 3 Installing Agent...

More information

An Oracle White Paper May 2013. Creating Custom PDF Reports with Oracle Application Express and the APEX Listener

An Oracle White Paper May 2013. Creating Custom PDF Reports with Oracle Application Express and the APEX Listener An Oracle White Paper May 2013 Creating Custom PDF Reports with Oracle Application Express and the APEX Listener Disclaimer The following is intended to outline our general product direction. It is intended

More information

Oracle Warehouse Builder 10g

Oracle Warehouse Builder 10g Oracle Warehouse Builder 10g Architectural White paper February 2004 Table of contents INTRODUCTION... 3 OVERVIEW... 4 THE DESIGN COMPONENT... 4 THE RUNTIME COMPONENT... 5 THE DESIGN ARCHITECTURE... 6

More information

An Oracle White Paper September 2011. Oracle Team Productivity Center

An Oracle White Paper September 2011. Oracle Team Productivity Center Oracle Team Productivity Center Overview An Oracle White Paper September 2011 Oracle Team Productivity Center Overview Oracle Team Productivity Center Overview Introduction... 1 Installation... 2 Architecture...

More information

Oracle Application Development Framework Overview

Oracle Application Development Framework Overview An Oracle White Paper June 2011 Oracle Application Development Framework Overview Introduction... 1 Oracle ADF Making Java EE Development Simpler... 2 THE ORACLE ADF ARCHITECTURE... 3 The Business Services

More information

An Oracle White Paper July 2013. Introducing the Oracle Home User in Oracle Database 12c for Microsoft Windows

An Oracle White Paper July 2013. Introducing the Oracle Home User in Oracle Database 12c for Microsoft Windows An Oracle White Paper July 2013 Introducing the Oracle Home User Introduction Starting with Oracle Database 12c Release 1 (12.1), Oracle Database on Microsoft Windows supports the use of an Oracle Home

More information

Oracle BI Discoverer Administrator 11g: Develop an EUL

Oracle BI Discoverer Administrator 11g: Develop an EUL Oracle BI Discoverer Administrator 11g: Develop an EUL Volume I Student Guide D60283GC10 Edition 1.0 February 2010 D65281 Author Lea Shaw Technical Contributors and Reviewers Praveen Deshpande Kumar Dhanagopal

More information

How To Load Data Into An Org Database Cloud Service - Multitenant Edition

How To Load Data Into An Org Database Cloud Service - Multitenant Edition An Oracle White Paper June 2014 Data Movement and the Oracle Database Cloud Service Multitenant Edition 1 Table of Contents Introduction to data loading... 3 Data loading options... 4 Application Express...

More information

Oracle Application Server 4.0: The Integration Platform for Oracle Products and the Internet. An Oracle White Paper August 1998

Oracle Application Server 4.0: The Integration Platform for Oracle Products and the Internet. An Oracle White Paper August 1998 Oracle Application Server 4.0: The Integration Platform for Oracle Products and the Internet An Oracle White Paper August 1998 The Integration Platform for Oracle Products and the Internet INTRODUCTION

More information

An Oracle White Paper October 2011. BI Publisher 11g Scheduling & Apache ActiveMQ as JMS Provider

An Oracle White Paper October 2011. BI Publisher 11g Scheduling & Apache ActiveMQ as JMS Provider An Oracle White Paper October 2011 BI Publisher 11g Scheduling & Apache ActiveMQ as JMS Provider Disclaimer The following is intended to outline our general product direction. It is intended for information

More information

Oracle SQL Developer for Database Developers. An Oracle White Paper September 2008

Oracle SQL Developer for Database Developers. An Oracle White Paper September 2008 Oracle SQL Developer for Database Developers An Oracle White Paper September 2008 Oracle SQL Developer for Database Developers Introduction...3 Audience...3 Key Benefits...3 Architecture...4 Key Features...4

More information

Oracle SQL Developer for Database Developers. An Oracle White Paper June 2007

Oracle SQL Developer for Database Developers. An Oracle White Paper June 2007 Oracle SQL Developer for Database Developers An Oracle White Paper June 2007 Oracle SQL Developer for Database Developers Introduction...3 Audience...3 Key Benefits...3 Architecture...4 Key Features...4

More information

Oracle Whitepaper April 2015. Security and the Oracle Database Cloud Service

Oracle Whitepaper April 2015. Security and the Oracle Database Cloud Service Oracle Whitepaper April 2015 Security and the Oracle Database Cloud Service Table of Contents Overview... 3 Security architecture... 4 User areas... 4 Accounts... 4 Identity Domains... 4 Database Cloud

More information

Oracle Business Rules Business Whitepaper. An Oracle White Paper September 2005

Oracle Business Rules Business Whitepaper. An Oracle White Paper September 2005 Oracle Business Rules Business Whitepaper An Oracle White Paper September 2005 NOTE: The following is intended to outline our general product direction. It is intended for information purposes only, and

More information

New 11g Features in Oracle Developer Tools for Visual Studio. An Oracle White Paper January 2008

New 11g Features in Oracle Developer Tools for Visual Studio. An Oracle White Paper January 2008 New 11g Features in Oracle Developer Tools for Visual Studio An Oracle White Paper January 2008 New 11g Features in Oracle Developer Tools for Visual Studio Introduction... 3 Integration with Visual Studio

More information

An Oracle White Paper February 2014. Oracle Data Integrator 12c Architecture Overview

An Oracle White Paper February 2014. Oracle Data Integrator 12c Architecture Overview An Oracle White Paper February 2014 Oracle Data Integrator 12c Introduction Oracle Data Integrator (ODI) 12c is built on several components all working together around a centralized metadata repository.

More information

Oracle Data Integrator 12c: Integration and Administration

Oracle Data Integrator 12c: Integration and Administration Oracle University Contact Us: +33 15 7602 081 Oracle Data Integrator 12c: Integration and Administration Duration: 5 Days What you will learn Oracle Data Integrator is a comprehensive data integration

More information

Oracle Database 10g: Building GIS Applications Using the Oracle Spatial Network Data Model. An Oracle Technical White Paper May 2005

Oracle Database 10g: Building GIS Applications Using the Oracle Spatial Network Data Model. An Oracle Technical White Paper May 2005 Oracle Database 10g: Building GIS Applications Using the Oracle Spatial Network Data Model An Oracle Technical White Paper May 2005 Building GIS Applications Using the Oracle Spatial Network Data Model

More information

Oracle Identity Management Concepts and Architecture. An Oracle White Paper December 2003

Oracle Identity Management Concepts and Architecture. An Oracle White Paper December 2003 Oracle Identity Management Concepts and Architecture An Oracle White Paper December 2003 Oracle Identity Management Concepts and Architecture Introduction... 3 Identity management... 3 What is Identity

More information

Oracle FLEXCUBE Direct Banking Android Tab Client Installation Guide Release 12.0.3.0.0

Oracle FLEXCUBE Direct Banking Android Tab Client Installation Guide Release 12.0.3.0.0 Oracle FLEXCUBE Direct Banking Android Tab Client Installation Guide Release 12.0.3.0.0 Part No. E52543-01 April 2014 Oracle Financial Services Software Limited Oracle Park Off Western Express Highway

More information

Oracle Fusion Middleware. 1 Oracle Team Productivity Center Server System Requirements. 2 Installing the Oracle Team Productivity Center Server

Oracle Fusion Middleware. 1 Oracle Team Productivity Center Server System Requirements. 2 Installing the Oracle Team Productivity Center Server Oracle Fusion Middleware Installation Guide for Oracle Team Productivity Center Server 11g Release 2 (11.1.2.1.0) E17075-02 September 2011 This document provides information on: Section 1, "Oracle Team

More information

Oracle SQL Developer Migration. An Oracle White Paper September 2008

Oracle SQL Developer Migration. An Oracle White Paper September 2008 Oracle SQL Developer Migration An Oracle White Paper September 2008 Oracle SQL Developer Migration Overview... 3 Introduction... 3 Supported Databases... 4 Architecture... 4 Migration... 4 Standard Migrate...

More information

Team Collaboration, Version Management, Audit Trails

Team Collaboration, Version Management, Audit Trails Team Collaboration, Version Management, Audit Trails Best Practices for Successful Project Delivery with VoiceObjects May 2008 www.voiceobjects.com 2 Team Collaboration, Version Management, Audit Trails

More information

An Oracle Technical White Paper May 2015. How to Configure Kaspersky Anti-Virus Software for the Oracle ZFS Storage Appliance

An Oracle Technical White Paper May 2015. How to Configure Kaspersky Anti-Virus Software for the Oracle ZFS Storage Appliance An Oracle Technical White Paper May 2015 How to Configure Kaspersky Anti-Virus Software for the Oracle ZFS Storage Appliance Table of Contents Introduction... 2 How VSCAN Works... 3 Installing Kaspersky

More information

Manage Oracle Database Users and Roles Centrally in Active Directory or Sun Directory. Overview August 2008

Manage Oracle Database Users and Roles Centrally in Active Directory or Sun Directory. Overview August 2008 Manage Oracle Database Users and Roles Centrally in Active Directory or Sun Directory Overview August 2008 Introduction... 3 Centralizing DataBase Account Management using Existing Directories with OVD...

More information

An Oracle White Paper May 2012. Oracle Database Cloud Service

An Oracle White Paper May 2012. Oracle Database Cloud Service An Oracle White Paper May 2012 Oracle Database Cloud Service Executive Overview The Oracle Database Cloud Service provides a unique combination of the simplicity and ease of use promised by Cloud computing

More information

Oracle Application Server 10g Web Services Frequently Asked Questions Oct, 2006

Oracle Application Server 10g Web Services Frequently Asked Questions Oct, 2006 Oracle Application Server 10g Web Services Frequently Asked Questions Oct, 2006 This FAQ addresses frequently asked questions relating to Oracle Application Server 10g Release 3 (10.1.3.1) Web Services

More information

Change Manager 5.0 Installation Guide

Change Manager 5.0 Installation Guide Change Manager 5.0 Installation Guide Copyright 1994-2008 Embarcadero Technologies, Inc. Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco, CA 94111 U.S.A. All rights reserved.

More information

Oracle Data Integrator 11g: Integration and Administration

Oracle Data Integrator 11g: Integration and Administration Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 4108 4709 Oracle Data Integrator 11g: Integration and Administration Duration: 5 Days What you will learn Oracle Data Integrator is a comprehensive

More information

WebSphere MQ Oracle Enterprise Gateway Integration Guide

WebSphere MQ Oracle Enterprise Gateway Integration Guide An Oracle White Paper June 2011 WebSphere MQ Oracle Enterprise Gateway Integration Guide 1 / 30 Disclaimer The following is intended to outline our general product direction. It is intended for information

More information

October 2015. Oracle Application Express Statement of Direction

October 2015. Oracle Application Express Statement of Direction October 2015 Oracle Application Express Statement of Direction Disclaimer This document in any form, software or printed matter, contains proprietary information that is the exclusive property of Oracle.

More information

Oracle Enterprise Manager

Oracle Enterprise Manager Oracle Enterprise Manager System Monitoring Plug-in Installation Guide for Microsoft Active Directory Release 12.1.0.1.0 E28548-04 February 2014 Microsoft Active Directory, which is included with Microsoft

More information

An Oracle White Paper September 2012. Oracle Database and the Oracle Database Cloud

An Oracle White Paper September 2012. Oracle Database and the Oracle Database Cloud An Oracle White Paper September 2012 Oracle Database and the Oracle Database Cloud 1 Table of Contents Overview... 3 Cloud taxonomy... 4 The Cloud stack... 4 Differences between Cloud computing categories...

More information

An Oracle White Paper March 2013. Oracle s Single Server Solution for VDI

An Oracle White Paper March 2013. Oracle s Single Server Solution for VDI An Oracle White Paper March 2013 Oracle s Single Server Solution for VDI Introduction The concept of running corporate desktops in virtual machines hosted on servers is a compelling proposition. In contrast

More information

Report Writer's Guide Release 14.1

Report Writer's Guide Release 14.1 Prime Report Writer's Guide Release 14.1 March 2014 Contents Understanding and Working With the Reporting User's Schema... 5 Understanding The Reporting User's Schema... 5 Working With the Reporting User's

More information

An Oracle White Paper October 2013. Oracle Data Integrator 12c New Features Overview

An Oracle White Paper October 2013. Oracle Data Integrator 12c New Features Overview An Oracle White Paper October 2013 Oracle Data Integrator 12c Disclaimer This document is for informational purposes. It is not a commitment to deliver any material, code, or functionality, and should

More information

Oracle BI Publisher Enterprise Cluster Deployment. An Oracle White Paper August 2007

Oracle BI Publisher Enterprise Cluster Deployment. An Oracle White Paper August 2007 Oracle BI Publisher Enterprise Cluster Deployment An Oracle White Paper August 2007 Oracle BI Publisher Enterprise INTRODUCTION This paper covers Oracle BI Publisher cluster and high availability deployment.

More information

Oracle Utilities Meter Data Management Business Intelligence

Oracle Utilities Meter Data Management Business Intelligence Oracle Utilities Meter Data Management Business Intelligence Metric Reference Guide Release 2.3.2 E22567-01 May 2011 Oracle Utilities Meter Data Management Business Intelligence Metric Reference Guide

More information

<Insert Picture Here> Oracle SQL Developer 3.0: Overview and New Features

<Insert Picture Here> Oracle SQL Developer 3.0: Overview and New Features 1 Oracle SQL Developer 3.0: Overview and New Features Sue Harper Senior Principal Product Manager The following is intended to outline our general product direction. It is intended

More information

Oracle SOA Suite 11g: Essential Concepts Student Guide

Oracle SOA Suite 11g: Essential Concepts Student Guide Oracle SOA Suite 11g: Essential Concepts Student Guide D58786GC20 Edition 2.0 August 2011 D73588 Author Iris Li Technical Contributors and Reviewers Gary Barg Pete Daly Joe Greenwald David Mills David

More information

An Oracle White Paper November 2011. Upgrade Best Practices - Using the Oracle Upgrade Factory for Siebel Customer Relationship Management

An Oracle White Paper November 2011. Upgrade Best Practices - Using the Oracle Upgrade Factory for Siebel Customer Relationship Management An Oracle White Paper November 2011 Upgrade Best Practices - Using the Oracle Upgrade Factory for Siebel Customer Relationship Management Executive Overview... 1 Introduction... 1 Standard Siebel CRM Upgrade

More information

VERITAS NetBackup 6.0 for Oracle

VERITAS NetBackup 6.0 for Oracle VERITAS NetBackup 6.0 for Oracle System Administrator s Guide for UNIX and Linux N15262B September 2005 Disclaimer The information contained in this publication is subject to change without notice. VERITAS

More information

An Oracle White Paper January 2011. Using Oracle's StorageTek Search Accelerator

An Oracle White Paper January 2011. Using Oracle's StorageTek Search Accelerator An Oracle White Paper January 2011 Using Oracle's StorageTek Search Accelerator Executive Summary...2 Introduction...2 The Problem with Searching Large Data Sets...3 The StorageTek Search Accelerator Solution...3

More information

An Overview of Oracle Forms Server Architecture. An Oracle Technical White Paper April 2000

An Overview of Oracle Forms Server Architecture. An Oracle Technical White Paper April 2000 An Oracle Technical White Paper INTRODUCTION This paper is designed to provide you with an overview of some of the key points of the Oracle Forms Server architecture and the processes involved when forms

More information

D83167 Oracle Data Integrator 12c: Integration and Administration

D83167 Oracle Data Integrator 12c: Integration and Administration D83167 Oracle Data Integrator 12c: Integration and Administration Learn To: Use Oracle Data Integrator to perform transformation of data among various platforms. Design ODI Mappings, Procedures, and Packages

More information

Oracle Database. Products Available on the Oracle Database Examples Media. Oracle Database Examples. Examples Installation Guide 11g Release 2 (11.

Oracle Database. Products Available on the Oracle Database Examples Media. Oracle Database Examples. Examples Installation Guide 11g Release 2 (11. Oracle Database Examples Installation Guide 11g Release 2 (11.2) E10846-01 August 2009 This document describes how to install and configure the products available on the Oracle Database Examples media.

More information

Oracle Audit Vault Administrator s Guide Oracle Audit Vault Auditor s Guide Oracle Enterprise Manager Cloud Control Administrator s Guide

Oracle Audit Vault Administrator s Guide Oracle Audit Vault Auditor s Guide Oracle Enterprise Manager Cloud Control Administrator s Guide Oracle Enterprise Manager System Monitoring Plug-in Installation Guide for Oracle Audit Vault Release 12.1 (12.1.0.2.0) E26595-02 September 2012 Oracle Audit Vault is used to transparently collect and

More information

Oracle Utilities Integration for Device Operations

Oracle Utilities Integration for Device Operations Oracle Utilities Integration for Device Operations Release Notes Oracle Utilities Meter Data Management v2.0.1.8 Oracle Utilities Operational Device Management v2.0.1 E36211-01 October 2012 Oracle Utilities

More information

An Oracle White Paper August 2010. Oracle Database Auditing: Performance Guidelines

An Oracle White Paper August 2010. Oracle Database Auditing: Performance Guidelines An Oracle White Paper August 2010 Oracle Database Auditing: Performance Guidelines Introduction Database auditing has become increasingly important as threats to applications become more sophisticated.

More information

Agile Product Lifecycle Management

Agile Product Lifecycle Management Agile Product Lifecycle Management Agile PLM Variant Management User Guide V 9.3.0.1 E15464-03 January 2010 Agile PLM Variant Management User Guide Oracle Copyright Copyright 1995, 2010, Oracle and/or

More information

Deliver Oracle BI Publisher documents to Microsoft Office SharePoint Server 2007. An Oracle White Paper July 2008

Deliver Oracle BI Publisher documents to Microsoft Office SharePoint Server 2007. An Oracle White Paper July 2008 Deliver Oracle BI Publisher documents to Microsoft Office SharePoint Server 2007 An Oracle White Paper July 2008 Deliver Oracle BI Publisher documents to Microsoft Office SharePoint Server 2007 To create

More information

An Oracle White Paper June 2010. How to Install and Configure a Two-Node Cluster

An Oracle White Paper June 2010. How to Install and Configure a Two-Node Cluster An Oracle White Paper June 2010 How to Install and Configure a Two-Node Cluster Table of Contents Introduction... 3 Two-Node Cluster: Overview... 4 Prerequisites, Assumptions, and Defaults... 4 Configuration

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Getting Started with Oracle Data Integrator 12c Virtual Machine Installation Guide December 2014 Oracle Fusion Middleware Getting Started with Oracle Data Integrator, 12c Copyright

More information

File System Auditor Release Notes

File System Auditor Release Notes File System Auditor Release Notes WHAT'S NEW IN FILE SYSTEM AUDITOR? To see what is new in File System Auditor, please see article Q14974 INFO: File System Auditor 2.x Version History in the ScriptLogic

More information

Integrating Oracle Sales Cloud, Release 9 with JD Edwards EnterpriseOne release 9.1 Implementation Guide

Integrating Oracle Sales Cloud, Release 9 with JD Edwards EnterpriseOne release 9.1 Implementation Guide December 2014 Integrating Oracle Sales Cloud, Release 9 with JD Edwards EnterpriseOne release 9.1 Implementation Guide Doc version 1.0 Copyright 2005, 2014 Oracle and/or its affiliates. All rights reserved.

More information

An Oracle White Paper June 2013. Oracle Linux Management with Oracle Enterprise Manager 12c

An Oracle White Paper June 2013. Oracle Linux Management with Oracle Enterprise Manager 12c An Oracle White Paper June 2013 Oracle Linux Management with Oracle Enterprise Manager 12c Introduction... 1 Oracle Enterprise Manager 12c Overview... 3 Managing Oracle Linux with Oracle Enterprise Manager

More information

Oracle Enterprise Manager

Oracle Enterprise Manager Oracle Enterprise Manager System Monitoring Plug-in for Oracle TimesTen In-Memory Database Installation Guide Release 11.2.1 E13081-02 June 2009 This document was first written and published in November

More information

Get More from Microsoft SharePoint with Oracle Fusion Middleware. An Oracle White Paper January 2008

Get More from Microsoft SharePoint with Oracle Fusion Middleware. An Oracle White Paper January 2008 Get More from Microsoft SharePoint with Oracle Fusion Middleware An Oracle White Paper January 2008 NOTE The following is intended to outline our general product direction. It is intended for information

More information

Oracle Database. New Feature in Oracle Database 11g Release 2 (11.2.0.2) Products Available on the Oracle Database Examples Media

Oracle Database. New Feature in Oracle Database 11g Release 2 (11.2.0.2) Products Available on the Oracle Database Examples Media Oracle Database Examples Installation Guide 11g Release 2 (11.2) E17861-03 September 2010 This document describes how to install and configure the products available on the Oracle Database Examples media.

More information

Oracle Business Intelligence ADF Custom Visualizations and Integration. An Oracle White Paper November 2012

Oracle Business Intelligence ADF Custom Visualizations and Integration. An Oracle White Paper November 2012 Oracle Business Intelligence ADF Custom Visualizations and Integration An Oracle White Paper November 2012 Oracle Business Intelligence ADF Custom Visualizations and Integration OVERVIEW Business users

More information

Oracle9i Application Server: Options for Running Active Server Pages. An Oracle White Paper July 2001

Oracle9i Application Server: Options for Running Active Server Pages. An Oracle White Paper July 2001 Oracle9i Application Server: Options for Running Active Server Pages An Oracle White Paper July 2001 Oracle9i Application Server: Options for Running Active Server Pages PROBLEM SUMMARY...3 INTRODUCTION...3

More information

An Oracle White Paper June 2014. RESTful Web Services for the Oracle Database Cloud - Multitenant Edition

An Oracle White Paper June 2014. RESTful Web Services for the Oracle Database Cloud - Multitenant Edition An Oracle White Paper June 2014 RESTful Web Services for the Oracle Database Cloud - Multitenant Edition 1 Table of Contents Introduction to RESTful Web Services... 3 Architecture of Oracle Database Cloud

More information

Using Symantec NetBackup with VSS Snapshot to Perform a Backup of SAN LUNs in the Oracle ZFS Storage Appliance

Using Symantec NetBackup with VSS Snapshot to Perform a Backup of SAN LUNs in the Oracle ZFS Storage Appliance An Oracle Technical White Paper March 2014 Using Symantec NetBackup with VSS Snapshot to Perform a Backup of SAN LUNs in the Oracle ZFS Storage Appliance Introduction... 2 Overview... 3 Oracle ZFS Storage

More information

Promotion Model. CVS SUITE QUICK GUIDE 2009 Build 3701 February 2010. March Hare Software Ltd

Promotion Model. CVS SUITE QUICK GUIDE 2009 Build 3701 February 2010. March Hare Software Ltd CVS SUITE QUICK GUIDE 2009 Build 3701 February 2010 March Hare Software Ltd Legal Notices Legal Notices There are various product or company names used herein that are the trademarks, service marks, or

More information

Load Testing Hyperion Applications Using Oracle Load Testing 9.1

Load Testing Hyperion Applications Using Oracle Load Testing 9.1 Oracle White Paper Load Testing Hyperion System 9 HFM An Oracle White Paper May 2010 Load Testing Hyperion Applications Using Oracle Load Testing 9.1 Oracle White Paper Load Testing Hyperion System 9 HFM

More information

An Oracle White Paper March 2009. Oracle Label Security in Government and Defense Environments

An Oracle White Paper March 2009. Oracle Label Security in Government and Defense Environments An Oracle White Paper March 2009 Oracle Label Security in Government and Defense Environments Protecting Sensitive Information... 2 Oracle Label Security Overview... 2 Getting Started with Oracle Label

More information

Oracle WebCenter Content Service for Microsoft Exchange

Oracle WebCenter Content Service for Microsoft Exchange Oracle WebCenter Content Service for Microsoft Exchange Installation and Upgrade Guide 10g Release 3 (10.3) November 2008 Oracle WebCenter Content Service for Microsoft Exchange Installation and Upgrade

More information

Siebel Application Deployment Manager Guide. Siebel Innovation Pack 2013 Version 8.1/8.2 September 2013

Siebel Application Deployment Manager Guide. Siebel Innovation Pack 2013 Version 8.1/8.2 September 2013 Siebel Application Deployment Manager Guide Siebel Innovation Pack 2013 Version 8.1/8.2 September 2013 Copyright 2005, 2013 Oracle and/or its affiliates. All rights reserved. This software and related

More information

IAF Business Intelligence Solutions Make the Most of Your Business Intelligence. White Paper November 2002

IAF Business Intelligence Solutions Make the Most of Your Business Intelligence. White Paper November 2002 IAF Business Intelligence Solutions Make the Most of Your Business Intelligence White Paper INTRODUCTION In recent years, the amount of data in companies has increased dramatically as enterprise resource

More information

An Oracle White Paper March 2011. Integrating the SharePoint 2007 Adapter with WebCenter Spaces (11.1.1.3.0 & 11.1.1.4.0)

An Oracle White Paper March 2011. Integrating the SharePoint 2007 Adapter with WebCenter Spaces (11.1.1.3.0 & 11.1.1.4.0) An Oracle White Paper March 2011 Integrating the SharePoint 2007 Adapter with WebCenter Spaces (11.1.1.3.0 & 11.1.1.4.0) Table of Contents Introduction... 2 Overview... 2 Adding WebCenter Adapter for

More information

Oracle SQL Developer Migration

Oracle SQL Developer Migration An Oracle White Paper May 2010 Oracle SQL Developer Migration Overview... 3 Introduction... 3 Oracle SQL Developer: Architecture and Supported Platforms... 3 Supported Platforms... 4 Supported Databases...

More information

Oracle CRM Foundation

Oracle CRM Foundation Oracle CRM Foundation Implementation Guide Release 11i November 2000 Part No. A86122-02 Oracle CRM Foundation Implementation Guide, Release 11i Part No. A86122-02 Copyright 1996, 2000, Oracle Corporation.

More information

An Oracle Best Practice Guide April 2012. Best Practices for Implementing Contact Center Experiences

An Oracle Best Practice Guide April 2012. Best Practices for Implementing Contact Center Experiences An Oracle Best Practice Guide April 2012 Best Practices for Implementing Contact Center Experiences Introduction... 1 Understanding the Challenges of Contact Center Processes... 2 Addressing the Challenges

More information

Sentinel Cloud V.3.5 Installation Guide

Sentinel Cloud V.3.5 Installation Guide Sentinel Cloud V.3.5 Installation Guide ii Sentinel Cloud Installation Guide Document Revision History Part number 007-012284-001, Revision C. September 2014 Disclaimer and Copyrights Copyright 2014, SafeNet,

More information

An Oracle White Paper September 2013. Oracle WebLogic Server 12c on Microsoft Windows Azure

An Oracle White Paper September 2013. Oracle WebLogic Server 12c on Microsoft Windows Azure An Oracle White Paper September 2013 Oracle WebLogic Server 12c on Microsoft Windows Azure Table of Contents Introduction... 1 Getting Started: Creating a Single Virtual Machine... 2 Before You Begin...

More information

Oracle Net Services for Oracle10g. An Oracle White Paper May 2005

Oracle Net Services for Oracle10g. An Oracle White Paper May 2005 Oracle Net Services for Oracle10g An Oracle White Paper May 2005 Oracle Net Services INTRODUCTION Oracle Database 10g is the first database designed for enterprise grid computing, the most flexible and

More information

Introduction. Document Conventions. Administration. In This Section

Introduction. Document Conventions. Administration. In This Section MS Project Integration Guide March 2014 Contents Introduction... 5 Document Conventions... 5 Administration... 5 MS Project Template... 6 MS Project Template Usage... 6 Project Metadata... 6 Project WBS/Assignments...

More information

Copyright http://support.oracle.com/

Copyright http://support.oracle.com/ Primavera Portfolio Management 9.0 Security Guide July 2012 Copyright Oracle Primavera Primavera Portfolio Management 9.0 Security Guide Copyright 1997, 2012, Oracle and/or its affiliates. All rights reserved.

More information

Oracle Forms Services Secure Web.Show_Document() calls to Oracle Reports Server 6i

Oracle Forms Services Secure Web.Show_Document() calls to Oracle Reports Server 6i Oracle Forms Services Secure Web.Show_Document() calls to Oracle Reports Server 6i $Q2UDFOH7HFKQLFDO:KLWHSDSHU 0DUFK Secure Web.Show_Document() calls to Oracle Reports Server 6i Introduction...3 solution

More information

The Case for a Stand-alone Rating Engine for Insurance. An Oracle Brief April 2009

The Case for a Stand-alone Rating Engine for Insurance. An Oracle Brief April 2009 The Case for a Stand-alone Rating Engine for Insurance An Oracle Brief April 2009 The Case for a Stand-alone Rating Engine for Insurance Stand-alone rating engines provide the opportunity to modernize

More information

Ensuring Web Service Quality for Service-Oriented Architectures. An Oracle White Paper June 2008

Ensuring Web Service Quality for Service-Oriented Architectures. An Oracle White Paper June 2008 Ensuring Web Service Quality for Service-Oriented Architectures An Oracle White Paper June 2008 Ensuring Web Service Quality for Service-Oriented Architectures WEB SERVICES OFFER NEW OPPORTUNITIES AND

More information

Oracle Financial Services Analytical Applications Infrastructure

Oracle Financial Services Analytical Applications Infrastructure Oracle Financial Services Analytical Applications Infrastructure Object Migration Utility - OFSAAI v7.3.5.0.0 to v8.0.0.0.0 User Guide Part Number - E60058-01 Document Control DOCUMENT CONTROL Version

More information

New Features in Primavera P6 Professional 15.1

New Features in Primavera P6 Professional 15.1 New Features in Primavera P6 Professional 15.1 COPYRIGHT & TRADEMARKS Copyright 2015, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its

More information

Oracle Enterprise Manager

Oracle Enterprise Manager Oracle Enterprise Manager System Monitoring Plug-in Installation Guide for Microsoft Internet Information Services Release 12.1.0.2.0 E28547-05 February 2014 This document provides a brief description

More information

StreamServe Persuasion SP4

StreamServe Persuasion SP4 StreamServe Persuasion SP4 Installation Guide Rev B StreamServe Persuasion SP4 Installation Guide Rev B 2001-2009 STREAMSERVE, INC. ALL RIGHTS RESERVED United States patent #7,127,520 No part of this document

More information

Oracle Provides Cost Effective Oracle8 Scalable Technology on Microsoft* Windows NT* for Small and Medium-sized Businesses

Oracle Provides Cost Effective Oracle8 Scalable Technology on Microsoft* Windows NT* for Small and Medium-sized Businesses Oracle Provides Cost Effective Oracle8 Scalable Technology on Microsoft* Windows NT* for Small and Medium-sized Businesses This document describes the procedure for installing the Oracle8 databases onto

More information

NEW FEATURES ORACLE ESSBASE STUDIO

NEW FEATURES ORACLE ESSBASE STUDIO ORACLE ESSBASE STUDIO RELEASE 11.1.1 NEW FEATURES CONTENTS IN BRIEF Introducing Essbase Studio... 2 From Integration Services to Essbase Studio... 2 Essbase Studio Features... 4 Installation and Configuration...

More information

Oracle Identity Management: Integration with Windows. An Oracle White Paper December. 2004

Oracle Identity Management: Integration with Windows. An Oracle White Paper December. 2004 Oracle Identity Management: Integration with Windows An Oracle White Paper December. 2004 Oracle Identity Management: Integration with Windows Introduction... 3 Goals for Windows Integration... 4 Directory

More information

March 2014. Oracle Business Intelligence Discoverer Statement of Direction

March 2014. Oracle Business Intelligence Discoverer Statement of Direction March 2014 Oracle Business Intelligence Discoverer Statement of Direction Oracle Statement of Direction Oracle Business Intelligence Discoverer Disclaimer This document in any form, software or printed

More information

Oracle Financial Services Data Integration Hub Foundation Pack Extension for Oracle Banking Platform

Oracle Financial Services Data Integration Hub Foundation Pack Extension for Oracle Banking Platform Oracle Financial Services Data Integration Hub Foundation Pack Extension for Oracle Banking Platform User Manual Version 8.0.1.0.0 Page i Table of Contents TABLE OF CONTENTS PREFACE... 4 Audience... 4

More information

An Oracle White Paper July 2011. Oracle Primavera Contract Management, Business Intelligence Publisher Edition-Sizing Guide

An Oracle White Paper July 2011. Oracle Primavera Contract Management, Business Intelligence Publisher Edition-Sizing Guide Oracle Primavera Contract Management, Business Intelligence Publisher Edition-Sizing Guide An Oracle White Paper July 2011 1 Disclaimer The following is intended to outline our general product direction.

More information

An Oracle Technical Article November 2015. Certification with Oracle Linux 6

An Oracle Technical Article November 2015. Certification with Oracle Linux 6 An Oracle Technical Article November 2015 Certification with Oracle Linux 6 Oracle Technical Article Certification with Oracle Linux 6 Introduction... 1 Comparing Oracle Linux 6 and Red Hat Enterprise

More information

Oracle Audit Vault Oracle FLEXCUBE Universal Banking Release 12.0.3.0.0 [April] [2014]

Oracle Audit Vault Oracle FLEXCUBE Universal Banking Release 12.0.3.0.0 [April] [2014] Oracle Audit Vault Oracle FLEXCUBE Universal Banking Release 12.0.3.0.0 [April] [2014] Table of Contents 1. INTRODUCTION... 1-1 1.1 SCOPE... 1-1 1.2 INTRODUCTION OF ORACLE AUDIT VAULT... 1-1 1.2.1 Advantages...

More information

Oracle Endeca Server. Cluster Guide. Version 7.5.1.1 May 2013

Oracle Endeca Server. Cluster Guide. Version 7.5.1.1 May 2013 Oracle Endeca Server Cluster Guide Version 7.5.1.1 May 2013 Copyright and disclaimer Copyright 2003, 2013, Oracle and/or its affiliates. All rights reserved. Oracle and Java are registered trademarks of

More information

Brocade Virtual Traffic Manager and Oracle Enterprise Manager 12c Release 2 Deployment Guide

Brocade Virtual Traffic Manager and Oracle Enterprise Manager 12c Release 2 Deployment Guide September 2015 Brocade Virtual Traffic Manager and Oracle Enterprise Manager 12c Release 2 Deployment Guide 2015 Brocade Communications Systems, Inc. All Rights Reserved. ADX, Brocade, Brocade Assurance,

More information

Administering batch environments

Administering batch environments Administering batch environments, Version 8.5 Administering batch environments SA32-1093-00 Note Before using this information, be sure to read the general information under Notices on page 261. Compilation

More information

Oracle FLEXCUBE Universal Banking 12.0

Oracle FLEXCUBE Universal Banking 12.0 Oracle FLEXCUBE Universal Banking 12.0 Data Model Getting Started Release 1.0 May 2012 Oracle Part Number E51527-01 FCUBS-FD08-01-01-Data Model getting started 1 Contents 1 Preface... 3 1.1 Audience...

More information

An Oracle White Paper January 2013. Integrating Oracle Application Express with Oracle Access Manager. Revision 1

An Oracle White Paper January 2013. Integrating Oracle Application Express with Oracle Access Manager. Revision 1 An Oracle White Paper January 2013 Integrating Oracle Application Express with Oracle Access Manager Revision 1 Disclaimer The following is intended to outline our general product direction. It is intended

More information

Oracle Fusion Middleware User s Guide for Oracle Approval Management for Microsoft Excel 11gRelease 1 (11.1.1.7.2)

Oracle Fusion Middleware User s Guide for Oracle Approval Management for Microsoft Excel 11gRelease 1 (11.1.1.7.2) Oracle Fusion Middleware User s Guide for Oracle Approval Management for Microsoft Excel 11gRelease 1 (11.1.1.7.2) July 2014 Copyright 2014, Oracle and/or its affiliates. All rights reserved. Disclaimer

More information