The time-dependent-workflow tag has no wiki summary.
1
vote
2answers
48 views
Workflow To Send Monthly Alerts To Client
I have an administrative question related to workflows. Our Customer Support Manager wants to, when payments have been deferred in hardship cases, send monthly alerts until the deferment ends (to the ...
2
votes
2answers
49 views
Trigger that creates a custom object record on the first of every month?
I'm trying to write a trigger that creates a custom object record on the first of every month.
So, essentially, I want the trigger to fire:
trigger CreateCustObjRecord on Object()
{
Date current ...
10
votes
2answers
142 views
Do time-dependent workflows verify the rule criteria is still true before executing?
I have a time-dependent workflow on a custom object called ObjA__c that has a lookup to another custom object called ObjB__c. The rule criteria on the workflow is:
ObjA__c.intVal__c = 5 && ...

