Oracle WebCenter Portal 11g Developer Workshop

Size: px
Start display at page:

Download "Oracle WebCenter Portal 11g Developer Workshop"

Transcription

1 Oracle WebCenter Portal 11g Developer Workshop Lab 11 Creating The Patient Chart Task Flow Page 1 of 45

2 Overview In the previous lab, you developed and deployed a portlet to the portal. In this lab, you will see how to develop a Task Flow. A Task Flow is a feature developed by Oracle and used extensively in Oracle Applications. Task Flows encapsulate control flow rules, activities and managed beans to implement business modules. You can think of a Task Flows as a local portlet. Some of the characteristics of Task Flows are: Task Flows are packaged into ADF Libraries (JAR files), which is associated with the Portal application. Task Flows run locally on the server, providing better performance. Task Flows are easier to reuse and customize than portlets. Task Flows can leverage page skin, keeping visual identity. The goal of this lab is to create a Patient Chart Task Flow, to display transactional information in the Portal page. The Patient Chart will display a list of patients, and for each patient, their picture, a list of consultations, problems reported, their medications and vital information. This information will be stored in a database. The patient s history will also be displayed; this information will come from WebCenter Content. At the end of this exercise, you will be able to: 1. Develop a new Task Flow 2. Use Business Components to map database tables 3. Use visual components to display information 4. Publish and consume the Task Flow in WebCenter Portal Page 2 of 45

3 Instructions Creating the Project 1. Open JDeveloper and create a New Application. Name the application OHPatientChartTF and select the Fusion Web Application (ADF) template. 2. For the remaining screens of the wizard, keep the default values. Click Finish to create the application. 3. Right-click the Model project and select New ADF Business Components -> Business Components from Tables. 4. Create a new connection to the HR schema. Page 3 of 45

4 5. In the Entity Objects screen, click on the Query button and select the following tables: Consultation, Doctor, Medication, Patient, Problem, Vital. 6. In the Updatable View Objects, move all objects to the right panel. Click Next. Page 4 of 45

5 7. In the Read-Only View Objects screen, click Next. 8. Leave the remaining settings with their default values and click Finish to create the components. 9. You can test if the relationship between the tables is being used by the Business Components that were created by right-clicking the AppModule and selecting Run. 10. Double click the ConsultationPatientLink1 component. This component implements the master-detail relationship between the Patients and Consultation tables. That way, we can see consultations by patient. Page 5 of 45

6 11. If your environment doesn t have these master-details components, review your database tables before continuing. Close this window. 12. Right-click the ViewController project and select New -> JSF -> ADF Task Flow. Click OK. 13. Set the File Name as patients-task-flow and the Task Flow ID as OraHealth-Patients. Click OK. 14. In the Diagram Editor, drag & drop a View component into the Task Flow. Name this view PatientsView. Page 6 of 45

7 15. Double-click the View to create the file. Leave the default values and click OK. 16. The first task is to prepare the layout of the page. To do this, you will use the panelgrouplayout component, in the following structure: Page 7 of 45

8 17. Drag and Drop a Panel Group Layout component from the Component Palette to the root component in the Structure Panel Page 8 of 45

9 18. Set the following properties to this component: o Layout: Vertical o InlineStyle: width:900px; 19. Drag another Panel Group Layout and drop it inside this Panel Group Layout. Set the layout as Horizontal, Valign Top and the InlineStyle as width:900px;. 20. Add 2 Panel Group Layout components into the horizontal Panel Group Layout. They will represent the columns in our Task Flow. Set first Panel Group Layout to layout Scroll, Valign Top, InlineStyle width:250px; overflow-y: scroll; overflowx: hidden;. Set the second Panel Group Layout to layout Vertical, InlineStyle width:640px;padding-left:10px;. o PS: JDeveloper will raise an error for the overflow property. You can ignore it. 21. So far, your Structure Panel should look like this: 22. In the af:panelgrouplayout scroll, add a Panel Group Layout. It will serve as a title box. Set the following properties: o Halign: Center o Valign: Top o Layout: Vertical o InlineStyle: background-color:gray; width:250px; 23. In the Component Palette, expand the Common Components tab and drag & drop an Output Text component into this new Panel Group Layout. Set the following properties to the Output Text: o Value: Patient Chart o InlineStyle: font-size:large; font-family:verdana, Arial, Helvetica, sans-serif; color:white; Page 9 of 45

10 24. In the af:panelgrouplayout vertical (the right column, ID pgl4), add 5 Panel Group Layout Components. Set their properties following these guidelines: o Panel Group Layout 1 (ID pgl6) HAlign: Left Layout: Vertical InlineStyle: width:640px;padding-bottom:15px; o Panel Group Layout 2 (ID pgl7) VAlign: Top Layout: Horizontal o Panel Group Layout 3 (ID pgl8) Layout: Vertical InlineStyle: padding-bottom:10px; o Panel Group Layout 4 (ID pgl9) Layout: Vertical InlineStyle: padding-bottom:10px; o Panel Group Layout 5 (ID pgl10) Layout: Vertical InlineStyle: padding-bottom:10px; 25. Inside the Panel Group Layout Horizontal (ID pgl7), add 2 Panel Group Layout components. Set the following properties: o Panel Group Layout 6 (ID pgl11) Halign: Center Valign: Middle Layout: Vertical InlineStyle: width:150px; height:100px; o Panel Group Layout 7 (ID pgl12) Layout: Vertical InlineStyle: width:440.0px; 26. Inside the Panel Group Layout 7 Vertical (ID pgl12), add 2 Panel Group Layout components. Set the following properties: o Panel Group Layout 8 (ID pgl13) Layout: Vertical InlineStyle: padding-bottom:15px; Page 10 of 45

11 o Panel Group Layout 9 (ID pgl14) Layout: Vertical 27. For the right panel, we will place the tables inside Panel Header components, to have meaningful titles to each table. Add one Panel Header component to each of these Panel Group Layouts: o Panel Group Layout 8 (pgl13). Text: Reported Problems. o Panel Group Layout 9 (pgl14). Text: Consultation History. o Panel Group Layout 3 (pgl8). Text: Patient History. o Panel Group Layout 4 (pgl9). Text: Medication. o Panel Group Layout 5 (pgl10). Text: Patient Management. 28. Your page should now look like the image below. Make sure you have all the components in order before continuing. 29. The page is ready to receive the database information. Expand the Data Controls tab and select the PatientView1. Drag & Drop this component into the af:panelgrouplayout scroll (ID pgl3). Select Table -> ADF Read-Only Dynamic Table. Page 11 of 45

12 30. A Table was created inside this Panel Group Layout. Set the following property: o InlineStyle: height:650px; 31. Expanding the table, there is an af:foreach component that must be removed. The best way to do it is by editing the source code. Go to the Source tab and find the line with the <af:foreach tag. Delete this and the </af:foreach> tags. Page 12 of 45

