Customizing Oracle Identity Governance: Populating Request Attributes

Size: px
Start display at page:

Download "Customizing Oracle Identity Governance: Populating Request Attributes"

Transcription

1 Customizing Oracle Identity Governance: Populating Request Attributes Page 1 of 29

2 Customizing Oracle Identity Governance : Populating Request Attributes Overview When creating requests for application instances using the Identity Self Service console, the form associated with the application instance must be completed. A common requirement is to have the fields in the form be pre-populated based on the user profile of the beneficiary of the request. This tutorial explains how to: create a managed bean in JDeveloper deploy the managed bean to Oracle Identity Governance customize the Identity Self-Service console to add a "Prepopulate" button test the customization Pre-requisites Before starting this tutorial, you should: Have completed the tutorial titled "Customizing Oracle Identity Governance: Configuring JDeveloper". o As a result you would have created an ADF ViewController project in JDeveloper o The name of the project in this example is PrePopulateMBean. The project has the default package com.example.ui.prepop.view. o Note: To save you time, the JDeveloper project for this tutorial is in the file UICustomization.zip. Have installed the Generic LDAP connector on the Oracle Identity Governance system Have created an application instance called "OUD on localhost" in the Oracle Identity Governance system for provisioning users to an Oracle Unified Directory Server. The request form for the application instance is called OUDFrm01 Page 2 of 29

3 Step 1: Creating the managed bean in JDeveloper 1. Create a Java class com.example.ui.prepop.view.prepopulatembean. To do this: a. In the Application pane, select the PrePopulateMBean project. b. Right-click on the project name, and select New. c. In the Categories pane, select General > Java. In the Items pane, select Java Class, and click OK. Page 3 of 29

4 d. In the Create Java Class dialog, enter PrePopulateMBean in the Name field, and click OK. e. Add the code for the PrePopulateMBean class. For your convenience, the code for the class is contained in the UICustomization.zip file. Here are some of the important methods in the class: getuser(): This method uses the OIM client APIs to retrieve the user profile information for a particular user. Page 4 of 29

5 actionlistener(): In Step 3 of this tutorial, this method is attached to the actionlistener ADF property of the Prepopulate button on the request form. As a result, this method is called when the Prepopulate button on the form is clicked. When called, it uses the RequestFormContext API to retrieve information about the current request. In particular, it retrieves information about the beneficiary of the request (the user the request is being created for). Next, the user key of the beneficiary is passed to the getuser() method to retrieve the first name and last name of the beneficiary. The FacesUtil helper class is then called to update the "First Name" and "Last Name" fields on the form. The names of the fields are defined in the request form created when the application instance is created. To view the names of the fields, open the request form in Web Composer (detailed in Step 3 of this tutorial) and view the properties for each field. isprepopulatebuttonrendered(): Page 5 of 29

6 This method uses the RequestFormContext API to check if the ActionType of the form is of a request, and that there is only a single beneficiary for the request. If so, it returns true. When customizing the form using Web Composer in Step 3 of this tutorial, the Disabled property of the button is attached to this method. If the method returns true, the button is not rendered. 2. Create a Java class com.example.ui.util.facesutil. To do this: a. In the Application pane, select the PrePopulateMBean project. b. Right-click on the project name, and select New. c. In the Categories pane, select General > Java. In the Items pane, select Java Class, and click OK. d. In the Create Java Class dialog, enter FacesUtil in the Name field, enter com.example.ui.util in the Package field, and click OK. e. Add the code for the FacesUtil class. Note: The code for the class is contained in the UICustomization.zip file. 3. Add the ADF Model Runtime and Resource Bundle libraries to the project properties. To do this: a. In the Application pane, right-click the PrePopulateMBean project, and select Project Properties.. b. In the left pane of the Project Properties dialog, select the "Libraries and Classpath" node. Click Add Library. Page 6 of 29

7 c. Select ADF Model Runtime and click Add. Page 7 of 29

8 d. Click Add Library, and add the Resource Bundle Support library. Page 8 of 29

9 e. Click OK to close the Project Properties dialog. 4. Edit the adfc-config.xml file in the project to create a Managed Bean reference. This reference is used when customizing the Identity Self Service console to activate the methods in the Java class. To do this: a. In the Application pane, navigate to the PrePopulateMBean > Web Content > WEB-INF node. b. Double-click the adfc-config.xml file. Page 9 of 29

