Date Author Version Change Reference

Size: px
Start display at page:

Download "Date Author Version Change Reference"

Transcription

1 DESIGN AACG ETL Adapter for Hyperion V1.0 Author: Sundeep Nayak Creation Date Last Updated: File URL: Draft / Version: 2.0 Status: Beta Document Control Change Record Date Author Version Change Reference Su Sundeep Nayak 1.0 First draft Sundeep Nayak and Yasir Shah 2.0 Beta

2 Table of Contents 1. Introduction... 2 Scope for this document Technical Overview of Hyperion ETL Adapter... 2 a. Functional Security... 3 Java APIS to extract data... 4 b. Data Security... 5 Security Classes... 5 Global conditions for Hyperion Datasource(To be finalized in V1.01) Mapping into the AACG Repository (Extract Target) Introduction Scope for this document Access Control Governor(ACG) V8.5 interfaces with ETL adapters that can extract security access models from Oracle Ebiz, and Peoplesoft applications to perform Seggregation of Duties(SOD) voilation analysis of ACG defined policies. The scope of this project is to prove the technicial viability of an ETL adapter that could do a similar extract from a Hyperion Security Access model. The ETL extract required for the analysis should be capable of performing the following 1. An initial full-load pull of the Hyperion Users, Groups and Roles data 2. Subsequent incremental-load pulls of changed data (new inserts and update deltas) since the initial pull 2. Technical Overview of Hyperion ETL Adapter The goal of the Hyperion ETL adapter is to be able to both the functional data of the Hyperion access model (Users, Groups and Roles) using the

3 hyperion CSS Java APIs and the security class related data security using yet to be determined apis (or using direct SQL for the time being). Hyperion Functional Security Data (LDAP store) in HFM Hyperion Data Security (Security Classes) in HFM HSS CSS APIS HFM APIs Hyperion Adapter Java Wrapper Full Load Hyperion ODI Staging tables Incremental Load using ODI Scenarios AACG Adapter repository AACG DB Instance a. Functional Security The Hyperion shared services (HSS) enables the below CSS APIs to get the functional data

4 Java APIS to extract data Returns Method CSSUserIF authenticate(java.util.map context) - authenticates the user with a token CSSUserIF[] getusers(java.util.map context, java.lang.string username) Gets the user specified by username. CSSGroupIF[] getgroups(java.util.map context, java.lang.string groupname) Get a group based on the name or wildcaredx. CSSRoleIF[] getroles(java.util.map context, CSSPrincipalIF principal, java.lang.string rolename, java.lang.string typeofaccess, java.lang.string applicationid) Gets the roles associated with this application. The advantages of using the above CSS Java APIS (available as JARs) as opposed to going against the LDAP Store using JNDI/ODI directly are: 1. Abstraction: The Apis provide the level of abstraction to the GRC Hyperion Adapter from the LDAP storage schema. Any future schema changes will NOT affect GRC Adapter code 2. Implementation Independence: The LDAP store will support not just Oracle Internet Database but also other widely used stores like Active Directory and iplanet and there is a slight variance in data audit mechancisms.(for eg. some of them use Change Log). The same OPSS APIs will support incremental data pull irrespective of the underlying LDAP store implementation. 3. Performance: LDAP structure is heirarchial and slow. The query that APIs use been optimized for performance

5 b. Data Security Security Classes Users and groups are assigned to Security Classes are used in Hyperion to allow access to data in an HFM functionality. The Security class maintains one of the following access levels: 1. None 2. Metadata 3. Read 4. Promote 5. All In Phase I we want to focus on having Security Classes pulled into AACG as attributes/dimensions. During conflict analysis we would be able to choose which Security Classes to include /exclude. We would need the following data points to examine Hyperion Security Classes: 1. Security Class and its attributes 2. Users and Groups associated with Security Class 3. The link between a Security Class and a Hyperion Meta-data (eg. Account, Entity, Scenario dimensions.) These data points need to be loaded in AACG attribute tables for it to monitor the list of Security Classes. AACG is only able to handle a value and description; this leaves the access level unaccounted for. The access level will need to be recorded as part of the description field in the attribute field. Due to these restrictions, the Security Class name will be recorded and the access level will be recorded as the description field. Then users and groups as well as the Hyperion objects will be linked up to the Security Class attribute. Current API Support The only APIs that allow access to Security Classes are through COM Objects. The following prerequisites need to be met before developing using the HFM COM Objects:

6 You must install the Financial Management Windows client on your computer. You must either install the Financial Management application server files on your computer or you must have read access to a file system on which the application server files are installed. Access to the application server files is required so that your projects can reference the object model s type libraries. The main COM object to use is HsvSecurityAccess for accessing Security Classes. The following are the most relevant methods available from this object to deal with Security Classes: AddSecurityClass: Adds a security class to a Classic application. DeleteSecurityClass: Deletes a security class from a Classic application. EnumSecurityClasses: Returns arrays containing an application s security class IDs and names. The arrays have a one-to-one correspondence. EnumSecurityClassRightsForPrincipal: Returns arrays representing a user's access and alerting rights to security classes. The arrays have a one-to-one correspondence. EnumUserClassAccess: Returns the access and alerting rights that one or more users have for the specified security classes. GetApplicationAdministratorAccessForAllUsers2: Indicates which of an application s users are assigned to the Application Administrator role. This method returns arrays containing the usernames and security identifiers of the application s users and an array of flags indicating whether the users are assigned to the Application Administrator role. The arrays have a one-to-one correspondence. GetSecurityClassAccessForAllUsers2: Returns the access rights to a security class for all of an application s users. The method returns access rights and user information in arrays that have a one-to-one correspondence. GetSecurityClassID: Returns the ID of a security class, given the security class s name. GetSecurityClassLabel: Returns the name of a security class, given a security class ID. GetUserAccessForAllSecurityClasses2: Returns the level of access rights that a user has for each security class in an application. The