13 32. Go to the Design tab, select the af:column component and set the following properties: o Sortable: false o HeaderText: [leave it blank] o Width: 250 o Minimum Width: 250 o Sort Property: [leave it blank] o ShowRequired: false o HeaderNoWrap: true o NoWrap: true o RowHeader: false o InlineStyle: background-color:background; 33. Inside the af:column component, there is an Output Text. Delete this component and add a Panel Group Layout inside the Column, with the following properties: o Halign: left o Valign: top o Layout: vertical 34. Inside this Panel Group Layout, add a Panel Group Layout, with the following properties: o Halign: left o Layout: horizontal 35. Inside the Panel Group Layout horizontal (ID pgl16), add 2 Panel Group Layout components, with the following properties: o Panel Group Layout (ID pgl17) Halign: Left Layout: Vertical InlineStyle: width:180.0px;padding-left:5px; o Panel Group Layout (ID pgl18) Layout: Vertical InlineStyle: width:30.0px; 36. Add a Spacer component between the two Panel Group Layout components. It can be found in the Layout tab of the Component Palette. Leave the default settings. Page 13 of 45

14 37. In the Panel Group Layout vertical (ID pgl17), add 3 Panel Group Layout components, all with the following settings: o Halign: left o Layout: horizontal o InlineStyle: padding-top:2px;padding-bottom:2px; 38. Add the following components to the 3 Panel Group Layout components: o Panel Group Layout 1 (ID pgl19) Output Text Output Text Spacer Value: #{row.patientlastname} InlineStyle: color:white; font-family:verdana, Arial, Helvetica, sans-serif; font-size:medium; fontweight:bold; Value:, [comma] InlineStyle: color:white; font-family:verdana, Arial, Helvetica, sans-serif; font-size:medium; font-weight: bold; Height: 0 Width: 3 Output Text Page 14 of 45

15 Value: #{row.patientfirstname} InlineStyle: color:white; font-family:verdana, Arial, Helvetica, sans-serif; font-size:medium; font-weight: bold; o Panel Group Layout 2 (ID pgl20) Output Text Value: #{row.patientgender eq "M"? "Male" : "Female"} Spacer InlineStyle: color:orange; Height: 0 Width: 10 Output Text Output Text Value: Birth Date: InlineStyle: color:orange; Value: #{row.patientbirthdate} InlineStyle: color:orange; o Panel Group Layout 3 (ID pgl21) Output Text Output Text Value: Doctor: InlineStyle: color:yellow; Value: #{row.patientdoctor} InlineStyle: color:yellow; 39. Your page should now look like the image below. Make sure you have all the components in order before continuing. Page 15 of 45

16 40. In the Panel Group Layout - vertical (ID pgl18), add an Image component. Set the following properties for the image: o Source: #{row.patientgender eq "M"? " rs/orahealth/images/male.png" : " rs/orahealth/images/female.png"} o InlineStyle: width:30px; 41. Now we will work on the right panel. In the first Panel Group Layout vertical (ID pgl6) inside the right side Panel Group layout, add a Panel Group Layout component, with the following properties: o Halign: left o Valign: middle o Layout: horizontal o InlineStyle: background-color:gray; width:650px; paddingtop:5px;padding-bottom:3px; Page 16 of 45

17 42. Inside this new Panel Group Layout, add the following components: o Spacer Height: 0 Width: 10 o Output Text o Spacer Value: Patient: InlineStyle: color:white; font-family:verdana, Arial, Helvetica, sans-serif; font-size:medium; font-weight:bold; Height: 0 Width: 5 o Drag and Drop the PatientLastName attribute from the PatientView1 data control. Select Text -> ADF Output Text. o Set the following properties: Page 17 of 45

18 InlineStyle: color:white; font-family:verdana, Arial, Helvetica, sans-serif; font-size:medium; font-weight:bold; PartialTriggers: Click on the arrow ( ) icon and select Edit. In the selection panel, select the table* - t1 component and move it to the Selected column. o Output Text o Spacer PS: This is the ID of the table. That way, every time the user chooses another record from the table, the value will be updated accordingly. IMPORTANT: do not type the value directly in the field, because the binding will not be correct. Always select the table from this window. Value:, InlineStyle: color:white; font-family:verdana, Arial, Helvetica, sans-serif; font-size:medium; font-weight:bold; Height: 0 Width: 3 o Drag and Drop the PatientFirstName component from the PatientView1 data control. Select Text -> ADF Output Text. Set the following property: InlineStyle: color:white; font-family:verdana, Arial, Helvetica, sans-serif; font-size:medium; font-weight:bold; Page 18 of 45

19 o Spacer PartialTriggers: Click on Edit and select table* - t1 Height: 0 Width: We will now add the patient s picture to the chart. The Panel Group Layout vertical (ID pgl11) is located inside the Panel Group Layout horizontal, beneath the one we just edited. Drag and Drop the PatientPicture to the Panel Group Layout, and select Text -> ADF Output Text as the format. In the PartialTriggers property, Click on Edit and select table* - t Add an Image component to this Panel Group Layout, and set the following properties: o Source: 20Folders/OraHealth/images/patients/#{bindings.PatientPicture.inputValue} o PartialTriggers: Click on Edit and select table* - t1 45. Your page should now look like the image below. Make sure you have all the components in order before continuing Page 19 of 45

20 46. Drag and Drop the ProblemsView2 data control (located inside the PatientView1 data control) to the Reported Problems Panel Header and select Table -> ADF Read-only Table. 47. In the wizard, leave the default values and click OK. 48. Set the following properties for the Table component: o Width: 480px; o styleclass: AFStretchWidth o AutoHeightRows: 150 Page 20 of 45

21 o PartialTriggers: Click on Edit and select table* - t1 49. Expand the Table component and remove the first 2 columns (ProblemId and PatientId). Adjust the remaining columns width to fit the available space (480px). Also, adjust the HeaderText property to a more user-friendly label. 50. Drag and Drop the ConsultationView3 data control (located inside the PatientView1 data control) to the Consultation History Panel Header and select Table -> ADF Read-only Table. 51. Accept the default values and click OK. Repeat the same configuration as above, removing the ConsultationID and PatientID columns and adjusting the table and column properties. Set the following properties for the Table component: o Width: 480px; o styleclass: AFStretchWidth o AutoHeightRows: 150 o PartialTriggers: Click on Edit and select table* - t1 52. Drag and Drop the MedicationView3 data control (located inside the PatientView1 data control) to the Medication Panel Header and select Table -> ADF Read-only Table. Page 21 of 45

22 53. Accept the default values and click OK. Repeat the same configuration as above, removing the ID columns (in this case, the first 2 columns), and adjusting the table and column properties. Set the following properties for the Table component: o Width: 600px; o styleclass: AFStretchWidth o AutoHeightRows: 100 o PartialTriggers: Click on Edit and select table* - t1 54. Drag and Drop the VitalView3 data control (located inside the PatientView1 data control) to the Patient Management Panel Header and select Table -> ADF Read-only Table. Page 22 of 45

23 55. Accept the default values and click OK. Repeat the same configuration as above, removing the ID columns (first 2 columns), and adjusting the table and column properties. Set the following properties for the Table component: o Width: 600px; o styleclass: AFStretchWidth o AutoHeightRows: 120 o PartialTriggers: Click on Edit and select table* - t1 56. It s time to test our application. But we can t execute a JSF page fragment (.jsff) directly. We need to create a.jspx file to contain the Task Flow. Right-click the ViewController project and select New -> JSF -> JSF Page. Name the page PatientTFConsumer.jspx and click OK. Page 23 of 45

