Skip to main content

Cloud

SharePoint 2013: Task Management in My Sites

Scenario: In your organization you are using SharePoint to manage your projects. Tasks are created in each project site and assigned to you. To keep track of your tasks, you have to go each project site to view, edit those tasks. If you are involved in multiple projects then it can certainly become a time consuming task to manage all the tasks in all the project sites that you are assigned a task.
In SharePoint 2013, there is a much better way of going about managing your tasks. When you go to your My Site in SharePoint 2013 there is a link on the left hand navigation menu called “Tasks”.
image
Clicking on this link will show you all the tasks that are assigned to you across all site collections. You, as a user can now just go to your My Site and manage all your tasks, make changes and create new ones. SharePoint also displays those tasks on a nice timeline.
image
Features:

  • All tasks can be managed from one location (My Site)
  • Displayed on a time line. Ability to add tasks to the time line from the same screen.
  • Sync to Outlook.
  • Categorized/grouped by project sites or “locations”.
  • Ability to mark tasks as important.
  • Search your tasks.

In my opinion this feature will really boost the productivity of the users.
To setup the task management feature:

  1. Setup the Search Service Application
  2. Setup the User Profile Service Application
  3. Setup My Site Host.
  4. Setup the Work Management Service application
  5. Make sure the Work Management Service is started (Look under Manage Services section under System Settings)
  6. Create a project site in one of your site collections and assign a task yourself.
  7. Run a Crawl.

Once the crawl is finished you can go to your My Site, click on the Tasks link on the left and you will see the tasks assigned to you.
Now since it is aggregating tasks, does it have the capability to aggregate tasks from other systems? Yes and No. No, because this is not out of the box. Yes, because SharePoint 2013 provides a framework to plug in different task providers. For example, you can write a Task provider which will connect to TFS and pull in the work items that are assigned to the user or a provider to connect to CRM and pull the tasks from there. The possibilities are endless.
Now to write a provider is definitely not an easy job by any chance but it’s not impossible too. I have written a provider which will connect to TFS and pull in the tasks and display them grouped by my projects.
Here is a very high level process:

  1. Create a class and implement a few interfaces.
  2. Compile and build your assembly.
  3. Create an XML file and drop it in the following folder
    1. C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\CONFIG\WorkManagementService\Providers
  4. Name the xml file in the following format providers.NameOfYourProvider.xml
  5. Structure of the xml file is as follows

<Provider ProviderKey=”Guid” OverrideProviderKey=”” Assembly=” ” Class=” ” ></Provider>
6. IISReset.
When you first hit the tasks aggregation page, SharePoint will go through each of the xml files, parse through them and load the assembly specified in the xml file and starts calling certain methods in the class that was specified in the xml file.
I have a blog coming up which will go into details about which interfaces to implement and how the tasks get created and grouped.
 
 

Thoughts on “SharePoint 2013: Task Management in My Sites”

  1. Nice simple overview. Would love to see the code for the TFS implementation. I was at a demo last week and someone asked the presenter ‘can we show TFS tasks in SharePoint 2013’?

  2. Thanks, I will soon post the code, I had the code running in Beta, need to verify it runs in RTM.

  3. Can’t seem to get other site collections running other than the root one. Any suggestions how I can debug?

  4. Sjaak van Esdonk

    Thanks for the overview!
    I have two questions regarding the ‘My tasks’:
    -Is this feature available in alle SharePoint versions (Foundation, Standard, Enterprise)?
    -Is it possible to also show tasks which have been assigned to a group? (so does the my tasks list also show all the tasks which are assigned to a group of which i am a member)

Leave a Reply

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

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Amol Ajgaonkar

More from this Author

Follow Us
TwitterLinkedinFacebookYoutubeInstagram