Create, Deploy and Consume an ADF Task Flow with ADF Business Components inside

 

I have discussed ADF Task Flows before in raving terms and with some simple example to prove my point. To be honest, I have never before really digged deep in any article into the use case of creating a bounded task flow that has ADF Business Components inside, deploying it to an ADF Library and reusing that Task Flow from that library in a completely different ADF application. That may not even have Business Components itself. Now is the time to remedy that omission. And also demonstrate how the consumed task flow – originating from somewhere in the Resource Catalog – can be integrated and synchronized with the consuming page.

It is not very difficult, but some steps must be observed to wire it together neatly.

Our objective in this article:

* Create a bounded task flow EmployeesList that uses ADF Business Components (in this particular case to display data from a database table called EMP, you may have hear it mention before)
* Deploy the task flow to an ADF Library to make it reusable in other ADF applications
* Create a new ADF Application in which the task flow EmployeesList  is reused.
 

The steps we go through to accomplish this:

1. Create the Bounded Task Flow

2. Deploy the Bounded Task Flow to an ADF Library

3. Add the ADF Library to the Resource Catalog and then to the consuming application

4. Add the Task Flow to a page and wire it into it.

1. Create the Bounded Task Flow

– create Fusion Application ListEmployeesTaskFlow
– create IDE Connection ScottLocal to the Scott database schema; add connection to application
– option New Gallery: Business Components from Tables; create Entity Object Employee, View Object EmployeesView, Application Module EmployeeService

on hindsight: make sure that you make your default package unique to prevent collisions applications that will be consuming this project; have the eventual name of the taskflow we are creating part of the package name. If nothing else it means that you do not have to refactor the Model.jpx file later on!

– add a bind parameter bind_deptno (type number) to the ViewObject EmployeesView; add a View Criteria EmployeesInDepartmentViewCriteria which sets an equality condition for deptno and bind_deptno

on hindsight: using the ViewCriteria in the way I did, turned out not to work. Instead of using a VC for this, I would now suggest that you create a ViewObject called EmployeesInDepartment with a bind parameter and use that bind parameter in the where clause for the VO, instead of in a VC item.

– edit the ViewObject usage for EmployeesView in the Application Module’s data model to make use of this ViewCriteria instead of the regular view

on hindsight: this would not be necessary anymore

– in order to make this ADF BC project consumable in applications that also have ADF BC, we should not have the Model.jpx file in the default package model, as that is likely to be used by consuming applications or other consumed task flows. We should do something like these steps, largely outside of JDeveloper:

(suppose we are changing the model package from model to nl.amis.taskflows.hrm.model)

* move Model.jpx from /src/model to /src/nl/amis/taskflows/hrm/model

* edit file /src/nl/amis/taskflows/hrm/model/Model.jpx: set attribute PackageName of JboProject to nl.amis.taskflows.hrm.model

also set the value for Attr with name equals _jprName – as the relative location of Model.jpr has now changed:

    <Attr Name="_jprName" Value="../../../../../../Model.jpr"/>
 

* open file(s) common/bc4j.xcfg; change the attribute jbo.project in the AppModuleConfig elements to nl.amis.taskflows.hrm.model.Model (from model.Model)

* open file Model.jpr

set attribute v for value element with attribute n equal to "jbo.JpxName" to nl.amis.taskflows.hrm.model.Model

   <value n="jbo.JpxName" v="nl.amis.taskflows.hrm.model.Model"/>
 

similar for value element with attribute n equal to "defaultPackage"

   <value n="defaultPackage" v="nl.amis.taskflows.hrm.model"/>

any other occurences of model or model.Model.jpx should be modified in the same fashion.

on hindsight: if we had changed the value of the default package to something likely to be unique, we would not have had to go through this refactoring exercise

– create Bounded Task Flow listEmployeesTaskFlow
– define an input parameter for the task flow; it should be called departmentIdentifier, the type is oracle.jbo.domain.Number and the value (the EL expression for the location where to store the value of the input parameter) is #{pageFlowScope.departmentId}
– drag the operation ExecuteWithParams under from the EmployeesInDepartmentView collection on the data control palette, drop on the diagram for the listEmployeesTaskFlow; set the value for parameter bind_deptno to #{pageFlowScope.departmentId}; set the fixed outcome to done (or any other other fixed string); ensure that this method call activity ExecuteWithParams is the default activity for the task flow
– add a View Activity to the Task Flow; set its name to listEmployees. Create a Control Flow Case from the methodCall ExecuteWithParams to the View; set a wild card outcome (*)
– double click the ViewActivity to create and edit a JSFF (page fragment). Drag the EmployeesInDepartmentView collection from the Data Control palette to the page fragment and drop as ADF Table.

– save the view/DataBindings.cpx file as view/ListEmployeesTFDataBindings.cpx; in this file, change the value of the id attribute in the Application root element to ListEmployeesTFDataBindings.
– In the file META-INF/adfm.xml, change the path attribute in the DataBindingRegistry element from view/DataBindings.cpx to view/ListEmployeesTFDataBindings.cpx
– delete the file view/DataBindings.cpx

 

