Custom Condition help

Hey there,

anyone has a working condition thats matche on a “CustomField-change” -
so i fires, when changing / setting a CustomField to a value?

Greets,
joey

if ( $self->TransactionObj->Type eq “Create” or
(
$self->TransactionObj->Type eq “CustomField” &&
$self->TransactionObj->Field eq 122
)

) {
return 1;
}
return 0;

122 is the id of my custom field (note the ID and not the name).
Roy

joey wrote: