How to create fixed list in ADF
1- create a read only view object based on a query
example:
SELECT 'Reject' DESCRIPTION
,'BCK' CODEFROM DUAL
UNION ALL
SELECT 'Accept' DESCRIPTION
,'GM' CODE
FROM DUAL
2- in the base view object (your main view object that you want to add the fixed list) add a new Transient attribute for example "Manager_descision"
3- Create view accessor in the main view abject that referes to the readonly query VO
4- associat a LOV to your Transient attribute that is based on your view accessor
5- in your page drag and drop the transient attribute from the data control to the page as selectOneChoceList
6- save and run the page
Comments