Few Points Related to TaxonomyHiddenList and Permissions in SharePoint

Hi,

On our SharePoint site, we were doing testing for read only user and it found that in one webpart in which we are fetching data from one of the list, we are getting access denied error.

After looking in URL of access denied page, it seems that source type is list and name is having GUID of taxonomy hidden list. In our list we have few managed metadata fields.

After checking permission of Taxonomy Hidden List it found that inheritance is broken on this list and read only user has no permissions on this list. So this is the problem with Taxonomy Hidden List. We also faced similar kind of problem for anonymous user. Somehow permission inheritance gets broken on Taxonomy Hidden List. So if you face similar kind of problem, check first the permissions for TaxonomyHiddenList.

But now something about Taxonomy Hidden List.

Taxonomy Hidden List:

  1. TaxonomyHiddenList is the hidden list on root web. This list can be viewed by directly navigating the URL http://MyWeb.com/Lists/TaxonomyHiddenList.

  2. This list contains all the terms and keyword used for the site collection.

  3. This list is used for caching the taxonomy terms. SharePoint uses this list so that no need to query the managed meta data service all the time.

  4. When we use the Taxonomy term, an item is get created in this list. The id of this item is the WSSID. This WSSID is of type Counter and can be used for querying purpose.

  5. For the taxonomy terms which are still not used in the site, we will not find the item for it in this list. So no WSSID for that term.

Hope these points will help you.

Thanks! Enjoy reading.