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
manibharathi vmanibharathi v 

In flow can i use profile is equal to system administrator is possible ?? and ''i have requirement like only system adminstrator and opportunity (stage name==proposal) only have the permisson to delete the opportunity record

bharathisfds@gmail.com
how can i do
flow 
or validation rule or go to trigger
AbhinavAbhinav (Salesforce Developers) 
Validation rules don't fire on records being deleted.

https://ideas.salesforce.com/s/idea/a0B8W00000GdmtEUAR/validation-rule-to-prevent-delete-record

Go for trigger.

Check this for similar usecase:
https://stackoverflow.com/questions/57874202/prevent-a-record-from-being-deleted

If it helps mark it as best answer.

Thanks!