SQL for a typical ViewObject may look like as shown below,
SELECT ROW_NUMBER() OVER(ORDER BY Employees.FIRST_NAME)AS ROW_NUMBER , Employees.EMPLOYEE_ID,
Employees.FIRST_NAME,
Employees.LAST_NAME,
Employees.EMAIL,
Employees.PHONE_NUMBER
FROM EMPLOYEES Employees
You can download the sample workspace from here.
[Runs with Oracle JDeveloper 11g R1 PS2 + HR Schema]
2 comments:
Hi,
You can also use the table's varStatus context as described in Fusion development guide book.
The table varStatus attribute defines the name for the table context variable that exists for the
time the table is rendered.
Here are the steps
1. Add a column in a table with output text.
2. set outputText value to #{vs.index+1}
Baig,
http://baigsorcl.blogspot.com/
thanks Baig, Suggestion sounds good(even better) for tableUI display. However, I'm not sure whether this help for 'Paginated' Form UI.
Post a Comment