10 c. In the left frame of the adfc-config.xml tab, click Managed Beans. d. Click the "+" symbol to add a new Managed Bean reference. e. Use the table below to populate the fields. Field Name Name Field Value prepopmbean Page 10 of 29

11 Class Scope com.example.ui.prepop.view.prepopulatembean backingbean 5. Select File > Save All from the JDeveloper menu. 6. Create a Deployment Profile for the project, so that an ADF JAR file is created. To do this, follow the instructions in the tutorial titled "Customizing Oracle Identity Governance : Configuring JDeveloper." 7. Build and deploy the project to the ADF JAR file defined in the previous step. Page 11 of 29

12 Step 2: Deploying the managed bean to Oracle Identity Governance 1. Use the instructions in the tutorial titled "Customizing Oracle Identity Governance : Configuring JDeveloper" to deploy the ADF library file to Oracle Identity Governance. In summary, these steps are: a. Unpack the oracle.iam.ui.custom.dev-starter-pack.war file to a temporary location. b. Copy the generated ADF JAR file to the WEB-INF/lib directory of the unpacked WAR file. c. Re-pack the oracle.iam.ui.custom.dev-starter-pack.war file. d. Shut down the Oracle Identity Manager managed server instance. e. Using the WebLogic Server console, update the oracle.iam.ui.custom deployment. f. Start the Oracle Identity Manager managed server instance. Page 12 of 29

13 Step 3: Adding the "Prepopulate" button to the Identity Self-Service console In this step, you customize the Identity Self Service console, adding a button to the request form for an application instance. 1. Sign into the Identity Self Service console as the xelsysadm user. 2. Create and activate a sandbox called prepop. 3. Open the request form for the Oracle Unified Directory application instance. To do this: a. Under Requests, click Catalog b. Enter OUD in the search field, and click the search button c. Click "Add to Cart" d. Click Checkout 4. Bind the managed bean to the form using Web Composer. To do this: a. Click Customize Page 13 of 29

14 b. From the Web Composer menu in the top left-hand corner of the page, select View > Source. c. Click the area next to the Details label. Page 14 of 29

15 This selects that particular region for customization. d. In the Confirm Task Flow Edit dialog, click Edit Page 15 of 29

16 e. Verify that the "showdetailheader: Details" node is selected in Web Composer, and click Edit. f. In the "Component Properties: Details dialog", click the down arrow next to the Binding field and select "Expression Builder." g. Enter the expression: #{backingbeanscope.prepopmbean.rootpanel} and click OK. Page 16 of 29

17 This tells the web interface to invoke the setrootpanel method in the custom managed bean. h. Click OK to close the Component Properties: Details dialog. Page 17 of 29

18 5. Add a button to the form to invoke the managed bean. To do this: a. Ensure that the "showdetailheader: Detail" node is still selected. b. Click Add Content. c. In the Add Content dialog, scroll down to the bottom of the list, and click Web Components. Page 18 of 29

19 d. Next to Command Toolbar Button, click Add. Page 19 of 29

20 e. Click Close to close the Add Content dialog. f. Select the commandtoolbarbutton node in Web Composer, and click Edit. g. Click the down arrow next to the Text property, and select Expression Builder. Page 20 of 29

21 h. In the Expression Builder popup, enter Prepopulate and click OK. i. Using the Expression Builder, set the value for the Binding property to #{backingbeanscope.prepopmbean.prepopulatebutton}. Page 21 of 29

22 j. Edit the Disabled property, adding the following value to the Expression Builder field: #{!backingbeanscope.prepopmbean.prepopulatebuttonrendered} Page 22 of 29

23 k. Click the Style tab, and set the Width to 100, and the Margin Left to 100. Click OK. l. In the top right corner, click Close to close Web Composer. Page 23 of 29

24 6. The actionlistener property of the button needs to be modified, but this is not possible from within Web Composer. Manually update the actionlistener property by following these steps: a. Click the "Sandboxes (prepop)" link at the top of the page. b. In the Manage Sandboxes tab, click Deactivate Sandbox. c. Click Export Sandbox, and save the sandbox zip file to a temporary location. d. Unpack the sandbox using the appropriate utility for your operating system - for Linux, unzip, for Windows, WinZip or 7zip. e. Edit the OUDFrm01CreateForm.jsff.xml file. The name of the file depends on the form created during creation of the application instance. In the XML file, look for the commandtoolbar element. Add the actionlistener property to the commandtoolbar element: actionlistener="#{backingbeanscope.prepopmbean.actionlistener}" When edited, the element should look like the following: f. Re-create the zip file, being sure to preserve the file paths, and to remove any backup files created by the editor that you used. Page 24 of 29

