Hi all,
I would like another custom label field to set it's value based on another custom label field.
Here is my current code example:
def thisField = getFieldById(getFieldChanged())
def A= getFieldByName("A")
if (thisField.getValue() in (["123"]))
{
A.setFormValue("568")
}
This seems to work well for every other field type except custom label field 
Any ideas?