SlideShare a Scribd company logo
Managed Metadata
             By Nick Hobbs
             2nd May 2012

Principal SharePoint Developer, Capgemini UK
             www.nickhobbs.net
Nick Hobbs          2 May 2012
              Managed Metadata                   www.nickhobbs.net       Page 2




                                 Agenda
   What is Managed Metadata?
   Why use it?
   How can I use Managed Metadata via the UI?
   How does it work behind-the-scenes?
   How can I use it programmatically?
   What problems and limitations are there?
   Questions?
Nick Hobbs          2 May 2012
     Managed Metadata       www.nickhobbs.net       Page 3




What is Managed Metadata?
Nick Hobbs          2 May 2012
             Managed Metadata                     www.nickhobbs.net       Page 4




            What is Managed Metadata?
 A hierarchical collection of centrally managed terms that you can
  define, and then use as attributes for list items.
 Available only in SharePoint Server 2010 not in Foundation 2010.
 A term is a word or a phrase that can be associated with an item.
 A term set is a collection of related terms. A column can be
  specified to contain a term from a specific term set.
 A group is a set of term sets that all share common security
  requirements.
 Managed Metadata refers to the fact that terms and term sets can
  be created and managed independently from the columns.
Nick Hobbs          2 May 2012
              Managed Metadata                       www.nickhobbs.net       Page 5




                Local vs Global Term Sets
 Local term sets are created within the context of a site collection.

 Global term sets are created outside the context of a site
  collection, in a centrally managed term store.

 Users can see only global term sets and term sets that are local to
  the user's site collection.
Nick Hobbs          2 May 2012
              Managed Metadata                      www.nickhobbs.net       Page 6




                   Enterprise Keywords
 Enterprise Keywords is a predefined column which can be added
  to a list or directly onto content types.
 Similar to other taxonomy fields, but uses the Enterprise
  Keywords control.
 Allows multiple values by default.
 Allows Enterprise Keywords and Managed Terms to be selected.
 All enterprise keywords are part of a single, non-hierarchical term
  set called ‘Keywords’.
Nick Hobbs          2 May 2012
              Managed Metadata                         www.nickhobbs.net       Page 7




             Term Store Management Tool
 The Term Store Management Tool is used to manage the term
  store. With the appropriate permissions, you can use this tool to:
    Add, modify, or delete – Groups, Term Sets, Terms.
    Arrange terms within a term set into a hierarchy.
    Create synonyms of terms.
    Specify language variants for each term.
    Reuse/share terms with other term sets.
    Deprecate terms.
    Import terms (CSV).
    Convert enterprise keywords into managed terms, moving them into
     a term set.
    Grant permissions on groups of term sets.
 It is found via Central Administration, and also in Site Settings.
Nick Hobbs          2 May 2012
Managed Metadata       www.nickhobbs.net       Page 8




Term Store Management Tool
Nick Hobbs          2 May 2012
      Managed Metadata   www.nickhobbs.net       Page 9




Why use it?
Nick Hobbs          2 May 2012
              Managed Metadata                       www.nickhobbs.net      Page 10




                           Why use it?
 Enables enterprise-wide reuse. No need to create and sync lookup
  lists in every site collection, or embed all values in choice fields.
 Hierarchical terms – select from a hierarchy, and optionally show
  the full path when the value is displayed.
 Metadata driven navigation on document libraries
    Navigation Hierarchies
    Key Filters
 Term set management can be controlled with permissions
  independently of the sites in which they are used (for centrally
  managed terms).
Nick Hobbs          2 May 2012
              Managed Metadata                          www.nickhobbs.net      Page 11




                           Why use it?
 More consistent use of terminology:
    Easier to build robust processes and solutions that rely on metadata.
    Improved search results.
    Search refinement panel.
 Dynamic. Values are not written into the field definition, unlike
  e.g. choice fields.
 Increased flexibility. Term Store Administrators and contributors
  can maintain and adapt metadata as business needs evolve.
  Changes automatically synchronise to all columns that use them.
 Multi-lingual labels can be specified for terms on multi-lingual
  sites.
 Reusable content types (Content Type Hub) bind to the same term
  sets everywhere, or to different term sets in each site collection.
Nick Hobbs          2 May 2012
     Managed Metadata        www.nickhobbs.net      Page 12




How can I use Managed Metadata via
the UI?
Nick Hobbs          2 May 2012
        Managed Metadata       www.nickhobbs.net      Page 13




How can I use Managed Metadata via the UI?
Nick Hobbs          2 May 2012
     Managed Metadata        www.nickhobbs.net      Page 14




How does it work behind-the-scenes?
Nick Hobbs          2 May 2012
                Managed Metadata                                www.nickhobbs.net      Page 15




       How does it work behind-the-scenes?
 A Taxonomy Field is a lookup field derived from SPFieldLookup and looks
  up from:
 TaxonomyHiddenList
      An instance in each site collection.
      Used as the lookup list for all Taxonomy Fields in the site collection.
      Contains all terms used in the site collection.
      The list item id (integer) for the term is known as WSS ID,
       and is therefore unique only to terms used in the site collection.
      Located in the site collection at '/Lists/TaxonomyHiddenList'.
      The list ID can be found as a property on the web 'taxonomyhiddenlist'.
      Viewing a taxonomy field value gets the language-specific label (or path) of
       the term from the TaxonomyHiddenList.
      Editing a taxonomy field value queries the term store directly for all terms.
Nick Hobbs          2 May 2012
                Managed Metadata                         www.nickhobbs.net      Page 16




       How does it work behind-the-scenes?
 Taxonomy Update Scheduler runs hourly, pushing down term store
  changes to the hidden lists, automatically updating taxonomy field
  values in all lists as they lookup against the TaxonomyHiddenList.
 The Taxonomy Field Value consists of:
  {wssid};#{label}|{termguid}
 A Managed Metadata field is actually comprised of 2 fields:
     A Taxonomy Field (TaxonomyFieldType)
     A Hidden Text Field (Note)
 WSS ID & Label stored in the Taxonomy Field as {wssid};#{label}
     The lookup value to the TaxonomyHiddenList.
 Label|Guid pair stored in the Hidden Text Field as {label}|{termguid}
     The label & Guid for the term in the term store.
Nick Hobbs          2 May 2012
               Managed Metadata                                 www.nickhobbs.net      Page 17




      How does it work behind-the-scenes?
 Hidden Text Field
    Display Name: {Taxonomy Field Name}_0
    Internal Name & Static Name:
        Pre-SP1: {Taxonomy Field Name}TaxHTField0
        Post-SP1: Random name similar to: k9cea7ffb6ad43dcb9ee90ce43506c7f
 TaxCatchAll & TaxCatchAllLabel Fields
    Each list containing a Taxonomy Field also has the hidden TaxCatchAll and
     TaxCatchAllLabel fields – should add to your content types too.
    Display names "Taxonomy Catch All Column“ &
     "Taxonomy Catch All Column1".
    Contains the WSS ID of each taxonomy value used in the item.
    Search uses these to do managed metadata searches and refinements
     against list items without having to inspect all taxonomy fields in every list.
Nick Hobbs          2 May 2012
              Managed Metadata                          www.nickhobbs.net      Page 18




      How does it work behind-the-scenes?
 TaxonomyTaggingWebControl is a web control which behaves
  similar to the Taxonomy Field Control
    It is bound to the term set in a similar manner to the Taxonomy Field.
    It may be used e.g. on custom search forms to pick a term to search
     for.
 The TaxonomyFieldAdded site collection feature is required to
  use managed metadata.
    It creates the TaxonomyHiddenList, sets up the event receivers and
     adds the site columns.
    Activated on all site definitions except Blank Site.
Nick Hobbs          2 May 2012
      Managed Metadata         www.nickhobbs.net      Page 19




How can I use it programmatically?
Nick Hobbs          2 May 2012
               Managed Metadata                      www.nickhobbs.net      Page 20




         How can I use it programmatically?
 Namespace: Microsoft.SharePoint.Taxonomy
 Term
      Name – gets the name using the current LCID
      Parent – parent term
      Terms – child terms
      IsAvailableForTagging
      TermSet
      CreateLabel(…)
      GetTerm(…), GetTerms(..) + overloads
Nick Hobbs          2 May 2012
              Managed Metadata                       www.nickhobbs.net      Page 21




        How can I use it programmatically?
 TermSet
     Name
     Group
     Terms
     IsAvailableForTagging
     IsOpenForTermCreation
     GetTerm(…), GetTerms(…), GetAllTerms(…) + overloads
 Group
     Name
     IsSiteCollectionGroup – for local term sets
     TermSets
     CreateTermSet(...) + overloads
