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

Single view of Accounts, Contacts and Leads
Hi, does anyone know of an app that can provide a single view of one's assigned accounts, related contacts and leads? We already have custom functionality that displays any related leads at the account level (built by a previous consultant). However, I wanted to know if someone was aware of an app or code to display a bird's eye view of a company in SFDC. Any feedback would be greatly appreciated. Thanks!
You can use the code below and get the individual list views on a single page with 3 line of code:
<apex:page >
<apex:enhancedList type="Account" height="300" rowsPerPage="10" listid="00B28000001IDBt" />//Account related list
<apex:enhancedList type="Contact" height="300" rowsPerPage="10" listid="00B28000001IDC1" />//Contact related list
<apex:enhancedList type="Lead" height="300" rowsPerPage="10" listid="00B28000001IDBF" />//Lead related list
</apex:page>
page will look lke this: