Hello,
I have a workflow that is based on the contract record. On the record there is a renewal notification field and if the renewal notification value is 60 days then it is supposed to update the Contract record and set the Renewal Notification date to 2 months prior to contract end date. However, this fails because the contract is already in a active status so it is read only.
How can make this work?
Thank you.
Hello,
I'm afraid that's not doable. As a workaround you can try do following:
1. Create a custom entity to store any information that you need to edit that is related to Contract.
2. Create a lookup on Contract that will reference that entity.
3. On Create of Contract create that custom record and populate lookup of the Contract.
After that you will be able to manipulate the information in that record from Contract's workflow in the way you need.