Important Update: Archer Community Scheduled Maintenance on November 23–24 - New Community Launching Soon! Learn More..
2020-02-10 01:54 PM
Right now I have a custom object that changes a values list and saves the record. A rule then looks at that values list changing and sets a date equal to the current time.
Is there a way to simplify this and set a date based off of a custom object directly?
2020-02-12 02:36 PM
var DateFieldID = 26427;
var currentDate = new Date();
$CM.setFieldValue(DateFieldID , currentDate, '');
2020-02-12 02:36 PM
var DateFieldID = 26427;
var currentDate = new Date();
$CM.setFieldValue(DateFieldID , currentDate, '');