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
Krish NKrish N 

Locked record editable by any user on VF page during approval process

Hello all, I have a multi-level approval process which locks the record from editing when it is initially submitted and locks the record as a final approval action (except for current approver and sys admin). We have a visual force page to create the cases. When I log in as a test user who has no association with the created record which is middle of an approval process, I was unable to edit the record in standard/layout view as expected. However, when I open the record in visual force page, I was able to edit the record even though I'm not the current approver or an admin. He doesn't have modify all permission either. I don't get the 'record is locked' message, it just saves with the changes. How do I fix it? Wouldn’t the vf page respect approval process locked action. 
NagendraNagendra (Salesforce Developers) 
Hi Krish,

It seems like your code doesn't respect current user’s permissions. Did you try to add to your VF controller ’with sharing’ keyword to respect permissions while using the VF?

If yes, you can check if the user has permissions and then perform your code.
if (Schema.sObjectType.OBJECTAPINAME.isDeletable()) { 

}
Of course that instead isDeletable() you can use isEditable().

Hope this helps.

Kindly mark this as solved if the reply was helpful.

Thanks,
Nagendra