7 method returns access rights and security class information in arrays that have a one-to-one correspondence GetUserName2: Returns a username, given a security identifier. GetUserNameFromSID: Returns the username of a user, given the user s security identifier (SID). GetUserSID: Returns the security identifier for a given user. SetManySecurityClassRightsForUser2: Sets a user s access and e- mail alerting rights for one or more security classes. Security and access right IDs are passed in arrays that have a one-to-one correspondence. SetSecurityClassLabel: Changes the name of a security class in a Classic application. SetSecurityClassRightsForManyUsers2: Sets one or more users access and alerting rights to a given security class. Users security identifiers, access right IDs, and alerting flags are passed in arrays that have a one-to-one correspondence. SetSecurityClassRightsForUser2: Sets a user s access and alerting rights for a security class. SetUserClassAccess: Sets security class access and alerting rights for one or more users Please note Security classes are assigned to Entity dimension members, and you can get an entity s security class with HsvEntities object and using the GetSecurityClassID method. GetSecurityClassID returns the ID number of an entity s security class. In other words, this method returns the ID of the security class that has been defined for an entity s SecurityClass attribute. Analyzing Table Structure Security Class tables reside in the HFM Schema. For each HFM application there are the 2 tables that hold Security Class name and access information are: HSV_<Application Prefix>_SECCLASSES HSV_<Application Prefix>_SECCACCESS Each HFM application will have its prefix that will be pre-pended on tables, in the case of security classes it is appended after HSV_. These tables will identify the Security Class and the users/groups who are assigned to it. So if

8 there are 3 HFM applications 6 tables will exist to grab the information from. Each object has a table. These tables have the ability to identify which security classes are assigned. Each object s table will have references to the SECCLASSES->ItemID value. The objects reside in the following tables. The columns that are linked are generally named "SecurityClass" or "SecurityClassID". For each HFM application it will have the following tables that store the hfm object and security class relationship information. <Application Prefix> notes that the applications prefix is added to the beginning of these table names. Metadata access restrictions for data: <Application Prefix>_ACCOUNT_ITEM <Application Prefix>_ENTITY_ITEM <Application Prefix>_ICP_ITEM <Application Prefix>_CUSTOM1_ITEM <Application Prefix>_CUSTOM2_ITEM <Application Prefix>_CUSTOM3_ITEM <Application Prefix>_CUSTOM4_ITEM <Application Prefix>_SCENARIO_ITEM Journals: <Application Prefix>_JL_<S>_<Y> (<S> = ScenarioID and <Y> = Year, there can be multiple tables) <Application Prefix>_JLTMP Reports/Folders/Grids/Forms <Application Prefix>_RPTS These tables will then link to the Security Class it is assigned, and from there we can retrieve those users/groups assigned to a security class. Each of the above tables need to be linked with the HSV_<Application Prefix>_SECCLASSES to understand which of the above objects have a particular class assigned to it.

9 Scripts To get a listing of all the security classes you can run a query that looks like this: select * from hfm.hsv_<application Prefix>_SECCLASSES order by itemid; The following will return the users and the class they are assigned to: select ac.itemid, ac.usersid, DECODE(ac.accessrights, 0, 'None', 1, 'Metadata', 2, 'Read', 3, 'Promote', 4, 'All') AS Access_Level, sc.label As Security_Class from hfm.hsv_<application Prefix>_SECCACCESS ac, hfm.hsv_<application Prefix>_SECCLASSES sc where ac.itemid = sc.itemid ORDER BY sc.label; The following are scripts to get the relationship between classes and HFM objects, they will lack the extra metadata that may need to be captured which will be different for each HFM object: 1. ACCOUNTS select ad.description, sc.label As Security_Class from hfm.<application PREFIX>_ACCOUNT_ITEM ob, hfm.<application Prefix>_account_desc ad where ob.securityclass = sc.itemid and ob.itemid= ad.itemid ORDER BY sc.label; 2. ENTITY hfm.<application PREFIX>_ENTITY_ITEM ob where ob.securityclassid = sc.itemid ORDER BY sc.label; 3. ICP

10 hfm.<application PREFIX>_ICP_ITEM ob where ob.securityclass = sc.itemid ORDER BY sc.label; 4. CUSTOM1 hfm.<application PREFIX>_CUSTOM1_ITEM ob where ob.securityclass = sc.itemid ORDER BY sc.label; 5. CUSTOM2 hfm.<application PREFIX>_CUSTOM2_ITEM ob where ob.securityclass = sc.itemid ORDER BY sc.label; 6. CUSTOM3 hfm.<application PREFIX>_CUSTOM3_ITEM ob where ob.securityclass = sc.itemid ORDER BY sc.label; 7. CUSTOM4 hfm.<application PREFIX>_CUSTOM4_ITEM ob where ob.securityclass = sc.itemid ORDER BY sc.label; 8. SCENARIO hfm.<application PREFIX>_SCENARIO_ITEM ob where ob.securityclass = sc.itemid ORDER BY sc.label; 9. JOURNAL (Note there will be multiple tables depending on scenario and year) hfm.<application Prefix>_jl_<S>_<Y> ob where ob.securityclass_id = sc.itemid ORDER BY sc.label; 10. JOURNAL hfm.<application PREFIX>_JLTMP ob where ob.securityclass_id = sc.itemid ORDER BY sc.label; 11. REPORTS

11 hfm.<application Prefix>_rpts ob where ob.securityclass = sc.itemid ORDER BY sc.label; Global conditions for Hyperion Datasource(To be finalized in V1.01) Mapping into the AACG Repository (Extract Target) Upon the etl extraction, the hyperion security components above get mapped into the following AACG database objects AACG Datasource db object will store the connection information for use by ODI (database and OID)

12 AACG Access Type db object will store the distinct security type objects like Hyperion Roles and Hyperion Groups and possibly Security Class with access levels AACG Access table will store the extracted (from Hyperion instance) access points of Access Type above AACG Access link will store the realationship between the access points above AACG Users will store the extracted Hyperion application user infromation AACG User access will store the mapping between users and access points AACG global user will be used to maintain the integrity of the Policies across pillars and different sources AACG user Mapping will map each datasource application user to the Global User

