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
punnoosepunnoose 

customising accounts page

 

i have a created a page attached to accounts Tab. Here i want to go to deatiled description of companies as in the normal Accounts page(On click of {!a.name} tab).. Where they have deatils of the accounts.

In my same page(Current PAge(Accounts)) i want the these fields like(Reports,Go to Reports ,Tools) fields too as in normal accounts page

<apex:page standardController="Account" recordSetVar="accounts" tabstyle="account"
sidebar="false">
<apex:pageBlock >
<apex:pageBlockTable value="{!accounts}" var="a">
<apex:column value="{!a.name}"/>
<apex:column value="{!a.Annual_Value__c}"/>
<apex:column value="{!a.Phone}"/>

</apex:pageBlockTable>
</apex:pageBlock>
</apex:page>

******************My Current Code************************************

JitendraJitendra

Hi,

You can hack the code of standard Account page by viewing the source code. And then copy - paste the same URL if it does not change. Or if change the track the changable part and with the help of controller you can create a custom link.