Creating multiple tabs for same Salesforce Object

Many time I have seen Salesforce Admins wants multiple tabs for same object depending upon the RecordTypes or some other criteria like separate tabs for Premium Account, Gold Accounts and Silver. Indeed they can create multiple views and use the picklist and use “Go” button. But it has disadvantage like multiple clicks, not that user friendly.

In short there is no direct way of creating multiple tabs for same object in Salesforce. Then I thought of creating an Apex component which will take some inputs like ObjectName, Fields to display and criteria/Filter. This appraoch was needing too much of coding and generic code writing for supporting it for all objects. And it was limited to the query filter one can have.

Creating multiple views is the feature inbuilt provided by the Salesforce and is very powerful. So I thought to use the apex:enhancedList control which takes the viewId as a parameter. You can find the documentation for the EnhancedList here. The most important thing is apex:enhancedlist only requires the viewid.

I created a simple VisualForce Page like below.

<apex:page >
<apex:enhancedList height=”600″ rowsPerPage=”25″ id=”AccountList” listid=”{!$CurrentPage.Parameters.viewId}” customizable=”false”/>
</apex:page>

I wanted to reuse this page so I didn’t added any standard controller to the Page itself.

Then now comes the step of creating the Tabs. Sample purpose I am taking Account’s views.

Salesforce support following three types of tab creation:

  1. Custom Object Tabs: – Not suitable to above approach.
  2. VisualForce Tabs: – This will work but do not allow passing the parameters from the URL, so this will not allow reuse of the same page.
  3. Web Tabs: – This allows any URL integration into the tab and suits requirement.
Complex task is to find the viewId. I didnt found it straight forward.
Creating the Tab now:
Now add this tab to your SelectedTabs.
AS ITS A WEB TAB I WAS NOT ABLE TO SET SELECTED TAB. ANY WORK AROUND?

Posted

in

,

by

Comments

3 responses to “Creating multiple tabs for same Salesforce Object”

  1. Terry Avatar
    Terry

    Nice tip! Thanks for sharing.

  2. Sochy Avatar
    Sochy

    This is an awesome tip! Thanks for sharing

  3. Michael Taylor Avatar
    Michael Taylor

    I think I have come up with a parallel solution that may work as well (better for me). Like the above you can distinguish the page with ANY view, whether using record type, or any other criteria.

    I created a visualforce page with an enhanced list, but used only the one object in the list that I want the tab for. The advantage here is that in the enhanced list, you can specify the list you want to display.

    Example of VF page:

    [YOUR NAME HERE]

    From there you can just create a VF tab with the way you want to identify it (probably same name as the tab). The page then doesn’t even show the option to change views – it’s as if it is its own object from the other views.

Leave a Reply

Your email address will not be published. Required fields are marked *