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
AbAb 

How to override the Account page (recent accounts) Page

Hello,

I am looking for way to override the standard Recent account pages.
User-added image
Basically, I want to remove the New button, and keeping rest as it is.
I donot want to consume new tab

Thanks for suggestion
Best Answer chosen by Ab
Leo10Leo10
Hi,

The only way to remove it is to remove  the User's permission to create new records of that object (Orders in your case)

You could use a Validation Rule that makes sure an Account is filled in on the Order before it is saved.  That way, you get the same functional behavior as forcing them to create New from an Account detail page.

Regards,
Nabeel KT

All Answers

Leo10Leo10
Hi,

The only way to remove it is to remove  the User's permission to create new records of that object (Orders in your case)

You could use a Validation Rule that makes sure an Account is filled in on the Order before it is saved.  That way, you get the same functional behavior as forcing them to create New from an Account detail page.

Regards,
Nabeel KT
This was selected as the best answer
Vivian Charlie 1208Vivian Charlie 1208

Hi Sandrine,

 

The New button gets dispplayed if the current user profile has Create access to the object. Anyone without Create access would be unable to see the New button.

Unfortunaltely the Account Tab view cannot be overridden.

Thanks

Vivian

VivekShindeVivekShinde
It is possible to override the standard account tab by navigating to the Buttons, Links and Actions setup menu avaialble under Accounts and then override the Accounts tab with a visualforce page. But, it would be better to remove the Create permission for Account object from the profile to fulfil your requirement.