You need to sign in to do that
Don't have an account?

Validation rule prevented time based work flow rule to trigger
Hallo all,
1. I have a validation rule that Starttime field should always be greater than the current time.
2. I have a time based workflow rule which changes the status field, after 15 minutes from valid Start time field value.
I got a mail saying that the this workflow rule failed to fire because of validation rule. Is there any way to fire this workflow rule even when validation rules are not satisfied or any other work around for this.
1. I have a validation rule that Starttime field should always be greater than the current time.
2. I have a time based workflow rule which changes the status field, after 15 minutes from valid Start time field value.
I got a mail saying that the this workflow rule failed to fire because of validation rule. Is there any way to fire this workflow rule even when validation rules are not satisfied or any other work around for this.
Validation rules are generated from apex class Start Datetime in Time dependent work flow actions is a formual field which generates 45 minutes less than the start time. so when I say 1 hour after StartDatetime, rule corresponds to 15 minutes after Start time.
Check out this issue 'Do time-dependent workflows verify the rule criteria is still true before executing?' http://salesforce.stackexchange.com/questions/8097/do-time-dependent-workflows-verify-the-rule-criteria-is-still-true-before-execut
Also check out the considerations for Time-Dependent Actions and Time Triggers
https://help.salesforce.com/articleView?id=workflow_time_action_considerations.htm&language=en&type=0
Regards
Now the problem is, at scheduled time, time based workflow trigger re executes the code and checks if at all the code is still valid for evaluation criteria. Along with evaluation criteria, it is also checking for validation rule('start time should always be greater than current time') which would obviously go wrong since I am triggering this time based rule after 15 minutes from the start time.