2. Deploy the Bounded Task Flow to an ADF Library

– from the project properties for the ViewController project, select the node Deployment. Click on New to create a new deployment profile. Select the option ADF Library to create a deployment profile fo that particular type. Set the name of the profile to adflibListEmployeesTaskFlow. Make sure that the Model project is selected on the Dependencies tab. On the Connections page, select the option Connection Name Only. Click OK to create the profile.

– from the context menu on the ViewController project node, select the option Deploy. From the submenu, select the option to deploy the project according to the ADF Library deployment descriptor.

– the adflibListEmployeesTaskFlow.jar is created in the deploy directory in the ViewController project. Copy this file to the central ADF Resource directory that is connected to from the Resource Catalog.
 


Note: if you do not currently have such a directory and connection, follow these steps:
* Create a central directory where reusable ADF resources could be gathered, for example and preferably on a shared file server. In my case, I create directory C:\projects\SharedADFResources. Copy the jar file with the reusable interpreter-service task flow to this directory.

* In JDeveloper, go to the Resource Palette. Create a new File System connection that refers to this directory (C:\projects\SharedADFResources in my case). The ADF Library adflibListEmployeesTaskFlow shows up. It can be expanded to reveal the task flows held within. We can add resources from this resource palette to any project that may need to reuse it.


– close the Application.
 

3. Add the ADF Library to the Resource Catalog and then to the consuming application

– create a new Fusion Application, for example called SomeAppWhichConsumesEmployeesListTF
– add the IDE Connection ScottLocal to the application. Note: this connection is required by the taskflow we are about to consume

– inspect the Resource Palette; see whether the ADF Library shows up and what is inside it

Create, Deploy and Consume an ADF Task Flow with ADF Business Components inside resourcepalette
– add the ADF Library adflibListEmployeesTaskFlow to the ViewController project; refresh the Data Control palette to ensure that the EmployeeServiceDataControl shows up; if your cursor hovers over this data control, you will see from the package name that it is indeed inherited from the ADF Library

4. Add the Task Flow to a page and wire it into it

– create a new JSF page, for example called SomePageWhichConsumesTaskFlowEmployeeList.jspx; set the default layout to a two column layout

Create, Deploy and Consume an ADF Task Flow with ADF Business Components inside createSomeAppWhichConsumesEmployeesListTF

– in the components palette you should now see a new option adflibListEmployeesTaskFlow.jar; under this option there are nodes Task Flows and Regions; the region listEmployeesTaskFlow shows up;

Create, Deploy and Consume an ADF Task Flow with ADF Business Components inside componentspalettewithtaskflow

drag this region to the page and drop it. A dialog pops up where you should select the option region. Next, you are asked for the value for the input parameter departmentIdentifier. Set the value to 20. Later on we will replace this with a more dynamic value.

The page is created, it consumes a task flow from an ADF Library. The application itself does not use ADF Business Components, but now through the library and the consumed task flow it does. Run the page.

You should see a page with a table of the employees in department 20. Not very exciting. No trace of the task flow. Its contribution to the page is merged into the page – which did not have any content of its own. So all we see for this page is the content of the task flow.

Create, Deploy and Consume an ADF Task Flow with ADF Business Components inside runningSomeAppWhichConsumesEmployeesListTF 

 

5. Synchronize the consumed task flow with the consuming page

Drag a selectOneRadio component to First Facet in the page. Create a list of select items for 10, 20, 30 and 40 – the values for deptno in table EMP. Set the label attribute to Select Department. Set the value attribute to #{deptSelector.deptno}. Click Finish. Next set the autoSubmit attribyte for the selectOneRadio to true – this will make it send any change in department selection immediately to the server.

In order to benefit from the department selection in the task flow, we have to change the way the input parameter in the region binding is configured. Instead of 20 – the hard coded value we set before. Click on the bindings tab on the bottom of the visual editor. Select the region binding labeled taskflow – listEmloyeesTaskFlow1. Set the value of input parameter departmentIdentifier to #{deptSelector.deptIdentifier}. Also set the Refresh attribute of the Region Binding to ifNeeded. This makes sure that the region is refreshed (and the consumed task flow reinitialized) whenever the value of the input parameter changes (that is: when the selectOneRadio sends a new department identifier value to #{deptSelector.deptno}.

The last thing we need to do is create the managed bean referred to as deptSelector. Create a class SomeContextManager. Add a single property, deptno, of type String and generate accessor methods for that property. Also create a method getDeptIdentifier() that returns an (oracle.jbo.domain.)Number. Create this method as:

    public Number getDeptIdentifier() {
        if (getDeptno() == null)
            return null;
        try {
            return new oracle.jbo.domain.Number(getDeptno());
        } catch (SQLException e) {
        }
    }

