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
m 3m 3 

write a valdiation rule only owner only need to edit particular field

ajay Duggi(Heptarc)ajay Duggi(Heptarc)
Dear m 3,
AND(
$User.Id <>  PRIORVALUE(OwnerId),
$Profile.Name <> "System Administrator",
ISCHANGED(OwnerId)
)


Here i am taking only owner that means system administrator and given access is ISchanged.

I hope it may helps you.