25 g. In the Manage Sandboxes tab in the Identity Self Service console, import the updated sandbox. Click Import Sandbox, navigate to the updated sandbox zip file, and click Import. For your convenience, the sandbox_prepop.zip file contains an already updated sandbox. This sandbox can be used if the request form for the application instance you are customizing has the name OUDFrm01. Page 25 of 29

26 Step 4: Testing the customization In this step, you activate the sandbox, and test the customization. 1. In the Manage Sandboxes tab, select the sandbox and click Activate Sandbox. 2. Under Administration, click Users. 3. Click Search to search for users, and select a user. In this tutorial, the user Aime McBeth is selected. 4. Select the Accounts sub-tab, and click Request Accounts. Page 26 of 29

27 5. Enter OUD in the search field, and click the search button. 6. Click "Add to Cart," and then click Checkout. 7. Note that the form now contains a Prepopulate button. Click Preopulate. Page 27 of 29

28 8. Verify that the First Name and Last Name fields are populated with the first name and last name of the user in the Target Users Page 28 of 29

29 Page 29 of 29

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

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

ADF Code Corner How-to build a reusable toolbar with Oracle ADF Declarative Components. Abstract: twitter.com/adfcodecorner

ADF Code Corner How-to build a reusable toolbar with Oracle ADF Declarative Components. Abstract: twitter.com/adfcodecorner ADF Code Corner 024. How-to build a reusable toolbar with Oracle ADF Abstract: This article explains how to use Oracle ADF declarative components to build a reusable toolbar that can be used throughout

More information

Lab 20: UI Customization

Lab 20: UI Customization Lab 20: UI Customization Note: Please view the PDF version as 150% for the clearest display of the screenshots. 1. Introduction In this lab, you will customize various aspects of the user interfaces available

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

Oracle Retail Accelerators for WebLogic Server 11g

Oracle Retail Accelerators for WebLogic Server 11g Oracle Retail Accelerators for WebLogic Server 11g Micro-Applications Development Tutorial October 2010 Note: The following is intended to outline our general product direction. It is intended for information

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

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

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

Developing an ADF 11g client for Agile PLM. Developing an ADF 11g client for Agile PLM

Developing an ADF 11g client for Agile PLM. Developing an ADF 11g client for Agile PLM Table of Contents 1 LAB OVERVIEW... 3 2 GETTING STARTED... 4 2.1 Starting Oracle JDeveloper 11gR1... 4 3 CREATE THE ADF CLIENT... 5 3.1 Create the ADF Application... 5 3.2 Create the Web Service Data Control...

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 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

Readme File. Hyperion System 9 BI+ Application Builder.NET Release 9.2 Readme. Hyperion System 9 BI+ Application Builder.NET Release 9.

Readme File. Hyperion System 9 BI+ Application Builder.NET Release 9.2 Readme. Hyperion System 9 BI+ Application Builder.NET Release 9. Hyperion System 9 BI+ Application Builder.NET Release 9.2 Readme Readme File This file contains the following sections: Purpose... 2 New Features... 2 Grid Adapters... 2 Grid Adapter Generic... 2 Grid

More information

IBM. IBM WebSphere Application Server Migration Toolkit. WebSphere Application Server. Version 9.0 Release

IBM. IBM WebSphere Application Server Migration Toolkit. WebSphere Application Server. Version 9.0 Release WebSphere Application Server IBM IBM WebSphere Application Server Migration Toolkit Version 9.0 Release 18.0.0.3 Contents Chapter 1. Overview......... 1 Chapter 2. What's new........ 5 Chapter 3. Support..........

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

ADF Mobile Code Corner

ADF Mobile Code Corner ADF Mobile Code Corner m05. Caching WS queried data local for create, read, update with refresh from DB and offline capabilities Abstract: The current version of ADF Mobile supports three ADF data controls:

More information

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

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

Just Get it Written: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console. Don t get it right, just get it written.

Just Get it Written: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console. Don t get it right, just get it written. Just Get it Written: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console Peter Koletzke Technical Director & Principal Instructor Co-author: Duncan Mills, Oracle Moral Don t get