Hyperion Application Access Control Governor Blueprint for Oracle GRC Applications

Hyperion Application Access Control Governor Blueprint for Oracle GRC Applications Hyperion Application Access Control Governor Blueprint for Oracle GRC Applications Providing organizations the ability to enforce Segregation of Duties across Hyperion Applications

More information

HFM / OBIEE Integration using the new ADM thin driver

HFM / OBIEE Integration using the new ADM thin driver HFM 11.1.2.3 / OBIEE 11.1.1.7 Integration using the new ADM thin driver Configuration Steps in brief: 1. Install / Config PS3 HFM with a Sample application created and all of the data / metadata / security

More information

Loading and Extracting HFM data with ODI Knowledge Modules

Loading and Extracting HFM data with ODI Knowledge Modules Loading and Extracting HFM 11.1.2.4 data with ODI Knowledge Modules Introduction Oracle Hyperion Financial Management (HFM) is an Enterprise Performance Management (EPM) tool that provides financial consolidation

More information

Creating Classic Planning Applications in Oracle Hyperion Planning, Fusion Edition

Creating Classic Planning Applications in Oracle Hyperion Planning, Fusion Edition Creating Classic Planning Applications in Oracle Hyperion Planning, Fusion Edition 11.1.2 This tutorial contains the following sections: Purpose Time to Complete Overview Software and Hardware Requirements

More information

1Z

1Z 1Z0-257 Passing Score: 800 Time Limit: 4 min Exam A QUESTION 1 Which two statements are true about HFM Security? (Choose two.) A. Lightweight Directory Access Protocol (LDAP) groups can be added to HFM

More information

Hyperion Solutions Exam 4H0-435 hyperion financial management v3.51 exam Version: 5.0 [ Total Questions: 184 ]

Hyperion Solutions Exam 4H0-435 hyperion financial management v3.51 exam Version: 5.0 [ Total Questions: 184 ] s@lm@n Hyperion Solutions Exam 4H0-435 hyperion financial management v3.51 exam Version: 5.0 [ Total Questions: 184 ] Topic 0, A A Question No : 1 - (Topic 0) In a Web Data Entry Form script, what is the

More information

Contents Overview... 5 Downloading Primavera Gateway... 5 Primavera Gateway On-Premises Installation Prerequisites... 6

Contents Overview... 5 Downloading Primavera Gateway... 5 Primavera Gateway On-Premises Installation Prerequisites... 6 Gateway Installation and Configuration Guide for On-Premises Version 17 September 2017 Contents Overview... 5 Downloading Primavera Gateway... 5 Primavera Gateway On-Premises Installation Prerequisites...

More information

TIBCO Jaspersoft running in AWS accessing a back office Oracle database via JDBC with Progress DataDirect Cloud.

TIBCO Jaspersoft running in AWS accessing a back office Oracle database via JDBC with Progress DataDirect Cloud. TIBCO Jaspersoft running in AWS accessing a back office Oracle database via JDBC with Progress DataDirect Cloud. This tutorial walks through the installation and configuration process to access data from

More information

This document explains how to merge an Financial Close Management split database s into a single database.

This document explains how to merge an Financial Close Management split database s into a single database. Procedure to merge Oracle Hyperion Financial Close Management Single Node Environment (11.1.2.3) FCM and ARM split database s into 1 single FCM SQL Server database Purpose This document explains how to

More information

2013 Oracle Corporation

2013 Oracle Corporation Oracle BI 11g Security Configurations Oracle BI 11.1.1.7.0 Adam Bloom Oracle BI Product Manager The following is intended to outline our general product direction. It is intended

More information

Masking Engine User Guide. October, 2017

Masking Engine User Guide. October, 2017 Masking Engine User Guide October, 2017 Masking Engine User Guide You can find the most up-to-date technical documentation at: docs.delphix.com The Delphix Web site also provides the latest product updates.

More information

Oracle Identity Manager 11gR2-PS2 Hands-on Workshop Tech Deep Dive Upgrade

Oracle Identity Manager 11gR2-PS2 Hands-on Workshop Tech Deep Dive Upgrade Oracle Identity Manager 11gR2-PS2 Hands-on Workshop Tech Deep Dive Upgrade atul.goyal@oracle.com Principal Product Manager, Oracle Identity Governance This document is for informational

More information

Hyperion Interactive Reporting Reports & Dashboards Essentials

Hyperion Interactive Reporting Reports & Dashboards Essentials Oracle University Contact Us: +27 (0)11 319-4111 Hyperion Interactive Reporting 11.1.1 Reports & Dashboards Essentials Duration: 5 Days What you will learn The first part of this course focuses on two

More information

Administrator's Guide

Administrator's Guide Administrator's Guide EPMWARE Version 1.0 EPMWARE, Inc. Published: July, 2015 Information in this document, including URL and other Internet Web site references, is subject to change without notice. Unless

More information

Upgrading Oracle GoldenGate Veridata 12c (12.2.1)

Upgrading Oracle GoldenGate Veridata 12c (12.2.1) [1]Oracle GoldenGate Upgrading Oracle GoldenGate Veridata 12c (12.2.1) E60966-01 October 2015 Oracle GoldenGate Upgrading Oracle GoldenGate Veridata, 12c (12.2.1) E60966-01 Copyright 2014, 2015, Oracle

More information

Oracle Data Integrator 11g: Advanced Integration and Development Student Guide

Oracle Data Integrator 11g: Advanced Integration and Development Student Guide Oracle Data Integrator 11g: Advanced Integration and Development Student Guide D78191GC10 Edition 1.0 Febraury 2013 D80589 Author Viktor Tchemodanov Technical Contributors and Reviewers Denis Gray Alex

More information

Using ODI for Teradata Dual-Loads

