Book Image

Oracle BPM Suite 11g Developer's cookbook

By : Vivek Acharya
Book Image

Oracle BPM Suite 11g Developer's cookbook

By: Vivek Acharya

Overview of this book

Oracle Business Process Management Suite is a complete set of tools for creating, executing, and optimizing business processes.Oracle BPM Suite 11g offers the flexibility that business demands, hand-in-hand with the power IT requires. The result is an agile platform that brings together your existing applications, enabling you to react quickly to new business requirements.With this cookbook we will develop rich, interactive business processes using the Oracle Business Process Management suite.With Oracle BPM Suite 11g Developer's Cookbook, a common process model based on BPMN is presented to the specific role assigned to readers in each chapter. Explore Oracle BPM 11g with Modelling, Implementation, Simulation, Deployment, Exception Management, BPM and SOA in Concert, Advanced Rules and Human tasks, End User Interaction and Run-time.Oracle BPM Suite 11g Developer's Cookbook will help readers learn BPM 11g through a Real World Sample Process.This book is divided into four sections: the first section, Modeling, lays the foundation and demonstrates how to implement the Modeling of Business processes for a Use Case of a Fictitious Organization which needs BPM to be implemented at their site (with data objects and information handling). In the second section, Implementation, we learn about Process Implementation, Human Interaction, Business Rules, and much more. In the third section, Measuring, we learn about Post Process Development, Performance Analysis and Simulation Models. In the last section, Deployment, Migration and Run-Time, we learn deployment and migration, and Post Deployment Run-Time.
Table of Contents (20 chapters)
Oracle BPM Suite 11g Developer's Cookbook
Credits
About the Author
Acknowledgement
About the Reviewers
www.PacktPub.com
Preface
Oracle BPM—Application Development Lifecycle

Implementing routers


Router activities are used to declaratively route control to activities, based on logic specified in an EL expression. They are used to branch to multiple control flows leading from it, to different activities.

Each router case contains the elements Expression and Outcome. They are used to choose the activity to which control is next routed:

  • Expression: This is an EL expression evaluating to either true or false. The first expression that evaluates to true is used to determine the corresponding outcome.

  • Outcome: This is a value returned by the router activity if the EL expression evaluates to true.

How to do it...

In this section, you will cover how to implement declarative route control, as follows:

  1. 1. In JDeveloper, go to EnterQuoteDetailsUI project | Web Content | Page Flows and click on EnterQuoteDetails_TaskFlow.xml.

  2. 2. Go to Component Palette | ADF Task Flow | Components and drag-and-drop the activity Router on the designer. Name it RouteEnterQuote.

  3. 3. You can find...