Getting started with ADF 11g

Size: px
Start display at page:

Download "Getting started with ADF 11g"

Transcription

1 Getting started with ADF 11g 17 th of November 2008 AMIS Luc & Lucas Getting Started with ADF 11g

2 16.30 Intro JDeveloper 11g & ADF 11g Thema 1 - RichFaces Componenten Thema 2 - Reusability (task flows, templates) opgave thema 1 en/of Diner Thema 3 - Declarative & Model Driven Thema 4 - Data Visualization Components (rich graphs, maps, pivot table) Opgave thema 3 en/of thema Einde en borrel Agenda

3 JDeveloper Oracle s strategic IDE XML Web (HTML, CSS, JavaScript) Database UML Java J(2)EE TopLink/EclipseLink ADF With FMW 11gR1 SOA WebCenter Oracle Data Integrator Application Life Cycle Management BPM? CEP?

4 Application Development Framework JDeveloper 11g/ADF 11g production Release October 8 th, 2008 Browser Support: FF2, FF3, IE 7, Safari 3 Chrome and IE 8 being tested Best performance on Safari, FF3 comes second WebLogic 10.3 integrated Application Server Themes for ADF 11g

5 Dogfood

6 Requirements JDeveloper 11g/ADF 11g Requirements from internal development teams Easier entry, less steep learning curve Higher productivity (for not all J(2)EE hot shot developers many with 4GL/Forms background) Maintainability for enterprise level applications Team Collaboration Rich, Web 2.0 User Experience Customizable per industry and organization Enterprise 2.0 (Collaboration) and SOA integration Compliant with industry standards such as J(2)EE

7 JDeveloper 11g/ADF 11g (even more) Declarative (4GL style) development Lot of functionality can be Model driven: Complex Search Forms, List of Values, Validations, (default) UI properties 95% no-code development Visual Editor, Wizard and Property palette driven High level of reusability Page templates, Declarative Components, Task Flows & Regions, ADF Libraries, Model based specifications MDS (Meta Data Store) for design-time and run-time customization Skinning for tailor made look & feel

8 ADF Faces RichClient 130+ AJAX enabled components Table, tree, shuttle, calendar Splitter, Accordion, Tabs, Detail Disclosure, Popup Data Visualization Tags Charts, Maps, Pivot Table, Gantt Chart, Hierarchy Viewer Active Data Source Server to Client Push Client Side actions Drag & drop, context menu, Popup, Show/Hide, validate

9 Rich Clients though not necessarily only for Rich Customers JDeveloper 11g (design time) is free ADF Rich Faces will be donated to Apache MyFaces Trinidad ADF Controller (task flows, templates, ) is probably also to be donated to Trinidad Oracle considers removing the run-time ADF license altogether

10 JDeveloper 11g the Bulldog release Aligned with Fusion Middleware 11gR1 (H1CY2009) Application Lifecycle Management Tasks Chat Compare Branch Resolve Much better SVN integration And other integrations as well

11 JDeveloper 11g the Bulldog release SOA Suite, ODI and WebCenter Design Time Included again: MDS (Meta Data Services) Active Data Source Hierarchy Viewer ADF Desktop Integration ADF Mobile Essbase Data Control (Hyperion) ADF to APEX Migrator

12 ADF 11g Themes for Today RichFaces components Web 2.0 out of the box Reusability through Page Templates and Task Flows Achieving reuse and common application wide look & feel Declarative and Model Driven development How ADF BC level definitions drive the UI Data Visualization Tags Library of integrated Charts, Gauges, Pivot Tables and Maps

13 Agenda Intro JDeveloper 11g & ADF 11g Theme 1 - RichFaces Components Thema 2 - Reusability (task flows, templates) Hands-on Theme 1 & 2 Dinner Theme 3 - Declarative & Model Driven Theme 4 - Data Visualization Components Hands-on Theme 3 & 4 Drinks

14 Agenda Intro JDeveloper 11g & ADF 11g Theme 1 - RichFaces Components Thema 2 - Reusability (task flows, templates) Hands-on Theme 1 & 2 Dinner Theme 3 - Declarative & Model Driven Theme 4 - Data Visualization Components Hands-on Theme 3 & 4 Drinks

15 Page Templates Specify the layout structure (of groups) of pages For example: top bar, side bar, footer Predefine placeholders for pages to inject their contents Page can be based on template It will provide the content for the placeholders (seen as facets) It can pass parameters to the template for example for the title of the page or the page bread crumb trail

16 Page + PageTemplate produce Result Page MyTitle Page Template <value> MyTitle

17 Page + PageTemplate produce Result Page TableView Page Template <value> TableView

18 Page + PageTemplate produce Result Page TableView Page Template <value> TableView

19 Changing a single template TableView TableView TableView Page Template <value> MyTitle MyTitle MyTitle

20 Create a Page Template Embed one or more facetref elements for the holes to be filled by the pages based on the template Steps Publish the template API the input parameters it supports Create pages based on the template In these pages, provide content for the facets exposed by the template Provide values for input parameters supported by template At any point in time: change the template (reusing same facetrefs and parameters) change the facet contents in any page change template ref in a page (to template with same facets) Can be done dynamically

21 Under the covers in Page Template

22 Under the covers Page on template

