Gap in taxonomy display

Elmata 136 Reputation points
2021-03-22T15:47:11.243+00:00

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

SharePoint Server Management
SharePoint Server Management
SharePoint Server: A family of Microsoft on-premises document management and storage systems.Management: The act or process of organizing, handling, directing or controlling something.
2,978 questions
0 comments No comments
{count} votes

Accepted answer
  1. ChelseaWu-MSFT 6,331 Reputation points
    2021-03-23T02:03:51.253+00:00

    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. **

    1 person found this answer helpful.
    0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.