Use the following method for getting the selected value of a LOV Component. private String getDrpDwnValue (String voIterator , String columnName , String rowIndex ){ String drpDwnValue = ""; try { DCBindingContainer bindingsOperand = (DCBindingContainer)BindingContext.getCurrent().getCurrentBindingsEntry(); DCIteratorBinding voIterBinding =bindingsOperand.findIteratorBinding(voIterator); Row voIterRow = null; if((rowIndex==null)||(rowIndex.equals(""))){ voIterRow = voIterBinding.getCurrentRow(); } else{ voIterRow = voIterBinding.getRowAtRangeIndex(Integer.parseInt(rowIndex)); } drpDwnValue = (String)voIterRow.getAttribute(columnName); } catch (Exception e) { // TODO: Add catch code e.printStackTrace(); } return drpDwnValue; } Input parameter to this method are voIterator -> it...
Advanced ADF and Webcenter Learning