Now configure a session scope managed bean called deptSelector, based on this new class SomeContextManager.

  <managed-bean>
    <managed-bean-name>deptSelector</managed-bean-name>
    <managed-bean-class>nl.amis.somepackage.SomeContextManager</managed-bean-class>
    <managed-bean-scope>session</managed-bean-scope>
  </managed-bean>

Then it is time to run the page again.

Create, Deploy and Consume an ADF Task Flow with ADF Business Components inside errorSetBindVariable

 

on hindsight: the erroneous use of the ViewCriteria has introduced this problem. If we had stayed with the main VO and define the bind parameter on it, we would not have had this problem.

However, when I select a department number in the radio group, I run into an error that I cannot explain. I can only assume it must be a bug. It complains about setting a non-exist bind parameter. However, first of all, when the bind parameter was set based on a hard coded, fixed value, the exact same task flow did not give me this problem. Then, the ViewObject Usage in the Application Module’s Data Model is based on the ViewCriteria that has this very bind parameter. Furthermore, testing the Application Module did not give me any problems at all.

So it seems that when the input parameter of the task flow, that is used to set the bind parameter on the ViewObject Usage, is set based on a EL expression that refers to a bean property – and that bean property is non null – a problem occurs.

I have tried to work around the problem by specifying the same bind parameter directly on the ViewObject – instead of only on the View Criteria. And using it in the ViewObject’s where clause in an unobtrusive way (where (:bind_deptno is null OR :bind_deptno is NOT NULL)). Now the error goes away, but no data shows up either. I try to see the ADF BC detail logging in my console, but I am not getting anything at the moment, despite setting the java option "-Djbo.debugoutput=console" in the Run Configuration. Let’s see if something can be done. For example by creating an Application Module in the consuming Application’s Model Project.

I have created an Application Module HrmServiceModule with a single ViewObject that returns Departments. I have tested the Application Module with the debug written to the the console; that worked fine. Then I dropped the Departments View on my page (left facet) as a read only table for departments. Now when I run the page I am curious as to whether I will see departments (I should) and whether there will be detailed ADF BC logging in the console (there should be too). Then the question is whether the logging will tell about the ADF BC activities with regard to the Task Flow. We’ll see.

Create, Deploy and Consume an ADF Task Flow with ADF Business Components inside strangeresultsForConsumedTF

First of all, the Departments are there. Then there is also detailed logging, on Departments as well as on the Employee related activities inside the Task Flow and its Application Module and ViewObject.

Unfortunately, it seems to be doing the wrong thing and also getting the wrong results for that wrong thing: no employees are displayed, while the logging indicates:

[995] DCBindingContainer:view_SomePageWhichConsumesTaskFlowEmployeeListPageDef no validations performed
[996] *** Using bean introspection to lookup value :regionModel
[997] EmployeesInDepartmentView ViewRowSetImpl.doSetWhereClause(-1, bind_deptno, 20)
[998] EmployeesInDepartmentView ViewRowSetImpl.execute caused params to be "un"changed
[999] Column count: 11
[1000] EmployeesInDepartmentView ViewRowSetImpl.doSetWhereClause(-1, bind_deptno, 20)
[1001] ViewObject: EmployeesInDepartmentView close prepared statements...
[1002] ViewObject: EmployeesInDepartmentView Created new QUERY statement
[1003] EmployeesInDepartmentView>#q computed SQLStmtBufLen: 372, actual=342, storing=372
[1004] SELECT Employee.EMPNO,         Employee.ENAME,         Employee.JOB,         Employee.MGR,         Employee.HIREDATE,         Employee.SAL
,         Employee.COMM,         Employee.DEPTNO,         Employee.TAGS,         Employee.INDEX_COLUMN
FROM EMP Employee
WHERE (:bind_deptno is null OR :bind_deptno is NOT NULL) ORDER BY Employee.JOB DESC
[1005] Bind params for ViewObject: EmployeesInDepartmentView
[1006] Binding param "bind_deptno": 20

I do not get it. It is still executing the query of the ViewObject and not of the VO Usage we specifically added and edited in the Application Module’s Data Model. So trace of the ViewCriteria. So it is doing the wrong thing. However, if it really performs this query, it should get all 14 Employee records – instead of none at all as is currently the case.

on hindsight: ViewCriteria are not (yet) supposed like this. They are for LOVs and Search Forms, not for plain use as a view on top of a view. 

Resources

JDeveloper application for the Task Flow: ListEmployeesTaskFlow.zip .

JDeveloper application for the consuming page SomeAppWhichConsumesEmployeesListTF.zip.

ADF Library with reusable task flow (requires a connection called ScottLocal that connects to a schema that contains an EMP table) adflibListEmployeesTaskFlow.jar .

7 Comments

  1. HB February 1, 2012
  2. Business Plans September 8, 2011
  3. Rama Krishna October 22, 2009
  4. Rama Krishna October 20, 2009
  5. Prashanth July 21, 2009
  6. Lucas Jellema July 8, 2009
  7. Edwin Biemond July 6, 2009