More information

Setting Up Resources in VMware Identity Manager (SaaS) Modified 15 SEP 2017 VMware Identity Manager

Setting Up Resources in VMware Identity Manager (SaaS) Modified 15 SEP 2017 VMware Identity Manager Setting Up Resources in VMware Identity Manager (SaaS) Modified 15 SEP 2017 VMware Identity Manager Setting Up Resources in VMware Identity Manager (SaaS) You can find the most up-to-date technical documentation

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Desktop Integration Developer's Guide for Oracle Application Development Framework 11g Release 1 (11.1.1.6.0) E10139-05 November 2011 Documentation for Oracle ADF Desktop Integration

More information

Don t get it right, just get it written.

Don t get it right, just get it written. Just Get it Written: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console Peter Koletzke Technical Director & Principal Instructor (coauthored by Duncan Mills, Oracle) Moral Don t

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Developing Applications with Oracle ADF Desktop Integration 12c (12.1.2) E23244-01 June 2013 Documentation for Oracle ADF Desktop Integration developers that describes how to extend

More information

ADF Desktop Integration 11g Release1 Component and Feature Demo

ADF Desktop Integration 11g Release1 Component and Feature Demo 1 of 13 5/23/2013 11:22 AM An Oracle JDeveloper How To Document Written by James Amalraj, Arunkumar Ramamoorthy, Sireesha Pinninti, Gayathri Sekar and Dhiraj Shivpriya, Oracle Corporation Created : February,

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Developing Applications with Oracle ADF Desktop Integration 12c (12.2.1) E50783-01 October 2015 Documentation for Oracle ADF Desktop Integration developers that describes how to

More information

Creating Domain Templates Using the Domain Template Builder 11g Release 1 (10.3.6)

Creating Domain Templates Using the Domain Template Builder 11g Release 1 (10.3.6) [1]Oracle Fusion Middleware Creating Domain Templates Using the Domain Template Builder 11g Release 1 (10.3.6) E14139-06 April 2015 This document describes how to use the Domain Template Builder to create

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

Oracle Utilities Customer Self Service Release Whitepaper: Consuming OUCSS Taskflows in Custom Portals E October 2011

Oracle Utilities Customer Self Service Release Whitepaper: Consuming OUCSS Taskflows in Custom Portals E October 2011 Oracle Utilities Customer Self Service Release 2.0.0 Whitepaper: Consuming OUCSS Taskflows in Custom Portals E26553-01 October 2011 Copyright 2011, Oracle and/or its affiliates. All rights reserved. This

More information

1Z0-430

1Z0-430 1Z0-430 Passing Score: 800 Time Limit: 0 min Exam A QUESTION 1 On a normally well-performing environment, you are experiencing unexpected slow response times, or no server response, for some page requests

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

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

Lab 19: Event Handlers for User Entities

Lab 19: Event Handlers for User Entities 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

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Desktop Integration Developer's Guide for Oracle Application Development Framework 11g Release 1 (11.1.1.7.3) E10139-09 October 2014 Documentation for Oracle ADF Desktop Integration

More information

User Guide Using AuraPlayer

User Guide Using AuraPlayer User Guide Using AuraPlayer AuraPlayer Support Team Version 2 2/7/2011 This document is the sole property of AuraPlayer Ltd., it cannot be communicated to third parties and/or reproduced without the written

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

Oracle Developer Day

Oracle Developer Day Oracle Developer Day Sponsored by: J2EE Track: Session #3 Developing JavaServer Faces Applications Name Title Agenda Introduction to JavaServer Faces What is JavaServer Faces Goals Architecture Request

More information

Setting Up the Development Environment

Setting Up the Development Environment CHAPTER 5 Setting Up the Development Environment This chapter tells you how to prepare your development environment for building a ZK Ajax web application. You should follow these steps to set up an environment

More information

User s Guide 12c (12.2.1)

User s Guide 12c (12.2.1) [1]Oracle Enterprise Pack for Eclipse User s Guide 12c (12.2.1) E66530-01 October 2015 Documentation that describes how to use Oracle Enterprise Pack for Eclipse, which is a set of plugins for Eclipse,

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

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

Oracle Entitlements Server 11gR2 Integration Guide Published: May 2013

