Use the View Object Wizard to create a view object called Product with the SQL query: select productid, name, descn from product where productid = ?
• Use the View Object Wizard again to create a view object called ProductItem with the SQL query: select itemid, listprice as listcost, unitcost, attr1 as product_attribute, a.productid, name, descn from item a, product b where a.productid = b.productid order by name • Use the View Attribute Editor to set the format mask property for the Listcost attribute to display as “Currency” with a mask of “$0000.00” • Use the View Link Wizard to create a view link called ItemsForProduct linking the master Product view with the detail ProductItem view based on appropriate key attributes specified declaratively • Use the Application Module Wizard to create an application module called CatalogWeb to be your MVC application object, and select the master/detail combination of the Product view and the ProductItem view to define the data model that the application object will support. • Write a product.jsp page using the in-place tag library assistance provided in the JDeveloper JSP editor to: • Use th