Certificate.threeMonthsReminder
Property Description |
Indicates the setting of the 3 Months box for Expiration Reminders on the certificate record. This property is set to If the Copy Employees box is also checked, selected employees are copied on the reminder emails. |
Type |
boolean |
Module |
|
Parent Object |
|
Sibling Object Members |
|
Since |
2019.2 |
Syntax
The following code sample shows the syntax for this member. It is not a functional example. For a complete script example, see N/certificateControl Module Script Samples.
// Add additional code
...
//load the certificate record object
var loadedCertificate = cc.loadCertificate({
scriptId : 'custcertificate_testid'
});
//update the Expiration Reminder for 3 Months to checked
loadedCertificate.threeMonthsReminder = true;
//save the certificate record object
loadedCertificate.save();
...
// Add additional code