Blog

 

You may wonder where the Activities tab is in Salesforce, so you can see a list view of activities. You can see the task list and calendar on the home page but what if you would like to see all of your tasks and events in a list. Well there is a way to get to a list view, but it is easy to overlook. In the calendar section on the home page, there are a number of icons that will display views of activities. The one highlighted takes you to a list view of activities.

 

 

When you click that icon, you go to a activities page that has standard views that Salesforce has created for you. You can see your own activities (tasks and events) and also your delegated activities. Delegated activities are those which you have created but have assigned to someone else.

 

List of Salesforce Activity Views

 

You can also create new views. For example you may want a list of all tasks that are not complete.

 

But what if you want to provide access to Activity list views as a tab? To do this you will need to define a custom Visualforce page. Before you get concerned that you don’t know Visualforce, take a look at what is required for this page, it’s only 3 lines!

[crayon-6114c2aee078c790764598/]

It is easy to understand as well. Apart from the standard <apex: page> tag that defines the start and end of the Visualforce page, the second line is the one that is does the work to display the activities list. There are 3 parts to this line:

1. enhancedList: The tag that tells Salesforce that you would like to display a list.

2. Type: This is where you select which object should be listed, in this case we are using ‘Activity’. Remember in Salesforce terms, Activity includes both Tasks and Events.

3. Height: Defines the height of the list, a value of 600 will make sure it fits into the page well.

 

Even though it is only 3 lines to create the Visualforce code for the page, there are a few steps to getting the page to display as a tab within your application. The complete list of steps are:

  1. Click on Pages



  2. Click on New and give it a name
  3.  

  4. Replace the existing sample code with the code above
  5.  

  6. Set the profiles that should be able to access this page, by clicking the Security link

  7. Create a Visualforce tab

  8. Select the Visualforce page for the tab, enter a Label, Name and tab style.
  9.  


  10. Select the security permissions for the tab
  11.  


  12. Select the Applications that should display the page

 

You should now see your activities tab. You can also customise the views as normal.

 

 

What Certification are you studying for now?

Focus on Force currently provides practice exams and study guides for sixteen certifications

Salesforce Activities Tab and List View

  You may wonder where the Activities tab is in Salesforce, so you can see a list view of activities. You can see the task list and calendar on the home page but what if you would like to see all of your tasks and events in a list. Well there is a way to get to a list view, but it is easy to overlook. In the calendar section… Read More

Salesforce Activities Tab and List View

Salesforce and Email – What are the options?

When it comes to Salesforce and email, it can get confusing to understand what the options are. Read on to discover 10 ways you can work with email and Salesforce together. Sending Email from Salesforce Some people may wonder whether integration to an email client such as Outlook is even necessary. If Salesforce could send and automatically process incoming emails, then couldn’t users just live in Salesforce and use it… Read More

Salesforce and Email – What are the options?

Salesforce URL Hacking

You may find yourself with the requirement to create a record from a related list and populate a number of fields. By default, Salesforce will populate the field on the related record that links the two objects, but no other fields. For example, if you create a record for a custom object related to an opportunity, the custom record will have the opportunity populated as it relates the two records,… Read More

Salesforce URL Hacking

Salesforce Joined Reports

It can be tricky to understand how Joined reports work in Salesforce. For those who have experience with database queries or other report writing tools, the name Joined report can raise expectations that it will be possible to report on data joined from different objects in the one report. A way to think of joined reports is of separate block reports where the data can be optionally grouped to ‘join’… Read More

Salesforce Joined Reports