Using ODI for Teradata Dual-Loads Purpose This tutorial walks you through the steps that are needed to create Oracle Data Integrator (ODI) EL-T interfaces and packages that will simultaneously load two independent Teradata RDBMS systems

More information

Installation Guide EPMWARE. Version 1.0. EPMWARE, Inc. Published: August, 2015

Installation Guide EPMWARE. Version 1.0. EPMWARE, Inc. Published: August, 2015 Installation Guide EPMWARE Version 1.0 EPMWARE, Inc. Published: August, 2015 Information in this document, including URL and other Internet Web site references, is subject to change without notice. Unless

More information

Chapter 2 WEBLOGIC SERVER DOMAINS. SYS-ED/ Computer Education Techniques, Inc.

Chapter 2 WEBLOGIC SERVER DOMAINS. SYS-ED/ Computer Education Techniques, Inc. Chapter 2 WEBLOGIC SERVER DOMAINS SYS-ED/ Computer Education Techniques, Inc. Objectives You will learn: Domain - concept and implementation. Content of a domain. Common domain types. Production versus

More information

Oracle Directory Services 11g: Administration

Oracle Directory Services 11g: Administration Oracle University Contact Us: 0180-2000-526 / +49 89-14301200 Oracle Directory Services 11g: Administration Duration: 5 Days What you will learn After completing this course, you should be able to perform

More information

Oracle 1Z0-257 Exam Questions & Answers

Oracle 1Z0-257 Exam Questions & Answers Oracle 1Z0-257 Exam Questions & Answers Number: 1Z0-257 Passing Score: 800 Time Limit: 120 min File Version: 22.3 http://www.gratisexam.com/ Oracle 1Z0-257 Exam Questions & Answers Exam Name: Hyperion

More information

Skyway Builder 6.3 Reference

Skyway Builder 6.3 Reference Skyway Builder 6.3 Reference 6.3.0.0-07/21/09 Skyway Software Skyway Builder 6.3 Reference: 6.3.0.0-07/21/09 Skyway Software Published Copyright 2009 Skyway Software Abstract The most recent version of

More information

PassCollection. IT certification exam collections provider, High pass rate

PassCollection.   IT certification exam collections provider, High pass rate PassCollection http://www.passcollection.com IT certification exam collections provider, High pass rate Exam : 1z0-532 Title : Oracle Hyperion Financial Management 11 Essentials Vendor : Oracle Version

More information

ThingWorx Relational Databases Connectors Extension User Guide

ThingWorx Relational Databases Connectors Extension User Guide ThingWorx Relational Databases Connectors Extension User Guide Version 1.0 Software Change Log... 2 Introduction and Installation... 2 About the Relational Databases Connectors Extension... 2 Installing

More information

AquaLogic BPM Enterprise Configuration Guide

AquaLogic BPM Enterprise Configuration Guide AquaLogic BPM Enterprise Configuration Guide IBM WebSphere Edition Version: 6.0 2 ALBPM TOC Contents Getting Started...4 Document Scope and Audience...4 Documentation Roadmap...4 What is ALBPM Enterprise?...4

More information

Readme File. Purpose. Hyperion Financial Data Quality Management for Enterprise Release Readme

Readme File. Purpose. Hyperion Financial Data Quality Management for Enterprise Release Readme Hyperion Financial Data Quality Management for Enterprise Release 7.2.1 Readme Readme File This file contains the following sections: Purpose... 1 Restrictions... 2 New Features... 2 Multi-Language Support...

More information

VPN Connection to HFM Server at Poltrona FrauSite Below it is described how to connect You to Poltronafrau.it domain through a VPN connection.

VPN Connection to HFM Server at Poltrona FrauSite Below it is described how to connect You to Poltronafrau.it domain through a VPN connection. IT Technical Documents Author HFM - User Guide Creation Date 24/11/2008 Revised by Revision 17/01/2008 ID Doc. VPN Connection to HFM Server at Poltrona FrauSite Below it is described how to connect You

More information

Introduction... 5 Configuring Single Sign-On... 7 Prerequisites for Configuring Single Sign-On... 7 Installing Oracle HTTP Server...

Introduction... 5 Configuring Single Sign-On... 7 Prerequisites for Configuring Single Sign-On... 7 Installing Oracle HTTP Server... Oracle Access Manager Configuration Guide for On-Premises Version 17 October 2017 Contents Introduction... 5 Configuring Single Sign-On... 7 Prerequisites for Configuring Single Sign-On... 7 Installing

More information

Oracle Governance, Risk and Compliance Controls. Installation and Upgrade Guide Release 8.6.0

Oracle Governance, Risk and Compliance Controls. Installation and Upgrade Guide Release 8.6.0 Oracle Governance, Risk and Compliance Controls Installation and Upgrade Guide Release 8.6.0 January 2011 Governance, Risk and Compliance Controls Installation and Upgrade Guide Copyright 2010, 2011 Oracle

More information

Hyperion Shared Services TM. Readme. Release Service Pack 1 ( )

Hyperion Shared Services TM. Readme. Release Service Pack 1 ( ) Hyperion Shared Services TM Release 9.3.1 Service Pack 1 (9.3.1.1.00) Readme [Skip Navigation Links] About This Service Pack...2 What is in the Service Pack?... 2 New Features...2 Enhancement to Infrastructure

More information

Perceptive Connect. Installation and Setup Guide. Beta version: Compatible with ImageNow, versions 6.6.x and 6.7.x

Perceptive Connect. Installation and Setup Guide. Beta version: Compatible with ImageNow, versions 6.6.x and 6.7.x Perceptive Connect Installation and Setup Guide Beta version: 0.12.1 Compatible with ImageNow, versions 6.6.x and 6.7.x Written by: Product Documentation, R&D Date: November 2013 2013 Perceptive Software.

More information

GATEWAY Property File Creation Oracle FLEXCUBE Universal Banking Release [May] [2018]

