Requirment-Get value of LOV/choiceList programmaticaly in bean instead of index in Oracle ADF
When you wrote like In backing bean we get the index, not the value. most of the developer did this mistake.
JSFUtils.resolveExpression(“#{bindings.EmployeeId.inputValue}”); —- We got the index
Instead of use attributeValue to get the value in bean.use this code in the bean or as the EL
JSFUtils.resolveExpression(“#{bindings.EmployeeId.attributeValue}”);