Calling a stored procedure from ADF and creating forms and tables .
I want to call stored procedure from ADF in 11g.I have got a sample from oracle
in the following link:
http://www.oracle.com/technology/sample_code/products/jdev/readmes/samples/storedprocedures/_starthere/public_html/readme.html
similar to that sample,I have created the Stored procedure in my database and then created the entity object and updated the doDML() method of the entityObjImpl.java files accordingly.Now I need to create a JSF page and view the record of the department table in a ADF table in the page.
I have tried by creating an entity object and VO and APPModule;given similar column names as reffered in the table and updated the entityImpl.java file ;data control pallete is created and i can see the Departments View object but its behaving like a VO created from EO from Department Table.No affect of ther code in entityImpl.java file.
plaese can u tell me the all the steps of creating an ADF form or table from Entity Object which is created by code in impl file of calling stored procedure.