23 Purpose of Page Templates Centrally specifying the overall structure and some of the look & feel for all or specific types of pages For detailed look & feel, use Skins Similar to Tiles (frequently used with Struts) or SiteMesh Can also be applied dynamically, depending on some context settings This allows a single page to be presented in different ways to different users or under different conditions Page Templates make maintenance of the overall layout structure much easier

24 Page Fragments Snippets of JSF code can be stored in separate files:.jsff For breaking up large, unwieldy pages For reusing those page fragments multiple times in the same page and/or in different pages Page Fragments do not have their own PageDefinition they use the BindingContainer of their host page To include a Page Fragment: <jsp:include page="/fragmentx.jsff"/> Note: using a switcher or a rendered expression on a container element you can dynamically determine whether to include the fragment or not

25 Bounded Task Flow Page Fragments are fairly dull things to reuse: basically copy/paste (include) of JSF fragments No parameter passing No logic inside or behind fragment No data binding associated with fragment No steps (flow) taken within the fragment Bounded Task Flows remedy all these limitations and more Reusable in any page as an embedded region

26 Introducing the Bounded Task Flow Stand alone module of potentially multiple activities Displaying a View Executing Application Logic (calling managed bean) Calling another Task Flow Handling navigation between activities (Router) Have their own private memory scope: pageflowscope Some facilities available at Task Flow level Transaction Management (even an autonomous transaction for the bounded task flow) Security Exception Handling Save Points (to restore to) aka Save for Later

27 Challenges addressed by Task Flows Larger than life faces-config files and diagrams Implementing the same or very similar functionality over and over again Having to add data bindings to the PageDef for a page embedding a (reusable) region with data dependencies Implementing before-page logic Organizing the work on very complex pages Organizing work on large, complex applications Reusing multi-page (multi-step) flows Publish parts of ADF Applications as Portlets or reusable boxes in WebCenter applications

28 Bounded Task Flow: employee-form Reusable bounded task flow Input Parameter employeekey stored in #{pageflowscope.empkey} employeekey MethodCall to Action Binding SetCurrentRowWithKey ( on Employee iterator) Using #{pageflowscope.empkey} View EmployeeForm shows current record in the Employee iterator

29 Consumer DeptEmp.jspx Using the employee-form Task Flow employeekey Bounded Task Flow employee-form

30 DeptEmp with embedded Task Flow

31 Steps to embed Task Flow Drag Task Flow to the embedding page Task Flow binding is added to Page Definition Wire up the input parameters Values to pass into parameters is specified in Page Definition Set refresh condition on Task Flow binding to ensure synchronization

32 Embedded Bounded TaskFlow in Popup Create popup empdetails with panelwindow Move the region inside the panelwindow Add showpopupbehavior to the table triggertype ContextMenu, refer to popup empdetails

33 Unbounded Task Flow There is another type of Task Flow: the Unbounded Type To be used instead of bounded task flow To use ADF Controller features not offered by bounded task flows, such as bookmarking view activities. When the task flow will not be called by another task flow. When the application has multiple points of entry When you want to bookmark more than one activity on the task flow. An unbounded task flow cannot declaratively specify parameters. contain a default activity (an activity designated as the first to run in the unbounded task flow) In order to take advantage of completely declarative ADF Controller transaction and reentry support, use a bounded rather than an unbounded task flow.

34 Agenda Intro JDeveloper 11g & ADF 11g Theme 1 - RichFaces Components Thema 2 - Reusability (task flows, templates) Hands-on Theme 1 & 2 Dinner Theme 3 - Declarative & Model Driven Theme 4 - Data Visualization Components Hands-on Theme 3 & 4 Drinks

35 Declarative and Model Driven Underlying assumptions: What is defined in the Model is easier reused throughout the application (and across applications) Compare Table Display Properties in Oracle Designer Specifying functionality in a declarative way is more productive than having to manually program every aspect And has a less steep learning curve than real programming does Consequences Many aspects of the View (web tier) can be specified in the Model (business tier) The ViewObject becomes exactly that: an object that describes the View rather than a data service offered to the View ADF BC is more equal than other business service technologies

36 Overview of new, declarative & model driven functionality Default values specified declaratively Rather than through an overridden Entity create() method Effective Date ViewObjects Like a VPD policy filtering on period Declarative View Criteria (multiple per ViewObject) Bind variables calculated dynamically, model side (Groovy) ViewObjects providing static data Like Managed Beans can, but with all benefits of ViewObjects Shared ApplicationModule for application wide (near-) static data ViewObject auto-refresh when database changes occur

37 Default Values for Employee Attributes

38 Calculating Attributes with Groovy Groovy Expressions can be used for the derivation of values of Calculated Attributes

39 Static ViewObject

40 Static ViewObject

41 Declarative Validation New validation rule types Collection rules: Aggregation over Child Accessors Validate against a dynamic (VO based) list of values Groovy Expressions for complex logic, dynamically evaluated Validation level Entity or Transaction (!) Only for KeyExist en MethodCall Conditional Execution (only fire when ) Triggering Attributes (only fire when change in ) Specify severity (warning or error) Specify messages Validate Transient Attributes

42 Using Groovy for Complex Validation

43 Using Groovy for Complex Validation Other aggregate operators: Count Max Min Avg Note: operator can act on expression like Sal!=0?Sal:0 + Comm!=0?Comm:0

