CPM works but Business rule below that also works
Content
Hi Experts,
I have implemented a CPM that checks for few things in incoming incident, and on the basis of few logics, it destroys the incident.
$obj->Destroy(RNCPHP\RNObject::SuppressAll);
I called this CPM in initial state as very first action and below this object handller, in the same rule, I have written other actions like sending auto response and setting status for incidents who pass the logics in CPM and are not destroyed.
CPM is working fine, incident is being deleted, but, auto-response is triggered even if incident is destroyed and I have used 'SuppressAll' in destroy method.
0