Delete Row from ADF Table
646069Oct 6 2008 — edited Oct 6 2008Hello,
I have an ADF table that displays data joined from two tables: A and B. I programmatically extracted a value (a username) from the displayed ADF table as follows:
DCIteratorBinding iter = ADFUtils.findIterator(iterator);
Row curRow = iter.getCurrentRow();
String name = (String)curRow.getAttribute("User");
Now I need to programmatically delete a row from a total different table "C" that has "name" as the primary key.
Any help will be appreciated.
Thanks