Oracle Entitlements Server 11gR2 Integration Guide Published: May 2013 Oracle Entitlements Server 11gR2 Integration Guide Published: May 2013 Applies To Oracle API Gateway v11.1.2.x Contents Introduction Prerequisites Integration Configuration Steps OES Configuration: Step

More information

How Do I Inspect Error Logs in Warehouse Builder?

How Do I Inspect Error Logs in Warehouse Builder? 10 How Do I Inspect Error Logs in Warehouse Builder? Scenario While working with Warehouse Builder, the designers need to access log files and check on different types of errors. This case study outlines

More information

1 Getting Started with Oracle Service Bus

1 Getting Started with Oracle Service Bus 1 Getting Started with Oracle Service Bus 1 Getting Started with Oracle Service Bus...1 1.1 Prerequisites...1 1.2 Introduction...1 1.2.1 High-level Steps...3 1.3 Setup and Deploy Composites...4 1.3.1 URLs

More information

JBoss SOAP Web Services User Guide. Version: M5

JBoss SOAP Web Services User Guide. Version: M5 JBoss SOAP Web Services User Guide Version: 3.3.0.M5 1. JBoss SOAP Web Services Runtime and Tools support Overview... 1 1.1. Key Features of JBossWS... 1 2. Creating a Simple Web Service... 3 2.1. Generation...

More information

ADF Hands-On. Understanding Task Flow Activities / 2011 ADF Internal Enterprise 2.0 Training. Abstract:

ADF Hands-On. Understanding Task Flow Activities / 2011 ADF Internal Enterprise 2.0 Training. Abstract: ADF Hands-On Understanding Task Flow Activities Abstract: In this hands-on you create a bounded task flows to run as an ADF Region in an ADF Faces page. Within this hands-on you create and use the following

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

Oracle 1Z Oracle WebCenter 11g Essentials.

Oracle 1Z Oracle WebCenter 11g Essentials. Oracle 1Z0-541 Oracle WebCenter 11g Essentials http://killexams.com/exam-detail/1z0-541 Answer: B, C QUESTION: 58 To use Oracle SES to search group spaces, lists, pages, or wikis, one of the steps is to

More information

Just Get it Written: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console. Don t get it right, just get it written.

Just Get it Written: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console. Don t get it right, just get it written. Just Get it Written: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console Peter Koletzke Technical Director & Principal Instructor Co-author: Duncan Mills, Oracle Moral Don t get

More information

Red Hat JBoss BPM Suite 6.4

Red Hat JBoss BPM Suite 6.4 Red Hat JBoss BPM Suite 6.4 Oracle Weblogic Installation and Configuration Guide For Red Hat JBoss BPM Suite Last Updated: 2017-12-05 Red Hat JBoss BPM Suite 6.4 Oracle Weblogic Installation and Configuration

More information

ADF Mobile Code Corner

ADF Mobile Code Corner ADF Mobile Code Corner m03. Abstract: Dependent lists is a common functional requirement for web, desktop and also mobile applications. You can build dependent lists from dependent, nested, and from independent,

More information

JDeveloper Downloading a Workspace for WebCenter Spaces Development

JDeveloper Downloading a Workspace for WebCenter Spaces Development 49 49Extending WebCenter Spaces Using JDeveloper Note: This PDF contains important updates to the current version of Chapter 49 Developer s Guide for WebCenter on Oracle Technology Network (OTN). The OTN

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

Oracle Fusion Middleware Developing Extensions for Oracle JDeveloper. 12c ( )

Oracle Fusion Middleware Developing Extensions for Oracle JDeveloper. 12c ( ) Oracle Fusion Middleware Developing Extensions for Oracle JDeveloper 12c (12.2.1.3.0) E67105-01 August 2017 Oracle Fusion Middleware Developing Extensions for Oracle JDeveloper, 12c (12.2.1.3.0) E67105-01

More information

Oracle Enterprise Pack for Eclipse 11g Hands on Labs

Oracle Enterprise Pack for Eclipse 11g Hands on Labs Oracle Enterprise Pack for Eclipse 11g Hands on Labs This certified set of Eclipse plug-ins is designed to help develop, deploy and debug applications for Oracle WebLogic Server. It installs as a plug-in

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

Setting Up Resources in VMware Identity Manager. VMware Identity Manager 2.8

Setting Up Resources in VMware Identity Manager. VMware Identity Manager 2.8 Setting Up Resources in VMware Identity Manager VMware Identity Manager 2.8 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments

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