GATEWAY Property File Creation Oracle FLEXCUBE Universal Banking Release [May] [2018] GATEWAY Property File Creation Oracle FLEXCUBE Universal Banking Release 14.1.0.0.0 [May] [2018] Table of Contents 1. CREATING PROPERTY FILE FOR GATEWAY APPLICATIONS... 1-1 1.1 INTRODUCTION... 1-1 1.2

More information

Real Application Security Administration

Real Application Security Administration Oracle Database Real Application Security Administration Console (RASADM) User s Guide 12c Release 2 (12.2) E85615-01 June 2017 Real Application Security Administration Oracle Database Real Application

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Quick Installation Guide for Oracle Identity Management 11g Release 1 (11.1.1) E10033-01 May 2009 This guide is designed to help you quickly install the most common Oracle Identity

More information

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

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. 1 Copyright 2011, Oracle and/or its affiliates. All rights The following is intended to outline Oracle s general product direction. It is intended for information purposes only, and may not be incorporated

More information

Configuring an ERwin Resource in Metadata Manager 8.5 and 8.6

Configuring an ERwin Resource in Metadata Manager 8.5 and 8.6 Configuring an ERwin Resource in Metadata 8.5 and 8.6 2009 Informatica Corporation Abstract This article shows how to create and configure an ERwin resource in Metadata 8.5, 8.5.1, 8.6, and 8.6.1 to extract

More information

Policy Manager for IBM WebSphere DataPower 7.2: Configuration Guide

Policy Manager for IBM WebSphere DataPower 7.2: Configuration Guide Policy Manager for IBM WebSphere DataPower 7.2: Configuration Guide Policy Manager for IBM WebSphere DataPower Configuration Guide SOAPMDP_Config_7.2.0 Copyright Copyright 2015 SOA Software, Inc. All rights

More information

Schema Concepts In Oracle 11g Using Express Edition

Schema Concepts In Oracle 11g Using Express Edition Schema Concepts In Oracle 11g Using Express Edition When you start the instance by using Enterprise Manager or SQL*Plus, the amount of memory Oracle 11g Express Edition, released by Oracle Corporation

More information

DataSunrise Database Security Suite Release Notes

DataSunrise Database Security Suite Release Notes www.datasunrise.com DataSunrise Database Security Suite 4.0.4 Release Notes Contents DataSunrise Database Security Suite 4.0.4... 3 New features...3 Known limitations... 3 Version history... 5 DataSunrise

More information

Automating Essbase Outline Extracts to a Relational Database Using the Next Generation Outline Extractor

Automating Essbase Outline Extracts to a Relational Database Using the Next Generation Outline Extractor Automating Essbase Outline Extracts to a Relational Database Using the Next Generation Outline Extractor Tim Tow, Oracle ACE Director Founder and President Applied OLAP Inc. Many Essbase customers regularly

More information

Question: 1 Which item must be enabled on the client side to allow users to complete certification in offline mode?

Question: 1 Which item must be enabled on the client side to allow users to complete certification in offline mode? Volume: 81 Questions Question: 1 Which item must be enabled on the client side to allow users to complete certification in offline mode? A. In Microsoft Excel, navigate to Excel Options >Trust Center tab

More information

Hyperion 4H Hyperion Planning v

Hyperion 4H Hyperion Planning v Hyperion 4H0-533 Hyperion Planning v.3.3.1 http://killexams.com/exam-detail/4h0-533 QUESTION: 181 Which three options are Maintain User tasks in Hyperion Reports? (Choose three.) A. Assign user to a Role

More information

Database Systems: Design, Implementation, and Management Tenth Edition. Chapter 14 Database Connectivity and Web Technologies

Database Systems: Design, Implementation, and Management Tenth Edition. Chapter 14 Database Connectivity and Web Technologies Database Systems: Design, Implementation, and Management Tenth Edition Chapter 14 Database Connectivity and Web Technologies Database Connectivity Mechanisms by which application programs connect and communicate

More information

ForgeRock Identity Management Core Concepts IDM-400 Course Description

ForgeRock Identity Management Core Concepts IDM-400 Course Description ForgeRock Identity Management Core Concepts IDM-400 Course Description Revision B Note: The following course contents are based on an early version of the revision B course materials. The final outline

More information

Oracle Database. Installation and Configuration of Real Application Security Administration (RASADM) Prerequisites

Oracle Database. Installation and Configuration of Real Application Security Administration (RASADM) Prerequisites Oracle Database Real Application Security Administration 12c Release 1 (12.1) E61899-04 May 2015 Oracle Database Real Application Security Administration (RASADM) lets you create Real Application Security

More information

Configuring SAP Targets and Runtime Users

Configuring SAP Targets and Runtime Users CHAPTER 4 Before you can create or run processes in your SAP environment, you must create the targets on which the processes will run. Targets are used to define specific environments where activities,

More information

ForgeRock Access Management Customization and APIs

ForgeRock Access Management Customization and APIs training@forgerock.com ForgeRock Access Management Customization and APIs Description AM-421 Course Description Revision B This course provides a hands-on technical introduction to ForgeRock Access Management

More information

Application Discovery and Enterprise Metadata Repository solution Questions PRIEVIEW COPY ONLY 1-1

Application Discovery and Enterprise Metadata Repository solution Questions PRIEVIEW COPY ONLY 1-1 Application Discovery and Enterprise Metadata Repository solution Questions 1-1 Table of Contents SECTION 1 ENTERPRISE METADATA ENVIRONMENT...1-1 1.1 TECHNICAL ENVIRONMENT...1-1 1.2 METADATA CAPTURE...1-1

More information

Configuration Store Setup Guide

Configuration Store Setup Guide Configuration Store Setup Guide Version 1.6 Corresponding Software Version Celonis 4.3 This document is copyright of the Celonis SE. Distribution or reproduction are only permitted by written approval

More information

HYPERION SYSTEM 9 MASTER DATA MANAGEMENT SERVICES NEW FEATURES

