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

What type of Apex sharing rules will be enforced on extension controller
Case 1: I used Standard Controller with Extension controller . Then what type of Apex sharing rules will be enforced on extensions.
case 2: I used custom controller with Extension controller . Then what type of Apex sharing rules will be enforced on extensions.
case 2: I used custom controller with Extension controller . Then what type of Apex sharing rules will be enforced on extensions.
StandardController Runs under User Mode only
But
Custom controller and Extension Controller by default System Mode.
When we use Standard controller with extension controller , the logic from standardcontroller will always be under user mode. But we can change using with sharing key word on extension controller to run under user mode too.
All Answers
Example: StandardController = "account" then i used extension then what type of sharing rules will be enforced.
Pavit Kumar if you have an answer for my question please give me in brief.
StandardController Runs under User Mode only
But
Custom controller and Extension Controller by default System Mode.
When we use Standard controller with extension controller , the logic from standardcontroller will always be under user mode. But we can change using with sharing key word on extension controller to run under user mode too.