The End of the Beginning: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console. Don t get it right, just get it written.

The End of the Beginning: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console. Don t get it right, just get it written. The End of the Beginning: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console Peter Koletzke Technical Director & Principal Instructor Co-author: Duncan Mills, Oracle Moral Don t

More information

Extensibility Guide Oracle Financial Services Lending and Leasing Release [October] [2013] Part No. E

Extensibility Guide Oracle Financial Services Lending and Leasing Release [October] [2013] Part No. E Extensibility Guide Oracle Financial Services Lending and Leasing Release 14.1.0.0.0 [October] [2013] Part No. E51268-01 Table of Contents 1. PREFACE... 1-2 1.1 AUDIENCE... 1-2 1.2 CONVENTIONS USED...

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

Oracle Business Intelligence Publisher

Oracle Business Intelligence Publisher Oracle Business Intelligence Publisher Using Oracle BI Publisher Extension for Oracle JDeveloper 11g Release 1 (11.1.1) E48204-01 March 2014 This document describes how to add a BI Publisher report to

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

FuegoBPM Portlet. deployment. BEA WebLogic Portal

FuegoBPM Portlet. deployment. BEA WebLogic Portal FuegoBPM Portlet deployment in BEA WebLogic Portal Table of Contents FuegoBPM Portlet deployment in BEA WebLogic Portal... 3 Introduction... 3 The deployment process... 3 1. Assembly and generation of

More information

ADF Code Corner. 048-How-to build XML Menu Model based site menus and how to protect them with ADF Security and JAAS. Abstract:

ADF Code Corner. 048-How-to build XML Menu Model based site menus and how to protect them with ADF Security and JAAS. Abstract: ADF Code Corner 048-How-to build XML Menu Model based site menus and Abstract: There are different types of menus you can use within an application: breadcrumbs, to navigate a process within unbounded

More information

Using Spaces Extension Samples ( )

Using Spaces Extension Samples ( ) An Oracle White Paper December 2011 Using Spaces Extension Samples (11.1.1.6.0) Executive Overview... 3 Introduction... 4 Deploying and Undeploying Sample Spaces Extensions... 5 Overview... 5 Downloading,

More information

ADF Code Corner. 65. Active Data Service Sample Twitter Client. Abstract: twitter.com/adfcodecorner

ADF Code Corner. 65. Active Data Service Sample Twitter Client. Abstract: twitter.com/adfcodecorner ADF Code Corner 65. Active Data Service Sample Twitter Client Abstract: Active Data Service is a push event framework in Oracle ADF Faces that allows developers to implement real time server to client

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Developing Extensions for Oracle JDeveloper 12c (12.1.2) E23013-01 June 2013 Documentation for Oracle JDeveloper users that describes how to develop downloadable extensions to

More information

xpression Documentum Edition Installation Guide Version 3.5

xpression Documentum Edition Installation Guide Version 3.5 xpression Documentum Edition Installation Guide Version 3.5 EMC Corporation, Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright 2005-2009 EMC Corporation. All rights reserved. The copyright

More information

Setting Up Resources in VMware Identity Manager

Setting Up Resources in VMware Identity Manager Setting Up Resources in VMware Identity Manager VMware Identity Manager 2.7 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

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

Lyudmil Pelov, A-Team, Oracle December Development Lifecycle for Task Flows in Oracle WebCenter Portal 11gR1 version

Lyudmil Pelov, A-Team, Oracle December Development Lifecycle for Task Flows in Oracle WebCenter Portal 11gR1 version Lyudmil Pelov, A-Team, Oracle December 2013 Development Lifecycle for Task Flows in Oracle WebCenter Portal 11gR1 version 11.1.1.8.0 Table of Contents Introduction...3 About the Examples Used in This Paper...3

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 reserved. Fast, but not Furious - ADF Task Flow in 60 Minutes Frank Nimphius, Senior Principal Product Manager Oracle Application Development

More information

Departamento de Engenharia Informática. Systems Integration. Web Services and BPEL Tutorial

Departamento de Engenharia Informática. Systems Integration. Web Services and BPEL Tutorial Departamento de Engenharia Informática Systems Integration Web Services and BPEL Tutorial IE 2016 In this tutorial, we shall create a Web service in Java that validates a credit card number. In addition,

More information

Lab 12: Approval Workflow customization: Resource Parallel and Serial Approval