44 Declarative List of Values Which ViewObject to select the allowable values from Which UI style of selection component: dropdown, radio, list, list of values Which attributes shown in the selection component Which searchable attribute in query form for LOV LOVs on Reference (lookup) Attribute (that is read-only!) Declarative Auto-Complete for inputtextlistofvalues and inputcomboboxlistofvalues Declarative cascading lists Dynamically switch UI style of selection component Selection Component supported in ADF BC Tester

45 Associate LOV with VO Attribute Create View Accessor to associate ViewObject with EntityObject or ViewObject

46 Associate LOV with VO Attribute Create List of Values for Attribute Go to the Attribute tab in the VO editor Click on the Add List of Values icon Select View Accessor Select the List Attribute to show

47 See the effect in the ADF BC Tester On the UI Hints Tab, specify the Display Style See the effect in the ADF BC Tester

48 Overcoming a repeating chore ADF BC 11g understands what you are trying to do when you create an LOV on a read-only lookup attribute

49 List of Values on Look Up Attribute Add Entity Usage of Dept to EmpView Add Lookup Attribute LkpDname Add View Accessor for DeptView to EmpView Add List of Values to LkpDname attribute Note: a read only attribute!

50 Defining List of Values on Lookup Att On Attribute tab for LkpDname in ViewObject EmpView Click on the Add List of Values icon Select Dname as List Attribute List Return Values is populated automatically: LkpDname Dname Deptno Deptno

51 List of Values on read only attribute

52 ViewCriteria Views on Views A ViewCriteria specifies a filter applied to a ViewObject This filter can contain fixed filter expressions and bind variable based expressions Bind Variables can have values derived from (Groovy) Expressions A ViewCriteria can be specified in a ViewAccessor Drive LOV Do List validation used to base a Query Form on

53 Create a ViewCriteria ViewCriteria is named query One or more Groups of Criteria Items Each links an attribute to an operator and a value (literal) or bind variable Can filter in memory

54 Model driven Query Form Model can specify (through ViewCriteria): Which search fields to display Which (hidden) criteria to apply Which operators to use for search fields Whether to auto-query Which saved searches the user can choose from To show Match All and Match Any toggle Whether a ViewCriteria is part of Basic or Advanced search Whether the user can specify custom operators

55 Specify Model based UI Hints to influence the Query Form look & feel

56 Create Query Form from ViewCriteria Create Query Form (& result table) by dragging ViewCriteria to the page Run the page to see the query form in action

57 Model Driven Query Advanced Mode User picked operators Add search items at run time (add) Saved Searches Basic/Advanced Mode toggle LOVs on Search Items Defaults for search items

58 Filter the Declarative List of Values We want List of Values on Employees for Mgr attribute Requirement to filter the list: The current employee should not be in the list (as you cannot be your own manager) Only employees in the same department qualify as manager Create ViewCriteria on EmpView Bind variables excludeempno and requireddeptno Create ViewAccessor to the View and that ViewCriteria from the View that will have the LOV The ViewAccessor also specifies values for the binds Create LOV for Mgr attribute, linked to ViewAccessor

59 Specify View Criteria on EmpView ViewCriteria on EmpView for Candidate Managers Not the empno In the deptno Two bind variables

60 Create View Accessor for EmpView

61 Refine ViewAccessor: link ViewCriteria Select the ViewCriteria to access Specify values for Bind Variables

62 LOV for Mgr Attribute in EmpView

63 List of Qualifying Managers The list on the Mgr attribute depends on Empno and Deptno context

64 Cascading Lists One List depends on another: selecting a value from one list filters the values in the other For example: Continent => Country, Car Make => Model Easy to implement: Country Attribute is linked to List of Values using Country ViewAccessor that takes the Continent Attribute as the value for bind variable bind_continentid (that filters CountriesView) Continent field has autosubmit= true Country field has partialtriggers= ContinentField 2. refresh 1. change

65 Agenda Intro JDeveloper 11g & ADF 11g Theme 1 - RichFaces Components Thema 2 - Reusability (task flows, templates) Hands-on Theme 1 & 2 Dinner Theme 3 - Declarative & Model Driven Theme 4 - Data Visualization Components Hands-on Theme 3 & 4 Drinks

66 Time for a drink

Oracle Fusion Middleware 11g: Build Applications with ADF I

Oracle Fusion Middleware 11g: Build Applications with ADF I Oracle University Contact Us: +966 1 1 2739 894 Oracle Fusion Middleware 11g: Build Applications with ADF I Duration: 5 Days What you will learn This course is aimed at developers who want to build Java

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

Oracle Fusion Middleware 11g: Build Applications with ADF I

Oracle Fusion Middleware 11g: Build Applications with ADF I Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 4108 4709 Oracle Fusion Middleware 11g: Build Applications with ADF I Duration: 5 Days What you will learn Java EE is a standard, robust,

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

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

Rich Web UI made simple Building Data Dashboards without Code

Rich Web UI made simple Building Data Dashboards without Code Rich Web UI made simple Building Data Dashboards without Code Dana Singleterry http://blogs.oracle.com/dana Product Manager Oracle JDeveloper and Oracle ADF 2 Copyright 2012, Oracle and/or its affiliates.

More information

Oracle ADF: The technology behind project fusion. Lynn Munsinger Principal Product Manager Application Development Tools Oracle Corporation

Oracle ADF: The technology behind project fusion. Lynn Munsinger Principal Product Manager Application Development Tools Oracle Corporation Oracle ADF: The technology behind project fusion Lynn Munsinger Principal Product Manager Application Development Tools Oracle Corporation Agenda Application Development Framework (ADF) Overview Goals