Nick Hobbs          2 May 2012
              Managed Metadata                          www.nickhobbs.net      Page 22




        How can I use it programmatically?
 TermStore
    Name
    KeywordsTermSet – enterprise keywords.
    Session – the current taxonomy session.
    CommitAll() – Note: multiple commits are required if modifying
     parent and child terms/term sets together.
    RollbackAll()
    GetTerm(...), GetTerms(...), GetTermSet(...), GetTermSets(...), GetGro
     up(...) + overloads and similar. Used to get terms, term sets, and
     groups by name without having to traverse the term hierarchy to find
     them.
Nick Hobbs          2 May 2012
              Managed Metadata                            www.nickhobbs.net      Page 23




        How can I use it programmatically?
 TaxonomySession
    Starting point to access the term store programmatically.
    Constructor needs an SPSite. Provides context to locate the local
     term sets specific to the site collection, and global term sets linked to
     the web application.
    DefaultSiteCollectionTermStore – returns the term store in the
     Managed Metadata Service defined as the default for the web
     application.
    TermStores – all term stores accessible by name, e.g. if you have
     multiple Managed Metadata Services.
    GetTerm(...), GetTerms(...), GetTermSets(...) + overloads and similar –
     like those found in TermStore.
Taxonomy          Term
                                   Group          Term Set                Term
 Session          Store
Nick Hobbs          2 May 2012
                 Managed Metadata                                     www.nickhobbs.net      Page 24




          How can I use it programmatically?
 CAML to define the Taxonomy Field
  <Field ID="{15181134-8839-47A9-9A38-D116FFFF0006}“
   Type="TaxonomyFieldType“                             Type=“TaxonomyFieldType “
   DisplayName="Subject“
   Name=“CustomSubject“                                  or
   StaticName=“CustomSubject“                           Type=“TaxonomyFieldTypeMulti”
   Group=“Custom“
   Required="FALSE“
   DisplaceOnUpgrade="TRUE“
   Description=“…“
   ShowField="Term1033“                                 ShowField=“Term$Resources:core,Language;”
   EnforceUniqueValues="FALSE“ />
 CAML to define the Hidden Text Field
  <Field ID="{15181134-8839-47A9-9A38-D116EEEE0006}"
   Type="Note"
   DisplayName="Subject_0"
   Name=“CustomSubjectTaxHTField0"
   StaticName=“CustomSubjectTaxHTField0"
   ShowInViewForms="FALSE"
   Required="FALSE"
   Hidden="TRUE"                                       Note: When defining a content type, the
   CanToggleHidden="TRUE"                              Hidden Text Field must be referenced
   DisplaceOnUpgrade="TRUE“
   RowOrdinal="0" />                                   BEFORE the Taxonomy Field.
Nick Hobbs               2 May 2012
                      Managed Metadata                                                              www.nickhobbs.net           Page 25




            How can I use it programmatically?
 CAML to Bind Taxonomy Field to Hidden Text Field & Term Set
  <Customization>
     <ArrayOfProperty>
       <Property>
         <Name>SspId</Name>                                                     - SspId is the Term Store Id
         <Value
           xmlns:q1="http://www.w3.org/2001/XMLSchema"
           p4:type="q1:string"
           xmlns:p4="http://www.w3.org/2001/XMLSchema-instance">
           a98dd270-8577-4db8-99e1-b9e894624fdc
         </Value>
       </Property>
       <Property>
         <Name>TermSetId</Name>                                                - TermSetId binds the Taxonomy field to the
         <Value
           xmlns:q2="http://www.w3.org/2001/XMLSchema"                           Term Set.
           p4:type="q2:string"
           xmlns:p4="http://www.w3.org/2001/XMLSchema-instance">
           a7ae10cd-6c7c-4386-a1f2-7abec8e759e2
         </Value>
       </Property>
       <Property>
         <Name>TextField</Name>                                                - TextField binds the Taxonomy field to the
         <Value
           xmlns:q3="http://www.w3.org/2001/XMLSchema"                           Hidden Text Field using its’ Field ID.
           p4:type="q3:string"
           xmlns:p4="http://www.w3.org/2001/XMLSchema-instance">
           15181134-8839-47A9-9A38-D116EEEE0006
         </Value>
       </Property>
       …
     </ArrayOfProperty>
   </Customization>                 • This CAML goes inside the field definition. Useful for sandboxed solutions.
                                   • Cannot bind the field to a different term set for each list instance without manually changing it.
                                   • Also requires the GUIDs to be known up-front and embedded into the CAML.
Nick Hobbs                  2 May 2012
                           Managed Metadata                                                              www.nickhobbs.net              Page 26




               How can I use it programmatically?
 Code to Bind Taxonomy Field to Hidden Text Field & Term Set
  using (SPSite site = new SPSite("http://site"))
  {
            TaxonomyField taxonomyField = (TaxonomyField)site.RootWeb.Fields*“Subject"+;   - Gets the taxonomy field & hidden text field
            SPField hiddenTextField = site.RootWeb.Fields*“Subject_0"+;

            TaxonomySession session = new TaxonomySession(site);                           - Opens a new taxonomy session
            TermStore termStore = session.DefaultSiteCollectionTermStore;                  - Uses the default site collection term store

            Group group = termStore.Groups*“Enterprise Term Sets"+;                        - Selects a group & term set to bind to the field
            TermSet termSet = group.TermSets["Subject"];

            taxonomyField.TextField = hiddenTextField.Id;                                  - TextField - Binds the hidden text field
            taxonomyField.SspId = termSet.TermStore.Id;                                    - SspId – Term Store Id
            taxonomyField.TermSetId = termSet.Id;                                          - TermSetId – binds the field to the term set
            taxonomyField.AnchorId = Guid.Empty;                                           - AnchorId – The term to use as the root term.
            taxonomyField.Open = false;                                                    - Open – Whether users can enter new terms.
            taxonomyField.AllowMultipleValues = false;                                     - AllowMultipleValues – For multi-value fields.
            taxonomyField.IsPathRendered = false;                                          - IsPathRendered – Whether to show the full
            taxonomyField.TargetTemplate = string.Empty;                                     hierarchical path of the term.
                                                                                           - TargetTemplate - Web-relative URL of the
            taxonomyField.Update(true);                                                      target page that is used to construct the hyperlink
  }                                                                                          on each Term when the TaxonomyField is
                                                                                             rendered.
Nick Hobbs          2 May 2012
               Managed Metadata                                 www.nickhobbs.net      Page 27




        How can I use it programmatically?
 Setting a Taxonomy Field Value programmatically
    As explained earlier, Taxonomy Field Values consist of 3 parts:
     {wssid};#{label}|{termguid}
    Use this to set a value in an ItemAdding event receiver via the
     AfterProperties.
    List item field values can be set easily using
     TaxonomyField.SetFieldValue(…), passing in the list item, and either a Term
     or a TaxonomyFieldValue.
        If you don’t use this, you have to set the Taxonomy Field with the
         {wssid};#{label} and the Hidden Text Field with the {label}|{termguid}.
    A TaxonomyFieldValue can be created using:
     TaxonomyFieldValue.PopulateFromLabelGuidPair("Label|<GUID>")
        This automatically adds the term to the TaxonomyHiddenList if not there
         already.
        It also gets the WSS ID and sets up all 3 parts of the TaxonomyFieldValue.
Nick Hobbs          2 May 2012
              Managed Metadata                           www.nickhobbs.net      Page 28




        How can I use it programmatically?
 Querying for a taxonomy field value:
    Finding a specific term:
        SELECT Title FROM SCOPE() WHERE SCOPE = ‘All Sites’ AND
         MyTaxonomyField = ‘#0termguid’
    Finding a term or any term below it in the term hierarchy
     (descendents):
        SELECT Title FROM SCOPE() WHERE SCOPE = ‘All Sites’ AND
         MyTaxonomyField = ‘#termguid’
    Only works on columns, not profile properties.
Nick Hobbs          2 May 2012
      Managed Metadata        www.nickhobbs.net      Page 29




What problems and limitations are
there?
Nick Hobbs          2 May 2012
                Managed Metadata                             www.nickhobbs.net      Page 30




   What problems and limitations are there?
 Managed Metadata is not supported by:
      InfoPath forms.
      SharePoint Workspace.
      Content Query Web Part.
      Office Document Information Panel.
      Editing in Datasheet Mode.
      Views cannot use Begins With or Contains operators.
      Calculated fields.
      Office 2007 and earlier.
      Acrobat X.
 SharePoint Designer Workflows read/write invalid values.
    Worked around using a Custom Action to get/set values programmatically.
    Possibly fixed in Dec 2011 CU.
