I’m trying to write a rule to override “facility” with “_facility” but not working. Can you tell me what I’m doing wrong?
rule "override facility field with _facility"
when
has_field("_facility")
then
set_field("facility", $message._facility);
end