24 57. Drag and drop the OraHealth-Patients Task Flow into the page and select Region. 58. Start the embedded server throught the Run -> Start Server Instance menu. If this is the first time you execute the embedded WLS, a configuration screen will appear. Page 24 of 45

25 59. Wait until the <Server started in RUNNING mode> appear in the log. You can display the log through the View -> Log menu. 60. Right-click the PatientTFConsumer.jspx page and select Run. 61. The page will be displayed in the web browser Page 25 of 45

26 62. Browse through the patients on the list; the panels on the right side will refresh to show the patient s information. If the refresh is not working, re-check your steps before continuing. Bringing Documents from WebCenter Content 63. The Patient History information will come from WebCenter Content. There is a folder called wikidocs in the Contribution Folders/OraHealth folder. This folder contains an HTML file for each patient. 64. In JDeveloper, select the Panel Header for Patient History and set the following properties: o Icon: ution%20folders/orahealth/images/guy.gif o InlineStyle: border-color:navy; border-style:solid; borderwidth:thin; margin-top:10px; 65. Drag and Drop an Inline Frame component from the Component Palette -> Layout Tab into the Panel Header for Patient History. Set the following properties for the Inline Frame: Page 26 of 45

27 o Source: 20Folders/OraHealth/wikidocs/#{bindings.PatientFirstname.inputValue}#{bi ndings.patientlastname.inputvalue}.htm o StyleClass: AFStretchWidth o InlineStyle: height:200.0px;margin-top:10px; o PartialTriggers: Click on Edit and select table* - t1 66. Run the application again to check if the history files correspond to the patient. Preparing the Data Source 67. Before being able to deploy the Task Flow, we need to reconfigure the database connection (the app will need to use a Data Source for DB connection). Right click the AppModule and select Configurations Page 27 of 45

28 68. Click on the Edit button and change the Data Source to jdbc/hrds. Click OK. 69. Select the AppModuleShared, click on Edit and change the Data Source to jdbc/hrds. Click OK and OK again to close the configuration window. Page 28 of 45

29 70. Now we need to create the Data Source on WLS. If you have already created the Data Source in the previous lab, skip to step Open Weblogic Console by browsing to Expand the Services node and click on Data Sources. In the data source list, click on New -> Generic Data Source. 73. Set the Name as HRDS and the JNDI Name as jdbc/hrds. Page 29 of 45

30 74. Click Next. Select the Oracle s Driver (Thin) for Instance 75. Set the Connection information according to the image below: Page 30 of 45

31 76. Click on the Test Configuration button. A Test Successful message should appear. Page 31 of 45

32 77. Set the targets as AdminServer, WC_Portlet and WC_Spaces. 78. Now the Task Flow is ready for deployment. Deploying the Task Flow Page 32 of 45

33 79. Right-click the ViewController project and select New > Deployment Profiles > ADF Library JAR File. 80. Set the name of the Deployment Profile as OHTaskFlowADFLibrary. Click OK. In the next screen, keep the default values and click OK. 81. The new Deployment Profile will appear in the list. Click OK to close this window. 82. Click on the File menu and choose New -> General -> Generic Project. 83. Set the project name as MySharedLibrary and click Finish. This project will be used to package the Model and ViewController projects to be deployed as an ADF Task Flow. 84. Right-click the MySharedLibrary project and go to Project Properties. In the Deployment tab, click New select Archive Type WAR File and set the name as ADFSharedLibraryOHTF. Click OK. Page 33 of 45

34 85. Go to the Profile Dependencies tab and check the OHTaskFlowADFLibrary library that we previously created. 86. Click OK and OK again to close the configuration screens. Page 34 of 45

35 87. Right-click the MySharedLibrary project and go to Deploy -> ADFSharedLibraryOHTF. 88. In the Deployment configuration screen, select Deploy to Application Server. 89. Click Next. If you don t have a connection to your application server configured, create one in this screen. 90. In the Weblogic Options screen, check Deploy to selected instances and select the WC_Spaces managed server. Also, check Deploy as Shared Library. 91. Click Next and Finish to deploy the Task Flow. Page 35 of 45

36 92. Once the deployment is finished, check the Weblogic Console to find the deployed library. 93. We will now create a Portal Extension project, which will associate this library to the Portal application. This configuration is necessary for our Task Flow to appear in the Resource Catalog. PS: This procedure only needs to be done once; other Task Flows that are created can be associated with this project, without having to create a new extension. 94. Go to File menu and select New -> Applications -> WebCenter Portal Server Extension (PS: this option only appears in the most recent version of the WebCenter Portal extension for JDeveloper. If you cannot find this option on the list, update the Portal extension). 95. Name the application OHPortalExtension and click Finish. Page 36 of 45

37 96. Right-click the PortalSharedLibrary project and select New -> Deployment Descriptors -> Weblogic Deployment Descriptor. Page 37 of 45

38 97. In the wizard, select weblogic.xml and version Click Finish to create the file. 98. Go to the Libraries tab and add the ADFSharedLibraryOHTF. PS: This must be the same name as in Weblogic Console: Important: If this is the first time you are deploying a Task Flow, you can go ahead with the deployment. Otherwise, if you are adding a new Task Flow to the library (or re-deploying the library), you will need to edit the MANIFEST.MF file and increment the Implementation-Version attribute value. For the first deployment, the default value (11.1.2) is correct. Page 38 of 45

39 99. Right-click the PortalSharedLibrary project and select Deploy -> extend.spaces.webapp 100. Select Deploy to Application Server, select the connection to your application server. In the Weblogic Options screen, select the WC_Spaces managed server, and check Deploy as a Shared Library. Page 39 of 45

40 101. When the deployment is finished, check Weblogic Console. You will see two projects called extend.spaces.webapp (ours is the version) Restart the WC_Spaces managed server to able to use this Task Flow in the portal. When the message <Server started in RUNNING mode> appears, go to WebCenter Portal and login as weblogic. Consuming the Task Flow 103. Go to the Administration link and open the Shared Assets page. Click on the Resources Catalog tab, select the Default Portal Catalog, go to the Actions menu and select Copy. Page 40 of 45

41 104. Set the name as OraHealth Portal Catalog. Click OK The Resource Catalog will be created. Click on the Edit link to configure it Select UI Components and click on Add -> Add from Library In the components list, select Task Flows. In the right column, expand Design Mode and find our Task Flow, OraHealth-Patients. Click Add to include it in our catalog. Page 41 of 45

42 108. Check to see if the Task Flow is added to the UI Components folder. Click Save and Close. Page 42 of 45

43 109. Don t forget to check the Available option to make sure we can select it later Go to the Administration page of the OraHealth portal and click on the Settings tab. Change the default Resource Catalog to OraHealth Portal Catalog Edit the Our Patients page In the Resource Catalog pane, click on UI Components. We can see the Task Flow in that folder. Click on Add (or drag & drop it) to include it in the page Configure the Task Flow to hide the header. Page 43 of 45

44 114. Save the page and click on View Portal to view the page Go back to JDeveloper and stop the embedded weblogic server (Run -> Stop Server Instance) Close JDeveloper. Page 44 of 45