More information

Oracle Developer Day

Oracle Developer Day Oracle Developer Day Sponsored by: Session 2 Oracle Application Development Framework Speaker Speaker Title Page 1 1 Agenda Development Environment Expectations Challenges Oracle ADF Architecture Business

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. ORACLE PRODUCT LOGO Oracle ADF Programming Best Practices Frank Nimphius Oracle Application Development Tools Product Management 2 Copyright

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

<Insert Picture Here> Accelerated Java EE Development: The Oracle Way

<Insert Picture Here> Accelerated Java EE Development: The Oracle Way 1 1 Accelerated Java EE Development: The Oracle Way Dana Singleterry Principal Product Manager Oracle JDeveloper and Oracle ADF http://blogs.oracle.com/dana Warning demo contains

More information

<Insert Picture Here> Advanced ADF Faces. Frank Nimphius Principal Product Manager

<Insert Picture Here> Advanced ADF Faces. Frank Nimphius Principal Product Manager Advanced ADF Faces Frank Nimphius Principal Product Manager 1 Agenda "Must See" Introduction ADF Faces Table and Tree Active Data Services JavaScript Drag and Drop Declarative s Agenda "Must See" Introduction

More information

If you wish to make an improved product, you must already be engaged in making an inferior one.

If you wish to make an improved product, you must already be engaged in making an inferior one. Oracle JDeveloper 10g with ADF Faces and JHeadstart: Is it Oracle Forms Yet? Peter Koletzke Technical Director & Principal Instructor Survey Forms development 1-2 years? 3-9 years? More than 9 years? Designer

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

<Insert Picture Here> The Oracle Fusion Development Platform: Oracle JDeveloper and Oracle ADF Overview

<Insert Picture Here> The Oracle Fusion Development Platform: Oracle JDeveloper and Oracle ADF Overview 1 1 The Oracle Fusion Development Platform: Oracle JDeveloper and Oracle ADF Overview Dana Singleterry Principal Product Manager Oracle JDeveloper and Oracle ADF http://blogs.oracle.com/dana

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

Mastering Oracle ADF Task Flows. Frank Nimphius Principal Product Manager Oracle JDeveloper / ADF

Mastering Oracle ADF Task Flows. Frank Nimphius Principal Product Manager Oracle JDeveloper / ADF Mastering Oracle ADF Task Flows Frank Nimphius Principal Product Manager Oracle JDeveloper / ADF 1 ADF Controller Introduction Real Life Control Flow: How to get to the Opera? The Rules You Are Here Opera

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

AMIS on Fusion Middleware

AMIS on Fusion Middleware AMIS on Fusion Middleware Column for the ODTUG Technical Journal Q1-2010 This edition by Lucas Jellema (Oracle ACE Director and CTO of AMIS from Nieuwegein, The Netherlands) Follow the leader or is ADF

More information

Oracle ADF 11g: New Declarative Validation, List of Values, and Search Features. Steve Muench Consulting Product Manager Oracle ADF Development Team

Oracle ADF 11g: New Declarative Validation, List of Values, and Search Features. Steve Muench Consulting Product Manager Oracle ADF Development Team Oracle ADF 11g: New Declarative Validation, List of Values, and Search Features Steve Muench Consulting Product Manager Oracle ADF Development Team View Object Enhancements Named

More information

A Closer Look at XPages in IBM Lotus Domino Designer 8.5 Ray Chan Advisory I/T Specialist Lotus, IBM Software Group

A Closer Look at XPages in IBM Lotus Domino Designer 8.5 Ray Chan Advisory I/T Specialist Lotus, IBM Software Group A Closer Look at XPages in IBM Lotus Domino Designer 8.5 Ray Chan Advisory I/T Specialist Lotus, IBM Software Group 2008 IBM Corporation Agenda XPage overview From palette to properties: Controls, Ajax

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

Understanding Oracle ADF and its role in the Oracle Fusion Platform

Understanding Oracle ADF and its role in the Oracle Fusion Platform ORACLE PRODUCT LOGO Understanding Oracle ADF and its role in the Oracle Fusion Platform Dana Singleterry blogs.oracle.com/dana 2 Copyright Principal 2011, Oracle and/or its Product affiliates. All rights

More information

Oracle JDeveloper/Oracle ADF 11g Production Project Experience

Oracle JDeveloper/Oracle ADF 11g Production Project Experience Oracle JDeveloper/Oracle ADF 11g Production Project Experience Andrejus Baranovskis Independent Oracle Consultant Red Samurai Consulting Oracle ACE Director Outline Project Reference Sample Development

More information

IBM Rational Application Developer for WebSphere Software, Version 7.0

IBM Rational Application Developer for WebSphere Software, Version 7.0 Visual application development for J2EE, Web, Web services and portal applications IBM Rational Application Developer for WebSphere Software, Version 7.0 Enables installation of only the features you need

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Developing Applications with Oracle ADF Data Controls 12c (12.1.3) E41270-01 May 2014 Documentation for Oracle Application Development Framework (Oracle ADF) developers that describes

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

Chapter 1 GETTING STARTED. SYS-ED/ Computer Education Techniques, Inc.

Chapter 1 GETTING STARTED. SYS-ED/ Computer Education Techniques, Inc. Chapter 1 GETTING STARTED SYS-ED/ Computer Education Techniques, Inc. Objectives You will learn: The IDE: Integrated Development Environment. MVC: Model-View-Controller Architecture. BC4J: Business Components

