New answers tagged term-store
0
The Managed Metadata Service, which houses the term store (Groups, TermSets, Terms), is a farm-wide service. Any PowerShell scripts or .Net SharePoint API code that modifies any of these must be executed on one of the servers in the farm, whether it's a Console Application, Windows Form, Webpart, Application (ASPX) page, etc.
Overwriting (i.e. deleting and ...
1
A category is a predefined Term Set that is made in the term store management.
0
I tried all of the above with no success, but managed to bring my MM term store back online with a stop and start of ALL running instances of the Managed Metadata Web Service from the Services on Server page
1
It depends on how you set up your managed metadata, since both ways are possible. Using enterprise keywords enables a tagging system where users can select existing keywords or create new ones. It's similar to tagging a question here, where you select existing tags or, if you have 300 reps, create new ones if they are needed.
Keywords have no hierarchy, so ...
2
In this case I would recommend you to add the new department names to the manage metadata store and merge the old departments with the new values. You shoul check out the following blog post http://term-management.com/2012/10/11/merging-terms-in-the-sharepoint-2010-term-store-2/
0
What you could do is convert the list of your terms in something that is querable by LINQ and use it.
For example:
TaxonomyFieldValue v = null;
TermCollection childTerms = null;
var session = new TaxonomySession(site);
if (session.TermStores != null && session.TermStores.Count > 0)
{
var termStore = ...
0
You can create a webpart which can search for collection of terms using this method,
Term.GetTerms Method (String, Int32, Boolean, StringMatchOption, Int32, Boolean)
MSDN Source
Here's some sample code,
TaxonomyFieldValue v = null; // Notsurehowtodothisbit();
TaxonomySession session = new TaxonomySession(site);
if (session.TermStores != ...
0
make sure that the values are correct for CSV.
In your csv file how is is seperated? like so?
hello "," blah "," magic "," sweet
as you can see between each text is "," or ,
now looking at your csv format I can see an issue with:
Political Geography,"A sample term set",,True,"One of the 7 continents","Continent","Asia"
instead ammend it and try:
...
Top 50 recent answers are included