45 Oracle WebCenter Portal 11g Developer Workshop LAB 11 Creating the Patient Chart Task Flow September, 2014 Author: Denis Abrantes Oracle Corporation World Headquarters 500 Oracle Parkway Redwood Shores, CA U.S.A. Worldwide Inquiries: Phone: Fax: oracle.com Copyright 2012, Oracle. All rights reserved. This document is provided for information purposes only and the contents hereof are subject to change without notice. This document is not warranted to be error-free, nor subject to any other warranties or conditions, whether expressed orally or implied in law, including implied warranties and conditions of merchantability or fitness for a particular purpose. We specifically disclaim any liability with respect to this document and no contractual obligations are formed either directly or indirectly by this document. This document may not be reproduced or transmitted in any form or by any means, electronic or mechanical, for any purpose, without our prior written permission. Oracle, JD Edwards, PeopleSoft, Fatwire and Siebel are registered trademarks of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Page 45 of 45

Oracle WebCenter Portal 11g Developer Workshop

Oracle WebCenter Portal 11g Developer Workshop Oracle WebCenter Portal 11g Developer Workshop Lab 10 Creating a Custom Portlet Page 1 of 27 Overview WebCenter Portal offers a few different development strategies for transactional features; portlets

More information

Oracle WebCenter Portal 11g Developer Workshop

Oracle WebCenter Portal 11g Developer Workshop Oracle WebCenter Portal 11g Developer Workshop Lab 04 Creating a Content Presenter Template Page 1 of 21 Overview In the previous lab, we used out-of-the-box components to publish documents into the portal.

More information

Oracle WebCenter Portal 11g Developer Workshop

Oracle WebCenter Portal 11g Developer Workshop Oracle WebCenter Portal 11g Developer Workshop Lab 03 Integrating Content Page 1 of 12 Overview WebCenter Content is the content repository for WebCenter Portal. To leverage the content stored in the repository,

More information

Oracle WebCenter Portal 11g Developer Workshop

Oracle WebCenter Portal 11g Developer Workshop Oracle WebCenter Portal 11g Developer Workshop Lab 00 Preparing the Environment Page 1 of 10 Overview For this workshop, you will use the Oracle WebCenter Portal Jump Start Kit, which is a utility that

More information

Oracle WebCenter Portal 11g Developer Workshop

Oracle WebCenter Portal 11g Developer Workshop Oracle WebCenter Portal 11g Developer Workshop Lab 02 Creating the OraHealth Page Template and Skin Page 1 of 24 Overview WebCenter Portal uses page templates and skins to control the look-and-feel of

More information

ORACLEAS PORTAL 10g (10.1.4) INTEGRATE YOUR ENTERPRISE CONTENT MANAGEMENT SYSTEMS INTO ORACLE PORTAL

ORACLEAS PORTAL 10g (10.1.4) INTEGRATE YOUR ENTERPRISE CONTENT MANAGEMENT SYSTEMS INTO ORACLE PORTAL Oracle WebCenter Technical Note ORACLEAS PORTAL 10g (10.1.4) INTEGRATE YOUR ENTERPRISE CONTENT MANAGEMENT SYSTEMS INTO ORACLE PORTAL April 2007 INTRODUCTION In many enterprise portal environments, it is

More information

Oracle WebCenter Suite Integrating Secure Enterprise Search

Oracle WebCenter Suite Integrating Secure Enterprise Search Oracle WebCenter Suite Integrating Secure Enterprise Search An Oracle White Paper January 2007 Oracle WebCenter Suite Integrating Secure Enterprise Search INTRODUCTION As organizations continually reinvent

More information

Oracle Fusion Middleware 11g Oracle Access Manager Frequently Asked Questions June 2009

Oracle Fusion Middleware 11g Oracle Access Manager Frequently Asked Questions June 2009 Oracle Fusion Middleware 11g Oracle Access Manager 10.1.4.3.0 Frequently Asked Questions June 2009 This FAQ addresses frequently asked questions relating specifically to Oracle Access Manager (OAM) 10.1.4.3.0

More information

Oracle Web Service Manager 11g Component Level Role Authorization (in SOA Suite) March, 2012

Oracle Web Service Manager 11g Component Level Role Authorization (in SOA Suite) March, 2012 Oracle Web Service Manager 11g Component Level Role Authorization (in SOA Suite) March, 2012 Step-by-Step Instruction Guide Author: Prakash Yamuna Senior Development Manager Oracle Corporation Table of

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

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

An Oracle White Paper October The New Oracle Enterprise Manager Database Control 11g Release 2 Now Managing Oracle Clusterware

An Oracle White Paper October The New Oracle Enterprise Manager Database Control 11g Release 2 Now Managing Oracle Clusterware An Oracle White Paper October 2009 The New Oracle Enterprise Manager Database Control 11g Release 2 Now Managing Oracle Clusterware Introduction Oracle Enterprise Manager provides a single, integrated

More information

An Oracle White Paper Oct ADF Faces Layout Basics

An Oracle White Paper Oct ADF Faces Layout Basics An Oracle White Paper Oct 2013 ADF Faces Layout Basics Disclaimer The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated

More information

Tutorial on How to Publish an OCI Image Listing

Tutorial on How to Publish an OCI Image Listing Tutorial on How to Publish an OCI Image Listing Publish an OCI Image Listing F13637-01 JANUARY 2019 DISCLAIMER The following is intended to outline our general product direction. It is intended for information

More information

Oracle Database 10g Release 2 Database Vault - Restricting the DBA From Accessing Business Data

Oracle Database 10g Release 2 Database Vault - Restricting the DBA From Accessing Business Data Oracle Database 10g Release 2 Database Vault - Restricting the DBA From Accessing Business Data An Oracle White Paper August 2006 Oracle Database Vault Overview Oracle Database Vault enables you to Restrict

More information

Technical Upgrade Guidance SEA->SIA migration

Technical Upgrade Guidance SEA->SIA migration Technical Upgrade Guidance SEA->SIA migration Oracle Siebel Customer Relationship Management Applications Siebel Industry-Driven CRM November 2011 This document is intended to outline our general product

More information

Improve Data Integration with Changed Data Capture. An Oracle Data Integrator Technical Brief Updated December 2006

Improve Data Integration with Changed Data Capture. An Oracle Data Integrator Technical Brief Updated December 2006 Improve Data Integration with Changed Data Capture An Oracle Data Integrator Technical Brief Updated December 2006 Improve Data Integration with Changed Data Capture: An Oracle Data Integrator Technical

More information

Installation Instructions: Oracle XML DB XFILES Demonstration. An Oracle White Paper: November 2011

Installation Instructions: Oracle XML DB XFILES Demonstration. An Oracle White Paper: November 2011 An Oracle White Paper: November 2011 Installation Instructions: Oracle XML DB XFILES Demonstration Table of Contents Installation Instructions: Oracle XML DB XFILES Demonstration... 1 Executive Overview...

More information

Advanced Global Intercompany Systems : Transaction Account Definition (TAD) In Release 12

Advanced Global Intercompany Systems : Transaction Account Definition (TAD) In Release 12 Advanced Global Intercompany Systems : Transaction Account Definition (TAD) In Release 12 An Oracle White Paper [May] [2011] TABLE OF CONTENTS Executive Overview... 3 Introduction... 3 Scope... 3 Overview...

More information

