function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
ChuckchoChuckcho 

Auto Renew contract

I need to update start date and end date with the new values if the contract is set to Auto renew.

 

New Start Date = End Date + 1

New End Date = New Start Date + 60.

 

I created a workflow Rule with criteria End Date less than equal to Today and the time based field update workflow to trigger o days after end date. When I tested it the fields are not getting updated. Is there a better way to achieve this.

 

Thanks for your help and time.

Shebin-KVP Business SolnsShebin-KVP Business Solns

Hi Chukchu

 

Your workflow has been sheduled only , not run ,whenever the criteria evaluated true.That means yo are correct in terms of condition /syntax .Normally time-dependent actions are placed in the workflow queue.You can see this on. Setup -> Administration Setup -> Monitoring -> Time-Based Workflow and monitor the queue using a matching criteria (Select Workflow Rule Name in left and give your Rule Name right ) then click search it will show the workflow as sheduled and the Scheduled Date and time.

 

Hope this ansers your question.

Thanks.