More information

Oracle Developer Day

Oracle Developer Day Oracle Developer Day Sponsored by: Session 3 Familiar Techniques: Modeling and Frameworks Speaker Speaker Title Page 1 1 Agenda Forms as a Framework Mapping Forms to Oracle ADF Familiar Concepts Phases

More information

Java EE 6: Develop Web Applications with JSF

Java EE 6: Develop Web Applications with JSF Oracle University Contact Us: +966 1 1 2739 894 Java EE 6: Develop Web Applications with JSF Duration: 4 Days What you will learn JavaServer Faces technology, the server-side component framework designed

More information

Oracle Developer Day

Oracle Developer Day Oracle Developer Day Sponsored by: Session5 Focusing on the UI Speaker Speaker Title Page 1 1 Agenda Building the User Interface UI Development Page Flow A Focus on Faces Introducing Java Server Faces

More information

Developing Applications with Java EE 6 on WebLogic Server 12c

Developing Applications with Java EE 6 on WebLogic Server 12c Developing Applications with Java EE 6 on WebLogic Server 12c Duration: 5 Days What you will learn The Developing Applications with Java EE 6 on WebLogic Server 12c course teaches you the skills you need

More information

Oracle Fusion Developer Guide (ISBN: ) Preview Chapter 1. The Quick Lerner s Guide to Oracle Fusion Web Application Development PREVIEW

Oracle Fusion Developer Guide (ISBN: ) Preview Chapter 1. The Quick Lerner s Guide to Oracle Fusion Web Application Development PREVIEW PREVIEW Chapter 1 The Quick Learner s Guide to Oracle Fusion Web Application Development Please Note: Content may change without prior notification. 1 A data control is an implementation of the contract

More information

<Insert Picture Here> The Latest E-Business Suite R12.x OA Framework Rich User Interface Enhancements

<Insert Picture Here> The Latest E-Business Suite R12.x OA Framework Rich User Interface Enhancements 1 The Latest E-Business Suite R12.x OA Framework Rich User Interface Enhancements Padmaprabodh Ambale, Gustavo Jimenez Applications Technology Group The following is intended to outline

More information

ADF Code Corner. 90. Filtering ADF bound lists. Abstract: twitter.com/adfcodecorner

ADF Code Corner. 90. Filtering ADF bound lists. Abstract: twitter.com/adfcodecorner ADF Code Corner 90. Filtering ADF bound lists Abstract: Falling into the category of dependent lists, is the use case of reducing list entries based on previous user entries. The ADF JUCtrlListBinding

More information

Oracle Application Express 5.1

Oracle Application Express 5.1 Oracle Application Express 5.1 New Features [Name] [Title] December 2016 2 Agenda 1 2 3 4 5 6 7 Oracle Application Express Overview Interactive Grid Oracle JET Charts Universal Theme Productivity Improvements

More information

Quick Web Development using JDeveloper 10g

Quick Web Development using JDeveloper 10g Have you ever experienced doing something the long way and then learned about a new shortcut that saved you a lot of time and energy? I can remember this happening in chemistry, calculus and computer science

More information

ADF Code Corner How-to restrict the list of values retrieved by a model driven LOV. Abstract: twitter.com/adfcodecorner

ADF Code Corner How-to restrict the list of values retrieved by a model driven LOV. Abstract: twitter.com/adfcodecorner ADF Code Corner 044. How-to restrict the list of values retrieved by a model Abstract: A new feature of the Oracle ADF Business Components business layer in Oracle JDeveloper 11g is model driven List of

More information

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

Copyright 2014, Oracle and/or its affiliates. All rights reserved. 1 Introduction to the Oracle Mobile Development Platform Dana Singleterry Product Management Oracle Development Tools Global Installed Base: PCs vs Mobile Devices 3 Mobile Enterprise Challenges In Pursuit

More information

SAGE Computing Services. Trials & Tribulations of an Oracle Forms -> Apex Conversion

SAGE Computing Services. Trials & Tribulations of an Oracle Forms -> Apex Conversion SAGE Computing Services Customised Oracle Training Workshops and Consulting Trials & Tribulations of an Oracle Forms -> Apex Conversion A Hypothetical Case Study Scott Wesley Systems Consultant Today s

More information

BEAWebLogic. Portal. Overview

BEAWebLogic. Portal. Overview BEAWebLogic Portal Overview Version 10.2 Revised: February 2008 Contents About the BEA WebLogic Portal Documentation Introduction to WebLogic Portal Portal Concepts.........................................................2-2

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

ADF OAF Who Cares? You Do! Oracle Applications Framework / Application Development Framework - Which way do I go?

ADF OAF Who Cares? You Do! Oracle Applications Framework / Application Development Framework - Which way do I go? ADF OAF Who Cares? You Do! Oracle Applications Framework / Application Development Framework - Which way do I go? 2 Introductions Who am I and why am I here? Audience: Development Management OAF Developers

More information

ADF Code Corner How-to use the af:autosuggestbehavior component tag with ADF bound data sources. Abstract: twitter.

ADF Code Corner How-to use the af:autosuggestbehavior component tag with ADF bound data sources. Abstract: twitter. ADF Code Corner 062. How-to use the af:autosuggestbehavior component tag Abstract: The ADF Faces auto suggest behavior tag implements dynamic value suggest for input text fields, as many users know it

More information