An Oracle White Paper July Oracle WebCenter Portal: Copying a Runtime-Created Skin to a Portlet Producer

An Oracle White Paper July Oracle WebCenter Portal: Copying a Runtime-Created Skin to a Portlet Producer An Oracle White Paper July 2011 Oracle WebCenter Portal: Copying a Runtime-Created Skin to a Portlet Producer Introduction This white paper describes a method for copying runtime-created skins from a WebCenter

More information

Data Capture Recommended Operating Environments

Data Capture Recommended Operating Environments Oracle Insurance Data Capture Recommended Operating Environments Release 5.2 October 2014 CONTENTS STATEMENT OF PURPOSE... 3 OIDC Hardware Configuration Example... 4 OIDC Workflow Example... 5 QUICK VIEW...

More information

Managing Metadata with Oracle Data Integrator. An Oracle Data Integrator Technical Brief Updated December 2006

Managing Metadata with Oracle Data Integrator. An Oracle Data Integrator Technical Brief Updated December 2006 Managing Metadata with Oracle Data Integrator An Oracle Data Integrator Technical Brief Updated December 2006 Managing Metadata with Oracle Data Integrator: An Oracle Data Integrator Technical Brief Metadata

More information

Veritas NetBackup and Oracle Cloud Infrastructure Object Storage ORACLE HOW TO GUIDE FEBRUARY 2018

Veritas NetBackup and Oracle Cloud Infrastructure Object Storage ORACLE HOW TO GUIDE FEBRUARY 2018 Veritas NetBackup and Oracle Cloud Infrastructure Object Storage ORACLE HOW TO GUIDE FEBRUARY 2018 0. Disclaimer The following is intended to outline our general product direction. It is intended for information

More information

Generate Invoice and Revenue for Labor Transactions Based on Rates Defined for Project and Task

Generate Invoice and Revenue for Labor Transactions Based on Rates Defined for Project and Task Generate Invoice and Revenue for Labor Transactions Based on Rates Defined for Project and Task O R A C L E P P M C L O U D S E R V I C E S S O L U T I O N O V E R V I E W D E C E M B E R 2017 Disclaimer

More information

Oracle FLEXCUBE Direct Banking Release Dashboard Widgets Transfer Payments User Manual. Part No. E

Oracle FLEXCUBE Direct Banking Release Dashboard Widgets Transfer Payments User Manual. Part No. E Oracle FLEXCUBE Direct Banking Release 12.0.0 Dashboard Widgets Transfer Payments User Manual Part No. E52305-01 Dashboard Widgets User Manual Table of Contents 1. Transaction Host Integration Matrix...

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

Creating Custom Project Administrator Role to Review Project Performance and Analyze KPI Categories

Creating Custom Project Administrator Role to Review Project Performance and Analyze KPI Categories Creating Custom Project Administrator Role to Review Project Performance and Analyze KPI Categories Worked Example ORACLE PPM CLOUD SERVICES SOLUTION OVERVIEW MAY 2018 Disclaimer The following is intended

More information

Oracle Enterprise Data Quality New Features Overview

Oracle Enterprise Data Quality New Features Overview Oracle Enterprise Data Quality 12.2.1.1 New Features Overview Integrated Profiling, New Data Services, New Processors O R A C L E W H I T E P A P E R J U L Y 2 0 1 6 Table of Contents Executive Overview

More information

Oracle Financial Services Regulatory Reporting for US Federal Reserve Lombard Risk Integration Pack

Oracle Financial Services Regulatory Reporting for US Federal Reserve Lombard Risk Integration Pack Oracle Financial Services Regulatory Reporting for US Federal Reserve Lombard Risk Integration Pack Installation Guide Release 8.0.4.1.0 July 2017 Executive Summary This document includes the necessary

More information

Case Study: Redeveloping an Oracle Forms application using Oracle JDeveloper and Oracle ADF

Case Study: Redeveloping an Oracle Forms application using Oracle JDeveloper and Oracle ADF Case Study: Redeveloping an Oracle Forms application using Oracle JDeveloper and Oracle ADF An Oracle White Paper August 2007 Case Study: Redeveloping an Oracle Forms Application using Oracle JDeveloper

More information

Configuring Oracle Business Intelligence Enterprise Edition to Support Teradata Database Query Banding

Configuring Oracle Business Intelligence Enterprise Edition to Support Teradata Database Query Banding A Joint Oracle Teradata White Paper September 2011 Configuring Oracle Business Intelligence Enterprise Edition to Support Teradata Database Query Banding Introduction... 1 Step 1. Query Band Configuration

More information

Achieving High Availability with Oracle Cloud Infrastructure Ravello Service O R A C L E W H I T E P A P E R J U N E

Achieving High Availability with Oracle Cloud Infrastructure Ravello Service O R A C L E W H I T E P A P E R J U N E Achieving High Availability with Oracle Cloud Infrastructure Ravello Service O R A C L E W H I T E P A P E R J U N E 2 0 1 8 Revision History The following revisions have been made to this white paper

More information

Oracle Fusion Configurator

Oracle Fusion Configurator Oracle Fusion Configurator Configurator Modeling Walk Through O R A C L E W H I T E P A P E R M A R C H 2 0 1 8 Table of Contents Introduction 1 Assumptions 1 Product Information Management Setup 2 Item

More information

Oracle FLEXCUBE Direct Banking Release Corporate Cash Management User Manual. Part No. E

Oracle FLEXCUBE Direct Banking Release Corporate Cash Management User Manual. Part No. E Oracle FLEXCUBE Direct Banking Release 12.0.0 Corporate Cash Management User Manual Part No. E52305-01 Corporate Cash Management User Manual Table of Contents 1. Transaction Host Integration Matrix...

More information

An Oracle White Paper. Released April 2013

An Oracle White Paper. Released April 2013 Performance and Scalability Benchmark: Siebel CRM Release 8.1.1.4 Industry Applications and Oracle 11.2.0.3 Database on Oracle's SPARC T5 Servers and Oracle Solaris An Oracle White Paper Released April

More information

Siebel CRM Applications on Oracle Ravello Cloud Service ORACLE WHITE PAPER AUGUST 2017

Siebel CRM Applications on Oracle Ravello Cloud Service ORACLE WHITE PAPER AUGUST 2017 Siebel CRM Applications on Oracle Ravello Cloud Service ORACLE WHITE PAPER AUGUST 2017 Oracle Ravello is an overlay cloud that enables enterprises to run their VMware and KVM applications with data-center-like

More information

Oracle Application Development Framework Overview

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

More information

Frequently Asked Questions Oracle Content Management Integration. An Oracle White Paper June 2007

Frequently Asked Questions Oracle Content Management Integration. An Oracle White Paper June 2007 Frequently Asked Questions Oracle Content Management Integration An Oracle White Paper June 2007 NOTE: The following is intended to outline our general product direction. It is intended for information

More information

Oracle Fusion General Ledger Hierarchies: Recommendations and Best Practices. An Oracle White Paper April, 2012

Oracle Fusion General Ledger Hierarchies: Recommendations and Best Practices. An Oracle White Paper April, 2012 Oracle Fusion General Ledger Hierarchies: Recommendations and Best Practices An Oracle White Paper April, 2012 Oracle Fusion General Ledger Hierarchies: Recommendations and Best Practices INTRODUCTION

