Reputation: 313
I am thoroughly new to the Oracle ADF technology. I have dropped an entity view object from the Data Control Palette to a jspx page, and created an adf creation form from it. I am not understanding how the information input in the form will reflect in the database. Pls help.
PS: The new row is getting added in the adf read-only table which I have added on the same page
Upvotes: 0
Views: 3477
Reputation: 83
User When you drop a viewObject based on entityObject on page then you are able to perform DML operation on that To create new row drop createInsert operation from DataControl and make readOnly false for table inorder to inputValue or use a form then drop commit operation from DataControl on page . After entering records press commit button to save it in DB Data is validated through binding layer and committed to DB from model itlsef Check these blog for more information- http://se7so.blogspot.in/2014/02/sample-adf-crud-web-application.html http://andrejusb.blogspot.in/2009/11/crud-operations-in-jdeveloperadf-11g-r1.html
Ashish
Upvotes: 0