Building Rich Enterprise JSF Applications with Oracle JHeadstart for ADF (11.1.1)

Building Rich Enterprise JSF Applications with Oracle JHeadstart for ADF (11.1.1) Building Rich Enterprise JSF Applications with Oracle JHeadstart for ADF (11.1.1) A step-by-step, end-to-end tutorial on how to be effective immediately with JEE application development using Oracle tools.

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Java EE Developer's Guide for Oracle Application Development Framework 11g Release 2 (11.1.2.4.0) E17272-05 March 2013 Documentation for Oracle Application Development Framework

More information

MAKING THE BUSINESS CASE MOVING ORACLE FORMS TO THE WEB

MAKING THE BUSINESS CASE MOVING ORACLE FORMS TO THE WEB MAKING THE BUSINESS CASE MOVING ORACLE FORMS TO THE WEB About Us Agenda Strategic Direction of Oracle Forms Applications Migration Options Migrating to 10g and 11g Migrating to J2EE and ADF Migrating to

More information

The 60-Minute Guide to Development Tools for IBM Lotus Domino, IBM WebSphere Portal, and IBM Workplace Applications

The 60-Minute Guide to Development Tools for IBM Lotus Domino, IBM WebSphere Portal, and IBM Workplace Applications The 60-Minute Guide to Development Tools for IBM Lotus Domino, IBM WebSphere Portal, and IBM Workplace Stuart Duguid Portal & Workplace Specialist TechWorks, IBM Asia-Pacific Overview / Scope The aim of

More information

Oracle BPM 11g: Implement the Process Model

Oracle BPM 11g: Implement the Process Model Oracle BPM 11g: Implement the Process Model Duration: 5 Days What you will learn This Oracle BPM 11g: Implement the Process Model training is ideal for process developers who want to learn how to implement

More information

Oracle WebCenter Interaction: Roadmap for BEA AquaLogic User Interaction. Ajay Gandhi Sr. Director of Product Management Enterprise 2.

Oracle WebCenter Interaction: Roadmap for BEA AquaLogic User Interaction. Ajay Gandhi Sr. Director of Product Management Enterprise 2. Oracle WebCenter Interaction: Roadmap for BEA AquaLogic User Interaction Ajay Gandhi Sr. Director of Product Management Enterprise 2.0 and Portals 1 Agenda Enterprise 2.0 and Portal Product Strategy AquaLogic

More information

Mobile Application Development: Introducing ADF Mobile Native Client Framework

Mobile Application Development: Introducing ADF Mobile Native Client Framework Mobile Application Development: Introducing ADF Mobile Native Client Framework Denis Tyrell, Senior Director of Product Development, ADF/JDeveloper Joe Huang, Senior Principal Product Manager, ADF/JDeveloper

More information

ORACLE JHEADSTART 12C for ADF

ORACLE JHEADSTART 12C for ADF ORACLE JHEADSTART 12C for ADF RELEASE 12.1.3 TUTORIAL A step-by-step, end-to-end tutorial on how to be effective immediately with JEE application development using Oracle tools. OCTOBER 2015 JHeadstart

More information

PassGuide..1z0-554_81,Q&A

PassGuide..1z0-554_81,Q&A PassGuide..1z0-554_81,Q&A Number: 1z0-554 Passing Score: 800 Time Limit: 120 min File Version: 20.04 This VCE has a lot of questions where all answers are up-to-date. 95% Valid with some different wording

More information

ADF Code Corner How-to declaratively build a master-detail behavior with DVT components. Abstract: twitter.com/adfcodecorner

ADF Code Corner How-to declaratively build a master-detail behavior with DVT components. Abstract: twitter.com/adfcodecorner ADF Code Corner 057. How-to declaratively build a master-detail behavior with Abstract: A widely unknown feature in ADF bound ADF Faces DVT components is the ability to act as a master in a masterdetail

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

ADF Code Corner. Oracle JDeveloper OTN Harvest 02 / Abstract: twitter.com/adfcodecorner

ADF Code Corner. Oracle JDeveloper OTN Harvest 02 / Abstract: twitter.com/adfcodecorner ADF Code Corner Oracle JDeveloper OTN Harvest Abstract: The Oracle JDeveloper forum is in the Top 5 of the most active forums on the Oracle Technology Network (OTN). The number of questions and answers

More information

Oracle 1Z Oracle Application Development Framework 12c Essentials. Download Full Version :

Oracle 1Z Oracle Application Development Framework 12c Essentials. Download Full Version : Oracle 1Z0-419 Oracle Application Development Framework 12c Essentials Download Full Version : https://killexams.com/pass4sure/exam-detail/1z0-419 Answer: A, B QUESTION: 81 A backing bean for a page must

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

Rapid Application Development with APEX 5.0

Rapid Application Development with APEX 5.0 Rapid Application Development with APEX 5.0 Anthony Rayner Principal Member of Technical Staff Oracle Application Express Oracle UK The following is intended to outline Oracle s general product direction.

More information

ORACLE WCM 11G MASTER CLASS

ORACLE WCM 11G MASTER CLASS Copyright 2011 Redstone Content Solutions LLC Oracle WCM 11g Master Class Training Agenda Revised Monday, May 2nd, 2011 REDSTONE CONTENT SOLUTIONS PRESENTS ORACLE WCM 11G MASTER CLASS Audience Designers

More information

1z0-419.exam.53q.

