Override standard tab to hide recent item and unwanted section
You can customize the standard tab to display specific list view and hide unwanted section. You can’t customize the standard tab page using point and click. Need to use Visualforce page to accomplish this functionality.
You can use apex:enhancedlist to customize your tab page on standard and custom object.
Create Visualforcepage called “AccountOverrideTab” using below code
<apex:page action=”{!IF($Profile.Name = ‘System Administrator’, URLFOR(‘/001/o?nooverride=1’), null)}”>
<apex:enhancedList type=”Account” height=”500″/>
</apex:page>
Override “Account” Tab
Only admin user can see the detailed Account Tab like below
all other user can see list view directly without recent item and unwanted sections
For more properties: https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_compref_enhancedList.html
Pingback: Override Standard Tab to Hide Recent Item And U...
April 9, 2022