HYPERION SYSTEM 9 MASTER DATA MANAGEMENT SERVICES NEW FEATURES HYPERION SYSTEM 9 MASTER DATA MANAGEMENT SERVICES RELEASE 9.2 NEW FEATURES Overview.................................................................... 2 Ntier Architecture.............................................................

More information

<Insert Picture Here> Oracle SQL Developer Data Modeler 3.0: Technical Overview

<Insert Picture Here> Oracle SQL Developer Data Modeler 3.0: Technical Overview Oracle SQL Developer Data Modeler 3.0: Technical Overview February 2011 Contents Data Modeling Why model? SQL Developer Data Modeler Overview Technology and architecture Features

More information

Peak ETA Developers Guide

Peak ETA Developers Guide Oracle Business Intelligence 11g Peak ETA Developers Guide Antony Heljula / Paul Oprea January 2013 Peak Indicators Limited 2 Peak ETA Developers Guide Agenda About the Peak ETA Console About the Peak

More information

Oracle Data Integrator 12c: Integration and Administration

Oracle Data Integrator 12c: Integration and Administration Oracle University Contact Us: +27 (0)11 319-4111 Oracle Data Integrator 12c: Integration and Administration Duration: 5 Days What you will learn Oracle Data Integrator is a comprehensive data integration

More information

Working with Database Connections. Version: 18.1

Working with Database Connections. Version: 18.1 Working with Database Connections Version: 18.1 Copyright 2018 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not be copied or

More information

Perceptive Matching Engine

Perceptive Matching Engine Perceptive Matching Engine Installation and Setup Guide Version: 1.0.x Written by: Product Development, R&D Date: March 2018 2018 Hyland Software, Inc. and its affiliates. Table of Contents Overview...

More information

Oracle Governance, Risk and Compliance Intelligence

Oracle Governance, Risk and Compliance Intelligence Oracle Governance, Risk and Compliance Intelligence Implementation Guide Release 3.0 Part No. E16337-01 December 2009 Oracle Governance, Risk and Compliance Intelligence Implementation Guide, Release 3.0

More information

CO Java EE 7: Back-End Server Application Development

CO Java EE 7: Back-End Server Application Development CO-85116 Java EE 7: Back-End Server Application Development Summary Duration 5 Days Audience Application Developers, Developers, J2EE Developers, Java Developers and System Integrators Level Professional

More information

P6 EPPM Installation and Configuration Guide

P6 EPPM Installation and Configuration Guide P6 EPPM Installation and Configuration Guide 16 R2 October 2016 Contents About Installing and Configuring P6 EPPM... 5 Prerequisites for P6 EPPM Configuration... 6 Minimum Hard Disk Space... 6 JDK Installation...

More information

Zumero for SQL Server: Client API

Zumero for SQL Server: Client API Copyright 2013-2017 Zumero LLC Table of Contents 1. About... 1 2. Basics of zumero_sync()... 1 3. Manipulating Data in SQLite... 3 4. Details for Advanced Users... 4 4.1. Additional Functions in the API...

More information

Granting Read-only Access To An Existing Oracle Schema

Granting Read-only Access To An Existing Oracle Schema Granting Read-only Access To An Existing Oracle Schema Oracle recommends that you only grant the ANY privileges to trusted users. Use the IDENTIFIED BY clause to specify a new password for an existing

More information

Coveo Platform 7.0. Oracle UCM Connector Guide

Coveo Platform 7.0. Oracle UCM Connector Guide Coveo Platform 7.0 Oracle UCM Connector Guide Notice The content in this document represents the current view of Coveo as of the date of publication. Because Coveo continually responds to changing market

More information

DocAve 6 SharePoint Migrator

DocAve 6 SharePoint Migrator DocAve 6 SharePoint Migrator User Guide Service Pack 4, Cumulative Update 2 Revision C Issued July 2014 Table of Contents About SharePoint Migration... 5 Complementary Products... 5 Submitting Documentation

More information

SAS. Social Network Analysis Server 6.2: Installation and Configuration Guide, Third Edition. SAS Documentation

SAS. Social Network Analysis Server 6.2: Installation and Configuration Guide, Third Edition. SAS Documentation SAS Social Network Analysis Server 6.2: Installation and Configuration Guide, Third Edition SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2016.

More information

Technology Note. ER/Studio: Upgrading from Repository (v ) to Team Server 17.x

Technology Note. ER/Studio: Upgrading from Repository (v ) to Team Server 17.x Technology Note ER/Studio: Upgrading from Repository (v6.5-7.0) to Team Server 17.x Updated 07/09/2018 ER/Studio: Upgrading from Repository (v6.5-7.0) to Team Server 17.x With the release of ER/Studio

More information

COMPUTER MCQs. 1. DOS floppy disk does not have 1) a boot record 2) a file allocation table 3) a root directory

COMPUTER MCQs. 1. DOS floppy disk does not have 1) a boot record 2) a file allocation table 3) a root directory COMPUTER MCQs 1. DOS floppy disk does not have 1) a boot record 2) a file allocation table 3) a root directory 4)virtual memory 5) None of the above 2. The component is used by the data analyst to create

More information

HOMELESS INDIVIDUALS AND FAMILIES INFORMATION SYSTEM HIFIS 4.0 TECHNICAL ARCHITECTURE AND DEPLOYMENT REFERENCE

HOMELESS INDIVIDUALS AND FAMILIES INFORMATION SYSTEM HIFIS 4.0 TECHNICAL ARCHITECTURE AND DEPLOYMENT REFERENCE HOMELESS INDIVIDUALS AND FAMILIES INFORMATION SYSTEM HIFIS 4.0 TECHNICAL ARCHITECTURE AND DEPLOYMENT REFERENCE HIFIS Development Team May 16, 2014 Contents INTRODUCTION... 2 HIFIS 4 SYSTEM DESIGN... 3

More information

1Z Oracle Business Intelligence (OBI) Foundation Suite 11g Essentials Exam Summary Syllabus Questions

