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
Kamal ThakurKamal Thakur 

Firing Validation Rule After WFR's Field Update without Apex Triggers

As per the Documentation here, we cannot fire the Validation Rule after WFR's Update Action. Is there any way we can fire the Validation Rule after the WFR's field Update Action?
Best Answer chosen by Kamal Thakur
Kamal ThakurKamal Thakur
The only solution I found is writing a Before Trigger and putting my validation code there. No other solution apart from this. 

All Answers

Rama Rao MylaRama Rao Myla
I am not sure if we can do that....as per order of exucution WF come after the validation rules. Try using process builder, call an apex class and write your validation code over there.
Kamal ThakurKamal Thakur
The only solution I found is writing a Before Trigger and putting my validation code there. No other solution apart from this. 
This was selected as the best answer