1z0-419.exam.53q. 1z0-419.exam.53q Number: 1z0-419 Passing Score: 800 Time Limit: 120 min 1z0-419 Oracle Application Development Framework 12c Essentials Exam A QUESTION 1 Which three statements are true about the default

More information

1z0-554qa88. Number: Passing Score: 800 Time Limit: 120 min File Version: 1.0. Oracle 1z0-554

1z0-554qa88.   Number: Passing Score: 800 Time Limit: 120 min File Version: 1.0. Oracle 1z0-554 1z0-554qa88 Number: 000-000 Passing Score: 800 Time Limit: 120 min File Version: 1.0 http://www.gratisexam.com/ Oracle 1z0-554 Oracle Application Development Framework Essentials Exam A QUESTION 1 You

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

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

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

6/13/2012. Sneak Preview: Oracle JDeveloper 12c New Features. Frank Nimphius Senior Principal Product Manager Oracle Development Tools

6/13/2012. Sneak Preview: Oracle JDeveloper 12c New Features. Frank Nimphius Senior Principal Product Manager Oracle Development Tools 1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. 2 Copyright 2011, Oracle and/or its affiliates. All rights reserved. Sneak Preview: Oracle JDeveloper 12c New Features Frank Nimphius

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Java EE Developer's Guide for Oracle Application Development Framework 11g Release 1 (11.1.1.7.0) E16272-05 March 2013 Documentation for Oracle Application Development Framework

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 WebCenter Hands-On Practices. A Practical Introduction to Oracle WebCenter

Oracle WebCenter Hands-On Practices. A Practical Introduction to Oracle WebCenter Oracle WebCenter Hands-On Practices A Practical Introduction to Oracle WebCenter Table of Contents Before You Start... 3 Estimated timings for the practices... 3 Accessing the hands-on setup files... 3

More information

IBM DB2 Web Query for IBM i. Version 2 Release 2

IBM DB2 Web Query for IBM i. Version 2 Release 2 IBM DB2 Web Query for IBM i Version 2 Release 2 Active Technologies, EDA, EDA/SQL, FIDEL, FOCUS, Information Builders, the Information Builders logo, iway, iway Software, Parlay, PC/FOCUS, RStat, Table

More information

<Insert Picture Here> Oracle JHeadstart Forms2ADF - Overview

<Insert Picture Here> Oracle JHeadstart Forms2ADF - Overview Oracle JHeadstart Forms2ADF - Overview JHeadstart Forms2ADF Generator Generates ADF Business Components based on Forms Data Usages ADF BC Entity Objects created for used tables ADF

More information

ADF Code Corner How-to enforce LOV Query Filtering. Abstract: twitter.com/adfcodecorner

ADF Code Corner How-to enforce LOV Query Filtering. Abstract: twitter.com/adfcodecorner ADF Code Corner 107. How-to enforce LOV Query Filtering Abstract: A question on OTN was about how-to restrict queries in a LOV dialog to avoid unfiltered and expensive queries. For this at least one of

More information

1Z0-560 Oracle Unified Business Process Management Suite 11g Essentials

1Z0-560 Oracle Unified Business Process Management Suite 11g Essentials 1Z0-560 Oracle Unified Business Process Management Suite 11g Essentials Number: 1Z0-560 Passing Score: 650 Time Limit: 120 min File Version: 1.0 http://www.gratisexam.com/ 1Z0-560: Oracle Unified Business

More information

Building JavaServer Faces Applications

Building JavaServer Faces Applications IBM Software Group St. Louis Java User Group Tim Saunders ITS Rational Software tim.saunders@us.ibm.com 2005 IBM Corporation Agenda JSF Vision JSF Overview IBM Rational Application Developer v6.0 Build

More information

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

1 Copyright 2013, Oracle and/or its affiliates. All rights reserved. 1 Copyright 2013, Oracle and/or its affiliates. All rights reserved. Oracle Application Express 2 Copyright 2013, Oracle and/or its affiliates. All rights reserved. Fully supported no-cost feature of Oracle

More information

Implementing a Numerical Data Access Service

Implementing a Numerical Data Access Service Implementing a Numerical Data Access Service Andrew Cooke October 2008 Abstract This paper describes the implementation of a J2EE Web Server that presents numerical data, stored in a database, in various

More information

ADF Code Corner How-to launch a popup upon rendering of a page fragment in a region using JSF 2. Abstract: twitter.

ADF Code Corner How-to launch a popup upon rendering of a page fragment in a region using JSF 2. Abstract: twitter. ADF Code Corner 108. How-to launch a popup upon rendering of a page Abstract: A common requirement in Oracle ADF is to launch a popup dialog when a page fragment is rendered in a region. In JDeveloper

More information

Tools to Develop New Linux Applications

Tools to Develop New Linux Applications Tools to Develop New Linux Applications IBM Software Development Platform Tools for every member of the Development Team Supports best practices in Software Development Analyst Architect Developer Tester

More information

Chapter. An Introduction to Oracle JDeveloper and Oracle ADF

Chapter. An Introduction to Oracle JDeveloper and Oracle ADF / Blind folio: 9 Chapter 2 An Introduction to Oracle JDeveloper and Oracle ADF ch02.indd 9 7/30/10 2:05:20 PM 10 Quick Start Guide to Oracle Fusion Development A s outlined in the previous chapter, Oracle

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

Oracle Application Express 5 New Features