More information

Oracle Virtual Directory 11g Oracle Enterprise Gateway Integration Guide

Oracle Virtual Directory 11g Oracle Enterprise Gateway Integration Guide An Oracle White Paper June 2011 Oracle Virtual Directory 11g Oracle Enterprise Gateway Integration Guide 1 / 25 Disclaimer The following is intended to outline our general product direction. It is intended

More information

An Oracle White Paper February Combining Siebel IP 2016 and native OPA 12.x Interviews

An Oracle White Paper February Combining Siebel IP 2016 and native OPA 12.x Interviews An Oracle White Paper February 2017 Combining Siebel IP 2016 and native OPA 12.x Interviews Purpose This whitepaper is a guide for Siebel customers that wish to take advantage of OPA 12.x functionality

More information

PeopleSoft Fluid Navigation Standards

PeopleSoft Fluid Navigation Standards PeopleSoft Fluid Navigation Standards Fluid User Experience ORACLE WHITE PAPER OCTOBER 2015 Disclaimer The following is intended to outline our general product direction. It is intended for information

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

ORACLE FUSION MIDDLEWARE MAPVIEWER

ORACLE FUSION MIDDLEWARE MAPVIEWER ORACLE FUSION MIDDLEWARE MAPVIEWER 10.1.3.3 MAPVIEWER KEY FEATURES Component of Fusion Middleware Integration with Oracle Spatial, Oracle Locator Support for two-dimensional vector geometries stored in

More information

Adding Mobile Capability to an Enterprise Application With Oracle Database Lite. An Oracle White Paper June 2007

Adding Mobile Capability to an Enterprise Application With Oracle Database Lite. An Oracle White Paper June 2007 Adding Mobile Capability to an Enterprise Application With Oracle Database Lite An Oracle White Paper June 2007 Adding Mobile Capability to an Enterprise Application With Oracle Database Lite Table of

More information

JD EDWARDS ENTERPRISEONE USER EXPERIENCE

JD EDWARDS ENTERPRISEONE USER EXPERIENCE JD EDWARDS ENTERPRISEONE USER EXPERIENCE KEY FEATURES AND BENEFITS Highly interactive interface that leverages Dynamic HTML provides immediate feedback to the user. EnterpriseOne Pages provide a single

More information

Oracle FLEXCUBE Direct Banking Release Dashboard Widgets Customer Services User Manual. Part No. E

Oracle FLEXCUBE Direct Banking Release Dashboard Widgets Customer Services User Manual. Part No. E Oracle FLEXCUBE Direct Banking Release 12.0.0 Dashboard Widgets Customer Services User Manual Part No. E52305-01 Dashboard Widgets User Manual Table of Contents 1. Transaction Host Integration Matrix...

More information

Data Capture Recommended Operating Environments

Data Capture Recommended Operating Environments Oracle Insurance Data Capture Recommended Operating Environments Release 4.5 February 2011 CONTENTS STATEMENT OF PURPOSE... 3 HARDWARE / SOFTWARE REQUIREMENTS... 4 Server Hardware... 4 Server Software...

More information

PeopleSoft Applications Portal and WorkCenter Pages

PeopleSoft Applications Portal and WorkCenter Pages An Oracle White Paper April, 2011 PeopleSoft Applications Portal and WorkCenter Pages Creating a Compelling User Experience Introduction... 3 Creating a Better User Experience... 4 User Experience Possibilities...

More information

Maximum Availability Architecture

Maximum Availability Architecture Best Practices for Oracle WebCenter Custom Portal Apps in an Enterprise Topology Oracle Maximum Availability Architecture White Paper September 2012 Maximum Availability Architecture Oracle Best Practices

More information

An Oracle White Paper April Oracle Application Express 5.0 Overview

An Oracle White Paper April Oracle Application Express 5.0 Overview An Oracle White Paper April 2015 Oracle Application Express 5.0 Overview Disclaimer The following is intended to outline our general product direction. It is intended for information purposes only, and

More information

Oracle Cloud Applications. Oracle Transactional Business Intelligence BI Catalog Folder Management. Release 11+

Oracle Cloud Applications. Oracle Transactional Business Intelligence BI Catalog Folder Management. Release 11+ Oracle Cloud Applications Oracle Transactional Business Intelligence BI Catalog Folder Management Release 11+ ORACLE WHITE PAPER November 2017 ORACLE WHITE PAPER November 2017 Table of Contents Introduction

More information

Correction Documents for Poland

Correction Documents for Poland ERP CLOUD Correction Documents for Poland Oracle Financials for EMEA Table of Contents Purpose of the Document... 2 Setup... 3 Security Privilege... 3 Receivables Transaction Sources... 4 Receivables Transaction

More information

An Oracle White Paper November Primavera Unifier Integration Overview: A Web Services Integration Approach

An Oracle White Paper November Primavera Unifier Integration Overview: A Web Services Integration Approach An Oracle White Paper November 2012 Primavera Unifier Integration Overview: A Web Services Integration Approach Introduction Oracle s Primavera Unifier offers an extensible interface platform based on

More information

Oracle Enterprise Performance Reporting Cloud. What s New in February 2017 Update (17.02)

Oracle Enterprise Performance Reporting Cloud. What s New in February 2017 Update (17.02) Oracle Enterprise Performance Reporting Cloud What s New in February 2017 Update (17.02) February 2017 TABLE OF CONTENTS REVISION HISTORY... 3 ORACLE ENTERPRISE PERFORMANCE REPORTING CLOUD, FEBRUARY UPDATE...

More information

Maximum Availability Architecture

Maximum Availability Architecture High Availability Patching for Fusion Middleware Oracle Maximum Availability Architecture White Paper September 2011 Maximum Availability Architecture Oracle Best Practices For High Availability Introduction...1

More information

April Understanding Federated Single Sign-On (SSO) Process

April Understanding Federated Single Sign-On (SSO) Process April 2013 Understanding Federated Single Sign-On (SSO) Process Understanding Federated Single Sign-On Process (SSO) Disclaimer The following is intended to outline our general product direction. It is

More information

Oracle WebLogic Portal O R A C L E S T A T EM EN T O F D I R E C T IO N F E B R U A R Y 2016

Oracle WebLogic Portal O R A C L E S T A T EM EN T O F D I R E C T IO N F E B R U A R Y 2016 Oracle WebLogic Portal O R A C L E S T A T EM EN T O F D I R E C T IO N F E B R U A R Y 2016 Disclaimer The following is intended to outline our general product direction. It is intended for information

More information

Performance and Scalability Benchmark: Siebel CRM Release 7 on HP-UX Servers and Oracle9i Database. An Oracle White Paper Released October 2003

Performance and Scalability Benchmark: Siebel CRM Release 7 on HP-UX Servers and Oracle9i Database. An Oracle White Paper Released October 2003 Performance and Scalability Benchmark: Siebel CRM Release 7 on HP-UX Servers and Oracle9i Database An Oracle White Paper Released October 2003 Performance and Scalability Benchmark: Siebel CRM Release

More information

Oracle Enterprise Performance Management Cloud

Oracle Enterprise Performance Management Cloud An Oracle White Paper January 2018 Oracle Enterprise Performance Management Cloud Extracting YTD Balances from FCCS using Data Management Disclaimer This document is provided for information purposes and

