You need to sign in to do that
Don't have an account?
Trigger which fires every 24 hours after created date
Hi, i have a field called Charges__c which would be 0 when record is created.
After 24 hours of record creation charges__c should be updated to a value(assume 200 then 0+200 = 200).
Later after 48 hours charges__c should be updated to(200+200=400).
This cycle is repeated every 24 hours. Any Suggestions ?
After 24 hours of record creation charges__c should be updated to a value(assume 200 then 0+200 = 200).
Later after 48 hours charges__c should be updated to(200+200=400).
This cycle is repeated every 24 hours. Any Suggestions ?
You can also implement the same logic in an apex class and schedule it on daily basis.