Post date: Aug 05, 2015 12:7:12 PM
// get the iterator for the view object being used
// iterator will be in pagedef file
DCIteratorBinding dcIteratorBindings = bindings.findIteratorBinding("ViewObjectIterator");
// Get the View object and access to it's data
ViewObject voTableData = dcIteratorBindings.getViewObject();
// get the current row
Row rowSelected = voTableData.getCurrentRow();
// Example of getting individual fields
if (_logger.isLoggable(Level.INFO)) {
_logger.info("SomeDate = " + rowSelected.getAttribute("SomeDt"));
_logger.info("SomeKey= "+ rowSelected.getAttribute("SomeKey"));
_logger.info("SomeOtherColumn Status = " +rowSelected.getAttribute("AnotherColumn"));
}