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
BlaxxunBlaxxun 

Customizing Accounts Home page

Hi,
 
Is there anyway that I can customize the home page of a standard object, say Accounts home page. My requirememt is to add a custom link "Creare New Account" ponting to a S-Control somewhere on the accounts home page so that user uses this link instead of the standard add account button. From what I could find in forum postings and docs, only the Home page sidebar is customizable. Is there some way/ hack that can help me do this?
 
Thanks in advance,
 
Blaxxun

Message Edited by Blaxxun on 07-31-2006 02:52 PM

ApprivoApprivo
Here are two hack ideas:

1)  - Create a formula field on account as follows:
HYPERLINK("/servlet/servlet.Integration?lid=01N60000000Cy0Y", "Create New ", "_self")
 - Replace the lid with your scontrol id
 - Optionally use the IMAGE() parameter in place of the 'Create New" text, to give the field a more visual representation
 - Put the field on the 'Accounts Tab' 'Search Layouts next to account

This way the user will see the create new link if they have accounts showing in the 'Recent Accounts' list

2) - Create a web tab called 'Create New Account' that directs to the scontrol/ URL you want to invoke
 - Put the tab next to the accounts tab

This is a real hack and takes up valueable space.







BlaxxunBlaxxun
Thanks, will try this out and see how it looks :-)