Nick Hobbs          2 May 2012
              Managed Metadata                            www.nickhobbs.net      Page 31




   What problems and limitations are there?
 Import from CSV
    Separate CSV file for each term set.
    Does not support synonyms, translations of terms, or merging terms.
    Cannot predefine the term set and term IDs (GUID) – normally used
     for:
        Binding fields to term sets.
        Importing data or site structure using managed metadata terms.
        Querying / filtering.
    Custom code can use the object model to import an entire term
     store.
 Export to CSV not possible without writing code.
 Copying a site collection or content from one farm to another will
  require the term store data to be copied over, i.e. backup &
  restore of the MMS database.
Nick Hobbs          2 May 2012
              Managed Metadata                           www.nickhobbs.net      Page 32




   What problems and limitations are there?
 Profile properties using a Term Set:
    Hierarchical search not possible on profile properties, is possible on
     list fields.
    Can be set as Required, but allows it to be empty "by design".
 Multi-Value taxonomy fields and profile properties do not work
  properly in the Refinement Panel.
 & and " converted to Unicode special character equivalents
    TaxonomyItem.NormalizeName docs explain about & but not ".
 Managed Metadata term containing a comma is difficult to enter
  into a taxonomy field – treated as multiple terms.
 List View Lookup Threshold allows by default up to 8 lookup fields
  including taxonomy fields in a list. Cannot change this in SP Online.
Nick Hobbs          2 May 2012
             Managed Metadata                          www.nickhobbs.net      Page 33




   What problems and limitations are there?
 Sandbox (SharePoint Online / Office 365)
  cannot programmatically access the Taxonomy namespace:
    Cannot programmatically bind fields to term sets.
    Cannot declaratively bind fields to term sets using CAML as the term
     set Guids are not known.
    Cannot import terms with their Guids.
    Cannot export terms even programmatically.
    Cannot find out the term Guids, so cannot do anything which
     requires the Guid, e.g. hierarchical queries.
    Cannot use the TaxonomyWebTaggingControl as it can only be bound
     to a term set programmatically.
Nick Hobbs          2 May 2012
Managed Metadata          www.nickhobbs.net      Page 34




              Questions
Nick Hobbs          2 May 2012
               Managed Metadata                               www.nickhobbs.net      Page 35




                               Resources
 Managed Metadata Overview
    http://technet.microsoft.com/en-us/library/ee424402.aspx
 Introduction to Managed Metadata
    http://office.microsoft.com/en-us/sharepoint-server-help/introduction-to-
     managed-metadata-in-sharepoint-server-2010-HA101859256.aspx
 Managed Metadata Limitations
    http://www.sharepointanalysthq.com/2011/06/managed-metadata-column-
     limitations/
 Managed metadata CSV input file format
    http://technet.microsoft.com/en-us/library/ee424396.aspx
 Querying on Managed Metadata Field Values
    http://msdn.microsoft.com/library/ff625182.aspx
 How to set Taxonomy Field Values programmatically
    http://nickhobbs.wordpress.com/2012/02/21/sharepoint-2010-how-to-set-
     taxonomy-field-values-programmatically/
Nick Hobbs          2 May 2012
              Managed Metadata                             www.nickhobbs.net      Page 36




                              Resources
 User Profile Property Using Term Set, Required Validation Does Not
  Work
    http://nickhobbs.wordpress.com/2012/02/07/sharepoint-2010-bug-user-
     profile-property-using-term-set-required-validation-does-not-work/
 Managed Metadata Converts Ampersand and Double Quotes to Unicode
    http://nickhobbs.wordpress.com/2012/03/29/sharepoint-2010-managed-
     metadata-converts-ampersand-and-double-quotes-to-unicode/
 People Refinement Panel does not work properly with Multi-Value
  taxonomy user profile properties
    http://nickhobbs.wordpress.com/2012/04/03/sharepoint-2010-bug-people-
     refinement-panel-does-not-work-properly-with-multi-value-user-profile-
     properties/
 Search Refinement Panel’s TaxonomyFilterGenerator Produces
  Unexpected Results
    http://nickhobbs.wordpress.com/2012/04/19/sharepoint-2010-bug-search-
     refinement-panels-taxonomyfiltergenerator-produces-unexpected-results/
Nick Hobbs          2 May 2012
Managed Metadata                  www.nickhobbs.net      Page 37




        More information



     Nick Hobbs
     nick@nickhobbs.net
     www.nickhobbs.net
     www.linkedin.com/in/nhobbs

More Related Content

What's hot

Metadata management in SharePoint
Metadata management in SharePointMetadata management in SharePoint
Metadata management in SharePoint
Metataxis
 
MMS2010
MMS2010MMS2010
MMS2010
Chris McNulty
 
SPSBOS15 - Must Love Term Sets: The New and Improved Managed Metadata Service...
SPSBOS15 - Must Love Term Sets: The New and Improved Managed Metadata Service...SPSBOS15 - Must Love Term Sets: The New and Improved Managed Metadata Service...
SPSBOS15 - Must Love Term Sets: The New and Improved Managed Metadata Service...
Jonathan Ralton
 
SPSCT15 - Must Love Term Sets: The New and Improved Managed Metadata Service ...
SPSCT15 - Must Love Term Sets: The New and Improved Managed Metadata Service ...SPSCT15 - Must Love Term Sets: The New and Improved Managed Metadata Service ...
SPSCT15 - Must Love Term Sets: The New and Improved Managed Metadata Service ...
Jonathan Ralton
 
SharePoint 2010 Managed Metadata vs SQL 2012 Master Data Services
SharePoint 2010 Managed Metadata vs SQL 2012 Master Data ServicesSharePoint 2010 Managed Metadata vs SQL 2012 Master Data Services
SharePoint 2010 Managed Metadata vs SQL 2012 Master Data Services
Henry Ong
 
SPSNYC14 - Must Love Term Sets: The New and Improved Managed Metadata Service...
SPSNYC14 - Must Love Term Sets: The New and Improved Managed Metadata Service...SPSNYC14 - Must Love Term Sets: The New and Improved Managed Metadata Service...
SPSNYC14 - Must Love Term Sets: The New and Improved Managed Metadata Service...
Jonathan Ralton
 
Managed metadata – SharePoint 2013
Managed metadata – SharePoint 2013Managed metadata – SharePoint 2013
Managed metadata – SharePoint 2013
prajeeshprathap
 
Building ECM applications using Managed Metadata in SharePoint 2013 - SharePo...
Building ECM applications using Managed Metadata in SharePoint 2013 - SharePo...Building ECM applications using Managed Metadata in SharePoint 2013 - SharePo...
Building ECM applications using Managed Metadata in SharePoint 2013 - SharePo...
Falak Mahmood
 
SharePoint Knowledge Management Suite
SharePoint Knowledge Management Suite SharePoint Knowledge Management Suite
SharePoint Knowledge Management Suite
Layer2
 
TSPUG: Content Management in SharePoint 2010
TSPUG: Content Management in SharePoint 2010TSPUG: Content Management in SharePoint 2010
TSPUG: Content Management in SharePoint 2010
Eli Robillard
 
Moving mountains with Sharepoint - Document Management with SharePoint 2013
Moving mountains with Sharepoint - Document Management with SharePoint 2013Moving mountains with Sharepoint - Document Management with SharePoint 2013
Moving mountains with Sharepoint - Document Management with SharePoint 2013
Oliver Wirkus
 
Kbee Spaces Financial Services
Kbee Spaces Financial ServicesKbee Spaces Financial Services
Kbee Spaces Financial Services
atolomei
 
Metadata an overview
Metadata an overviewMetadata an overview
Metadata an overview
robin fay
 
Webinar: Does the SharePoint 2010 Term Store Seem Like Alphabet Soup? Find ...
Webinar:  Does the SharePoint 2010 Term Store Seem Like Alphabet Soup?  Find ...Webinar:  Does the SharePoint 2010 Term Store Seem Like Alphabet Soup?  Find ...
Webinar: Does the SharePoint 2010 Term Store Seem Like Alphabet Soup? Find ...
martingarland
 
Enhancing Relevancy & User Experience with #SharePoint Search sps-philly 2015
Enhancing Relevancy & User Experience with #SharePoint Search   sps-philly 2015Enhancing Relevancy & User Experience with #SharePoint Search   sps-philly 2015
Enhancing Relevancy & User Experience with #SharePoint Search sps-philly 2015
Gina Montgomery, V-TSP
 
