<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:series="http://unfoldingneurons.com/"
	>

<channel>
	<title>SharePoint Magazine &#187; stevemann</title>
	<atom:link href="http://sharepointmagazine.net/author/stevemann/feed" rel="self" type="application/rss+xml" />
	<link>http://sharepointmagazine.net</link>
	<description>SharePoint Magazine is an online Magazine dedicated to the world of SharePoint</description>
	<lastBuildDate>Fri, 12 Mar 2010 12:38:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Customizing Search Series &#8211; Finally Customizing the Search Results</title>
		<link>http://sharepointmagazine.net/technical/development/customizing-search-series-finally-customizing-the-search-results</link>
		<comments>http://sharepointmagazine.net/technical/development/customizing-search-series-finally-customizing-the-search-results#comments</comments>
		<pubDate>Wed, 03 Dec 2008 10:56:51 +0000</pubDate>
		<dc:creator>stevemann</dc:creator>
				<category><![CDATA[Customisation]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[customise]]></category>
		<category><![CDATA[results]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[sharepoint]]></category>
		<category><![CDATA[xsl]]></category>
		<category><![CDATA[xslt]]></category>

		<guid isPermaLink="false">http://sharepointmagazine.net/?p=1004</guid>
		<description><![CDATA[ Welcome to the sixth and final article in the Customizing Search Series. We will be finally customizing the actual search results. Everything that was done previously was all part of the overall search customization experience.]]></description>
			<content:encoded><![CDATA[<p>Welcome to the sixth and final article in the Customizing Search Series. We will be finally customizing the actual search results. Everything that was done previously was all part of the overall search customization experience.</p>
<p>Perform a search within the Client scopes to bring up the Client Results page. Click on Site Actions and Edit Page. Edit the Search Core Results web part by clicking the Modify Shared Web Part from the Edit (dropdown) menu:</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/fs-1.bmp"><img class="alignnone size-medium wp-image-1008" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/fs-1.bmp" alt="" /></a></p>
<p>On the left hand side pane, under the Results Query Options, click inside the Selected Columns to make the blue ellipsis button appear. Click on the blue ellipsis button:</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/fs-2.bmp"><img class="alignnone size-medium wp-image-1009" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/fs-2.bmp" alt="" /></a></p>
<p>At the bottom of the text, before the &lt;/Columns&gt; tag, add a column entry for each managed property that was created for the BDC content source:</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/fs-3.bmp"><img class="alignnone size-medium wp-image-1010" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/fs-3.bmp" alt="" /></a></p>
<p>Click OK.</p>
<p>Next click on the XSL Editor under the Data View Properties:</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/fs4.bmp"><img class="alignnone size-medium wp-image-1007" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/fs4.bmp" alt="" /></a></p>
<p>The XSL entry will appear in the text dialog.  It may be easier to copy and paste the code out into a different code editor and then paste back into the dialog for the remaining XSLT steps.</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/fs-5.bmp"><img class="alignnone size-medium wp-image-1011" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/fs-5.bmp" alt="" /></a></p>
<p><strong>XSLT: Overriding the results URL</strong></p>
<p>The tasks outlined in this section are for the scenario where we want to show a custom URL in the results versus the one returned from the normal search results. While this may not apply to everyone, the steps show how to add a new variable based on a custom search column and use it within the overall XSLT.</p>
<p>Locate the &#8220;This template is called for each result&#8221; section of the code.</p>
<p>Add a new variable name entry for the ClientURL under the two predefined variable entries (all variables should be in lowercase regardless of how the managed property was defined):</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="798" valign="top">&lt;xsl:variable name=&#8221;id&#8221; select=&#8221;id&#8221;/&gt; &lt;xsl:variable name=&#8221;url&#8221; select=&#8221;url&#8221;/&gt;<strong><em>&lt;xsl:variable name=&#8221;clienturl&#8221; select=&#8221;clienturl&#8221;/&gt;</em></strong></td>
</tr>
</tbody>
</table>
<p>Next, find and change all &#8220;$url&#8221; entries to &#8220;$clienturl&#8221;.</p>
<p>Find the &#8220;xsl:value-of select=&#8221;url&#8221;" entry within the hithighlightedproperties condition code (when statement). Change the &#8220;url&#8221; to &#8220;title&#8221;.</p>
<p>Locate the span class for srch-URL (span class=&#8221;srch-URL&#8221;). Within this section, locate the when condition for the hit highlighted properties as shown:</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/fs-6.bmp"><img class="alignnone size-medium wp-image-1012" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/fs-6.bmp" alt="" /></a></p>
<p>Replace the &#8220;hithighlightedproperties/HHUrl&#8221; with &#8220;clienturl&#8221;</p>
<p>Several lines down, replace the &#8220;url&#8221; in  &#8220;xsl:value-of select=&#8221;url&#8221;" with clienturl (xsl:value-of select=&#8221;clienturl&#8221;)</p>
<p>Click Save, Click OK on the web part tool pane and publish the page. The client search results should now show the custom client URL that is being returned from the BDC.</p>
<p><strong>XSLT: Creating the Additional Reference Links within the Results</strong></p>
<p>If you perform a Google search and you hit a website&#8217;s core address (such as Microsoft.com), there are additional reference links that appear within the search results:</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/fs-7.bmp"><img class="alignnone size-medium wp-image-1013" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/fs-7.bmp" alt="" /></a></p>
<p>You can add these to the MOSS Search results as well. The reference links can be displayed using standard HTML. This HTML should be placed after the &#8220;p class=&#8221;srch-Metadata&#8221; section (therefore after the p end-tag) :</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/fs-8.bmp"><img class="alignnone size-medium wp-image-1014" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/fs-8.bmp" alt="" /></a></p>
<p><em>The &#8220;ENTER THE HTML HERE&#8221; message will not appear &#8211; this was entered for demonstration purposes.</em></p>
<p>The following is sample code within a &lt;div&gt; block for rendering the additional link references. The appropriate URLs should be retrieved from the BDC and entered appropriately (the columns used here are generalurl, contacturl, documenturl, and referenceurl):</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="798" valign="top">&lt;div&gt;&lt;table cols=&#8221;4&#8243; cellspacing=&#8221;5&#8243;&gt;&lt;tr&gt;     &lt;td&gt;&lt;/td&gt;    &lt;td&gt;</p>
<p>&lt;a href=&#8221;{$generalurl}&#8221; id=&#8221;{concat(&#8216;CSR_U_&#8217;,$id)}&#8221; title=&#8221;General Info&#8221; dir=&#8221;ltr&#8221;&gt;Matters&lt;/a&gt;</p>
<p>&lt;/td&gt;</p>
<p>&lt;td&gt;&lt;/td&gt;</p>
<p>&lt;td&gt;</p>
<p>&lt;a href=&#8221;{$contacturl}&#8221; id=&#8221;{concat(&#8216;CSR_U_&#8217;,$id)}&#8221; title=&#8221;Contact Information&#8221; dir=&#8221;ltr&#8221;&gt;Contact Information&lt;/a&gt;</p>
<p>&lt;/td&gt;</p>
<p>&lt;/tr&gt;</p>
<p>&lt;tr&gt;</p>
<p>&lt;td&gt;&lt;/td&gt;</p>
<p>&lt;td&gt;</p>
<p>&lt;a href=&#8221;{$documenturl}&#8221; id=&#8221;{concat(&#8216;CSR_U_&#8217;,$id)}&#8221; title=&#8221;Documents&#8221; dir=&#8221;ltr&#8221;&gt;Documents&lt;/a&gt;</p>
<p>&lt;/td&gt;</p>
<p>&lt;td&gt;&lt;/td&gt;</p>
<p>&lt;td&gt;</p>
<p>&lt;a href=&#8221;{$referenceurl}&#8221; id=&#8221;{concat(&#8216;CSR_U_&#8217;,$id)}&#8221; title=&#8221;References&#8221; dir=&#8221;ltr&#8221;&gt;References&lt;/a&gt;</p>
<p>&lt;/td&gt;</p>
<p>&lt;/tr&gt;</p>
<p>&lt;tr&gt;&lt;/tr&gt;</p>
<p>&lt;tr&gt;&lt;/tr&gt;</p>
<p>&lt;/table&gt;</p>
<p>&lt;/div&gt;</td>
</tr>
</tbody>
</table>
<p>Blank rows or cells are placed for spacing purposes. Additional URL properties will require additional variable entries as entered above (e.g. <strong><em>xsl:variable name=&#8221;generalurl&#8221; select=&#8221;generalurl&#8221;</em></strong>)</p>
<p>Here is a sample output:</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/fs-sample.bmp"><img class="alignnone size-medium wp-image-1006" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/fs-sample.bmp" alt="" /></a></p>
<p><strong>Conclusion</strong></p>
<p>We&#8217;ve done many things with the MOSS Search capabilities but obviously there are many more features and functionality. If you would like to see other search topics covered please send them along to <a href="mailto:mann@rdacorp.com">mann@rdacorp.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://sharepointmagazine.net/technical/development/customizing-search-series-finally-customizing-the-search-results/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Customizing Search Series &#8211; Creating the Custom Results Page</title>
		<link>http://sharepointmagazine.net/technical/development/customizing-search-series-created-the-custom-results-page</link>
		<comments>http://sharepointmagazine.net/technical/development/customizing-search-series-created-the-custom-results-page#comments</comments>
		<pubDate>Thu, 13 Nov 2008 08:58:50 +0000</pubDate>
		<dc:creator>stevemann</dc:creator>
				<category><![CDATA[Customisation]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[BDC]]></category>
		<category><![CDATA[box]]></category>
		<category><![CDATA[center]]></category>
		<category><![CDATA[customize]]></category>
		<category><![CDATA[fast]]></category>
		<category><![CDATA[MOSS]]></category>
		<category><![CDATA[results]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[sharepoint]]></category>

		<guid isPermaLink="false">http://sharepointmagazine.net/?p=988</guid>
		<description><![CDATA[This is the fifth article within the Customizing Search Series. This article continues to build out the customization of search using a new content source based on the BDC. When we previously setup a custom scope, we left the target search page as the default. Now, we will create a new search results page for the client scope which will then be used to customize the actual rendering of the search results.]]></description>
			<content:encoded><![CDATA[<p>This is the fifth article within the Customizing Search Series. This article continues to build out the customization of search using a new content source based on the BDC. When we previously setup a custom scope, we left the target search page as the default. Now, we will create a new search results page for the client scope which will then be used to customize the actual rendering of the search results.</p>
<p><strong>Custom Search Page Creation</strong></p>
<p>The out-of-the-box Search Center actually contains both a Search Page and a Search Results page for All Sites and People. Therefore, to be consistent, we should also create a Search Page and Search Results Page for our new Clients scope.</p>
<p>First we will create the Search Page. Go to the Search Center site and select Create Page from the Site Actions menu:</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/cr-1.bmp"><img class="alignnone size-medium wp-image-990" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/cr-1.bmp" alt="" /></a></p>
<p>On the Create Page screen enter Clients for the Title of the page and the URL name. Select the Search Page layout and then click on Create:</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/cr-2.bmp"><img class="alignnone size-medium wp-image-991" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/cr-2.bmp" alt="" /></a></p>
<p>The new page will appear in Design mode. Edit the Search Box web part and enter &#8220;ClientResults.aspx&#8221; in the Target search results page URL setting (under Miscellaneous):</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/cr-3.bmp"><img class="alignnone size-medium wp-image-992" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/cr-3.bmp" alt="" /></a></p>
<p>Click OK and Publish the page.</p>
<p><strong>Creating the Search Results Page</strong></p>
<p>The creation of the search results page is the same process. Go to the Search Center site and select Create Page from the Site Actions menu:</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/cr-4.bmp"><img class="alignnone size-medium wp-image-993" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/cr-4.bmp" alt="" /></a></p>
<p>On the Create Page screen enter Client Results as the Title of the page and ClientResults for URL name. Select the Search Results Page layout and then click on Create:</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/cr-5.bmp"><img class="alignnone size-medium wp-image-994" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/cr-5.bmp" alt="" /></a></p>
<p>The new page will appear in Design mode. Edit the Search Box web part and enter &#8220;ClientResults.aspx&#8221; in the Target search results page URL setting (under Miscellaneous):</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/cr-6.bmp"><img class="alignnone size-medium wp-image-995" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/cr-6.bmp" alt="" /></a></p>
<p>Click OK and Publish the page.</p>
<p><strong> </strong></p>
<p><strong>Creating New Tabs</strong></p>
<p>Go back to the main Search Center again and Edit the Page. Click on Add Tab near the top:</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/cr-7-add-tab.bmp"><img class="alignnone size-medium wp-image-996" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/cr-7-add-tab.bmp" alt="" /></a></p>
<p>This will bring up a screen to add a new tab (for Search Pages). Enter Clients for the tab name and Clients.aspx as the page (remember this is for the search pages, the results are next):</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/cr-8.bmp"><img class="alignnone size-medium wp-image-997" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/cr-8.bmp" alt="" /></a></p>
<p>Click Ok and publish the page.</p>
<p>Perform a search under the All Sites scope such that the results page appears. Edit this page and click on the Add New Tab towards the left of the screen:</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/cr-7-add-tab.bmp"><img class="alignnone size-medium wp-image-996" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/cr-7-add-tab.bmp" alt="" /></a></p>
<p>This will bring up a screen to add a new tab again but this time it will be for the Search Results Pages. Enter Clients for the tab name and ClientResults.aspx as the page:</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/cr-10.bmp"><img class="alignnone size-medium wp-image-998" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/cr-10.bmp" alt="" /></a></p>
<p>So now the Search Center should be loaded up with a Client Search Page, Client Search Results Page, and the appropriate tabs.</p>
<p><strong>Updating the Client Scope</strong></p>
<p>Now that we have the client results page created, we need to go back and update the scope such that any search within the client scope uses the proper results page. Therefore, back in Central Administration under the Search Settings, click on the View Scopes within the Scopes section:</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/cr-11.bmp"><img class="alignnone size-medium wp-image-999" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/cr-11.bmp" alt="" /></a></p>
<p>On the next screen, select the Clients scope to bring up the scope properties and then click on the Change Scope Settings link:</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/cr-12.bmp"><img class="alignnone size-medium wp-image-1000" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/cr-12.bmp" alt="" /></a></p>
<p>This will bring up the Edit Scope screen. Simply change the Target Results Page setting to the &#8220;Specify a different page for searching this scope&#8221; and enter &#8220;ClientResults.aspx&#8221; within the Target results page box:</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/cr-13.bmp"><img class="alignnone size-medium wp-image-989" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/cr-13.bmp" alt="" /></a></p>
<p>Click OK. The scope will need to be updated but that happens automatically.</p>
<p><strong>What&#8217;s Next?</strong></p>
<p>We are coming down the home-stretch. Everything is now set-up for the customization of the search results. The final article will go into details in how we can use the managed properties and the results XSL to generate customized search results within our clients scope.</p>
]]></content:encoded>
			<wfw:commentRss>http://sharepointmagazine.net/technical/development/customizing-search-series-created-the-custom-results-page/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Customizing Search Series &#8211; Creating New Managed Properties</title>
		<link>http://sharepointmagazine.net/technical/customisation/customizing-search-series-creating-new-managed-properties-from-bdc-crawled-content</link>
		<comments>http://sharepointmagazine.net/technical/customisation/customizing-search-series-creating-new-managed-properties-from-bdc-crawled-content#comments</comments>
		<pubDate>Wed, 22 Oct 2008 07:46:17 +0000</pubDate>
		<dc:creator>stevemann</dc:creator>
				<category><![CDATA[Customisation]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[BDC]]></category>
		<category><![CDATA[Crawled Content]]></category>
		<category><![CDATA[Managed Properties]]></category>
		<category><![CDATA[MOSS Search]]></category>

		<guid isPermaLink="false">http://sharepointmagazine.net/?p=970</guid>
		<description><![CDATA[Welcome to the fourth article in the customizing search series. This article, although one of the shorter ones, continues the journey in customizing search and builds upon the previous articles in this series.]]></description>
			<content:encoded><![CDATA[<p>Welcome to the fourth article in the customizing search series. This article, although one of the shorter ones, continues the journey in customizing search and builds upon the previous articles in this series.</p>
<p>Now that the BDC source has been created and crawled, managed properties must be mapped to the crawled properties such that those columns may be used within the search results (XSLT). The steps in this article need to be repeated for each data element that is to be used within the search results. For scenario purposes, a Client URL is being provided by the BDC and this is the link we want to show in the search results (versus the standard BDC properties page).</p>
<p>From the Configure Search Settings page and select the &#8220;Metadata property mappings&#8221; link:</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/mp-1.bmp"><img class="alignnone size-medium wp-image-972" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/mp-1.bmp" alt="" /></a></p>
<p>On the Metadata Property Mappings page click the New Managed Property button:</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/mp-2.bmp"><img class="alignnone size-medium wp-image-973" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/mp-2.bmp" alt="" /></a></p>
<p>On the New Managed Property page, enter a name for the property, an applicable description, and select the type of information (most values will probably be the default of Text). After this has been entered, click on the Add Mapping button:</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/mp-3.bmp"><img class="alignnone size-medium wp-image-974" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/mp-3.bmp" alt="" /></a></p>
<p>On the Crawled Property Mapping dialog, select the Business Data category. The list of available properties should appear. Find the appropriate property and select it. (If there are too many properties, enter a part of the name and use the Find button to narrow down the list).</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/mp-4.bmp"><img class="alignnone size-medium wp-image-975" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/mp-4.bmp" alt="" /></a></p>
<p>Click OK.  Back on the New Managed Property screen, select the &#8220;Allow this property to be used in scopes&#8221; checkbox and then click OK.</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/mp-5.bmp"><img class="alignnone size-medium wp-image-971" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/mp-5.bmp" alt="" /></a></p>
<p><strong><em>Repeat for the remaining BDC data elements. </em></strong></p>
<p><strong><em>A full crawl will be needed on the BDC content source once the managed properties have been added.</em></strong></p>
<p><strong>What&#8217;s Next?</strong></p>
<p>This was a short and sweet discussion but very necessary to continue. The next effort is to create the custom results page for use within the client search scope and therefore the next article will show the steps to successfully accomplish this task.</p>
]]></content:encoded>
			<wfw:commentRss>http://sharepointmagazine.net/technical/customisation/customizing-search-series-creating-new-managed-properties-from-bdc-crawled-content/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Customizing Search Series &#8211; New Content and Scope from a BDC Application</title>
		<link>http://sharepointmagazine.net/technical/customisation/customizing-search-series-new-content-and-scope-from-a-bdc-application</link>
		<comments>http://sharepointmagazine.net/technical/customisation/customizing-search-series-new-content-and-scope-from-a-bdc-application#comments</comments>
		<pubDate>Tue, 23 Sep 2008 12:35:17 +0000</pubDate>
		<dc:creator>stevemann</dc:creator>
				<category><![CDATA[Customisation]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[BDC]]></category>
		<category><![CDATA[Content Source]]></category>
		<category><![CDATA[Customising Search]]></category>
		<category><![CDATA[Customizing Search]]></category>
		<category><![CDATA[MOSS Search]]></category>
		<category><![CDATA[Search Scope]]></category>

		<guid isPermaLink="false">http://sharepointmagazine.net/?p=837</guid>
		<description><![CDATA[This article builds upon the prior two discussions and begins to build out the customization scenario. The goal of this article is to build out a new search scope based on a content source from the Business Data Catalog (BDC).]]></description>
			<content:encoded><![CDATA[<p>Welcome to the third article in the Customizing Search Series. This article builds upon the prior two discussions and begins to build out the customization scenario. The goal of this article is to build out a new search scope based on a content source from the Business Data Catalog (BDC).</p>
<p>The out-of-the-box search features of MOSS 2007 include two scopes, All Sites and People; but what about customers or clients? Many organizations are in business because of their customer base; so when adding new scopes and search content, the customers are the next best bet (pun definitely intended).</p>
<p>Therefore this article will demonstrate the process of creating a Client scope for use in search from a BDC source. It assumes that a Client BDC definition file has been created and imported into the MOSS implementation. <em>The customer/client is simply a business scenario and the steps outlined can be used for any BDC application.</em></p>
<p><strong>Creating a Content Source for the Client BDC</strong></p>
<p>The first step is to add a content source to the search settings for the Client BDC. From Central Administration, select the SSP under the Shared Administrative Services menu. Select the Search Settings link:</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/content-1.bmp"><img class="alignnone size-medium wp-image-839" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/content-1.bmp" alt="" /></a></p>
<p>On the Configure Search Settings screen, select the &#8220;Content sources and crawl schedules&#8221; link:</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/content-2.bmp"><img class="alignnone size-medium wp-image-840" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/content-2.bmp" alt="" /></a></p>
<p>On the Manage Content Sources screen, select the New Content Source button:</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/content-3.bmp"><img class="alignnone size-medium wp-image-841" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/content-3.bmp" alt="" /></a></p>
<p>The Add Content Source screen will appear. Enter a name for the content source and select Business Data as the type. The Applications section will refresh. Select the &#8220;Crawl selected applications&#8221; and make sure the instance checkbox is checked:</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/content-4.bmp"><img class="alignnone size-medium wp-image-842" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/content-4.bmp" alt="" /></a></p>
<p>Enter the appropriate Full and Incremental Crawl schedules as applicable.</p>
<p><strong><em> </em></strong></p>
<p>At the bottom of the screen, select the &#8220;Start full crawl&#8230;&#8221; checkbox and then click OK:</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/content-5.bmp"><img class="alignnone size-medium wp-image-843" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/content-5.bmp" alt="" /></a><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/content-4.bmp"></a></p>
<p>The Manage Content Sources screen should appear with the new content source entry:</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/content-6.bmp"><img class="alignnone size-medium wp-image-844" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/content-6.bmp" alt="" /></a></p>
<p>Before proceeding, make sure the full crawl is completed and the status is Idle.</p>
<p><strong>Adding the Client Scope</strong></p>
<p>Return to the Configure Search Settings page and select the &#8220;View Scopes&#8221; link under the Scopes section:</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/content-7.bmp"><img class="alignnone size-medium wp-image-845" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/content-7.bmp" alt="" /></a></p>
<p>On the View Scopes page, click on the New Scope button:</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/content-8.bmp"><img class="alignnone size-medium wp-image-846" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/content-8.bmp" alt="" /></a></p>
<p>On the New Scopes page, enter a title for the scope. For now, make sure the &#8220;Use the default Search Results Page&#8221; is selected. We will generate a new search results page in future articles.</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/content-9.bmp"><img class="alignnone size-medium wp-image-847" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/content-9.bmp" alt="" /></a></p>
<p>Click OK, the screen should return the View Scopes page. The new scope should be listed but with an Empty status. Click on the Add Rules link under this status:</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/content-10.bmp"><img class="alignnone size-medium wp-image-848" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/content-10.bmp" alt="" /></a></p>
<p>On the Add Scope Rule page, select Content Source. This will make the Content Source section appear. Select the BDC content source created for the search previously. Leave the Behavior to the default &#8220;Include&#8221; and click OK:</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/content-11.bmp"><img class="alignnone size-medium wp-image-849" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/content-11.bmp" alt="" /></a></p>
<p>Return to the Configure Search Settings screen and select the &#8220;Start update now&#8221; under the Scopes section:</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/content-12.bmp"><img class="alignnone size-medium wp-image-850" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/content-12.bmp" alt="" /></a></p>
<p>The scope should begin the update process. Refreshing the screen will show the % complete on the Update status line. We are done with the SSP settings at this point.</p>
<p><strong>Adding the Scope to the Site Collection</strong></p>
<p>Open a new browser and navigate to the main MOSS web site. Select Site Settings from the Site Actions menus (if there is a extended menu, select &#8220;Modify All Site Settings&#8221;).</p>
<p>Under the Site Collection Administration section click on the Search Scopes link:</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/content-13.bmp"><img class="alignnone size-medium wp-image-851" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/content-13.bmp" alt="" /></a></p>
<p>On the View Scopes page, select the Search Dropdown link:</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/content-14.bmp"><img class="alignnone size-medium wp-image-852" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/content-14.bmp" alt="" /></a></p>
<p>On the Edit Scope Display Group screen, check the checkbox next to Clients scope. Click OK.</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/content-15.bmp"><img class="alignnone size-medium wp-image-853" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/content-15.bmp" alt="" /></a></p>
<p>Back on the View Scopes page, select the Advanced Search link:</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/content-16.bmp"><img class="alignnone size-medium wp-image-854" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/content-16.bmp" alt="" /></a></p>
<p>On the Edit Scope Display Group screen, check the checkbox next to Clients scope. Click OK.</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/content-17.bmp"><img class="alignnone size-medium wp-image-855" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/content-17.bmp" alt="" /></a></p>
<p>Navigate once again to the main MOSS site. The Clients scope should now appear in the search drop-down box:</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/content-18.bmp"></a><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/content-18.bmp"></a></p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/content-181.bmp"><img class="alignnone size-medium wp-image-857" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/content-181.bmp" alt="" /></a></p>
<p>Searching within this scope should yield results from the BDC.</p>
<p><strong>What&#8217;s Next?</strong></p>
<p>Now that the content source and scope has been created, in order to customize the search results, managed properties need to be mapped to the crawled content. The next article will explain the steps to create the managed properties.</p>
<p><strong> </strong></p>
<p><strong> </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://sharepointmagazine.net/technical/customisation/customizing-search-series-new-content-and-scope-from-a-bdc-application/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Customizing Search Series: Deeper Search</title>
		<link>http://sharepointmagazine.net/technical/development/customizing-search-series-deeper-search</link>
		<comments>http://sharepointmagazine.net/technical/development/customizing-search-series-deeper-search#comments</comments>
		<pubDate>Fri, 12 Sep 2008 04:46:50 +0000</pubDate>
		<dc:creator>stevemann</dc:creator>
				<category><![CDATA[Customisation]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[Content Sources]]></category>
		<category><![CDATA[Customise Search]]></category>
		<category><![CDATA[Customize Search]]></category>
		<category><![CDATA[Metadata Property Mappings]]></category>
		<category><![CDATA[MOSS 2007 Search]]></category>
		<category><![CDATA[scopes]]></category>
		<category><![CDATA[Search Settings]]></category>

		<guid isPermaLink="false">http://sharepointmagazine.net/?p=780</guid>
		<description><![CDATA[This is the second article within the six-part series on MOSS Search capabilities and its customization. This article builds upon the introduction article and will dive a little deeper into the settings and configurations.]]></description>
			<content:encoded><![CDATA[<p>This is the second article within the six-part series on MOSS Search capabilities and its customization. This article builds upon the introduction article (<a href="http://sharepointmagazine.net/technical/customisation/customizing-search-series-introduction">http://sharepointmagazine.net/technical/customisation/customizing-search-series-introduction</a>) and will dive a little deeper into the settings and configurations.</p>
<p><strong>Search Service Settings</strong></p>
<p>As explained in the introduction, the server that runs the search service needs to have the Office SharePoint Server Search service started and configured. This is facilitated from Central Administration (CA). From within CA, under Operations, click on Services on server:</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/deeper11.jpg"></a><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/deeper1.jpg"><img class="alignnone size-medium wp-image-783" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/deeper1.jpg" alt="" width="261" height="243" /></a></p>
<p>This will bring up the Services on Server page. At the bottom of the Services on Server page, the services that are Stopped and Started are shown:</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/deeper2.jpg"><img class="alignnone size-medium wp-image-784" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/deeper2-300x171.jpg" alt="" width="300" height="171" /></a><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/deeper21.jpg"></a></p>
<p>The Office SharePoint Server Search service needs to be started if it is stopped. This can be facilitated by clicking the Start link under the Action column:</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/deeper3.jpg"><img class="alignnone size-medium wp-image-785" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/deeper3-300x115.jpg" alt="" width="300" height="115" /></a><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/deeper31.jpg"></a></p>
<p>Clicking on Start (or on the service name if it is already started) will bring up the configuration page for the search service:</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/deeper4.bmp"><img class="alignnone size-medium wp-image-790" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/deeper4.bmp" alt="" width="630" height="332" /></a><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/deeper4.bmp"></a><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/deeper41.jpg"></a></p>
<p>For the scenarios presented in this series, the server will be used for both Indexing and Querying so both checkboxes at the top of the configuration screen will be checked. The contact email address should contain a support address that can be used if there are search-related issues (this is typically used when searching outside of the domain so people can yell at you for crawling their servers and slowing them down). The farm service account should be entered accordingly in the next section of the configuration.</p>
<p>The farm search service account should be a separate domain account that has (or will have) read access to all content that will be crawled by the search service; anything that the service account cannot access will not be indexed and therefore will not appear in any search results.</p>
<p>The index performance determines essentially determines how hard the indexer will work. The crawl process does put strain on the SQL Server that stores the content. The description on the screen somewhat explains this, however, the selection here may depend on the full and incremental crawl schedules (the schedules will be shown in the next section). The default setting is partly reduced so that setting is fine for this series. Once again, the setting here could affect overall performance; this is regardless of which web-front-end it uses to crawl.</p>
<p>Which brings us to the next setting in which all web-front-ends can be used to crawl or a dedicated server may be selected. The selection here depends on how many web-front-ends are in the farm and/or which servers are in a load-balance cluster along with, once again, the crawl schedules.</p>
<p><strong> </strong></p>
<p><strong>Search Settings</strong></p>
<p>Once the service has been started on one of the servers in the farm, the next step is determining what will be crawled and how often. Of course, there are out-of-the-box default settings which will be shown here. The remainder of this article series will build upon the default configuration and expand the overall search experience within MOSS.</p>
<p>The search settings are governed by the Shared Services Administration within the SSP that was setup during the MOSS installation process. Clicking on the SSP name will bring up the overall settings.</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/deeper5.bmp"><img class="alignnone size-medium wp-image-792" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/deeper5.bmp" alt="" width="678" height="384" /></a></p>
<p><strong></strong></p>
<p>Clicking on Search settings will show the main search settings screen in which most of the modifications within this series will occur.</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/deeper6.bmp"><img class="alignnone size-medium wp-image-793" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/deeper6.bmp" alt="" /></a></p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/deeper7.bmp"><img class="alignnone size-medium wp-image-794" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/deeper7.bmp" alt="" width="674" height="332" /></a></p>
<p><strong><br />
</strong></p>
<p><strong>Content Sources</strong></p>
<p>The content sources can be seen by clicking on the &#8220;Content source and crawl schedules&#8221; link from the Search Settings screen:</p>
<p><strong></strong></p>
<p><strong> <a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/deeper8.bmp"><img class="alignnone size-medium wp-image-795" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/deeper8.bmp" alt="" /></a></strong></p>
<p>The screen that follows is the Manage Content Sources page. The out-of-the-box implementation automatically has the &#8220;Local Office SharePoint Service sites&#8221; content source which defaults to the top-level site collection.</p>
<p><strong></strong></p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/deeper9.bmp"><img class="alignnone size-medium wp-image-796" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/deeper9.bmp" alt="" width="668" height="113" /></a></p>
<p>In this series we will add a new content source such that business data can be included within the search environment.</p>
<p><strong><br />
</strong></p>
<p><strong>Scopes</strong></p>
<p>Towards the bottom of the Search Settings page lives the Scopes section. Scopes are &#8220;views&#8221; into the crawled content that can be used to define the boundaries of a user search query (hence the name &#8220;scope&#8221;).  Clicking on the &#8220;View scopes&#8221; link will show the View Scopes page.</p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong> <a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/deeper10.bmp"><img class="alignnone size-medium wp-image-797" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/deeper10.bmp" alt="" /></a></strong></p>
<p><strong></strong></p>
<p><strong><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/deeper11.bmp"><img class="alignnone size-medium wp-image-798" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/deeper11.bmp" alt="" width="682" height="145" /></a></strong></p>
<p>We will create a new scope for our business data named Clients within this series.</p>
<p><strong><br />
Metadata Properties</strong></p>
<p>The Metadata property mappings link will bring up the Metadata Properties page. From that page, new managed properties can be generated. This will enable us to essential map column names to crawled content such that the search results may be customized.</p>
<p><strong></strong></p>
<p><strong> <a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/deeper12.bmp"><img class="alignnone size-medium wp-image-799" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/deeper12.bmp" alt="" /></a></strong></p>
<p><strong><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/deeper_managedproperties.jpg"><img class="alignnone size-medium wp-image-806" src="http://sharepointmagazine.net/wp-content/uploads/2008/09/deeper_managedproperties-300x127.jpg" alt="" width="387" height="189" /></a><a href="http://sharepointmagazine.net/wp-content/uploads/2008/09/deeper13.jpg"></a></strong></p>
<p>In this series we will create new managed properties and map them to our BDC crawled content. We will then use those &#8220;columns&#8221; within the rendering of the search results.</p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong>What&#8217;s Next?</strong></p>
<p>In the next article, we will add a new content source and scope to the search settings. The content source will be based on a BDC application (i.e. Business Data). <strong>THE TRUE CUSTOMIZATION STARTS NEXT SEGMENT &#8211; STAY TUNED!</strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://sharepointmagazine.net/technical/development/customizing-search-series-deeper-search/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Customizing Search Series &#8211; Introduction</title>
		<link>http://sharepointmagazine.net/technical/customisation/customizing-search-series-introduction</link>
		<comments>http://sharepointmagazine.net/technical/customisation/customizing-search-series-introduction#comments</comments>
		<pubDate>Thu, 28 Aug 2008 07:30:15 +0000</pubDate>
		<dc:creator>stevemann</dc:creator>
				<category><![CDATA[Customisation]]></category>
		<category><![CDATA[best bet]]></category>
		<category><![CDATA[Customizing Search]]></category>
		<category><![CDATA[MOSS Search]]></category>
		<category><![CDATA[scopes]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[ssp]]></category>

		<guid isPermaLink="false">http://sharepointmagazine.net/?p=604</guid>
		<description><![CDATA[Welcome to a six-part series on MOSS Search capabilities and its customization. This article serves as an introduction to search and will define several key items within the administration and configuration thereof.]]></description>
			<content:encoded><![CDATA[<p>Welcome to a six-part series on MOSS Search capabilities and its customization. This article serves as an introduction to search and will define several key items within the administration and configuration thereof.</p>
<p><strong>High Level Search Concepts</strong></p>
<p>Essentially, there are two main components of search, the indexing and the querying. The indexing is the process in which all documents and content are reviewed and many key items about the item (meta data) are stored. The querying is when a user wishes to search for an item. The user enters keywords or phrases and the query engine looks at the indexed content and returns items that match.</p>
<p>The indexing process is called &#8220;crawling&#8221; and the indexed content is called &#8220;crawled content&#8221;. The querying and the query results (search results) is the end-user experience of the MOSS Search capabilities. Usually in a MOSS farm, there is one server dedicated to perform the indexing and the querying, however, these functions may be split out onto two separate servers. For this series, the assumption is the same server provides both services to the farm.</p>
<p><strong>Office SharePoint Server Search Service </strong></p>
<p>The server that runs the search service needs to have the Office SharePoint Server Search service started and configured. This is facilitated within Operations of the Central Administration (CA) and is managed by the Services on server settings.</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/08/services-on-server.jpg"><img class="alignnone size-medium wp-image-605" src="http://sharepointmagazine.net/wp-content/uploads/2008/08/services-on-server.jpg" alt="" width="261" height="243" /></a></p>
<p>The settings for the service will be investigated in the next article.</p>
<p><strong>Search Settings</strong></p>
<p>Once the service has been started on one of the servers in the farm, the next step is determining what will be crawled and how often. Of course, there are out-of-the-box default settings which will be shown here. The remainder of this article series will build upon the default configuration and expand the overall search experience within MOSS.</p>
<p>The search settings are governed by the Shared Services Administration within the SSP that was setup during the MOSS installation process. Clicking on the SSP name will bring up the overall settings.</p>
<p>Clicking on Search settings will show the main search settings screen in which most of the modifications within this series will occur.</p>
<p><a href="http://sharepointmagazine.net/wp-content/uploads/2008/08/search-settings2.jpg"><img class="alignnone size-medium wp-image-607" src="http://sharepointmagazine.net/wp-content/uploads/2008/08/search-settings2-300x206.jpg" alt="" width="362" height="264" /></a><a href="http://sharepointmagazine.net/wp-content/uploads/2008/08/search-settings.jpg"></a></p>
<p>This is where the content sources can be defined. From MSDN, a content source is a collection of start addresses representing content that should be crawled by the search index component.</p>
<p><strong> </strong></p>
<p><strong>Search Results</strong></p>
<p>The results are based on the &#8220;scope&#8221; that is used for searching. There are two main out-of-the-box scopes; All Sites and People. A scope carves out a piece of the crawled content and determines what should be searched. It can be thought of a defined view of the crawled content. During this series a new scope will be created for a customized search experience.</p>
<p>The results appear on page within the MOSS system (within the Search Center by default) using a pre-defined web-part page which contains several out-of-the-box search web-parts. The main web part is the Search Core Results and its configuration determines the appearance and layout of the results.</p>
<p>This series will also dive into the customization of the Search Core Results web-part to include additional search fields based on the business data content source.</p>
<p><strong>What&#8217;s Next?</strong></p>
<p>The next article will dig a little deeper into the settings and configurations described above. The entire series will build out a scenario of adding content from an external data source (using the Business Data Catalog) and then enabling MOSS to return customized results.</p>
<p><strong>Glossary of Terms</strong></p>
<p>Based on the above discussions, the key terms are defined as follows:</p>
<p><strong>Business Data Catalog (BDC)</strong> &#8211; an Enterprise feature in MOSS that allows for the retrieval of external data from other systems or databases.</p>
<p><strong>Content Source</strong> &#8211; a collection of start addresses representing content that should be crawled by the search index component (Source: MSDN)</p>
<p><strong>Crawling</strong> &#8211; the process at which the search engine retrieves information from a content source and produces appropriate indexes and properties based on the content that is found.</p>
<p><strong>Full Crawl</strong> &#8211; the process of crawling all of the content available within a content source; the reindexing of previous crawled content may occur</p>
<p><strong>Incremental Crawl</strong> &#8211; the process of crawling only new content from the previous full or incremental crawl.</p>
<p><strong>Managed Properties / Meta Data Properties</strong> &#8211; Managed properties are the set of properties that are part of the search user experience, so to include a crawled property value in search functionality, it must be mapped to a managed property in the Document property mappings. (Source: MSDN)</p>
<p>Scope  - search scopes are a collection of items grouped together based on a common element among the items within that scope, which help users broaden or narrow the scope of their searches. (Source: MSDN)</p>
<p><strong>References</strong></p>
<p><strong> </strong>Enterprise Search Architecture &#8211; <a href="http://msdn.microsoft.com/en-us/library/ms570748.aspx">http://msdn.microsoft.com/en-us/library/ms570748.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://sharepointmagazine.net/technical/customisation/customizing-search-series-introduction/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>
