Topic by Sky Dagan
Content
Hey,
I want to insert the current date stamp into the contact object using the CPM we have running everytime the incidents rules are running.
This is the function that should insert the value:
publicstaticfunctionrunTime()
{
$contact->CustomFields->c->brm_account_manager=date("Y-m-d H:i:s");
//the row below causes the error
$contact->save(RNCPHP\RNObject::SuppressExternalEvents);
//$contact->CustomFields->c->brm_account_manager=date("Y-m-d H:i:s");
//$contact->save(RNCPHP\RNObject::SuppressExternalEvents);
//$contact->save();
}
This is the error I get when testing the code
How can I save the contact after appending a value without this error?
Thanks,
Sky