Hi All,
When ever we want to have value of some attribute we can use below code .It work fine in managed and backing bean .
Create a java class and import
import oracle.adf.model.BindingContext; import oracle.adf.model.binding.DCBindingContainer; import oracle.adf.model.binding.DCIteratorBinding;
and using below code get value of any attribute
BindingContext ctx = BindingContext.getCurrent(); DCBindingContainer bc = (DCBindingContainer)ctx.getCurrentBindingsEntry(); DCIteratorBinding iterator = bc.findIteratorBinding("ViewObjectIterator"); Row r = iterator.getCurrentRow(); String empNameValue = (String)r.getAttribute("EmpName");