Issue getting value of OAMessageLovInputBean
Hi,
I'm using jdeveloper 10.1.3.5 on EBS 12.2.5.
I've a MessageLovInput style item on my OAF page with item ID 'Status'. The Disabled property of this item is set to true (this is a requirement that this field will be disabled or read-only).
I am trying to get value of this field using below code but its giving null value.
String pStatus = pageContext.getParameter("Status");
I've even tried below to get the value with no luck
OAMessageLovInputBean status =(OAMessageLovInputBean)webBean.findIndexedChildRecursive("Status"); if(status!=null){ status.getText(); }
It gives no value when 'Read Only' property is set to True as well. However, If I set the Disabled property to 'False', I can get the value.