1) View objects access all the SQL QUERIES2) All the view objects naming convention end with VOExample : EmployeeVO
3) When u create the view objects oaf will generate 2 files mandatory and one file is optionalExample : EmployeeVO.xml (Mandatory) – query columns will convert into attributes, attribute Data types, attribute precision
Select * from emp;Method 1: Vo.setwhereclause(empid);
Method 2: Vo.setwhereclause(deptid);
EmployeeVORowimpl.java(optional) – to process multiple rowsPage1 -- emp full data
Page2—filter the emp data by emp id
Page3 – filter the emp data by dept id