question

Elmata avatar image
0 Votes"
Elmata asked ChelseaWu-MSFT answered

Gap in taxonomy display

Hi,
I get an issue with term store in SP2013.
I have some documents tagged with "A" value. I would like to tagged them with "B" value (changing A to B in the term store) but the displayed value is still "A".
I know there is a taxonomy hidden list but how can I update/force this list?
Thanks for your help.
Regards,
EM

office-sharepoint-server-administration
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

1 Answer

ChelseaWu-MSFT avatar image
1 Vote"
ChelseaWu-MSFT answered

The terms should be automatically updated once the Taxonomy Update Scheduler timer job finish running.

The timer job is set to run hourly by default. You can run it manually via Central Administration > Monitoring > Review job definitions > switch Web Application > find "Taxonomy Update Scheduler" > click “Run Now”. Check the status via Job History after running.


Or execute the following PowerShell script to refresh instead:

 $siteUrl = "<SiteURL>"
 $site = Get-SPSite $siteUrl
 [Microsoft.SharePoint.Taxonomy.TaxonomySession]::SyncHiddenList($site)
 $site.dispose()

If an Answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.