Scrip with multiple Conditions?

My goal is to make a scrip that runs both On Create and On Queue Change.

Making a Custom condition for On Create using the TransactionObj->Create is no big deal. But how can I write a Custom Condition that also detects “On Queue Change”?

You can check if transaction field and type equal “Queue” and “Set”:

my $field = $self->TransactionObj->Field;
my $type = $self->TransactionObj->Type;
1 Like

Thank you! Can’t wait to test this tomorrow.