Lab 12: Approval Workflow customization: Resource Parallel and Serial Approval Lab 12: Approval Workflow customization: Resource Parallel and Serial Approval Contents Lab 12: Approval Workflow customization: Resource Parallel and Serial Approval... 1 1. Introduction... 1 2. Contents...

More information

Oracle WebLogic Server

Oracle WebLogic Server Oracle WebLogic Server Creating WebLogic Domains Using the Configuration Wizard 10g Release 3 (10.1.3) August 2008 Oracle WebLogic Server Creating WebLogic Domains Using the Configuration Wizard, 10g Release

More information

Hyperion Application Builder for.net. Readme. Release

Hyperion Application Builder for.net. Readme. Release Hyperion Application Builder for.net Release 11.1.1.1 Readme Hyperion Application Builder for.net... 1 Readme... 1 Purpose... 2 New Features... 2 Embedded JAPI Mode... 2 Non Unique Member Names... 2 Support

More information

Oracle Middleware 12c: Build Rich Client Applications with ADF Ed 1 LVC

Oracle Middleware 12c: Build Rich Client Applications with ADF Ed 1 LVC Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 67863102 Oracle Middleware 12c: Build Rich Client Applications with ADF Ed 1 LVC Duration: 5 Days What you will learn This Oracle Middleware

More information

ADF Code Corner How-to further filter detail queries based on a condition in the parent view using ADF BC. Abstract: twitter.

ADF Code Corner How-to further filter detail queries based on a condition in the parent view using ADF BC. Abstract: twitter. ADF Code Corner 109. How-to further filter detail queries based on a condition in the parent view using ADF BC Abstract: In Oracle ADF BC, parent child behavior between view objects is configured through

More information

Red Hat JBoss BRMS 6.4

Red Hat JBoss BRMS 6.4 Red Hat JBoss BRMS 6.4 Oracle Weblogic Installation and Configuration Guide For Red Hat JBoss BRMS Last Updated: 2017-12-05 Red Hat JBoss BRMS 6.4 Oracle Weblogic Installation and Configuration Guide

More information

WebCenter Portal Task Flow Customization in 12c O R A C L E W H I T E P A P E R J U N E

WebCenter Portal Task Flow Customization in 12c O R A C L E W H I T E P A P E R J U N E WebCenter Portal Task Flow Customization in 12c O R A C L E W H I T E P A P E R J U N E 2 0 1 7 Disclaimer The following is intended to outline our general product direction. It is intended for information

More information

Moving a File (Event-Based)

Moving a File (Event-Based) Moving a File (Event-Based) This topic describes how to move a file from a source location to a destination location. A channel is used, which listens for any new files matching the defined filter criteria

More information

Phone: Fax: Directions for setting up MARCO Insert Item #A-6LI 3 H x 4 W

Phone: Fax: Directions for setting up MARCO Insert Item #A-6LI 3 H x 4 W Phone: 1.866.289.9909 Fax: 1.866.545.5672 www.marcopromotionalproducts.com Directions for setting up MARCO Insert Item #A-6LI 3 H x 4 W Word Perfect Directions Step 1. Open Word Perfect Step 2. Click Format

More information

ADF Mobile Code Corner

ADF Mobile Code Corner ADF Mobile Code Corner m07. Abstract: A common user interaction with an edit form is to cancel data changes so the original data are reset and displayed. With ADF Mobile and the POJO data control this

More information

Oracle Enterprise Pack for Eclipse

Oracle Enterprise Pack for Eclipse Oracle Enterprise Pack for Eclipse User s Guide Release 12.1.3.5 E62021-01 April 2015 Oracle Enterprise Pack for Eclipse User s Guide, Release 12.1.3.5 E62021-01 Copyright 2008, 2015, Oracle and/or its

More information

ZK Mobile for Android The Quick Start Guide

ZK Mobile for Android The Quick Start Guide potix SIMPLY REACH ZK Mobile for Android TM The Quick Start Guide Version 0.8.1 Feburary 2008 ZK Mobile for Android for Android: Quick Start Guide Page 1 of 14 Copyright. All rights reserved. The material

More information

Contents Overview... 5 Upgrading Primavera Gateway... 7 Using Gateway Configuration Utilities... 9

Contents Overview... 5 Upgrading Primavera Gateway... 7 Using Gateway Configuration Utilities... 9 Gateway Upgrade Guide for On-Premises Version 17 August 2017 Contents Overview... 5 Downloading Primavera Gateway... 5 Upgrading Primavera Gateway... 7 Prerequisites... 7 Upgrading Existing Gateway Database...