More information

Using the Oracle Business Intelligence Publisher Memory Guard Features. August 2013

Using the Oracle Business Intelligence Publisher Memory Guard Features. August 2013 Using the Oracle Business Intelligence Publisher Memory Guard Features August 2013 Contents What Are the Memory Guard Features?... 3 Specify a maximum data sized allowed for online processing... 3 Specify

More information

Oracle CIoud Infrastructure Load Balancing Connectivity with Ravello O R A C L E W H I T E P A P E R M A R C H

Oracle CIoud Infrastructure Load Balancing Connectivity with Ravello O R A C L E W H I T E P A P E R M A R C H Oracle CIoud Infrastructure Load Balancing Connectivity with Ravello O R A C L E W H I T E P A P E R M A R C H 2 0 1 8 Oracle Cloud Infrastructure Ravello Cloud Service Oracle Cloud Infrastructure Ravello

More information

SOA Cloud Service Automatic Service Migration

SOA Cloud Service Automatic Service Migration SOA Cloud Service Automatic Service Migration SOACS 12.2.1.2 O R A C L E W H I T E P A P E R A U G U S T 2 0 1 8 Table of Contents Introduction 1 Configuring Automatic Service Migration for a 12.2.1.2

More information

SETTING UP ORACLE ULTRA SEARCH FOR ORACLE PORTAL 10G (10.1.4)

SETTING UP ORACLE ULTRA SEARCH FOR ORACLE PORTAL 10G (10.1.4) Oracle Application Server Portal Technical Note SETTING UP ORACLE ULTRA SEARCH FOR ORACLE PORTAL 10G (10.1.4) November 2005 INTRODUCTION This Technical Note describes how to setup up and configure Oracle

More information

Revision History Overview Feature Summary Knowledge Management Policy Automation Platform Agent Browser Workspaces Agent Browser Desktop Automation

Revision History Overview Feature Summary Knowledge Management Policy Automation Platform Agent Browser Workspaces Agent Browser Desktop Automation TABLE OF CONTENTS Revision History 3 Overview 3 Feature Summary 3 Knowledge Management 5 Implement Sitemap XML in Web Collection Crawling 5 Searchable Product Tags 5 Policy Automation 5 Integration Cloud

More information

An Oracle White Paper Released April 2008

An Oracle White Paper Released April 2008 Performance and Scalability Benchmark: Siebel CRM Release 8.0 Industry Applications on HP BL685c Servers running Microsoft Windows 2003 Server Enterprise Edition and Oracle 10gR2 DB on HP rx6600 An Oracle

More information

VISUAL APPLICATION CREATION AND PUBLISHING FOR ANYONE

VISUAL APPLICATION CREATION AND PUBLISHING FOR ANYONE Oracle Autonomous Visual Builder Cloud Service provides an easy way to create and host web and mobile applications in a secure cloud environment. An intuitive visual development experience on top of a

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

Handling Memory Ordering in Multithreaded Applications with Oracle Solaris Studio 12 Update 2: Part 2, Memory Barriers and Memory Fences

Handling Memory Ordering in Multithreaded Applications with Oracle Solaris Studio 12 Update 2: Part 2, Memory Barriers and Memory Fences An Oracle White Paper September 2010 Handling Memory Ordering in Multithreaded Applications with Oracle Solaris Studio 12 Update 2: Part 2, Memory Introduction... 1 What Is Memory Ordering?... 2 More About

More information

Creating Your First WebCenter Application with Java Content Repository

Creating Your First WebCenter Application with Java Content Repository TechNote Oracle WebCenter Creating Your First WebCenter Application with Java Content Repository February 2008 This technical note briefly describes the specification for accessing content repositories

More information

JD Edwards EnterpriseOne Licensing

JD Edwards EnterpriseOne Licensing JD Edwards EnterpriseOne Licensing Disabling Client Licensing for Various Tools Releases O R A C L E W H I T E P A P E R O C T O B E R 2 0 1 5 Disclaimer The following is intended to outline our general

More information

Migrating VMs from VMware vsphere to Oracle Private Cloud Appliance O R A C L E W H I T E P A P E R O C T O B E R

Migrating VMs from VMware vsphere to Oracle Private Cloud Appliance O R A C L E W H I T E P A P E R O C T O B E R Migrating VMs from VMware vsphere to Oracle Private Cloud Appliance 2.3.1 O R A C L E W H I T E P A P E R O C T O B E R 2 0 1 7 Table of Contents Introduction 2 Environment 3 Install Coriolis VM on Oracle

More information

Oracle Best Practices for Managing Fusion Application: Discovery of Fusion Instance in Enterprise Manager Cloud Control 12c

Oracle Best Practices for Managing Fusion Application: Discovery of Fusion Instance in Enterprise Manager Cloud Control 12c An Oracle White Paper July, 2014 Oracle Best Practices for Managing Fusion Application: Discovery of Fusion Instance in Enterprise Manager Cloud Control 12c Executive Overview... 2 Applicable versions

More information

Achieving the Perfect Layout with ADF Faces RC

Achieving the Perfect Layout with ADF Faces RC Premise and Objective Achieving the Perfect Layout with ADF Faces RC Peter Koletzke Technical Director & Principal Instructor Every new technology uses a different strategy for UI layout Oracle Forms,

More information

An Oracle White Paper December, 3 rd Oracle Metadata Management v New Features Overview

An Oracle White Paper December, 3 rd Oracle Metadata Management v New Features Overview An Oracle White Paper December, 3 rd 2014 Oracle Metadata Management v12.1.3.0.1 Oracle Metadata Management version 12.1.3.0.1 - December, 3 rd 2014 Disclaimer This document is for informational purposes.

More information

JD Edwards EnterpriseOne User Experience

JD Edwards EnterpriseOne User Experience JD Edwards EnterpriseOne User Experience K E Y F E A T U R E S A N D B E N E F I T S Highly interactive interface that leverages Dynamic HTML and provides immediate feedback to the user. UX One role-based

More information

An Oracle Technical White Paper September Oracle VM Templates for PeopleSoft

An Oracle Technical White Paper September Oracle VM Templates for PeopleSoft An Oracle Technical White Paper September 2010 Oracle VM Templates for PeopleSoft 1 Disclaimer The following is intended to outline our general product direction. It is intended for information purposes

More information

Superior Product Variants Software for Multi-Attribute Product Companies. An Oracle White Paper April 2004

Superior Product Variants Software for Multi-Attribute Product Companies. An Oracle White Paper April 2004 Superior Product Variants Software for Multi-Attribute Product Companies An Oracle White Paper April 2004 Superior Product Variants Software for Multi- Attribute Product Companies Streamlining Management

More information

Product Release Notes

Product Release Notes Product Release Notes Release 33 October 2016 VERSION 20161021 Table of Contents Document Versioning 2 Overview 3 Known Issues 3 Usability 3 Drag and Drop Column Reordering is not Supported in some Admin

More information

Oracle WebCenter Suite Provides Web 2.0 Services for Enterprise Developers. An Oracle White Paper October 2006

