Lab 19: Event Handlers for User Entities

Size: px
Start display at page:

Download "Lab 19: Event Handlers for User Entities"

Transcription

1 Lab 19: Event Handlers for User Entities Disclaimer: The Virtual Machine Image and other software are provided for use only during the workshop. Please note that you are responsible for deleting them from your computers before you leave. If you would like to try out any of the Oracle products, you may download them from the Oracle Technology Network ( or the Oracle E-Delivery WebSite( Oracle Proprietary - Restricted to Personal Use in an Oracle partner training class

2 OIM 11g R2 Workshop - Lab 19 Contents I. Introduction II. Content 2.1 Prerequisites for the sample 2.2 Create the Contractor ID field in the database and in the business tier 2.3 Create the Contractor ID field in the user interface 2.4 Define a database IT resource that will be used by the event handler 2.5 Build & Deploy the sample 2.6 Post deployment Unit testing Procedure Test the Contractor on-boarding (event handler) via UI Test the Contractor on-boarding (event handler) via Reconciliation I. Introduction If an employee is a Contractor, she/he must be registered in the Contractor Registration System, which is an external application. This application is a database application. The database has the following structure: User ID Contractor ID First Name Last Name 2 After successful registration, her/his Contractor ID must be retrieved and updated in his OIM User Profile. This use-case will be developed as a plug-in and deployed on Oracle Identity Manager 11g R2 environment. The plug-in will be used for extracting Contractor Id or any configured column name from specified database table and update OIM User profile.

3 This event handler will be implemented as PostProcessHandler and registered for Create operation of User. It will be a conditional event handler, executing for only "Contractor" users. If the user type is Contractor then it will connect the external application to retrieve the Contractor Id (field name defined in DB.table.column.to.retrieve) based on the OIM user id (defined in DB.Matching.OIM.User.Field) and update the OIM User profile with contractor Id. II Content 2.1 Prerequisites for the sample Create Database table Contractor using SQL Column Name USERID CONTRACTORID FIRSTNAME LASTNAME Data type varchar2(100) primary key varchar2(100) varchar2(100) varchar2(100) Open SQLDeveloper from Startup_Scripts of Desktop Oracle Proprietary - Restricted to Personal Use in an Oracle partner training class

4 OIM 11g R2 Workshop - Lab 19 Click File Open 4

5 Open database script for contractor.sql file located in /app/dummydata/lab 19 Oracle Proprietary - Restricted to Personal Use in an Oracle partner training class

6 OIM 11g R2 Workshop - Lab 19 Select OIM as DB connection in upper right of tool,then Click Run Statement Button 6

7 You should see Contractor table and data have been created Oracle Proprietary - Restricted to Personal Use in an Oracle partner training class

8 OIM 11g R2 Workshop - Lab 19 Import ContractorIDConfiguration_updated.xml file located in /app/dummydata/lab 19/ContractorIDEventHandlerPostProc/oim_objects. It will create the lookup table named lookup.externaldatabase.configuration which will be used by the event handler. To import the above file into OIM, login (xelsysadm / Oracle123) to the System Administration web console of OIM and click on Import in the System Management area as shown below (you may have to unblock pop-ups in your browser): 8

9 The Import window should show up (if you get a warning that another import is in progress, select Start import anyway and click on Get Lock). Then select ContractorIDConfiguration_updated.xml and click on Add File Click on Import twice (the second time is a confirmation). Wait till the dialog window Import successful opens and click on OK. You can close then the Import screen. The current event handler has been developed considering a highly configurable design. Therefore, a lookup code has been introduced so that developers can tweak values of various parameters and change the behavior. By default, they have the optimum default values to make the event handler work as per the Oracle Proprietary - Restricted to Personal Use in an Oracle partner training class

10 OIM 11g R2 Workshop - Lab 19 environment set in the VM. To find out more details on what can be customized and configured better to your needs (and only if that is required), check the lookup code lookup.externaldatabase.configuration with the OIM System Administration web console which would have been already created by the DM file import. Click on Lookups in the Configuration area Enter lookup.externaldatabase.configuration in the Meaning field and click on Search 10

11 Follow the description below to understand how these parameters could be tweaked. By default, they have the optimum default values to make the event handler work as per the environment set in the VM. Oracle Proprietary - Restricted to Personal Use in an Oracle partner training class

12 OIM 11g R2 Workshop - Lab 19 Code Key Decode Information DB.Matching.OIM.User.Field UserID The OIM user field. This field value will be used to find matching record in DB column defined in the LKU key DB.table.column.to.retrieve DB.ITResource ExternalContractorDatabase The IT resource pointing to the related database DB.Table.Name Contractor The DB table name. This table will be used to retrieve column value defined in LKU: DB.table.field.to.retrieve DB.Table.Column.To.Retrieve ContractorID The DB column name. This column name will be used to retrieve value from table defined in LKU key : DB.table.name OIM.User.Field.To.Update ContractorId The OIM User field. This field value will be updated with corresponding DB table field value. OIM.UserType.Event.Identifier Contractor The user type identifier. This must be same as OIM User Type as it will be used to match OIM User Type during the execution of event handler. Close the Lookups window. Contractor on-boarding process would use a flat file as a source of identities. In order to do so, a flat file Generic Connector named HR_FILE_GTC_CONNECTOR is already created in the VM Steps used to create it: OIM System Administration console -> Configuration -> Generic Connector Click on Create Name: HR_FILE_GTC_CONNECTOR 12

13 Reconciliation: Transport Provider: Shared Drive Format Provider: CSV Trusted Source Reconciliation: checked Click on Continue Shared Drive: Staging Directory: /app/dummydata/lab 19/ Archiving Directory: /app/dummydata/lab 19/archive File Prefix: identities Specified Delimiter: Design Parameters: File Encoding: Cp1251 Source Date Format: yyyy/mm/dd hh:mm:ss z Reconciliation Type: Full Click on Continue Mapping(Note:The Data Type of Hiredate is Date) Reconcilation Staging empid firstname middlename lastname businessunitid location usertype OIM USER User Login (matching only) First Name Middle Name Last Name Organization Country Role Oracle Proprietary - Restricted to Personal Use in an Oracle partner training class

14 OIM 11g R2 Workshop - Lab 19 XellerateType status managerempid Hiredate(Data Type:Date) User Type Status Manager Hire Date Click Close and Save 2.2 Create the Contractor ID field in the database and in the business tier Open The OIM System Administration web console Create a Sandbox: Sandboxes -> Create Sandbox and name it create_contractorid Click on Save and Close Click User link under System Entities 14

15 Oracle Proprietary - Restricted to Personal Use in an Oracle partner training class

16 OIM 11g R2 Workshop - Lab 19 Click on Create a Custom Field icon Select Text field type and click on OK 16

17 Enter: Display Label Name Searchable Contractor ID ContractorId selected Oracle Proprietary - Restricted to Personal Use in an Oracle partner training class

18 OIM 11g R2 Workshop - Lab 19 Click on Save and Close Select the Sandbox and click on Export Sandbox (it is a good habit to save a Sandbox in order to identify what has been done during the customization) A zip is downloaded: Now publish the Sandbox selecting it and clicking on Publish Sandbox 18

19 Confirm clicking on Yes 2.3 Create the Contractor ID field in the user interface Open the Self Service web console Create and activate a new Sandbox named create_contratorid_ui Click on Users Oracle Proprietary - Restricted to Personal Use in an Oracle partner training class

20 20 OIM 11g R2 Workshop - Lab 19

21 Click on Search and on the first User Login link Click on Customize and View -> Source Oracle Proprietary - Restricted to Personal Use in an Oracle partner training class

22 OIM 11g R2 Workshop - Lab 19 Click on panelformlayout of the Basic Information Confirm the modification of the UI clicking on Edit Click on Add Content 22

23 Click on Open of Data Component Manage UsersCatalog Oracle Proprietary - Restricted to Personal Use in an Oracle partner training class

24 OIM 11g R2 Workshop - Lab 19 Formatted: Font color: Black 24

25 Go to the bottom of the list and open uservo1 component Formatted: Indent: First line: 0" Oracle Proprietary - Restricted to Personal Use in an Oracle partner training class

26 OIM 11g R2 Workshop - Lab 19 Formatted: Font color: Black 26

27 Formatted: Font: Click on the refresh icon Click on Add near the Contractor Id component,then Select ADF Output Text w/ Label Oracle Proprietary - Restricted to Personal Use in an Oracle partner training class

28 28 OIM 11g R2 Workshop - Lab 19

29 Click on Close in the Add Content window You can eventually change the position of the Contractor ID field clicking on Edit again, selecting panelformlayout after the Basic Information entry Oracle Proprietary - Restricted to Personal Use in an Oracle partner training class

30 OIM 11g R2 Workshop - Lab 19 Click on Child Components and reorder the fields : Click on OK. Click on Close on the right top of the screen 30

31 Close the User Details and Users tabs and publish the Sandbox (after exporting it if you wish). Back to the User Details view screen you can see the added field: Oracle Proprietary - Restricted to Personal Use in an Oracle partner training class

32 OIM 11g R2 Workshop - Lab Define a database IT resource that will be used by the event handler Connectivity parameters to the Contractor database (table) are stored in an IT resource. To create this IT resource from OIM System Administration web console follow the steps below: Click on IT Resource in the Configuration area Click on Create IT Resource 32

33 Provide the information given in the table below. Please note that the IT Resource Type must be selected as Database. IT Resource Name IT Resource Type ExternalContractorDatabase Database Oracle Proprietary - Restricted to Personal Use in an Oracle partner training class

34 OIM 11g R2 Workshop - Lab 19 Click on Continue Specify IT Resource Parameter Values for the desired database: DatabaseName Driver OIM11gR2DB oracle.jdbc.oracledriver 34

35 Password URL UserID Oracle123 dev_oim Oracle Proprietary - Restricted to Personal Use in an Oracle partner training class

36 OIM 11g R2 Workshop - Lab 19 Click on Continue 36

37 Keep default value for the access permissions clicking on Continue V e r i f y I T R e s o u r N o t i Oracle Proprietary - Restricted to Personal Use in an Oracle partner training class

38 OIM 11g R2 Workshop - Lab 19 ce Notice the success of the connection to the database and click on Create. 38

39 Click on Finish 2.5 Build & Deploy the sample (JDeveloper should be installed and the extension oimcustomization-installer version 1.10 loaded; also check that the OS variable APPSERVER_TYPE is set to wls before starting JDeveloper) Oracle Proprietary - Restricted to Personal Use in an Oracle partner training class

40 OIM 11g R2 Workshop - Lab 19 Open ContractorIDEventHandlerPostProc.jpr in JDeveloper, which is available in /app/dummydata/lab 19/ContractorIDEventHandlerPostProc Right click the project and click on Project Properties from the context menu. 40

41 Go to Libraries and Classpath section and drop the existing Oimclient.jar selecting the jar and clicking on Remove: Oracle Proprietary - Restricted to Personal Use in an Oracle partner training class

42 OIM 11g R2 Workshop - Lab 19 Add the jar clicking on Add JAR/Directory and selecting oimclient.jar from /app/middleware/oracle_idm1/designconsole/lib 42

43 Repeat the operation to register wlfullclient.jar from /app/middleware/oracle_idm1/designconsole/ext Cli c k o n O K a n d S a v e. Select the project (ContractorIDEventHandlerPostProc) in the Application Navigator. Go to Tools -> OIM Customization Installer -> Configure. Oracle Proprietary - Restricted to Personal Use in an Oracle partner training class

44 OIM 11g R2 Workshop - Lab 19 Enter the following parameters for the connection to the OIM application: OIM User ID OIM User Password Server URL xelsysadm Oracle123 t3://identity.oracleads.com:14000 Click on Test Connection 44

45 Continue the configuration entering the parameters for the connection to the MDS database: OIM MDS DB User ID DB User Password Connection URL DEV_MDS Oracle123 Click on Test Connection Oracle Proprietary - Restricted to Personal Use in an Oracle partner training class

46 OIM 11g R2 Workshop - Lab 19 Click on Save Select the project (ContractorIDEventHandlerPostProc) in the Application Navigator. Go to Tools -> OIM Customization Installer -> Deploy. 46

47 Click on Close on the successful dialog window You can close JDeveloper (click on Yes if asked to save some updated files) Oracle Proprietary - Restricted to Personal Use in an Oracle partner training class

48 OIM 11g R2 Workshop - Lab Post deployment Unit testing Procedure Once the steps mentioned in "Deployment Procedure" are followed, the sample can be run against an existing OIM installation on the same host Test the Contractor on-boarding (event handler) via UI Open OIM Self Service web console and create new user LeelahVIJAY of type Contractor. Why Leelah? Because his name is in the Contractor table used to find its Contractor ID. Click on Users and on Create Enter the following data: First Name Last Name Organization User Type User Login Password Leelah Drubld Leelah.Keighley@oracle.com Xellerate Users Contractor LEELAH Oracle123 48

49 Oracle Proprietary - Restricted to Personal Use in an Oracle partner training class

50 OIM 11g R2 Workshop - Lab 19 Click on Submit You can check if you want in the database that the field USR_UDF_CONTRACTOR_ID has been updated: 50

51 Search the user that has been created: Oracle Proprietary - Restricted to Personal Use in an Oracle partner training class

52 OIM 11g R2 Workshop - Lab 19 Click on the User Login link from the search result, the Contractor ID gets updated in the user profile: NOT YET!! ========== as of August 8, 2012 =========================================== 52

53 2.6.2 Test the Contractor on-boarding (event handler) via Reconciliation 1. Login to the OIM System Administration console and click on Search Scheduled Jobs. 2. Search for the scheduled job created while creating the generic connector. Enter the name of scheduled job as HR_FILE_GTC_CONNECTOR_GTC in the text box and click on the search arrow button as shown below. Oracle Proprietary - Restricted to Personal Use in an Oracle partner training class

54 OIM 11g R2 Workshop - Lab 19 Formatted: Left 3. Click on the schedule job from the search result and then click on Run Now. 54

55 4. After clicking the Run Now below screen appears. Oracle Proprietary - Restricted to Personal Use in an Oracle partner training class

56 OIM 11g R2 Workshop - Lab Click on the Refresh button. 56

57 6. Below screen appears. Oracle Proprietary - Restricted to Personal Use in an Oracle partner training class

58 OIM 11g R2 Workshop - Lab Search for any one user that was present in the flat file. 58

59 8. Click on the User from the search result, the Contractor ID gets updated in the user profile. Oracle Proprietary - Restricted to Personal Use in an Oracle partner training class

OIG 11G R2 Field Enablement Training

OIG 11G R2 Field Enablement Training OIG 11G R2 Field Enablement Training Lab 20 - Notification Lab Disclaimer: The Virtual Machine Image and other software are provided for use only during the workshop. Please note that you are responsible

More information

OIG 11G R2 Field Enablement Training

OIG 11G R2 Field Enablement Training OIG 11G R2 Field Enablement Training Lab 14 - Reconciliation Lab Disclaimer: The Virtual Machine Image and other software are provided for use only during the workshop. Please note that you are responsible

More information

OIG 11G R2 Field Enablement Training

OIG 11G R2 Field Enablement Training OIG 11G R2 Field Enablement Training Lab 2 - Install and Configure Connector Disclaimer: The Virtual Machine Image and other software are provided for use only during the workshop. Please note that you

More information

Lab 1 - Getting started with OIM 11g

Lab 1 - Getting started with OIM 11g Lab 1 - Getting started with OIM 11g Contents Lab 1 - Getting started with OIM 11g... 1 1. Introduction... 1 2. Contents... 3 2.1 VM Accessibility... 3 2.2 Understand directory structures... 4 2.3 Database

More information

OIG 11G R2 Field Enablement Training

OIG 11G R2 Field Enablement Training OIG 11G R2 Field Enablement Training Lab 4 - Configure Request Scenarios Disclaimer: The Virtual Machine Image and other software are provided for use only during the workshop. Please note that you are

More information

Lab 5: Configuring Custom Notifications for Significant Enterprise Events

Lab 5: Configuring Custom Notifications for Significant Enterprise Events Lab 5: Configuring Custom Notifications for Significant Enterprise Events Contents Lab 5: Configuring Custom Notifications for Significant Enterprise Events... 1 1. Introduction... 1 2. Content... 2 2.1.

More information

Lab 13: Configure Advanced Provisioning Infrastructure for Request based scenarios

Lab 13: Configure Advanced Provisioning Infrastructure for Request based scenarios Lab 13: Configure Advanced Provisioning Infrastructure for Request based scenarios Contents Lab 13: Configure Advanced Provisioning Infrastructure for Request based scenarios... 1 1. Introduction... 1

More information

OIG 11G R2 Field Enablement Training

OIG 11G R2 Field Enablement Training OIG 11G R2 Field Enablement Training Lab 9- UI Customization Simple Disclaimer: The Virtual Machine Image and other software are provided for use only during the workshop. Please note that you are responsible

More information

OIG 11G R2 Field Enablement Training

OIG 11G R2 Field Enablement Training OIG 11G R2 Field Enablement Training Lab 21 - Reports Lab Disclaimer: The Virtual Machine Image and other software are provided for use only during the workshop. Please note that you are responsible for

More information

OIG 11G R2 Field Enablement Training

OIG 11G R2 Field Enablement Training OIG 11G R2 Field Enablement Training Appendix-A How to Create a TaskFlow Disclaimer: The Virtual Machine Image and other software are provided for use only during the workshop. Please note that you are

More information

Lab 3: Configuration of OIM to manage user accounts lifecycle in DSEE application

Lab 3: Configuration of OIM to manage user accounts lifecycle in DSEE application OIM 11g Workshop Lab 3 Lab 3: Configuration of OIM to manage user accounts lifecycle in DSEE application Contents Lab 3: Configuration of OIM to manage user accounts lifecycle in DSEE application... 1

More information

OIG 11G R2 Field Enablement Training

OIG 11G R2 Field Enablement Training OIG 11G R2 Field Enablement Training Lab 4.1 PS2 Request Enhancements Disclaimer: The Virtual Machine Image and other software are provided for use only during the workshop. Please note that you are responsible

More information

OIG 11G R2 PS1 Field Enablement Training

OIG 11G R2 PS1 Field Enablement Training OIG 11G R2 PS1 Field Enablement Training Lab27_ Disclaimer: The Virtual Machine Image and other software are provided for use only during the workshop. Please note that you are responsible for deleting

More information

Customizing Oracle Identity Governance: Populating Request Attributes

Customizing Oracle Identity Governance: Populating Request Attributes Customizing Oracle Identity Governance: Populating Request Attributes Page 1 of 29 Customizing Oracle Identity Governance : Populating Request Attributes Overview When creating requests for application

More information

OIG 11G R2 PS2 Field Enablement Training. Table of Contents

OIG 11G R2 PS2 Field Enablement Training. Table of Contents OIG 11G R2 PS2 Field Enablement Training Lab 22 - Changes in OIM triggered to downstream app Disclaimer: The Virtual Machine Image and other software are provided for use only during the workshop. Please

More information

Including Dynamic Images in Your Report

Including Dynamic Images in Your Report Including Dynamic Images in Your Report Purpose This tutorial shows you how to include dynamic images in your report. Time to Complete Approximately 15 minutes Topics This tutorial covers the following

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

Oracle Enterprise Manager. 1 Introduction. System Monitoring Plug-in for Oracle Enterprise Manager Ops Center Guide 11g Release 1 (

Oracle Enterprise Manager. 1 Introduction. System Monitoring Plug-in for Oracle Enterprise Manager Ops Center Guide 11g Release 1 ( Oracle Enterprise Manager System Monitoring Plug-in for Oracle Enterprise Manager Ops Center Guide 11g Release 1 (11.1.3.0.0) E18950-03 November 2011 This document provides describes the System Monitoring

More information

SAS Model Manager 2.3

SAS Model Manager 2.3 SAS Model Manager 2.3 Administrator's Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2010. SAS Model Manager 2.3: Administrator's Guide. Cary,

More information

Oracle Big Data Cloud Service, Oracle Storage Cloud Service, Oracle Database Cloud Service

Oracle Big Data Cloud Service, Oracle Storage Cloud Service, Oracle Database Cloud Service Demo Introduction Keywords: Oracle Big Data Cloud Service, Oracle Storage Cloud Service, Oracle Database Cloud Service Goal of Demo: Oracle Big Data Preparation Cloud Services can ingest data from various

More information

Installing and Configuring vcloud Connector

Installing and Configuring vcloud Connector Installing and Configuring vcloud Connector vcloud Connector 2.6.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new

More information

SAS Federation Server 4.2: Migration Guide

SAS Federation Server 4.2: Migration Guide SAS Federation Server 4.2: Migration Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2016. SAS Federation Server 4.2: Migration Guide. Cary,

More information

Oracle SOA Suite VirtualBox Appliance. Introduction and Readme

Oracle SOA Suite VirtualBox Appliance. Introduction and Readme Oracle SOA Suite 12.2.1.3.0 VirtualBox Introduction and Readme December 2017 Table of Contents 1 VirtualBox... 3 1.1 Installed Software... 3 1.2 Settings... 4 1.3 User IDs... 4 1.4 Domain Configurations...

More information

Oracle Identity Governance 11g R2: Develop Identity Provisioning

Oracle Identity Governance 11g R2: Develop Identity Provisioning Oracle University Contact Us: 20 (0)2 35350254 Oracle Identity Governance 11g R2: Develop Identity Provisioning Duration: 5 Days What you will learn In this intensive course, you'll learn about Oracle

More information

Laserfiche Rio 10.3: Deployment Guide. White Paper

Laserfiche Rio 10.3: Deployment Guide. White Paper Laserfiche Rio 10.3: Deployment Guide White Paper January 2018 Table of Contents How Laserfiche Licensing Works... 4 Types of Licenses... 4 Named User Licenses... 4 WebLink Public Portal Licenses... 6

More information

Oracle Identity Manager 11gR2-PS2 Hands-on Workshop Tech Deep Dive Provisioning and Reconciliation

Oracle Identity Manager 11gR2-PS2 Hands-on Workshop Tech Deep Dive Provisioning and Reconciliation Oracle Identity Manager 11gR2-PS2 Hands-on Workshop Tech Deep Dive Provisioning and Reconciliation atul.goyal@oracle.com Principal Product Manager, Oracle Identity Governance Provisioning Oracle Confidential

More information

Oracle Oracle Identity Manager 11g

Oracle Oracle Identity Manager 11g RSA SecurID Ready Implementation Guide Partner Information Last Modified: August 24, 2014 Product Information Partner Name Web Site Product Name Version & Platform Product Description Oracle www.oracle.com

More information

Oracle Identity Governance 11g R2 PS1 - Creating a Parallel Approval Process

Oracle Identity Governance 11g R2 PS1 - Creating a Parallel Approval Process Oracle Identity Governance 11g R2 PS1 - Creating a Parallel Approval Process Overview Effective 06/05/12 Page 1 of 97 Rev 1 Overview of Creating a Parallel Approval Processes In this tutorial, you learn

More information

Contents Using the Primavera Cloud Service Administrator's Guide... 9 Web Browser Setup Tasks... 10

Contents Using the Primavera Cloud Service Administrator's Guide... 9 Web Browser Setup Tasks... 10 Cloud Service Administrator's Guide 15 R2 March 2016 Contents Using the Primavera Cloud Service Administrator's Guide... 9 Web Browser Setup Tasks... 10 Configuring Settings for Microsoft Internet Explorer...

More information

This document contains information on fixed and known limitations for Test Data Management.

This document contains information on fixed and known limitations for Test Data Management. Informatica Corporation Test Data Management Version 9.6.0 Release Notes August 2014 Copyright (c) 2003-2014 Informatica Corporation. All rights reserved. Contents Informatica Version 9.6.0... 1 Installation

More information

OAM 2FA Value-Added Module (VAM) Deployment Guide

OAM 2FA Value-Added Module (VAM) Deployment Guide OAM 2FA Value-Added Module (VAM) Deployment Guide Copyright Information 2018. SecureAuth is a copyright of SecureAuth Corporation. SecureAuth s IdP software, appliances, and other products and solutions,

More information

Installing and Configuring vcloud Connector

Installing and Configuring vcloud Connector Installing and Configuring vcloud Connector vcloud Connector 2.5.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new

More information

Multi-Sponsor Environment. SAS Clinical Trial Data Transparency User Guide

Multi-Sponsor Environment. SAS Clinical Trial Data Transparency User Guide Multi-Sponsor Environment SAS Clinical Trial Data Transparency User Guide Version 6.0 01 December 2017 Contents Contents 1 Overview...1 2 Setting up Your Account...3 2.1 Completing the Initial Email and

More information

HP Database and Middleware Automation

HP Database and Middleware Automation HP Database and Middleware Automation For Windows Software Version: 10.10 SQL Server Database Refresh User Guide Document Release Date: June 2013 Software Release Date: June 2013 Legal Notices Warranty

More information

Managing Your Database Using Oracle SQL Developer

Managing Your Database Using Oracle SQL Developer Page 1 of 54 Managing Your Database Using Oracle SQL Developer Purpose This tutorial introduces Oracle SQL Developer and shows you how to manage your database objects. Time to Complete Approximately 50

More information

Data Protection Guide

Data Protection Guide SnapCenter Software 4.0 Data Protection Guide For Custom Plug-ins March 2018 215-12932_C0 doccomments@netapp.com Table of Contents 3 Contents Deciding on whether to read the SnapCenter Data Protection

More information

Downloading & Installing Audacity

Downloading & Installing Audacity Downloading Audacity 1. Open your web browser. 2. Navigate to the following URL: http://audacity.sourceforge.net/download/ 3. The system displays the Download page for Audacity. 4. Select your operating

More information

JDMS - A Java Based Alternative to Motif DMS Windows Susanna Wallenberger, Janice Replogle, SAS Institute Inc., Cary NC

JDMS - A Java Based Alternative to Motif DMS Windows Susanna Wallenberger, Janice Replogle, SAS Institute Inc., Cary NC JDMS - A Java Based Alternative to Motif DMS Windows Susanna Wallenberger, Janice Replogle, SAS Institute Inc., Cary NC ABSTRACT JDMS harnesses the power of a SAS using Java technologies. JDMS is a Java

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

VMware Plugin Installation for Windows 8.1 or newer

VMware Plugin Installation for Windows 8.1 or newer VMware Plugin Installation for Windows 8.1 or newer Table of Contents Access vlab and Install Plugin... 1 Firefox Settings... 5 Internet Explorer 11 Settings... 6 Installing Firefox ESR v52... 8 Access

More information

OES Permission Checks in ADF Task Flows

OES Permission Checks in ADF Task Flows OES Permission Checks in ADF Task Flows Overview This example is used to demonstrate how to integrate OES permissions into an ADF UI. This example describes integrating OES permissions into a new ADF task

More information

SYNTHESYS.NET INTERACTION STUDIO Database Output Actions

SYNTHESYS.NET INTERACTION STUDIO Database Output Actions SYNTHESYS.NET INTERACTION STUDIO Database Output Actions Synthesys.Net Database Output Action 1 DATABASE OUTPUT ACTION DATABASE OUTPUT ACTION WIZARD...3 Database Output Name... 3 Settings... 3 Output Type...

More information

Process Automation Process Manager Guide

Process Automation Process Manager Guide Process Automation Process Manager Guide 2014 igrafx, LLC. All rights reserved. igrafx FlowCharter 2015, igrafx Process 2015, igrafx Process 2015 for Six Sigma, igrafx Process 2015 for Enterprise Modeling,

More information

Oracle Banking Platform Collections

Oracle Banking Platform Collections Oracle Banking Platform Collections User Provisioning Guide Release 2.6.0.2.0 E91250-01 October 2017 Oracle Banking Platform Collections User Provisioning Guide, Release 2.6.0.2.0 E91250-01 Copyright 2011,

More information

BlackBerry Enterprise Server for Microsoft Office 365. Version: 1.0. Administration Guide

BlackBerry Enterprise Server for Microsoft Office 365. Version: 1.0. Administration Guide BlackBerry Enterprise Server for Microsoft Office 365 Version: 1.0 Administration Guide Published: 2013-01-29 SWD-20130131125552322 Contents 1 Related resources... 18 2 About BlackBerry Enterprise Server

More information

APAR PO06620 Installation Instructions

APAR PO06620 Installation Instructions IBM Corporation APAR PO06620 Installation Instructions IBM Counter Fraud Management 1.5.0.5 IBM Counter Fraud Development 3-31-2017 Table of Contents 1 Fix readme... 1 2 Abstract... 1 3 Contents... 1 4

More information

1Z Oracle Identity Governance Suite 11g PS3 Implementation Essentials Exam Summary Syllabus Questions

1Z Oracle Identity Governance Suite 11g PS3 Implementation Essentials Exam Summary Syllabus Questions 1Z0-339 Oracle Identity Governance Suite 11g PS3 Implementation Essentials Exam Summary Syllabus Questions Table of Contents Introduction to 1Z0-339 Exam on Oracle Identity Governance Suite 11g PS3 Implementation

More information

Product Release Notes Alderstone cmt 2.0

Product Release Notes Alderstone cmt 2.0 Alderstone cmt product release notes Product Release Notes Alderstone cmt 2.0 Alderstone Consulting is a technology company headquartered in the UK and established in 2008. A BMC Technology Alliance Premier

More information

Extracting and Storing PDF Form Data Into a Repository

Extracting and Storing PDF Form Data Into a Repository Extracting and Storing PDF Form Data Into a Repository This use case describes how to extract required information from a PDF form document to populate database tables. For example, you may have users

More information

Important notice regarding accounts used for installation and configuration

Important notice regarding accounts used for installation and configuration System Requirements Operating System Nintex Reporting 2008 can be installed on Microsoft Windows Server 2003 or 2008 (32 and 64 bit supported for both OS versions). Browser Client Microsoft Internet Explorer

More information

ADF Code Corner. 70. How-to build dependent list boxes with Web Services Business Services. Abstract: twitter.com/adfcodecorner

ADF Code Corner. 70. How-to build dependent list boxes with Web Services Business Services. Abstract: twitter.com/adfcodecorner ADF Code Corner 70. How-to build dependent list boxes with Web Services Abstract: A frequent question asked on the Oracle JDeveloper forum on OTN is how to create dependent select lists using ADF and Web

More information

Receiving PeopleSoft Message (PeopleTools 8.17) through the Oracle AS PeopleSoft Adapter. An Oracle White Paper September 2008

Receiving PeopleSoft Message (PeopleTools 8.17) through the Oracle AS PeopleSoft Adapter. An Oracle White Paper September 2008 Receiving PeopleSoft Message (PeopleTools 8.17) through the Oracle AS PeopleSoft Adapter An Oracle White Paper September 2008 Receiving PeopleSoft Message (PeopleTools 8.17) through the Oracle AS PeopleSoft

More information

4 Connecting to Composites

4 Connecting to Composites 4 Connecting to Composites 4 Connecting to Composites...1 4.1 Prerequisites...1 4.2 Introduction...1 4.3 OSB to SOA Suite Direct binding...3 4.3.1 What is being done?...3 4.3.2 Create Direct Binding exposed

More information

EcoprintQ Student User Guide

EcoprintQ Student User Guide EcoprintQ Student User Guide EcoprintQ Student User Guide Table of Contents: 1.0 How to send a Print Job from a workstation to a network printer 2.0 User s Web interface 3.0 Account Summary 4.0 User s

More information

Part 2 Uploading and Working with WebCT's File Manager and Student Management INDEX

Part 2 Uploading and Working with WebCT's File Manager and Student Management INDEX Part 2 Uploading and Working with WebCT's File Manager and Student Management INDEX Uploading to and working with WebCT's File Manager... Page - 1 uploading files... Page - 3 My-Files... Page - 4 Unzipping

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

Hands-On-Labs for. Microsoft Identity Integration Server Microsoft Identity Integration Server 2003 Hand-On-Labs

Hands-On-Labs for. Microsoft Identity Integration Server Microsoft Identity Integration Server 2003 Hand-On-Labs Hands-On-Labs for Microsoft Identity Integration Server 2003 Microsoft Corporation Published: July 2003 Revision: May 2004 For the latest information, see http://www.microsoft.com/miis Page 1 of 32 The

More information

24x7 Scheduler Web-based Management Console User's Guide Version 5.3

24x7 Scheduler Web-based Management Console User's Guide Version 5.3 24x7 Scheduler Web-based Management Console User's Guide Version 5.3 Copyright SoftTree Technologies, Inc. 1998-2014 All rights reserved Table of Contents Table of Contents ABOUT THIS GUIDE... 4 CONVENTIONS

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

Installation and Configuration Instructions. SAS Model Manager API. Overview

Installation and Configuration Instructions. SAS Model Manager API. Overview Installation and Configuration Instructions SAS Model Manager 2.1 This document is intended to guide an administrator through the pre-installation steps, the installation process, and post-installation

More information

Lab Guide for Managing Hitachi Storage With Hitachi Command Suite v8.x

Lab Guide for Managing Hitachi Storage With Hitachi Command Suite v8.x Lab Guide for Managing Hitachi Storage With Hitachi Command Suite v8.x TSI2565 Courseware Version: v2.0 Microcode Version: Hitachi Command Suit v8.5 Table of Contents Lab 1 Installation 1-1 Lab 2 Initial

More information

Lab - Configure Browser Settings in Windows 8

Lab - Configure Browser Settings in Windows 8 Introduction In this lab, you will configure browser settings in Microsoft Internet Explorer. Recommended Equipment A computer with Windows 8 An Internet connection Step 1: Set Internet Explorer as the

More information

Business Intelligence on Dell Quickstart Data Warehouse Appliance Using Toad Business Intelligence Suite

Business Intelligence on Dell Quickstart Data Warehouse Appliance Using Toad Business Intelligence Suite Business Intelligence on Dell Quickstart Data Warehouse Appliance Using Toad Business Intelligence Suite This Dell technical white paper explains how to connect Toad Business Intelligence Suite to Quickstart

More information

SharePoint 2010 Instructions for Users

SharePoint 2010 Instructions for Users SharePoint 2010 Instructions for Users 1. Access your SharePoint Web site...2 2. Work with folders and documents in a Shared Documents Library...3 2.1 Edit a document...3 2.2 Create a New Document...3

More information

ADF Code Corner How-to bind custom declarative components to ADF. Abstract: twitter.com/adfcodecorner

ADF Code Corner How-to bind custom declarative components to ADF. Abstract: twitter.com/adfcodecorner ADF Code Corner 005. How-to bind custom declarative components to ADF Abstract: Declarative components are reusable UI components that are declarative composites of existing ADF Faces Rich Client components.

More information

erequest How to apply guide

erequest How to apply guide Overview is an application that assists UCB in request life cycle management. UCB has clear guidance in place on what they can support or sponsor. Online requests will go through an internal review and

More information

Oracle Enterprise Manager. 1 Before You Install. System Monitoring Plug-in for Oracle Unified Directory User's Guide Release 1.0

Oracle Enterprise Manager. 1 Before You Install. System Monitoring Plug-in for Oracle Unified Directory User's Guide Release 1.0 Oracle Enterprise Manager System Monitoring Plug-in for Oracle Unified Directory User's Guide Release 1.0 E24476-01 October 2011 The System Monitoring Plug-In for Oracle Unified Directory extends Oracle

More information

Oracle Identity Manager 11g R2: Essentials

Oracle Identity Manager 11g R2: Essentials Oracle University Contact Us: 0800 891 6502 Oracle Identity Manager 11g R2: Essentials Duration: 5 Days What you will learn This course teaches you how to implement identity management solutions with Oracle

More information

Installation Guide. . All right reserved. For more information about Specops Deploy and other Specops products, visit

Installation Guide. . All right reserved. For more information about Specops Deploy and other Specops products, visit . All right reserved. For more information about Specops Deploy and other Specops products, visit www.specopssoft.com Copyright and Trademarks Specops Deploy is a trademark owned by Specops Software. All

More information

appcompass Developer s Guide For: appcompass Data Integration Studio appcompass Business Rules Studio appcompass Visual Studio Editions

appcompass Developer s Guide For: appcompass Data Integration Studio appcompass Business Rules Studio appcompass Visual Studio Editions appcompass Developer s Guide For: appcompass Data Integration Studio appcompass Business Rules Studio appcompass Visual Studio Editions Version 5.1 July, 2013 Copyright appstrategy Inc. 2013 appcompass

More information

Just Get It Written: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console Hands on Practice

Just Get It Written: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console Hands on Practice This hands on practice describes the steps for deploying an existing Java EE application written with Oracle ADF technologies. Although the practice refers to specific features and files in a sample application

More information

SQream Dashboard Version SQream Technologies

SQream Dashboard Version SQream Technologies SQream Dashboard Version 1.1.0 SQream Technologies 2018-11-06 Table of Contents Overview................................................................................... 1 1. The SQream Dashboard...................................................................

More information

Microsoft Windows Server 2003 or Microsoft Windows Server 2008 Windows SharePoint Services 3.0 or Microsoft Office SharePoint Server 2007

Microsoft Windows Server 2003 or Microsoft Windows Server 2008 Windows SharePoint Services 3.0 or Microsoft Office SharePoint Server 2007 README SAS Web Parts 1.1 for Microsoft SharePoint Description The SAS Web Parts for Microsoft SharePoint allow you to bring the power of SAS dashboards and SAS analytics to your SharePoint pages. This

More information

HP Intelligent Management Center SOM Administrator Guide

HP Intelligent Management Center SOM Administrator Guide HP Intelligent Management Center SOM Administrator Guide Abstract This guide contains comprehensive conceptual information for network administrators and other personnel who administrate and operate the

More information

OIG 11G R2 Field Enablement Training

OIG 11G R2 Field Enablement Training OIG 11G R2 Field Enablement Training Lab 5 - Request Using Profiles Disclaimer: The Virtual Machine Image and other software are provided for use only during the workshop. Please note that you are responsible

More information

ProcessWorld User Guide. (October 2017)

ProcessWorld User Guide. (October 2017) ProcessWorld User Guide (October 2017) Table of Contents 1. INTRODUCTION... 2 2. REGISTRATION... 2 3. PASSWORDS... 3 4. REQUESTING ACCESS TO APPLICATIONS... 3 5. THE PROCESSWORLD MENU... 4 5.1 MY DETAILS...

More information

Oracle Identity Manager 11g: Essentials

Oracle Identity Manager 11g: Essentials Oracle Identity Manager 11g: Essentials Volume I Student Guide D65160GC10 Edition 1.0 November 2010 D69802 Disclaimer This document contains proprietary information and is protected by copyright and other

More information

Lab 03 Finish and Deploy an Application. Lab 3-1: Add DELETE to the Spring Boot REST Application

Lab 03 Finish and Deploy an Application. Lab 3-1: Add DELETE to the Spring Boot REST Application Lab 03 Finish and Deploy an Application In this lab, you ll finish your version of the application featured in Lab 1. This includes creating the remaining REST calls. Test your work locally as you develop.

More information

The following sections provide information about how to use Cisco Prime License Manager.

The following sections provide information about how to use Cisco Prime License Manager. The following sections provide information about how to use Cisco Prime License Manager. Getting Started, page 1 Log In, page 2 Add Product Instance, page 2 Edit Product Instance, page 3 Delete Product

More information

Manipulating Database Objects

Manipulating Database Objects Manipulating Database Objects Purpose This tutorial shows you how to manipulate database objects using Oracle Application Express. Time to Complete Approximately 30 minutes. Topics This tutorial covers

More information

TREENO ELECTRONIC DOCUMENT MANAGEMENT. Administration Guide

TREENO ELECTRONIC DOCUMENT MANAGEMENT. Administration Guide TREENO ELECTRONIC DOCUMENT MANAGEMENT Administration Guide February 2012 Contents Introduction... 8 About This Guide... 9 About Treeno... 9 Managing Security... 10 Treeno Security Overview... 10 Administrator

More information

Security Management System Camera Configuration Axis IP Device (Stream Profile Support)

Security Management System Camera Configuration Axis IP Device (Stream Profile Support) Security Management System Camera Configuration Axis IP Device (Stream Profile Support) Introduction Security Management System software supports several video source makes and models. This includes IP

More information

Deploying the Cisco Tetration Analytics Virtual Appliance in Microsoft Azure

Deploying the Cisco Tetration Analytics Virtual Appliance in Microsoft Azure Deploying the Cisco Tetration Analytics Virtual Appliance in Microsoft Azure About, on page 1 Prerequisites for, on page 1, on page 3 AboutDeployingtheCiscoTetrationAnalyticsVirtualAppliance in Microsoft

More information

Question No: 1 In which file should customization classes be specified in the cust-config section (under mds-config)?

Question No: 1 In which file should customization classes be specified in the cust-config section (under mds-config)? Volume: 80 Questions Question No: 1 In which file should customization classes be specified in the cust-config section (under mds-config)? A. web.xml B. weblogic.xml C. adf-config.xml D. adfm.xml Question

More information

SAS Model Manager 2.2. Tutorials

SAS Model Manager 2.2. Tutorials SAS Model Manager 2.2 Tutorials The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2009. SAS Model Manager 2.2: Tutorials. Cary, NC: SAS Institute Inc. SAS Model Manager

More information

POWER EGG2.0 Ver.2.5 Initial Manual (English version)

POWER EGG2.0 Ver.2.5 Initial Manual (English version) POWER EGG2.0 Ver.2.5 Initial Manual (English version) Copyright 2013 D-CIRCLE,INC. All Rights Reserved 2013.01 Introduction This document explains about the browser setup and login that are used in POWER

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

Perceptive Media Connector

Perceptive Media Connector Perceptive Media Connector Installation and Setup Guide Version: 1.0.x Compatible with ImageNow, version 6.7.x Written by: Product Documentation, R&D Date: August 2016 2015 Perceptive Software. All rights

More information

Metastorm BPM Release 7.6

Metastorm BPM Release 7.6 Metastorm BPM Release 7.6 Administration Guide May 2008 Metastorm Inc. email: inquiries@metastorm.com http://www.metastorm.com Metastorm BPM Release 7.6 Copyrights and Trademarks 1996-2008 Metastorm Inc.

More information

Oracle Enterprise Manager Oracle Database and Application Testing. Data Masking Lab. Session S318966

Oracle Enterprise Manager Oracle Database and Application Testing. Data Masking Lab. Session S318966 Oracle Enterprise Manager Oracle Database and Application Testing Data Masking Lab Session S318966 Oracle Enterprise Manager 11g Data Masking Hands on Lab Introduction to Enterprise Manager 11g Oracle

More information

Managing GSS Devices from the GUI

Managing GSS Devices from the GUI CHAPTER 1 This chapter describes how to configure and manage your Global Site Selector Manager (GSSM) and Global Site Selector (GSS) devices from the primary GSSM graphical user interface. It includes

More information

Contents About This Guide... 5 About Notifications... 5 Managing User Accounts... 6 Managing Companies Managing Password Policies...

Contents About This Guide... 5 About Notifications... 5 Managing User Accounts... 6 Managing Companies Managing Password Policies... Cloud Services Identity Management Administration Guide Version 17 July 2017 Contents About This Guide... 5 About Notifications... 5 Managing User Accounts... 6 About the User Administration Table...

More information

PHD Virtual Backup Exporter. version 6.5 Users Guide. Document Release Date: August 26,

PHD Virtual Backup Exporter. version 6.5 Users Guide. Document Release Date: August 26, PHD Virtual Backup Exporter version 6.5 Users Guide Document Release Date: August 26, 2013 www.phdvirtual.com i PHD Virtual Backup Exporter - Users Guide Legal Notices PHD Virtual Backup Exporter Users

More information

Status Web Evaluator s Guide Software Pursuits, Inc.

Status Web Evaluator s Guide Software Pursuits, Inc. Status Web Evaluator s Guide 2018 Table of Contents Introduction... 2 System Requirements... 2 Contact Information... 2 Installing Microsoft IIS... 2 Verifying Microsoft IIS Features... 9 Installing the

More information

Archivists Toolkit Internal Database

Archivists Toolkit Internal Database Archivists Toolkit Internal Database The Archivists Toolkit now includes (AT 2.0, update 9 and later), support for an internal database based on HyperSQL 2.0 (HSQLDB). HyperSQL is a small, reliable, high

More information

RSA Via L&G Collector Data Sheet for Oracle Identity Manager (OIM) Version (Release 1)

RSA Via L&G Collector Data Sheet for Oracle Identity Manager (OIM) Version (Release 1) RSA Via L&G Collector Data Sheet for Oracle Identity Manager (OIM) Version 11.1.1.3.0 (Release 1) Table of Contents Supported Software... 3 Identity Data Collector... 4 Prerequisites... 4 Configuration...

More information

Using the VMware vrealize Orchestrator Client

Using the VMware vrealize Orchestrator Client Using the VMware vrealize Orchestrator Client vrealize Orchestrator 7.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by

More information

SC-T35/SC-T45/SC-T46/SC-T47 ViewSonic Device Manager User Guide

SC-T35/SC-T45/SC-T46/SC-T47 ViewSonic Device Manager User Guide SC-T35/SC-T45/SC-T46/SC-T47 ViewSonic Device Manager User Guide Copyright and Trademark Statements 2014 ViewSonic Computer Corp. All rights reserved. This document contains proprietary information that

More information

Oracle Identity Governance 11g R2 PS2

Oracle Identity Governance 11g R2 PS2 Oracle Identity Governance 11g R2 PS2 IQ online training facility offers Oracle Identity Governance 11g R2 PS2 online training by trainers who have expert knowledge in the Oracle Identity Governance 11g

More information

Oracle Identity Manager

Oracle Identity Manager Oracle Identity Manager Connector Guide for Database User Management Release 9.0.3 B32351-01 February 2007 Oracle Identity Manager Connector Guide for Database User Management, Release 9.0.3 B32351-01

More information