Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / operating-systems / Windows

Adding Properties to MOSS Advanced Search

3.15/5 (3 votes)
18 Jan 20071 min read 1  
This article explains the steps to create and configure a Managed Property in MOSS 2007 Advanced Search

Introduction

There are changes in configuring the Properties to appear in the Advanced Search in MOSS 2007. Here I explain the steps to create Managed Properties and configure it in MOSS 2007 Advanced Search.

Adding Properties to MOSS Advanced Search

  1. Go to the central administration -> Shared Services

    Sample screenshot

  2. Under the Search Menu, click on Search Settings.
  3. In the Configure Search Settings page, click on Metadata Property Mappings.

    Sample screenshot

  4. In the Metadata Property Mappings page, click on New Managed Property

    Sample screenshot

  5. Enter the Property Name and add the crawled properties that you want to add by clicking on the Add mappings button.

    Sample screenshot

    Sample screenshot

  6. Click OK. Once you have created the new custom managed property, go to the Advanced Search page.
    • Click on Site Settings and then on "Edit Page"
    • Click on Edit Menu of the Webpart and then Select "Modify Shared Web part"

In the Advanced Search Box Pane, click on the Properties Menu and then select the content in the Properties Text Box. In order that your Managed Properties appears in the Properties lists, you need to make changes in the XML file content.

Sample screenshot

The XML File in Properties has the following structure:

  • Find the string:

    XML
    <PropertyDef Name="ModifiedBy" DataType="text" 
                DisplayName="Last Modified By"/> 

  • Add the following String below it:

    XML
    <PropertyDef Name="MyProperty" DataType="text" DisplayName="MyProperty"/>

    MyProperty denotes the managed property that was created in Search Settings in the Shared Services.

  • Find the ResultType node:

    XML
    <ResultType DisplayName="All Results" Name="default">

  • Add the following string below this:

    <PropertyRef Name="MyProperty" />

  • Now you can click on Apply and OK to close the pane.
  • The property "MyProperty" will appear in the Property list box when All Results is selected.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here