Content Management: What is it and why do we do it?
Content Management:  What is it and why do we do it?Content Management:  What is it and why do we do it?
Content Management: What is it and why do we do it?
Lorne Rogers, ECM-M, PMP [Open Networker]
 
Expert Webinar Series 2: Designing Information Architecture for SharePoint: M...
Expert Webinar Series 2: Designing Information Architecture for SharePoint: M...Expert Webinar Series 2: Designing Information Architecture for SharePoint: M...
Expert Webinar Series 2: Designing Information Architecture for SharePoint: M...
martingarland
 
INFOGOV14 - Trusting Your KM & ECM Strategy to SharePoint
INFOGOV14 - Trusting Your KM & ECM Strategy to SharePointINFOGOV14 - Trusting Your KM & ECM Strategy to SharePoint
INFOGOV14 - Trusting Your KM & ECM Strategy to SharePoint
Jonathan Ralton
 
Jonathan Ralton - Trusting Your KM & ECM Strategy To SharePoint
Jonathan Ralton - Trusting Your KM & ECM Strategy To SharePointJonathan Ralton - Trusting Your KM & ECM Strategy To SharePoint
Jonathan Ralton - Trusting Your KM & ECM Strategy To SharePoint
ARMA International
 
DITA, Semantics, Content Management, Dynamic Documents, and Linked Data – A M...
DITA, Semantics, Content Management, Dynamic Documents, and Linked Data – A M...DITA, Semantics, Content Management, Dynamic Documents, and Linked Data – A M...
DITA, Semantics, Content Management, Dynamic Documents, and Linked Data – A M...
Paul Wlodarczyk
 

What's hot (20)

Metadata management in SharePoint
Metadata management in SharePointMetadata management in SharePoint
Metadata management in SharePoint
 
MMS2010
MMS2010MMS2010
MMS2010
 
SPSBOS15 - Must Love Term Sets: The New and Improved Managed Metadata Service...
SPSBOS15 - Must Love Term Sets: The New and Improved Managed Metadata Service...SPSBOS15 - Must Love Term Sets: The New and Improved Managed Metadata Service...
SPSBOS15 - Must Love Term Sets: The New and Improved Managed Metadata Service...
 
SPSCT15 - Must Love Term Sets: The New and Improved Managed Metadata Service ...
SPSCT15 - Must Love Term Sets: The New and Improved Managed Metadata Service ...SPSCT15 - Must Love Term Sets: The New and Improved Managed Metadata Service ...
SPSCT15 - Must Love Term Sets: The New and Improved Managed Metadata Service ...
 
SharePoint 2010 Managed Metadata vs SQL 2012 Master Data Services
SharePoint 2010 Managed Metadata vs SQL 2012 Master Data ServicesSharePoint 2010 Managed Metadata vs SQL 2012 Master Data Services
SharePoint 2010 Managed Metadata vs SQL 2012 Master Data Services
 
SPSNYC14 - Must Love Term Sets: The New and Improved Managed Metadata Service...
SPSNYC14 - Must Love Term Sets: The New and Improved Managed Metadata Service...SPSNYC14 - Must Love Term Sets: The New and Improved Managed Metadata Service...
SPSNYC14 - Must Love Term Sets: The New and Improved Managed Metadata Service...
 
Managed metadata – SharePoint 2013
Managed metadata – SharePoint 2013Managed metadata – SharePoint 2013
Managed metadata – SharePoint 2013
 
Building ECM applications using Managed Metadata in SharePoint 2013 - SharePo...
Building ECM applications using Managed Metadata in SharePoint 2013 - SharePo...Building ECM applications using Managed Metadata in SharePoint 2013 - SharePo...
Building ECM applications using Managed Metadata in SharePoint 2013 - SharePo...
 
SharePoint Knowledge Management Suite
SharePoint Knowledge Management Suite SharePoint Knowledge Management Suite
SharePoint Knowledge Management Suite
 
TSPUG: Content Management in SharePoint 2010
TSPUG: Content Management in SharePoint 2010TSPUG: Content Management in SharePoint 2010
TSPUG: Content Management in SharePoint 2010
 
Moving mountains with Sharepoint - Document Management with SharePoint 2013
Moving mountains with Sharepoint - Document Management with SharePoint 2013Moving mountains with Sharepoint - Document Management with SharePoint 2013
Moving mountains with Sharepoint - Document Management with SharePoint 2013
 
Kbee Spaces Financial Services
Kbee Spaces Financial ServicesKbee Spaces Financial Services
Kbee Spaces Financial Services
 
Metadata an overview
Metadata an overviewMetadata an overview
Metadata an overview
 
Webinar: Does the SharePoint 2010 Term Store Seem Like Alphabet Soup? Find ...
Webinar:  Does the SharePoint 2010 Term Store Seem Like Alphabet Soup?  Find ...Webinar:  Does the SharePoint 2010 Term Store Seem Like Alphabet Soup?  Find ...
Webinar: Does the SharePoint 2010 Term Store Seem Like Alphabet Soup? Find ...
 
Enhancing Relevancy & User Experience with #SharePoint Search sps-philly 2015
Enhancing Relevancy & User Experience with #SharePoint Search   sps-philly 2015Enhancing Relevancy & User Experience with #SharePoint Search   sps-philly 2015
Enhancing Relevancy & User Experience with #SharePoint Search sps-philly 2015
 
Content Management: What is it and why do we do it?
Content Management:  What is it and why do we do it?Content Management:  What is it and why do we do it?
Content Management: What is it and why do we do it?
 
Expert Webinar Series 2: Designing Information Architecture for SharePoint: M...
Expert Webinar Series 2: Designing Information Architecture for SharePoint: M...Expert Webinar Series 2: Designing Information Architecture for SharePoint: M...
Expert Webinar Series 2: Designing Information Architecture for SharePoint: M...
 
INFOGOV14 - Trusting Your KM & ECM Strategy to SharePoint
INFOGOV14 - Trusting Your KM & ECM Strategy to SharePointINFOGOV14 - Trusting Your KM & ECM Strategy to SharePoint
INFOGOV14 - Trusting Your KM & ECM Strategy to SharePoint
 
Jonathan Ralton - Trusting Your KM & ECM Strategy To SharePoint
Jonathan Ralton - Trusting Your KM & ECM Strategy To SharePointJonathan Ralton - Trusting Your KM & ECM Strategy To SharePoint
Jonathan Ralton - Trusting Your KM & ECM Strategy To SharePoint
 
DITA, Semantics, Content Management, Dynamic Documents, and Linked Data – A M...
DITA, Semantics, Content Management, Dynamic Documents, and Linked Data – A M...DITA, Semantics, Content Management, Dynamic Documents, and Linked Data – A M...
DITA, Semantics, Content Management, Dynamic Documents, and Linked Data – A M...
 

Similar to SharePoint 2010 Managed Metadata

KMA Taxonomy TBC2010
KMA Taxonomy TBC2010KMA Taxonomy TBC2010
SharePoint Connections Coast to Coast Overview of Enterprise Content Management
SharePoint Connections Coast to Coast Overview of Enterprise Content ManagementSharePoint Connections Coast to Coast Overview of Enterprise Content Management
SharePoint Connections Coast to Coast Overview of Enterprise Content Management
Ivan Sanders
 
KMA Webinar: Managed Metadata Services in SharePoint 2010
KMA Webinar: Managed Metadata Services in SharePoint 2010KMA Webinar: Managed Metadata Services in SharePoint 2010
KMA Webinar: Managed Metadata Services in SharePoint 2010
Knowledge Management Associates, LLC
 
ECM And Enterprise Metadata in SharePoint 2010
ECM And Enterprise Metadata in SharePoint 2010ECM And Enterprise Metadata in SharePoint 2010
ECM And Enterprise Metadata in SharePoint 2010
Phuong Nguyen
 
KMA on Mms2010 nyc
KMA on Mms2010 nycKMA on Mms2010 nyc
Explore SharePoint 2010 Enterprise & Document Management features
Explore SharePoint 2010 Enterprise & Document Management features Explore SharePoint 2010 Enterprise & Document Management features
Explore SharePoint 2010 Enterprise & Document Management features
K.Mohamed Faizal
 
Ooluk Data Dictionary Manager
Ooluk Data Dictionary ManagerOoluk Data Dictionary Manager
Ooluk Data Dictionary Manager
Siddhesh Prabhu
 
