Before You Begin
This 40-minute OBE (Oracle by Example) shows you how to create Business Views in the Web Object Management Workbench (Web OMW).
In this OBE, you will:
- Create a project.
- Add a Business View Object to the project.
- Create a Table Join.
- Create a Table Union.
Background
A business view is a selection of data items from one or more tables. JD Edwards EnterpriseOne uses the business view that you create to generate the appropriate SQL statements that are necessary to retrieve data from the database. Business analysts use Business Views to define custom data sets that represent the operations of their business.
Starting with Tools Release 9.2.8, you can create Business Views in the Web Object Management Workbench by using the Business View Design Aid.
Scenario
In this OBE, let us consider a scenario in which you are a Business analyst who needs to create two Business Views, with one containing a Table Join and the other containing a Table Union.
Prerequisites
To perform the steps in this OBE, you must have:
- Installed JD Edwards EnterpriseOne Applications Release 9.2 with Tools Release 9.2.8 or later.
Create
a Project
In this section, you will create a project in the Web Object Management Workbech.
- Open a web browser and sign in to EnterpriseOne.
- Navigate to Object Management Workbench – Web (P98220W) from the Fast Path.
- In the Object Management Workbench – Web form, click Add to add the OMW project.
- In the Create EnterpriseOne Object form, from the General Object drop-down list, select OMW Project. Click OK.
- In the Project Revisions form, complete the following fields:
- Project ID = Enter the project name, for example,
PBVPROJECT
. - Description = Enter a description for the project,
for example,
Demo BV Project 1
. - Type =
01
- Severity =
04
- Product System Code =
55
- Release =
E920
- In the Object Management Workbench – Web form, select the project you created. From the Row menu, select Advance Project.
- Enter
21
in the Status field of the Confirm Project Status Change window. Click OK. - Click OK.



Add a
Business View Object
In this section, you will add Business View object to the project you created.
- In the Object Management Workbench – Web form, select the project you created in the previous task and then click Add.
- In the Create EnterpriseOne Object form, from the General Object drop-down list, select Business View. Click OK.
- In the Add Object form, complete the following fields:
- Object Name = Enter the object name, for example,
PBVDEMO1
- Description = Enter a description for the object,
for example,
Demo BV Object 1
- Product Code =
55
- Product System Code =
55
- Click OK. The newly created Business View object is displayed in the Project Objects tab.



Create
a Table Join
In this section, you will understand how to create a Business View with a Table Join.
- In the the Object Management Workbench – Web form, select the project you created, and from the Project Objects tab select the Business View object you created in the previous task and then select Design from the More Row Actions drop-down menu. Alternatively, click the Object Name link. The Business View Design form is in the Join Mode by default, but you can change to Union Mode or Union All Mode by selecting them from the Table/Column Selection.
- In the Available Tables pane, use the query by
example (QBE) line to search for an appropriate table.
For this OBE, search for tables starting with the Table
Name:
F2*
. - Click the arrow located in the Select Table field of the table row to select a Table. You can select one or more tables, the table you select will appear in the Selected Table pane.
- If more than one table is selected, click the primary option for the appropriate table to designate it as the primary table. If the business view contains multiple tables, the system automatically designates the first table that is added to the Selected Table pane as the primary table. A green dot appears in the Primary field of the table row. If a business view contains only one table, that table is the primary table by default.
- To delete a table from a business view, select the table and click Delete in the Selected Table pane.
- In the Selected Columns pane, select the data items to include in the business view. You can click Select All to select all the data items in the pane.
- Click the Add row button in the Table Joins pane, a table join is added.
- Select a table from the Left Table drop-down list and select a table from the Right Table drop-down list. The Left Table drop-down and Right Table drop-down list contains the list of tables selected from Selected Tables pane.
- Select an appropriate join type from the Join Type
drop-down menu.
Simple
is the default join type. - To delete a table join, click Delete in the Table Joins pane.
- Click Add in the Column Join form, a column join is added.
- Select a column from the Left Table tab, the column is added in the Left Column field of the join.
- Select a column from the Right Table tab, the column is added in the Right Column field of the join.
- Select an appropriate operator from the Join Operator
drop-down menu.
Equal
is the default join operator. - To delete a column join, click Delete in the Column Joins pane. If you add more data items from the Selected Columns pane to the Left Table and Right Table tab, click Refresh to save the changes.
- Click OK to save your changes.












Create
a Table Union
Before you follow the steps in this section, create a second Business View object by following the steps in section 2 of this OBE.
- From the Table/Column Selection, select either Union Mode or Union All Mode. In this OBE, Union Mode is selected.
- Click Yes in the Business View Design Aid: Union/Union All Mode window.
- In the Available Tables pane, use the query by
example (QBE) line to search for an appropriate table.
For this OBE, search for tables starting with the Table
Name:
F2*
. - Select the tables for which you want to create a table union. You can add up to 3 tables for a table union.
- Select the data items you want from the primary table. You can’t choose data items from the other tables. If you select Only Selected Columns, only the selected data items are displayed. You can use the Select All to select all the data items from the primary table.
- Click OK to save your changes.


