I am trying to run validate on a field (SCHEDHLEDFINISH)
in Maximo 7.5.
I want to change the color of the textfield to red and possibly display an error icon on that field as well.
Here what I have
public void validate() throws MXException, RemoteException
{
MboRemote vend = getMboValue().getMbo();
vend.setValueNull("SCHEDULEDFINISH",11L);
throw new MXApplicationException("ABC", "abc");
//Set RED COLOR to field and display error icon
}
How is it possible? What property to set for that?