More information

How to install and configure Solr v4.3.1 on IBM WebSphere Application Server v8.0

How to install and configure Solr v4.3.1 on IBM WebSphere Application Server v8.0 How to install and configure Solr v4.3.1 on IBM WebSphere Application Server v8.0 About This post describe how to install and configure Apache Solr 4 under IBM WebSphere Application Server v8. Resume about

More information

Jakarta Struts: An MVC Framework

Jakarta Struts: An MVC Framework Jakarta Struts: An MVC Framework Overview, Installation, and Setup. Struts 1.2 Version. Core Servlets & JSP book: More Servlets & JSP book: www.moreservlets.com Servlet/JSP/Struts/JSF Training: courses.coreservlets.com

More information

Oracle Fusion Middleware Creating Domain Templates Using the Domain Template Builder. 12c ( )

Oracle Fusion Middleware Creating Domain Templates Using the Domain Template Builder. 12c ( ) Oracle Fusion Middleware Creating Domain Templates Using the Domain Template Builder 12c (12.2.1.3) E95527-01 May 2018 Oracle Fusion Middleware Creating Domain Templates Using the Domain Template Builder,

More information

TIBCO Spotfire Automation Services

TIBCO Spotfire Automation Services TIBCO Spotfire Automation Services Software Release 7.9 May 2017 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED

More information

Oracle Fusion Middleware 11g: Build Applications with ADF Accel

Oracle Fusion Middleware 11g: Build Applications with ADF Accel Oracle University Contact Us: +352.4911.3329 Oracle Fusion Middleware 11g: Build Applications with ADF Accel Duration: 5 Days What you will learn This is a bundled course comprising of Oracle Fusion Middleware

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

Configure IBM Urban Code Deploy to manage Workload Automation for z/os objects By Maria Elena Massino

Configure IBM Urban Code Deploy to manage Workload Automation for z/os objects By Maria Elena Massino Configure IBM Urban Code Deploy to manage Workload Automation for z/os objects By Maria Elena Massino In this article I will show you step-by-step how to configure IBM UrbanCode Deploy with Workload Automation

More information

In this lab, you will build and execute a simple message flow. A message flow is like a program but is developed using a visual paradigm.

In this lab, you will build and execute a simple message flow. A message flow is like a program but is developed using a visual paradigm. Lab 1 Getting Started 1.1 Building and Executing a Simple Message Flow In this lab, you will build and execute a simple message flow. A message flow is like a program but is developed using a visual paradigm.

More information

NetBeans IDE Field Guide

NetBeans IDE Field Guide NetBeans IDE Field Guide Copyright 2005 Sun Microsystems, Inc. All rights reserved. Table of Contents Extending Web Applications with Business Logic: Introducing EJB Components...1 EJB Project type Wizards...2

More information

Red Hat JBoss BRMS 6.1

Red Hat JBoss BRMS 6.1 Red Hat JBoss BRMS 6.1 Oracle Weblogic Installation and Configuration Guide For Red Hat JBoss BRMS Last Updated: 2017-11-13 Red Hat JBoss BRMS 6.1 Oracle Weblogic Installation and Configuration Guide

More information

IBM Operational Decision Manager Version 8 Release 5. Configuring Operational Decision Manager on WebLogic

IBM Operational Decision Manager Version 8 Release 5. Configuring Operational Decision Manager on WebLogic IBM Operational Decision Manager Version 8 Release 5 Configuring Operational Decision Manager on WebLogic Note Before using this information and the product it supports, read the information in Notices

More information

Overview. Principal Product Manager Oracle JDeveloper & Oracle ADF

Overview. Principal Product Manager Oracle JDeveloper & Oracle ADF Rich Web UI made simple an ADF Faces Overview Dana Singleterry Dana Singleterry Principal Product Manager Oracle JDeveloper & Oracle ADF Agenda Comparison: New vs. Old JDeveloper Provides JSF Overview

More information

AppDev StudioTM 3.2 SAS. Migration Guide

AppDev StudioTM 3.2 SAS. Migration Guide SAS Migration Guide AppDev StudioTM 3.2 The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2006. SAS AppDev TM Studio 3.2: Migration Guide. Cary, NC: SAS Institute Inc.

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