1Z Oracle Business Intelligence (OBI) Foundation Suite 11g Essentials Exam Summary Syllabus Questions 1Z0-591 Oracle Business Intelligence (OBI) Foundation Suite 11g Essentials Exam Summary Syllabus Questions Table of Contents Introduction to 1Z0-591 Exam on Oracle Business Intelligence (OBI) Foundation

More information

OpenIAM Identity and Access Manager Technical Architecture Overview

OpenIAM Identity and Access Manager Technical Architecture Overview OpenIAM Identity and Access Manager Technical Architecture Overview Overview... 3 Architecture... 3 Common Use Case Description... 3 Identity and Access Middleware... 5 Enterprise Service Bus (ESB)...

More information

Hyperion 4H Hyperion Financial Management v

Hyperion 4H Hyperion Financial Management v Hyperion 4H0-435 Hyperion Financial Management v3.51 http://killexams.com/exam-detail/4h0-435 Answer: B QUESTION: 167 A client has a dynamic process of adding new accounts and products every month. They

More information

GATEWAY Property File Creation Oracle FLEXCUBE Universal Banking Release [December] [2016]

GATEWAY Property File Creation Oracle FLEXCUBE Universal Banking Release [December] [2016] GATEWAY Property File Creation Oracle FLEXCUBE Universal Banking Release 12.3.0.0.0 [December] [2016] Table of Contents 1. CREATING PROPERTY FILE FOR GATEWAY APPLICATIONS... 1-1 1.1 INTRODUCTION... 1-1

More information

A Case Study Building Financial Report and Dashboard Using OBIEE Part I

A Case Study Building Financial Report and Dashboard Using OBIEE Part I A Case Study Building Financial Report and Dashboard Using OBIEE Part I This is a 1 st document in the series of building financial reports and dashboard taking Essbase as Data Source. This document briefs

More information

AquaLogic BPM Enterprise Configuration Guide

AquaLogic BPM Enterprise Configuration Guide AquaLogic BPM Enterprise Configuration Guide Standalone Edition Version: 6.0 2 ALBPM TOC Contents Getting Started...4 Document Scope and Audience...4 Documentation Roadmap...4 What is ALBPM Enterprise?...4

More information

ORACLE DATA INTEGRATOR (ODI) 10G INTEGRATION PART 1 AND SALESFORCE.COM. Written by: Christian Screen ArtOfBI.com (The Art of Business Intelligence)

ORACLE DATA INTEGRATOR (ODI) 10G INTEGRATION PART 1 AND SALESFORCE.COM. Written by: Christian Screen ArtOfBI.com (The Art of Business Intelligence) ORACLE DATA INTEGRATOR (ODI) 10G AND SALESFORCE.COM INTEGRATION PART 1 Written by: Christian Screen ArtOfBI.com (The Art of Business Intelligence) Version 1 (2010/03/22) The Art of BI () Table of Contents

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Connectivity and Knowledge Modules Guide for Oracle Data Integrator 11g Release 1 (11.1.1) E12644-04 April 2011 Oracle Fusion Middleware Connectivity and Knowledge Modules Guide

More information

Oracle Revenue Management and Billing Analytics. Version Security Guide. Revision 1.1

Oracle Revenue Management and Billing Analytics. Version Security Guide. Revision 1.1 Oracle Revenue Management and Billing Analytics Version 2.2.1.0.0 Revision 1.1 E63804-04 October, 2016 Oracle Revenue Management and Billing Analytics E63804-04 Copyright Notice Copyright 2016, Oracle

More information

[MS-WSSFO]: Windows SharePoint Services (WSS): File Operations Database Communications Protocol

[MS-WSSFO]: Windows SharePoint Services (WSS): File Operations Database Communications Protocol [MS-WSSFO]: Windows SharePoint Services (WSS): File Operations Database Communications Protocol Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft

More information

BEAWebLogic RFID. Edge Server. Using the Administration Console

BEAWebLogic RFID. Edge Server. Using the Administration Console BEAWebLogic RFID Edge Server Using the Administration Console Version 2.1 Revised: June 29, 2006 Contents 1. Introduction and Roadmap Document Scope and Audience.............................................

More information

MuseKnowledge Hybrid Search

MuseKnowledge Hybrid Search MuseKnowledge Hybrid Search MuseGlobal, Inc. One Embarcadero Suite 500 San Francisco, CA 94111 415 896-6873 www.museglobal.com MuseGlobal S.A Calea Bucuresti Bl. 27B, Sc. 1, Ap. 10 Craiova, România 40

More information

Oracle ILM Assistant Installation Guide Version 1.4

Oracle ILM Assistant Installation Guide Version 1.4 Oracle ILM Assistant Installation Guide Version 1.4 This document provides instructions for installing and running Oracle Information Lifecycle Management (ILM) Assistant. Version: 1.4 Oracle Corporation

More information

Creating a connection from Talend ETL Tool to Oracle Autonomous Data Warehouse

Creating a connection from Talend ETL Tool to Oracle Autonomous Data Warehouse Vijay Balebail, Aalok Muley Certification Matrix Talend ETL Tool Oracle JDBC Version 7.x or higher ojdbc8.jar or higher Here is the overview of the install and configuration process to get Talend connected

More information

Coveo Platform 7.0. Yammer Connector Guide

Coveo Platform 7.0. Yammer Connector Guide Coveo Platform 7.0 Yammer Connector Guide Notice The content in this document represents the current view of Coveo as of the date of publication. Because Coveo continually responds to changing market conditions,

More information

Using the IMS Universal Drivers and QMF to Access Your IMS Data Hands-on Lab

Using the IMS Universal Drivers and QMF to Access Your IMS Data Hands-on Lab Using the IMS Universal Drivers and QMF to Access Your IMS Data Hands-on Lab 1 Overview QMF for Workstation is an Eclipse-based, rich client desktop Java application, that uses JDBC to connect to data

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Installing and Configuring the Oracle Fusion Middleware Infrastructure 12c (12.1.2) E38451-02 May 2014 Documentation for installers and system administrators that describes how

More information

