Hello again,
I need again some help with a formula in the entity cases.
With every incoming email the system generates a case. If the case already exist the system should change the status of that case to "new from email". This is done by a formula and works. But the status of the case also change to "new from email" when we send an email related to the case. We don't want that.
The formula we use so far is the following:
ifThen(
entity\isNew() == true && record\exists('Email', 'subject=', name) = true && createdById == 'system',
status = 'newfrommail'
);
Could someone help me to adjust this formula so that only in case on an oncoming email related to a case the status of this case changes to "new from email" but when we send an email related to this case the status will NOT be changed.
Thanks
I need again some help with a formula in the entity cases.
With every incoming email the system generates a case. If the case already exist the system should change the status of that case to "new from email". This is done by a formula and works. But the status of the case also change to "new from email" when we send an email related to the case. We don't want that.
The formula we use so far is the following:
ifThen(
entity\isNew() == true && record\exists('Email', 'subject=', name) = true && createdById == 'system',
status = 'newfrommail'
);
Could someone help me to adjust this formula so that only in case on an oncoming email related to a case the status of this case changes to "new from email" but when we send an email related to this case the status will NOT be changed.
Thanks
Comment