Meta data
Meta dataMeta data
Meta data
MoonFandrA
 
Code4Lib 2008 Metadata Registry
Code4Lib 2008   Metadata RegistryCode4Lib 2008   Metadata Registry
Code4Lib 2008 Metadata Registry
jonphipps
 
Enterprise 2.0 Use Cases for Semantic Web/Kiwi
   Enterprise 2.0 Use Cases for Semantic Web/Kiwi    Enterprise 2.0 Use Cases for Semantic Web/Kiwi
Enterprise 2.0 Use Cases for Semantic Web/Kiwi
Peter H. Reiser
 
NHSPUG June 2015 - Must Love Term Sets: The New and Improved Managed Metadat...
NHSPUG June 2015  - Must Love Term Sets: The New and Improved Managed Metadat...NHSPUG June 2015  - Must Love Term Sets: The New and Improved Managed Metadat...
NHSPUG June 2015 - Must Love Term Sets: The New and Improved Managed Metadat...
Jonathan Ralton
 
Drupal Training
Drupal TrainingDrupal Training
Drupal Training
Sam Davis
 
Tracking the Tiddlythesaurus
Tracking the TiddlythesaurusTracking the Tiddlythesaurus
Tracking the Tiddlythesaurus
Michael Adcock
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
Enterprise Knowledge
 
Share point summit_2010_lemieux-toc
Share point summit_2010_lemieux-tocShare point summit_2010_lemieux-toc
Share point summit_2010_lemieux-toc
Earley Information Science
 
Leveraging Your Taxonomy With Navtree and MAIQuery
Leveraging Your Taxonomy With Navtree and MAIQueryLeveraging Your Taxonomy With Navtree and MAIQuery
Leveraging Your Taxonomy With Navtree and MAIQuery
Access Innovations, Inc.
 
2014 CrossRef Workshops: Co-Access
2014 CrossRef Workshops: Co-Access 2014 CrossRef Workshops: Co-Access
2014 CrossRef Workshops: Co-Access
Crossref
 
Opinioz_intern
Opinioz_internOpinioz_intern
Opinioz_intern
Sai Ganesh
 
United Airlines 2012 Microsoft SharePoint Conference Presentation
United Airlines 2012 Microsoft SharePoint Conference PresentationUnited Airlines 2012 Microsoft SharePoint Conference Presentation
United Airlines 2012 Microsoft SharePoint Conference Presentation
Denise Wilson
 