Financial Master Data Management in a Heterogeneous IT Environment. Kristin Pollock Dell Finance Product Manager

Financial Master Data Management in a Heterogeneous IT Environment. Kristin Pollock Dell Finance Product Manager Financial Master Data Management in a Heterogeneous IT Environment Kristin Pollock Dell Finance Product Manager Agenda Project Background Project Goals The Implementation Approach Technical Challenges

More information

IBM StoredIQ Administrator Version Administration Guide IBM SC

IBM StoredIQ Administrator Version Administration Guide IBM SC IBM StoredIQ Administrator Version 7.6.0.8 Administration Guide IBM SC27-5688-10 IBM StoredIQ Administrator Version 7.6.0.8 Administration Guide IBM SC27-5688-10 Note Before using this information and

More information

DB2 S-TAP, IMS S-TAP, VSAM S-TAP

DB2 S-TAP, IMS S-TAP, VSAM S-TAP IBM InfoSphere Guardium Version 8.2 IBM InfoSphere Guardium 8.2 offers the most complete database protection solution for reducing risk, simplifying compliance and lowering audit cost. Version 8.2 contains

More information

Oracle Financial Services Data Integration Hub

Oracle Financial Services Data Integration Hub Oracle Financial Services Data Integration Hub User Manual 8.0.5.0.0 Table of Contents TABLE OF CONTENTS PREFACE... 5 Audience... 5 Prerequisites... 5 Acronyms... 5 Glossary of Icons... 5 Related Information

More information

Contents About the P6 EPPM Post Installation Administrator's Guide P6 Setup Tasks... 13

Contents About the P6 EPPM Post Installation Administrator's Guide P6 Setup Tasks... 13 P6 EPPM Post Installation Administrator's Guide Release 8.4 November 2014 Contents About the P6 EPPM Post Installation Administrator's Guide... 11 P6 Setup Tasks... 13 Accessing P6 from Client Browsers...

More information

Preliminary. No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation.

Preliminary. No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation. [MS-WSSDLIM3]: Windows SharePoint Services: Content Database Document and List Item Management Communications Version Intellectual Property Rights Notice for Open Specifications Documentation Technical

More information

Publishing and Subscribing to Cloud Applications with Data Integration Hub

Publishing and Subscribing to Cloud Applications with Data Integration Hub Publishing and Subscribing to Cloud Applications with Data Integration Hub 1993-2015 Informatica LLC. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying,

More information

Oracle Hyperion Financial Management. Readme. Release Patch Set Update (PSU):

Oracle Hyperion Financial Management. Readme. Release Patch Set Update (PSU): Oracle Hyperion Financial Management Release 11.1.2.4.000 Patch Set Update (PSU): 11.1.2.4.200 Readme About This Patch... 2 Patch Type... 2 New Features in this Release... 2 Application Creation Wizard...

More information

Oracle 10g. Configuration Guide. Copyright 2005 CRYPTOCard Corporation All Rights Reserved

Oracle 10g. Configuration Guide. Copyright 2005 CRYPTOCard Corporation All Rights Reserved Oracle 10g Configuration Guide Copyright 2005 CRYPTOCard Corporation All Rights Reserved http://www.cryptocard.com Overview This document provides instructions for implementing Oracle 10g as the backend

More information

Oracle Enterprise Performance Management. System. User Security Administration Guide.

Oracle Enterprise Performance Management. System. User Security Administration Guide. Oracle Enterprise Performance Management System User Security Administration Guide Oracle Enterprise Performance Management. System. User Security Administration Guide. Release 11.1.2.3. Updated: August

More information

Installing Apache Atlas

Installing Apache Atlas 3 Installing Apache Atlas Date of Publish: 2018-04-01 http://docs.hortonworks.com Contents Apache Atlas prerequisites... 3 Migrating Atlas metadata when upgrading to HDP-3.0+... 3 Overview... 3 Migrate

More information

ive JAVA EE C u r r i c u l u m

ive JAVA EE C u r r i c u l u m C u r r i c u l u m ive chnoworld Development Training Consultancy Collection Framework - The Collection Interface(List,Set,Sorted Set). - The Collection Classes. (ArrayList,Linked List,HashSet,TreeSet)

More information

Perceptive Matching Engine

Perceptive Matching Engine Perceptive Matching Engine Advanced Design and Setup Guide Version: 1.0.x Written by: Product Development, R&D Date: January 2018 2018 Hyland Software, Inc. and its affiliates. Table of Contents Overview...

More information

Call: Hyperion Planning Course Content:35-40hours Course Outline Planning Overview

Call: Hyperion Planning Course Content:35-40hours Course Outline Planning Overview Hyperion Planning Course Content:35-40hours Course Outline Planning Overview Oracle's Enterprise Performance Management Planning Architecture Planning and Essbase Navigating Workspace Launching Workspace

More information

Oracle Financial Services Governance, Risk, and Compliance Workflow Manager User Guide. Release February 2016 E

Oracle Financial Services Governance, Risk, and Compliance Workflow Manager User Guide. Release February 2016 E Oracle Financial Services Governance, Risk, and Compliance Workflow Manager User Guide Release 8.0.2.0.0 February 2016 E65393-01 Oracle Financial Services Governance, Risk, and Compliance Workflow Manager

More information

Migrate from Netezza Workload Migration

Migrate from Netezza Workload Migration Migrate from Netezza Automated Big Data Open Netezza Source Workload Migration CASE SOLUTION STUDY BRIEF Automated Netezza Workload Migration To achieve greater scalability and tighter integration with

More information

Oracle Revenue Management and Billing Analytics. Version Security Guide. Revision 1.5

Oracle Revenue Management and Billing Analytics. Version Security Guide. Revision 1.5 Oracle Revenue Management and Billing Analytics Version 2.6.1.0.0 Revision 1.5 E63804-01 February, 2018 Oracle Revenue Management and Billing Analytics E63804-01 Copyright Notice Copyright 2017, Oracle

More information