Oracle Application Express 5 New Features Oracle Application Express 5 New Features 20th HrOUG conference October 16, 2015 Vladislav Uvarov Software Development Manager Database Server Technologies Division Copyright 2015, Oracle and/or its affiliates.

More information

We didn t need dialogue. We had faces.

We didn t need dialogue. We had faces. ... and UIX Begat ADF Faces: How Rich is ADF Faces Rich Client? Peter Koletzke Technical Director & Principal Instructor From The Golden Age of Hollywood We didn t need dialogue. We had faces. Norma Desmond,

More information

<Insert Picture Here>

<Insert Picture Here> Oracle Forms Modernization with Oracle Application Express Marc Sewtz Software Development Manager Oracle Application Express Oracle USA Inc. 540 Madison Avenue,

More information

Oracle Exam 1z0-419 Oracle Application Development Framework 12c Essentials Version: 7.0 [ Total Questions: 87 ]

Oracle Exam 1z0-419 Oracle Application Development Framework 12c Essentials Version: 7.0 [ Total Questions: 87 ] s@lm@n Oracle Exam 1z0-419 Oracle Application Development Framework 12c Essentials Version: 7.0 [ Total Questions: 87 ] Oracle 1z0-419 : Practice Test Question No : 1 Which statement is false? (Choose

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

Financial. AngularJS. AngularJS.

Financial. AngularJS. AngularJS. Financial http://killexams.com/exam-detail/ Section 1: Sec One (1 to 50) Details:This section provides a huge collection of Angularjs Interview Questions with their answers hidden in a box to challenge

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

Financial. AngularJS. AngularJS. Download Full Version :

Financial. AngularJS. AngularJS. Download Full Version : Financial AngularJS AngularJS Download Full Version : https://killexams.com/pass4sure/exam-detail/angularjs Section 1: Sec One (1 to 50) Details:This section provides a huge collection of Angularjs Interview

More information

Whitepaper Measuring, Analyzing, Tuning, and Controlling the Performance of Oracle ADF Applications

Whitepaper Measuring, Analyzing, Tuning, and Controlling the Performance of Oracle ADF Applications Whitepaper Measuring, Analyzing, Tuning, and Controlling the Performance of Oracle ADF Applications Author Frank Houweling Function Principal Performance Consultant Contents Executive Overview... 3 Introduction...

More information

ADF On-Ramp: What You Need to Know to Use the ADF Fusion Technology Stack. What is ADF and Fusion? ADF core technologies. Required languages.

ADF On-Ramp: What You Need to Know to Use the ADF Fusion Technology Stack. What is ADF and Fusion? ADF core technologies. Required languages. On-Ramp: What You Need to Know to Use the Fusion Technology Stack Peter Koletzke Technical Director & Principal Instructor Survey Job responsibilities? DBA, developer Languages? PL/SQL Java Other Tools?

More information

Where Do We Go From Here? Why Many IT Staff are Living in the Past

Where Do We Go From Here? Why Many IT Staff are Living in the Past Where Do We Go From Here? Why Many IT Staff are Living in the Past SAGE Computing Services Customised Oracle Training Workshops and Consulting Chris Muir Senior Consultant Agenda Oracle technology latest

More information

Visual Web Next Design Concepts. Winston Prakash Feb 12, 2008

Visual Web Next Design Concepts. Winston Prakash Feb 12, 2008 Visual Web Next Design Concepts Winston Prakash Feb 12, 2008 Some Notations Used Page - A web page being designed such as HTML, JSP, JSF, PHP etc. Page definition Language (PDL) - Language that used to

More information

Fast Track Model Based Design and Development with Oracle9i Designer. An Oracle White Paper August 2002

Fast Track Model Based Design and Development with Oracle9i Designer. An Oracle White Paper August 2002 Fast Track Model Based Design and Development with Oracle9i Designer An Oracle White Paper August 2002 Fast Track Model Based Design and Development with Oracle9i Designer Executive Overivew... 3 Introduction...

More information

Kendo UI. Builder by Progress : What's New

Kendo UI. Builder by Progress : What's New Kendo UI Builder by Progress : What's New Copyright 2017 Telerik AD. All rights reserved. July 2017 Last updated with new content: Version 2.0 Updated: 2017/07/13 3 Copyright 4 Contents Table of Contents

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

Oracle ADF Faces Cookbook

Oracle ADF Faces Cookbook Oracle ADF Faces Cookbook Amr Gawish Chapter No. 2 "Getting Started with ADF Faces and JDeveloper" In this package, you will find: A Biography of the author of the book A preview chapter from the book,

More information

Standard Professional Premium

Standard Professional Premium Standard Professional Premium Company size:

More information

COURSE DETAILS & CURRICULUM

COURSE DETAILS & CURRICULUM COURSE DETAILS & CURRICULUM INTRODUCTION What is Oracle Forms? Oracle Form Builder Components Application Code Partitioning Exercise: Preparing to Work with Oracle Forms GETTING STARTED Creating an Oracle

More information

<Insert Picture Here> Oracle Application Framework (OAF): Architecture, Personalization, and Extensibility in Oracle E-Business Suite Release 12

<Insert Picture Here> Oracle Application Framework (OAF): Architecture, Personalization, and Extensibility in Oracle E-Business Suite Release 12 Oracle Application Framework (OAF): Architecture, Personalization, and Extensibility in Oracle E-Business Suite Release 12 Sara Woodhull Principal Product Analyst, Oracle Corporation

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