Building Product Centric sites using Cross-Site publishing and Search [Swiss ...
Building Product Centric sites using Cross-Site publishing and Search [Swiss ...Building Product Centric sites using Cross-Site publishing and Search [Swiss ...
Building Product Centric sites using Cross-Site publishing and Search [Swiss ...
Marius Constantinescu [MVP]
 

Similar to SharePoint 2010 Managed Metadata (20)

KMA Taxonomy TBC2010
KMA Taxonomy TBC2010KMA Taxonomy TBC2010
KMA Taxonomy TBC2010
 
SharePoint Connections Coast to Coast Overview of Enterprise Content Management
SharePoint Connections Coast to Coast Overview of Enterprise Content ManagementSharePoint Connections Coast to Coast Overview of Enterprise Content Management
SharePoint Connections Coast to Coast Overview of Enterprise Content Management
 
KMA Webinar: Managed Metadata Services in SharePoint 2010
KMA Webinar: Managed Metadata Services in SharePoint 2010KMA Webinar: Managed Metadata Services in SharePoint 2010
KMA Webinar: Managed Metadata Services in SharePoint 2010
 
ECM And Enterprise Metadata in SharePoint 2010
ECM And Enterprise Metadata in SharePoint 2010ECM And Enterprise Metadata in SharePoint 2010
ECM And Enterprise Metadata in SharePoint 2010
 
KMA on Mms2010 nyc
KMA on Mms2010 nycKMA on Mms2010 nyc
KMA on Mms2010 nyc
 
Explore SharePoint 2010 Enterprise & Document Management features
Explore SharePoint 2010 Enterprise & Document Management features Explore SharePoint 2010 Enterprise & Document Management features
Explore SharePoint 2010 Enterprise & Document Management features
 
Ooluk Data Dictionary Manager
Ooluk Data Dictionary ManagerOoluk Data Dictionary Manager
Ooluk Data Dictionary Manager
 
Meta data
Meta dataMeta data
Meta data
 
Code4Lib 2008 Metadata Registry
Code4Lib 2008   Metadata RegistryCode4Lib 2008   Metadata Registry
Code4Lib 2008 Metadata Registry
 
Enterprise 2.0 Use Cases for Semantic Web/Kiwi
   Enterprise 2.0 Use Cases for Semantic Web/Kiwi    Enterprise 2.0 Use Cases for Semantic Web/Kiwi
Enterprise 2.0 Use Cases for Semantic Web/Kiwi
 
NHSPUG June 2015 - Must Love Term Sets: The New and Improved Managed Metadat...
NHSPUG June 2015  - Must Love Term Sets: The New and Improved Managed Metadat...NHSPUG June 2015  - Must Love Term Sets: The New and Improved Managed Metadat...
NHSPUG June 2015 - Must Love Term Sets: The New and Improved Managed Metadat...
 
Drupal Training
Drupal TrainingDrupal Training
Drupal Training
 
Tracking the Tiddlythesaurus
Tracking the TiddlythesaurusTracking the Tiddlythesaurus
Tracking the Tiddlythesaurus
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
Share point summit_2010_lemieux-toc
Share point summit_2010_lemieux-tocShare point summit_2010_lemieux-toc
Share point summit_2010_lemieux-toc
 
Leveraging Your Taxonomy With Navtree and MAIQuery
Leveraging Your Taxonomy With Navtree and MAIQueryLeveraging Your Taxonomy With Navtree and MAIQuery
Leveraging Your Taxonomy With Navtree and MAIQuery
 
2014 CrossRef Workshops: Co-Access
2014 CrossRef Workshops: Co-Access 2014 CrossRef Workshops: Co-Access
2014 CrossRef Workshops: Co-Access
 
Opinioz_intern
Opinioz_internOpinioz_intern
Opinioz_intern
 
United Airlines 2012 Microsoft SharePoint Conference Presentation
United Airlines 2012 Microsoft SharePoint Conference PresentationUnited Airlines 2012 Microsoft SharePoint Conference Presentation
United Airlines 2012 Microsoft SharePoint Conference Presentation
 
Building Product Centric sites using Cross-Site publishing and Search [Swiss ...
Building Product Centric sites using Cross-Site publishing and Search [Swiss ...Building Product Centric sites using Cross-Site publishing and Search [Swiss ...
Building Product Centric sites using Cross-Site publishing and Search [Swiss ...
 

Recently uploaded

Removing Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software FuzzingRemoving Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software Fuzzing
Aftab Hussain
 
GridMate - End to end testing is a critical piece to ensure quality and avoid...
GridMate - End to end testing is a critical piece to ensure quality and avoid...GridMate - End to end testing is a critical piece to ensure quality and avoid...
GridMate - End to end testing is a critical piece to ensure quality and avoid...
ThomasParaiso2
 
DevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA ConnectDevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA Connect
Kari Kakkonen
 
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
Neo4j
 
Goodbye Windows 11: Make Way for Nitrux Linux 3.5.0!
Goodbye Windows 11: Make Way for Nitrux Linux 3.5.0!Goodbye Windows 11: Make Way for Nitrux Linux 3.5.0!
Goodbye Windows 11: Make Way for Nitrux Linux 3.5.0!
SOFTTECHHUB
 
Data structures and Algorithms in Python.pdf
Data structures and Algorithms in Python.pdfData structures and Algorithms in Python.pdf
Data structures and Algorithms in Python.pdf
TIPNGVN2
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
Alan Dix
 
Microsoft - Power Platform_G.Aspiotis.pdf
Microsoft - Power Platform_G.Aspiotis.pdfMicrosoft - Power Platform_G.Aspiotis.pdf
Microsoft - Power Platform_G.Aspiotis.pdf
Uni Systems S.M.S.A.
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
James Anderson
 
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
Neo4j
 
Mind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AIMind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AI
Kumud Singh
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Albert Hoitingh
 
UiPath Test Automation using UiPath Test Suite series, part 6
UiPath Test Automation using UiPath Test Suite series, part 6UiPath Test Automation using UiPath Test Suite series, part 6
UiPath Test Automation using UiPath Test Suite series, part 6
DianaGray10
 
Generative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to ProductionGenerative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to Production
Aggregage
 
zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex ProofszkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
Alex Pruden
 
Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !
KatiaHIMEUR1
 
How to Get CNIC Information System with Paksim Ga.pptx
How to Get CNIC Information System with Paksim Ga.pptxHow to Get CNIC Information System with Paksim Ga.pptx
How to Get CNIC Information System with Paksim Ga.pptx
danishmna97
 
Full-RAG: A modern architecture for hyper-personalization
Full-RAG: A modern architecture for hyper-personalizationFull-RAG: A modern architecture for hyper-personalization
Full-RAG: A modern architecture for hyper-personalization
Zilliz
 
Introduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - CybersecurityIntroduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - Cybersecurity
mikeeftimakis1
 
Large Language Model (LLM) and it’s Geospatial Applications
Large Language Model (LLM) and it’s Geospatial ApplicationsLarge Language Model (LLM) and it’s Geospatial Applications
Large Language Model (LLM) and it’s Geospatial Applications
Rohit Gautam
 

Recently uploaded (20)

Removing Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software FuzzingRemoving Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software Fuzzing
 
GridMate - End to end testing is a critical piece to ensure quality and avoid...
GridMate - End to end testing is a critical piece to ensure quality and avoid...GridMate - End to end testing is a critical piece to ensure quality and avoid...
GridMate - End to end testing is a critical piece to ensure quality and avoid...
 
DevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA ConnectDevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA Connect
 
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
 
Goodbye Windows 11: Make Way for Nitrux Linux 3.5.0!
Goodbye Windows 11: Make Way for Nitrux Linux 3.5.0!Goodbye Windows 11: Make Way for Nitrux Linux 3.5.0!
Goodbye Windows 11: Make Way for Nitrux Linux 3.5.0!
 
Data structures and Algorithms in Python.pdf
Data structures and Algorithms in Python.pdfData structures and Algorithms in Python.pdf
Data structures and Algorithms in Python.pdf
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
 
Microsoft - Power Platform_G.Aspiotis.pdf
Microsoft - Power Platform_G.Aspiotis.pdfMicrosoft - Power Platform_G.Aspiotis.pdf
Microsoft - Power Platform_G.Aspiotis.pdf
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
 
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
 
Mind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AIMind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AI
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
 
UiPath Test Automation using UiPath Test Suite series, part 6
UiPath Test Automation using UiPath Test Suite series, part 6UiPath Test Automation using UiPath Test Suite series, part 6
UiPath Test Automation using UiPath Test Suite series, part 6
 
Generative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to ProductionGenerative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to Production
 
zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex ProofszkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
 
Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !
 
How to Get CNIC Information System with Paksim Ga.pptx
How to Get CNIC Information System with Paksim Ga.pptxHow to Get CNIC Information System with Paksim Ga.pptx
How to Get CNIC Information System with Paksim Ga.pptx
 
Full-RAG: A modern architecture for hyper-personalization
Full-RAG: A modern architecture for hyper-personalizationFull-RAG: A modern architecture for hyper-personalization
Full-RAG: A modern architecture for hyper-personalization
 
Introduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - CybersecurityIntroduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - Cybersecurity
 
Large Language Model (LLM) and it’s Geospatial Applications
Large Language Model (LLM) and it’s Geospatial ApplicationsLarge Language Model (LLM) and it’s Geospatial Applications
Large Language Model (LLM) and it’s Geospatial Applications
 

SharePoint 2010 Managed Metadata

  • 1. Managed Metadata By Nick Hobbs 2nd May 2012 Principal SharePoint Developer, Capgemini UK www.nickhobbs.net
  • 2. Nick Hobbs 2 May 2012 Managed Metadata www.nickhobbs.net Page 2 Agenda  What is Managed Metadata?  Why use it?  How can I use Managed Metadata via the UI?  How does it work behind-the-scenes?  How can I use it programmatically?  What problems and limitations are there?  Questions?
  • 3. Nick Hobbs 2 May 2012 Managed Metadata www.nickhobbs.net Page 3 What is Managed Metadata?
  • 4. Nick Hobbs 2 May 2012 Managed Metadata www.nickhobbs.net Page 4 What is Managed Metadata?  A hierarchical collection of centrally managed terms that you can define, and then use as attributes for list items.  Available only in SharePoint Server 2010 not in Foundation 2010.  A term is a word or a phrase that can be associated with an item.  A term set is a collection of related terms. A column can be specified to contain a term from a specific term set.  A group is a set of term sets that all share common security requirements.  Managed Metadata refers to the fact that terms and term sets can be created and managed independently from the columns.
  • 5. Nick Hobbs 2 May 2012 Managed Metadata www.nickhobbs.net Page 5 Local vs Global Term Sets  Local term sets are created within the context of a site collection.  Global term sets are created outside the context of a site collection, in a centrally managed term store.  Users can see only global term sets and term sets that are local to the user's site collection.
  • 6. Nick Hobbs 2 May 2012 Managed Metadata www.nickhobbs.net Page 6 Enterprise Keywords  Enterprise Keywords is a predefined column which can be added to a list or directly onto content types.  Similar to other taxonomy fields, but uses the Enterprise Keywords control.  Allows multiple values by default.  Allows Enterprise Keywords and Managed Terms to be selected.  All enterprise keywords are part of a single, non-hierarchical term set called ‘Keywords’.
  • 7. Nick Hobbs 2 May 2012 Managed Metadata www.nickhobbs.net Page 7 Term Store Management Tool  The Term Store Management Tool is used to manage the term store. With the appropriate permissions, you can use this tool to:  Add, modify, or delete – Groups, Term Sets, Terms.  Arrange terms within a term set into a hierarchy.  Create synonyms of terms.  Specify language variants for each term.  Reuse/share terms with other term sets.  Deprecate terms.  Import terms (CSV).  Convert enterprise keywords into managed terms, moving them into a term set.  Grant permissions on groups of term sets.  It is found via Central Administration, and also in Site Settings.
  • 8. Nick Hobbs 2 May 2012 Managed Metadata www.nickhobbs.net Page 8 Term Store Management Tool
  • 9. Nick Hobbs 2 May 2012 Managed Metadata www.nickhobbs.net Page 9 Why use it?
  • 10. Nick Hobbs 2 May 2012 Managed Metadata www.nickhobbs.net Page 10 Why use it?  Enables enterprise-wide reuse. No need to create and sync lookup lists in every site collection, or embed all values in choice fields.  Hierarchical terms – select from a hierarchy, and optionally show the full path when the value is displayed.  Metadata driven navigation on document libraries  Navigation Hierarchies  Key Filters  Term set management can be controlled with permissions independently of the sites in which they are used (for centrally managed terms).
  • 11. Nick Hobbs 2 May 2012 Managed Metadata www.nickhobbs.net Page 11 Why use it?  More consistent use of terminology:  Easier to build robust processes and solutions that rely on metadata.  Improved search results.  Search refinement panel.  Dynamic. Values are not written into the field definition, unlike e.g. choice fields.  Increased flexibility. Term Store Administrators and contributors can maintain and adapt metadata as business needs evolve. Changes automatically synchronise to all columns that use them.  Multi-lingual labels can be specified for terms on multi-lingual sites.  Reusable content types (Content Type Hub) bind to the same term sets everywhere, or to different term sets in each site collection.
  • 12. Nick Hobbs 2 May 2012 Managed Metadata www.nickhobbs.net Page 12 How can I use Managed Metadata via the UI?
  • 13. Nick Hobbs 2 May 2012 Managed Metadata www.nickhobbs.net Page 13 How can I use Managed Metadata via the UI?
  • 14. Nick Hobbs 2 May 2012 Managed Metadata www.nickhobbs.net Page 14 How does it work behind-the-scenes?
  • 15. Nick Hobbs 2 May 2012 Managed Metadata www.nickhobbs.net Page 15 How does it work behind-the-scenes?  A Taxonomy Field is a lookup field derived from SPFieldLookup and looks up from:  TaxonomyHiddenList  An instance in each site collection.  Used as the lookup list for all Taxonomy Fields in the site collection.  Contains all terms used in the site collection.  The list item id (integer) for the term is known as WSS ID, and is therefore unique only to terms used in the site collection.  Located in the site collection at '/Lists/TaxonomyHiddenList'.  The list ID can be found as a property on the web 'taxonomyhiddenlist'.  Viewing a taxonomy field value gets the language-specific label (or path) of the term from the TaxonomyHiddenList.  Editing a taxonomy field value queries the term store directly for all terms.
  • 16. Nick Hobbs 2 May 2012 Managed Metadata www.nickhobbs.net Page 16 How does it work behind-the-scenes?  Taxonomy Update Scheduler runs hourly, pushing down term store changes to the hidden lists, automatically updating taxonomy field values in all lists as they lookup against the TaxonomyHiddenList.  The Taxonomy Field Value consists of: {wssid};#{label}|{termguid}  A Managed Metadata field is actually comprised of 2 fields:  A Taxonomy Field (TaxonomyFieldType)  A Hidden Text Field (Note)  WSS ID & Label stored in the Taxonomy Field as {wssid};#{label}  The lookup value to the TaxonomyHiddenList.  Label|Guid pair stored in the Hidden Text Field as {label}|{termguid}  The label & Guid for the term in the term store.
  • 17. Nick Hobbs 2 May 2012 Managed Metadata www.nickhobbs.net Page 17 How does it work behind-the-scenes?  Hidden Text Field  Display Name: {Taxonomy Field Name}_0  Internal Name & Static Name:  Pre-SP1: {Taxonomy Field Name}TaxHTField0  Post-SP1: Random name similar to: k9cea7ffb6ad43dcb9ee90ce43506c7f  TaxCatchAll & TaxCatchAllLabel Fields  Each list containing a Taxonomy Field also has the hidden TaxCatchAll and TaxCatchAllLabel fields – should add to your content types too.  Display names "Taxonomy Catch All Column“ & "Taxonomy Catch All Column1".  Contains the WSS ID of each taxonomy value used in the item.  Search uses these to do managed metadata searches and refinements against list items without having to inspect all taxonomy fields in every list.
  • 18. Nick Hobbs 2 May 2012 Managed Metadata www.nickhobbs.net Page 18 How does it work behind-the-scenes?  TaxonomyTaggingWebControl is a web control which behaves similar to the Taxonomy Field Control  It is bound to the term set in a similar manner to the Taxonomy Field.  It may be used e.g. on custom search forms to pick a term to search for.  The TaxonomyFieldAdded site collection feature is required to use managed metadata.  It creates the TaxonomyHiddenList, sets up the event receivers and adds the site columns.  Activated on all site definitions except Blank Site.
  • 19. Nick Hobbs 2 May 2012 Managed Metadata www.nickhobbs.net Page 19 How can I use it programmatically?
  • 20. Nick Hobbs 2 May 2012 Managed Metadata www.nickhobbs.net Page 20 How can I use it programmatically?  Namespace: Microsoft.SharePoint.Taxonomy  Term  Name – gets the name using the current LCID  Parent – parent term  Terms – child terms  IsAvailableForTagging  TermSet  CreateLabel(…)  GetTerm(…), GetTerms(..) + overloads
  • 21. Nick Hobbs 2 May 2012 Managed Metadata www.nickhobbs.net Page 21 How can I use it programmatically?  TermSet  Name  Group  Terms  IsAvailableForTagging  IsOpenForTermCreation  GetTerm(…), GetTerms(…), GetAllTerms(…) + overloads  Group  Name  IsSiteCollectionGroup – for local term sets  TermSets  CreateTermSet(...) + overloads
  • 22. Nick Hobbs 2 May 2012 Managed Metadata www.nickhobbs.net Page 22 How can I use it programmatically?  TermStore  Name  KeywordsTermSet – enterprise keywords.  Session – the current taxonomy session.  CommitAll() – Note: multiple commits are required if modifying parent and child terms/term sets together.  RollbackAll()  GetTerm(...), GetTerms(...), GetTermSet(...), GetTermSets(...), GetGro up(...) + overloads and similar. Used to get terms, term sets, and groups by name without having to traverse the term hierarchy to find them.
  • 23. Nick Hobbs 2 May 2012 Managed Metadata www.nickhobbs.net Page 23 How can I use it programmatically?  TaxonomySession  Starting point to access the term store programmatically.  Constructor needs an SPSite. Provides context to locate the local term sets specific to the site collection, and global term sets linked to the web application.  DefaultSiteCollectionTermStore – returns the term store in the Managed Metadata Service defined as the default for the web application.  TermStores – all term stores accessible by name, e.g. if you have multiple Managed Metadata Services.  GetTerm(...), GetTerms(...), GetTermSets(...) + overloads and similar – like those found in TermStore. Taxonomy Term Group Term Set Term Session Store
  • 24. Nick Hobbs 2 May 2012 Managed Metadata www.nickhobbs.net Page 24 How can I use it programmatically?  CAML to define the Taxonomy Field <Field ID="{15181134-8839-47A9-9A38-D116FFFF0006}“ Type="TaxonomyFieldType“ Type=“TaxonomyFieldType “ DisplayName="Subject“ Name=“CustomSubject“ or StaticName=“CustomSubject“ Type=“TaxonomyFieldTypeMulti” Group=“Custom“ Required="FALSE“ DisplaceOnUpgrade="TRUE“ Description=“…“ ShowField="Term1033“ ShowField=“Term$Resources:core,Language;” EnforceUniqueValues="FALSE“ />  CAML to define the Hidden Text Field <Field ID="{15181134-8839-47A9-9A38-D116EEEE0006}" Type="Note" DisplayName="Subject_0" Name=“CustomSubjectTaxHTField0" StaticName=“CustomSubjectTaxHTField0" ShowInViewForms="FALSE" Required="FALSE" Hidden="TRUE" Note: When defining a content type, the CanToggleHidden="TRUE" Hidden Text Field must be referenced DisplaceOnUpgrade="TRUE“ RowOrdinal="0" /> BEFORE the Taxonomy Field.
  • 25. Nick Hobbs 2 May 2012 Managed Metadata www.nickhobbs.net Page 25 How can I use it programmatically?  CAML to Bind Taxonomy Field to Hidden Text Field & Term Set <Customization> <ArrayOfProperty> <Property> <Name>SspId</Name> - SspId is the Term Store Id <Value xmlns:q1="http://www.w3.org/2001/XMLSchema" p4:type="q1:string" xmlns:p4="http://www.w3.org/2001/XMLSchema-instance"> a98dd270-8577-4db8-99e1-b9e894624fdc </Value> </Property> <Property> <Name>TermSetId</Name> - TermSetId binds the Taxonomy field to the <Value xmlns:q2="http://www.w3.org/2001/XMLSchema" Term Set. p4:type="q2:string" xmlns:p4="http://www.w3.org/2001/XMLSchema-instance"> a7ae10cd-6c7c-4386-a1f2-7abec8e759e2 </Value> </Property> <Property> <Name>TextField</Name> - TextField binds the Taxonomy field to the <Value xmlns:q3="http://www.w3.org/2001/XMLSchema" Hidden Text Field using its’ Field ID. p4:type="q3:string" xmlns:p4="http://www.w3.org/2001/XMLSchema-instance"> 15181134-8839-47A9-9A38-D116EEEE0006 </Value> </Property> … </ArrayOfProperty> </Customization> • This CAML goes inside the field definition. Useful for sandboxed solutions. • Cannot bind the field to a different term set for each list instance without manually changing it. • Also requires the GUIDs to be known up-front and embedded into the CAML.
  • 26. Nick Hobbs 2 May 2012 Managed Metadata www.nickhobbs.net Page 26 How can I use it programmatically?  Code to Bind Taxonomy Field to Hidden Text Field & Term Set using (SPSite site = new SPSite("http://site")) { TaxonomyField taxonomyField = (TaxonomyField)site.RootWeb.Fields*“Subject"+; - Gets the taxonomy field & hidden text field SPField hiddenTextField = site.RootWeb.Fields*“Subject_0"+; TaxonomySession session = new TaxonomySession(site); - Opens a new taxonomy session TermStore termStore = session.DefaultSiteCollectionTermStore; - Uses the default site collection term store Group group = termStore.Groups*“Enterprise Term Sets"+; - Selects a group & term set to bind to the field TermSet termSet = group.TermSets["Subject"]; taxonomyField.TextField = hiddenTextField.Id; - TextField - Binds the hidden text field taxonomyField.SspId = termSet.TermStore.Id; - SspId – Term Store Id taxonomyField.TermSetId = termSet.Id; - TermSetId – binds the field to the term set taxonomyField.AnchorId = Guid.Empty; - AnchorId – The term to use as the root term. taxonomyField.Open = false; - Open – Whether users can enter new terms. taxonomyField.AllowMultipleValues = false; - AllowMultipleValues – For multi-value fields. taxonomyField.IsPathRendered = false; - IsPathRendered – Whether to show the full taxonomyField.TargetTemplate = string.Empty; hierarchical path of the term. - TargetTemplate - Web-relative URL of the taxonomyField.Update(true); target page that is used to construct the hyperlink } on each Term when the TaxonomyField is rendered.
  • 27. Nick Hobbs 2 May 2012 Managed Metadata www.nickhobbs.net Page 27 How can I use it programmatically?  Setting a Taxonomy Field Value programmatically  As explained earlier, Taxonomy Field Values consist of 3 parts: {wssid};#{label}|{termguid}  Use this to set a value in an ItemAdding event receiver via the AfterProperties.  List item field values can be set easily using TaxonomyField.SetFieldValue(…), passing in the list item, and either a Term or a TaxonomyFieldValue.  If you don’t use this, you have to set the Taxonomy Field with the {wssid};#{label} and the Hidden Text Field with the {label}|{termguid}.  A TaxonomyFieldValue can be created using: TaxonomyFieldValue.PopulateFromLabelGuidPair("Label|<GUID>")  This automatically adds the term to the TaxonomyHiddenList if not there already.  It also gets the WSS ID and sets up all 3 parts of the TaxonomyFieldValue.
  • 28. Nick Hobbs 2 May 2012 Managed Metadata www.nickhobbs.net Page 28 How can I use it programmatically?  Querying for a taxonomy field value:  Finding a specific term:  SELECT Title FROM SCOPE() WHERE SCOPE = ‘All Sites’ AND MyTaxonomyField = ‘#0termguid’  Finding a term or any term below it in the term hierarchy (descendents):  SELECT Title FROM SCOPE() WHERE SCOPE = ‘All Sites’ AND MyTaxonomyField = ‘#termguid’  Only works on columns, not profile properties.
  • 29. Nick Hobbs 2 May 2012 Managed Metadata www.nickhobbs.net Page 29 What problems and limitations are there?
  • 30. Nick Hobbs 2 May 2012 Managed Metadata www.nickhobbs.net Page 30 What problems and limitations are there?  Managed Metadata is not supported by:  InfoPath forms.  SharePoint Workspace.  Content Query Web Part.  Office Document Information Panel.  Editing in Datasheet Mode.  Views cannot use Begins With or Contains operators.  Calculated fields.  Office 2007 and earlier.  Acrobat X.  SharePoint Designer Workflows read/write invalid values.  Worked around using a Custom Action to get/set values programmatically.  Possibly fixed in Dec 2011 CU.
  • 31. Nick Hobbs 2 May 2012 Managed Metadata www.nickhobbs.net Page 31 What problems and limitations are there?  Import from CSV  Separate CSV file for each term set.  Does not support synonyms, translations of terms, or merging terms.  Cannot predefine the term set and term IDs (GUID) – normally used for:  Binding fields to term sets.  Importing data or site structure using managed metadata terms.  Querying / filtering.  Custom code can use the object model to import an entire term store.  Export to CSV not possible without writing code.  Copying a site collection or content from one farm to another will require the term store data to be copied over, i.e. backup & restore of the MMS database.
  • 32. Nick Hobbs 2 May 2012 Managed Metadata www.nickhobbs.net Page 32 What problems and limitations are there?  Profile properties using a Term Set:  Hierarchical search not possible on profile properties, is possible on list fields.  Can be set as Required, but allows it to be empty "by design".  Multi-Value taxonomy fields and profile properties do not work properly in the Refinement Panel.  & and " converted to Unicode special character equivalents  TaxonomyItem.NormalizeName docs explain about & but not ".  Managed Metadata term containing a comma is difficult to enter into a taxonomy field – treated as multiple terms.  List View Lookup Threshold allows by default up to 8 lookup fields including taxonomy fields in a list. Cannot change this in SP Online.
  • 33. Nick Hobbs 2 May 2012 Managed Metadata www.nickhobbs.net Page 33 What problems and limitations are there?  Sandbox (SharePoint Online / Office 365) cannot programmatically access the Taxonomy namespace:  Cannot programmatically bind fields to term sets.  Cannot declaratively bind fields to term sets using CAML as the term set Guids are not known.  Cannot import terms with their Guids.  Cannot export terms even programmatically.  Cannot find out the term Guids, so cannot do anything which requires the Guid, e.g. hierarchical queries.  Cannot use the TaxonomyWebTaggingControl as it can only be bound to a term set programmatically.
  • 34. Nick Hobbs 2 May 2012 Managed Metadata www.nickhobbs.net Page 34 Questions
  • 35. Nick Hobbs 2 May 2012 Managed Metadata www.nickhobbs.net Page 35 Resources  Managed Metadata Overview  http://technet.microsoft.com/en-us/library/ee424402.aspx  Introduction to Managed Metadata  http://office.microsoft.com/en-us/sharepoint-server-help/introduction-to- managed-metadata-in-sharepoint-server-2010-HA101859256.aspx  Managed Metadata Limitations  http://www.sharepointanalysthq.com/2011/06/managed-metadata-column- limitations/  Managed metadata CSV input file format  http://technet.microsoft.com/en-us/library/ee424396.aspx  Querying on Managed Metadata Field Values  http://msdn.microsoft.com/library/ff625182.aspx  How to set Taxonomy Field Values programmatically  http://nickhobbs.wordpress.com/2012/02/21/sharepoint-2010-how-to-set- taxonomy-field-values-programmatically/
  • 36. Nick Hobbs 2 May 2012 Managed Metadata www.nickhobbs.net Page 36 Resources  User Profile Property Using Term Set, Required Validation Does Not Work  http://nickhobbs.wordpress.com/2012/02/07/sharepoint-2010-bug-user- profile-property-using-term-set-required-validation-does-not-work/  Managed Metadata Converts Ampersand and Double Quotes to Unicode  http://nickhobbs.wordpress.com/2012/03/29/sharepoint-2010-managed- metadata-converts-ampersand-and-double-quotes-to-unicode/  People Refinement Panel does not work properly with Multi-Value taxonomy user profile properties  http://nickhobbs.wordpress.com/2012/04/03/sharepoint-2010-bug-people- refinement-panel-does-not-work-properly-with-multi-value-user-profile- properties/  Search Refinement Panel’s TaxonomyFilterGenerator Produces Unexpected Results  http://nickhobbs.wordpress.com/2012/04/19/sharepoint-2010-bug-search- refinement-panels-taxonomyfiltergenerator-produces-unexpected-results/
  • 37. Nick Hobbs 2 May 2012 Managed Metadata www.nickhobbs.net Page 37 More information Nick Hobbs nick@nickhobbs.net www.nickhobbs.net www.linkedin.com/in/nhobbs

Editor's Notes

  1. Microsoft have provided a good overview of Managed Metadata, so I will use some of their notes and I have added to them.A link to Microsoft’s overview of Managed Metadata will be provided at the end:http://technet.microsoft.com/en-us/library/ee424402.aspx
  2. Groups - Only users who are designated as contributors to a specific group can manage term sets that belong to the group or create new term sets within it.
  3. Local term setsare created within the context of a site collection. For example, if you add a column to a list in a document library, and create a new term set to bind the column to, the new term set is local to the site collection that contains the document library.Global term setsare created outside the context of a site collection, in a centrally managed term store. For example, the term store administrator could create a term set group called &quot;Human Resources&quot; and designate a person to manage the term set group. The group manager would create term sets that relate to Human Resources, such as job titles and pay grades in the Human Resources term set group.Users can see only global term sets and term sets that are local to the user&apos;s site collection.
  4. DemoShow Term Store Management ToolSelect Managed Metadata ServiceTerm Store AdministratorsCreate GroupGroup Managers &amp; Group Contributors define permissions.Create Global Term SetTerm Set Owner, Stakeholder, and Contact are only &quot;informational&quot; and do not define permissions.Create TermAvailable for TaggingShow existing tagsHierarchy (Team)Reused terms (Country &amp; Location)Deprecated term (Group B, Term Set C, Term E)Create Document LibraryCreate new field – Protective Marking – using term set Protective MarkingCreate new field – create local term set – Document Type (Specification, Proposal, Invoice)Note: Submission policy by default allows users to add terms to the term set.Show setting up and using Enterprise Keywords.Show how to add existing fieldEnterprise Metadata and Keywords Settings Upload document and choose Terms &amp; Enterprise KeywordsTurn on Metadata driven navigationShow Navigation HierarchiesShow Key Filters
  5. Additional points It seems that Managed Metadata in the Sandbox is very limited and has to be setup manually.At the SharePoint Conference one MVP suggested the sandbox can only use local term sets, although documentation suggests global term sets are possible with these limitations.