Oracle WebCenter Suite Provides Web 2.0 Services for Enterprise Developers. An Oracle White Paper October 2006 Oracle WebCenter Suite Provides Web 2.0 Services for Enterprise Developers An Oracle White Paper October 2006 Oracle WebCenter Suite Provides Web 2.0 Services for Enterprise Developers Web 2.0, a phrase

More information

Product Release Notes

Product Release Notes Product Release Notes Release 32 June 2016 VERSION 20160624 Table of Contents Document Versioning 2 Overview 3 Known Issues 3 Usability 3 Action Bar Applets Do Not Collapse if the User Refines a List Within

More information

Establishing secure connections between Oracle Ravello and Oracle Database Cloud O R A C L E W H I T E P A P E R N O V E M E B E R

Establishing secure connections between Oracle Ravello and Oracle Database Cloud O R A C L E W H I T E P A P E R N O V E M E B E R Establishing secure connections between Oracle Ravello and Oracle Database Cloud O R A C L E W H I T E P A P E R N O V E M E B E R 2 0 1 7 Table of Contents APPLICATION ARCHITECTURE OVERVIEW 2 CONNECTING

More information

Loading User Update Requests Using HCM Data Loader

Loading User Update Requests Using HCM Data Loader Loading User Update Requests Using HCM Data Loader Oracle Fusion Human Capital Management 11g Release 11 (11.1.11) Update 8 O R A C L E W H I T E P A P E R N O V E M B E R 2 0 1 7 Table of Contents Loading

More information

Oracle Warehouse Builder 10g Release 2 What is an Expert?

Oracle Warehouse Builder 10g Release 2 What is an Expert? Oracle Warehouse Builder 10g Release 2 What is an Expert? May 2006 Note: This document is for informational purposes. It is not a commitment to deliver any material, code, or functionality, and should

More information

Establishing secure connectivity between Oracle Ravello and Oracle Cloud Infrastructure Database Cloud ORACLE WHITE PAPER DECEMBER 2017

Establishing secure connectivity between Oracle Ravello and Oracle Cloud Infrastructure Database Cloud ORACLE WHITE PAPER DECEMBER 2017 Establishing secure connectivity between Oracle Ravello and Oracle Cloud Infrastructure Database Cloud ORACLE WHITE PAPER DECEMBER 2017 Table of Contents APPLICATION ARCHITECTURE OVERVIEW 2 CONNECTING

More information

RAC Database on Oracle Ravello Cloud Service O R A C L E W H I T E P A P E R A U G U S T 2017

RAC Database on Oracle Ravello Cloud Service O R A C L E W H I T E P A P E R A U G U S T 2017 RAC Database on Oracle Ravello Cloud Service O R A C L E W H I T E P A P E R A U G U S T 2017 Oracle Ravello is an overlay cloud that enables enterprises to run their VMware and KVM applications with data-center-like

More information

Next-Generation SOA Infrastructure. An Oracle White Paper May 2007

Next-Generation SOA Infrastructure. An Oracle White Paper May 2007 Next-Generation SOA Infrastructure An Oracle White Paper May 2007 Next-Generation SOA Infrastructure INTRODUCTION Today, developers are faced with a bewildering array of technologies for developing Web

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 Application Server 10g Oracle XML Developer s Kit Frequently Asked Questions September, 2005

Oracle Application Server 10g Oracle XML Developer s Kit Frequently Asked Questions September, 2005 Oracle Application Server 10g Oracle XML Developer s Kit Frequently Asked Questions September, 2005 This FAQ addresses frequently asked questions relating to the XML features of Oracle XML Developer's

More information

Oracle Database Vault

Oracle Database Vault An Oracle White Paper July 2009 Oracle Database Vault Introduction... 3 Oracle Database Vault... 3 Oracle Database Vault and Regulations... 4 Oracle Database Vault Realms... 5 Oracle Database Vault Command

More information

October Oracle Application Express Statement of Direction

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

More information

Profitability Application Pack Installation Guide Release

Profitability Application Pack Installation Guide Release Profitability Application Pack Installation Guide Release 8.0.6.1.0 October 2018 Document Versioning Version Number Revision Date Changes Done 1.0 10 September 2018 Final version released 1.1 5 October

More information

Oracle Database 10g Workspace Manager Support for Oracle Spatial Topology Data Model. An Oracle White Paper May 2005

Oracle Database 10g Workspace Manager Support for Oracle Spatial Topology Data Model. An Oracle White Paper May 2005 Oracle Database 10g Workspace Manager Support for Oracle Spatial Topology Data Model An Oracle White Paper May 2005 Contents Executive Overview... 3 Introduction... 3 Versioning a Topology... 4 Adding

More information

[ Getting Started with Analyzer, Interactive Reports, and Dashboards ] ]

[ Getting Started with Analyzer, Interactive Reports, and Dashboards ] ] Version 5.3 [ Getting Started with Analyzer, Interactive Reports, and Dashboards ] ] https://help.pentaho.com/draft_content/version_5.3 1/30 Copyright Page This document supports Pentaho Business Analytics

More information

An Oracle White Paper March Introduction to Groovy Support in JDeveloper and Oracle ADF 11g

An Oracle White Paper March Introduction to Groovy Support in JDeveloper and Oracle ADF 11g An Oracle White Paper March 2009 Introduction to Groovy Support in JDeveloper and Oracle ADF 11g Oracle White Paper Introduction to Groovy support in JDeveloper and Oracle ADF 11g Introduction... 2 Introduction

More information

Automatic Receipts Reversal Processing

Automatic Receipts Reversal Processing ERP CLOUD Automatic Receipts Reversal Processing Oracle Receivables Table of Contents 1. Purpose of the document... 2 2. Assumptions and Prerequisites... 2 3. Feature Specific Setup... 3 Receivables Lookups...

More information

Oracle Enterprise Performance Reporting Cloud

Oracle Enterprise Performance Reporting Cloud Oracle Enterprise Performance Reporting Cloud September Update (16.09) Release Content Document August 2016 TABLE OF CONTENTS REVISION HISTORY... 3 ORACLE ENTERPRISE PERFORMANCE REPORTING CLOUD, SEPTEMBER

More information

Partitioning in Oracle Database 10g Release 2. An Oracle White Paper May 2005

Partitioning in Oracle Database 10g Release 2. An Oracle White Paper May 2005 Partitioning in Oracle Database 10g Release 2 An Oracle White Paper May 2005 Oracle Partitioning EXECUTIVE OVERVIEW Oracle Partitioning will enhance the manageability, performance, and availability of

More information

Cover Page. Oracle Report Parser System Administration Guide 10g Release 3 ( ) March 2007

Cover Page. Oracle Report Parser System Administration Guide 10g Release 3 ( ) March 2007 Cover Page Oracle Report Parser System Administration Guide 10g Release 3 (10.1.3.3.0) March 2007 Oracle Report Parser System Administration Guide, 10g Release 3 (10.1.3.3.0) Copyright 2007, Oracle. All

More information

Contract Information Management System (CIMS) Technical System Architecture

Contract Information Management System (CIMS) Technical System Architecture Technical System REVISION HISTORY REVISION NUMBER ISSUE DATE PRIMARY AUTHOR(S) NOTES 1.0 2/2015 Cheryl Kelmar Software: Kami Phengphet Engineer: Pornpat Nikamanon Architect: Jim Zhou Creation of CIMS document.

More information