<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Kerry&#039;s SharePoint Blog</title>
	<atom:link href="http://vettekerry.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://vettekerry.wordpress.com</link>
	<description>Thoughts on SharePoint 2007</description>
	<lastBuildDate>Wed, 07 Dec 2011 22:01:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='vettekerry.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Kerry&#039;s SharePoint Blog</title>
		<link>http://vettekerry.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://vettekerry.wordpress.com/osd.xml" title="Kerry&#039;s SharePoint Blog" />
	<atom:link rel='hub' href='http://vettekerry.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Users in SharePoint Groups Using SQL</title>
		<link>http://vettekerry.wordpress.com/2011/04/26/users-in-sharepoint-groups-using-sql/</link>
		<comments>http://vettekerry.wordpress.com/2011/04/26/users-in-sharepoint-groups-using-sql/#comments</comments>
		<pubDate>Tue, 26 Apr 2011 23:10:11 +0000</pubDate>
		<dc:creator>Kerry</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[MOSS]]></category>
		<category><![CDATA[User Info]]></category>

		<guid isPermaLink="false">http://vettekerry.wordpress.com/?p=156</guid>
		<description><![CDATA[The query below will give you a list of users that belong to SharePoint 2007 groups. You can comment out and add DISTINCT to summarize the list if needed. &#8211; Query to get all the SharePoint groups in a site collection SELECT DISTINCT u.tp_Login, g.Title AS GroupTitle, w.FullUrl, w.SiteId, w.Id, w.Title, g.Description FROM Groups g INNER [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vettekerry.wordpress.com&amp;blog=3727565&amp;post=156&amp;subd=vettekerry&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The query below will give you a list of users that belong to SharePoint 2007 groups. You can comment out and add DISTINCT to summarize the list if needed.</p>
<p><span style="color:#339966;">&#8211; Query to get all the SharePoint groups in a site collection</span><br />
<span style="color:#ff0000;">SELECT DISTINCT u.tp_Login, g.Title AS GroupTitle, w.FullUrl, w.SiteId, w.Id, w.Title, g.Description</span><br />
<span style="color:#ff0000;">FROM Groups g INNER JOIN</span><br />
<span style="color:#ff0000;">Webs w ON g.SiteId = w.SiteId</span><br />
<span style="color:#ff0000;">INNER JOIN GroupMembership gm ON gm.GroupId = g.ID</span><br />
<span style="color:#ff0000;">INNER JOIN UserInfo u ON u.tp_ID = gm.MemberId</span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vettekerry.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vettekerry.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vettekerry.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vettekerry.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vettekerry.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vettekerry.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vettekerry.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vettekerry.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vettekerry.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vettekerry.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vettekerry.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vettekerry.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vettekerry.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vettekerry.wordpress.com/156/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vettekerry.wordpress.com&amp;blog=3727565&amp;post=156&amp;subd=vettekerry&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vettekerry.wordpress.com/2011/04/26/users-in-sharepoint-groups-using-sql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">vettekerry</media:title>
		</media:content>
	</item>
		<item>
		<title>Display Alert on .Net Page After Postback</title>
		<link>http://vettekerry.wordpress.com/2011/04/25/display-alert-on-net-page-after-postback/</link>
		<comments>http://vettekerry.wordpress.com/2011/04/25/display-alert-on-net-page-after-postback/#comments</comments>
		<pubDate>Mon, 25 Apr 2011 18:35:55 +0000</pubDate>
		<dc:creator>Kerry</dc:creator>
				<category><![CDATA[Customization]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://vettekerry.wordpress.com/?p=152</guid>
		<description><![CDATA[I have a C# page that is writing some records to a database when the user clicks a button. The user wanted a popup confirmation that the records were written successfully. So I added a HiddenField to the page and wrote some simple javascript to check the value of the HiddenField and display the value of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vettekerry.wordpress.com&amp;blog=3727565&amp;post=152&amp;subd=vettekerry&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have a C# page that is writing some records to a database when the user clicks a button. The user wanted a popup confirmation that the records were written successfully. So I added a HiddenField to the page and wrote some simple javascript to check the value of the HiddenField and display the value of the field if it&#8217;s not blank.</p>
<p>I added this to the ASPX page just after the &lt;Form&gt; tag:<br />
<span style="color:#ff0000;">&lt;asp:HiddenField ID=&#8221;MsgTxt&#8221; runat=&#8221;server&#8221; Value=&#8221;" /&gt;</span><br />
<span style="color:#ff0000;">&lt;script language=&#8221;javascript&#8221; type=&#8221;text/javascript&#8221;&gt;</span><br />
<span style="color:#ff0000;">   var AlertMsg = document.getElementById(&#8216;&lt;%=MsgTxt.ClientID%&gt;&#8217;).value;</span><br />
<span style="color:#ff0000;">    if (!AlertMsg == &#8221;) {</span><br />
<span style="color:#ff0000;">        alert(AlertMsg);</span><br />
<span style="color:#ff0000;">    }</span><br />
<span style="color:#ff0000;">&lt;/script&gt;</span></p>
<p>I added this to the button that writes the records to the database:<br />
<span style="color:#ff0000;">   MsgTxt.Value = &#8220;Message&#8221;;</span></p>
<p>I added this to the Page_Load to clear the variable so it&#8217;s only displayed once:<br />
<span style="color:#ff0000;">    if (Page.IsPostBack)</span><br />
<span style="color:#ff0000;">    {</span><br />
<span style="color:#ff0000;">        MsgTxt.Value = &#8220;&#8221;;</span><br />
<span style="color:#ff0000;">    }</span></p>
<p>That should do it. It&#8217;s a simple change to display any type of alert message after a postback.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vettekerry.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vettekerry.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vettekerry.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vettekerry.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vettekerry.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vettekerry.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vettekerry.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vettekerry.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vettekerry.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vettekerry.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vettekerry.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vettekerry.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vettekerry.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vettekerry.wordpress.com/152/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vettekerry.wordpress.com&amp;blog=3727565&amp;post=152&amp;subd=vettekerry&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vettekerry.wordpress.com/2011/04/25/display-alert-on-net-page-after-postback/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">vettekerry</media:title>
		</media:content>
	</item>
		<item>
		<title>Disable a List Field When Adding/Editing in 2010</title>
		<link>http://vettekerry.wordpress.com/2011/04/20/disable-a-list-field-when-addingediting-in-2010/</link>
		<comments>http://vettekerry.wordpress.com/2011/04/20/disable-a-list-field-when-addingediting-in-2010/#comments</comments>
		<pubDate>Wed, 20 Apr 2011 16:38:15 +0000</pubDate>
		<dc:creator>Kerry</dc:creator>
				<category><![CDATA[Customization]]></category>
		<category><![CDATA[InfoPath]]></category>
		<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://vettekerry.wordpress.com/?p=148</guid>
		<description><![CDATA[SharePoint 2010 now uses InfoPath 2010 forms for adding and editing list items. You can customize these forms to meet your needs which includes changing the order of the fields, removing fields and hiding fields for certain users. In this example I&#8217;ll show you how to disable a field if the user is not added [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vettekerry.wordpress.com&amp;blog=3727565&amp;post=148&amp;subd=vettekerry&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>SharePoint 2010 now uses InfoPath 2010 forms for adding and editing list items. You can customize these forms to meet your needs which includes changing the order of the fields, removing fields and hiding fields for certain users. In this example I&#8217;ll show you how to disable a field if the user is not added to a custom security list. This allows you to control who has ability to maintain the data in a specific field.</p>
<ol>
<li>Create a new custom list called &#8220;Secure Users&#8221;</li>
<li>Add a Person column called &#8220;User&#8221;</li>
<li>Change the column to display the field called &#8220;User name&#8221;</li>
<li>Go to your primary list where you want to disable the field and click &#8220;Customize Form&#8221; on the ribbon</li>
<li>The following steps are in InfoPath 2010</li>
<li>Add a new data source for the Secure Users custom list</li>
<li>Add a Form Load rule to filter the Secure Users data source on the current user</li>
<ol>
<li>Add an Action Rule to &#8220;Set a field&#8217;s value&#8221;</li>
<li>Select the User field in the list of queryFields for the Secure Users data source</li>
<li>Set the value to the function userName()</li>
<li>Add another rule to query the list with the new filter</li>
</ol>
<li>Add a rule to the appropriate controls you want disabled</li>
<ol>
<li>Select the field and add a new formatting rule</li>
<li>Set condition &#8211; Select AccountID in the Secure Users dataFields</li>
<li>Select &#8220;Number of occurrences of AccountID&#8221; in the &#8220;Select:&#8221; dropdown</li>
<li>Select &#8220;is equal to&#8221; and enter zero as the value</li>
<li>Select &#8220;Disable this control&#8221;</li>
</ol>
<li>Quick Publish the form and you&#8217;re done!</li>
</ol>
<p>You&#8217;ve created a form that checks the Secure Users list for the current logged in user. If the user is not in the list the selected field will be disabled.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vettekerry.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vettekerry.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vettekerry.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vettekerry.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vettekerry.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vettekerry.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vettekerry.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vettekerry.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vettekerry.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vettekerry.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vettekerry.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vettekerry.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vettekerry.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vettekerry.wordpress.com/148/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vettekerry.wordpress.com&amp;blog=3727565&amp;post=148&amp;subd=vettekerry&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vettekerry.wordpress.com/2011/04/20/disable-a-list-field-when-addingediting-in-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">vettekerry</media:title>
		</media:content>
	</item>
		<item>
		<title>Silver Lining Computing</title>
		<link>http://vettekerry.wordpress.com/2011/04/20/silver-lining-computing/</link>
		<comments>http://vettekerry.wordpress.com/2011/04/20/silver-lining-computing/#comments</comments>
		<pubDate>Wed, 20 Apr 2011 16:23:06 +0000</pubDate>
		<dc:creator>Kerry</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://vettekerry.wordpress.com/?p=146</guid>
		<description><![CDATA[I&#8217;ve taken some time off from my blog to start a SharePoint Consulting company called Silver Lining Computing. We specialize in SharePoint implementation and customization and other related IT projects. Check out our website at http://www.silverliningcomputing.com.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vettekerry.wordpress.com&amp;blog=3727565&amp;post=146&amp;subd=vettekerry&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve taken some time off from my blog to start a SharePoint Consulting company called Silver Lining Computing. We specialize in SharePoint implementation and customization and other related IT projects. Check out our website at <a href="http://www.silverliningcomputing.com.">http://www.silverliningcomputing.com.</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vettekerry.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vettekerry.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vettekerry.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vettekerry.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vettekerry.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vettekerry.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vettekerry.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vettekerry.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vettekerry.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vettekerry.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vettekerry.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vettekerry.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vettekerry.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vettekerry.wordpress.com/146/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vettekerry.wordpress.com&amp;blog=3727565&amp;post=146&amp;subd=vettekerry&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vettekerry.wordpress.com/2011/04/20/silver-lining-computing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">vettekerry</media:title>
		</media:content>
	</item>
		<item>
		<title>Error Copying SharePoint Files in Windows Explorer</title>
		<link>http://vettekerry.wordpress.com/2010/04/14/error-copying-sharepoint-files-in-windows-explorer/</link>
		<comments>http://vettekerry.wordpress.com/2010/04/14/error-copying-sharepoint-files-in-windows-explorer/#comments</comments>
		<pubDate>Wed, 14 Apr 2010 19:00:45 +0000</pubDate>
		<dc:creator>Kerry</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://vettekerry.wordpress.com/?p=142</guid>
		<description><![CDATA[I was trying to copy files from a site on one SharePoint server farm to a site on a SharePoint server farm outside the firewall. The source site was using HTTP and the destination was HTTPS. I opened both document libraries in Windows Explorer and copied/pasted the files to the destination. The copy would create [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vettekerry.wordpress.com&amp;blog=3727565&amp;post=142&amp;subd=vettekerry&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I was trying to copy files from a site on one SharePoint server farm to a site on a SharePoint server farm outside the firewall. The source site was using HTTP and the destination was HTTPS. I opened both document libraries in Windows Explorer and copied/pasted the files to the destination. The copy would create the folders but throw an error on every file, &#8221;an error occurred copying some or all of your files&#8221;. </p>
<p>I noticed I had IE 6 installed so I installed IE 8 and everything now works perfectly&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vettekerry.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vettekerry.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vettekerry.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vettekerry.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vettekerry.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vettekerry.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vettekerry.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vettekerry.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vettekerry.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vettekerry.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vettekerry.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vettekerry.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vettekerry.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vettekerry.wordpress.com/142/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vettekerry.wordpress.com&amp;blog=3727565&amp;post=142&amp;subd=vettekerry&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vettekerry.wordpress.com/2010/04/14/error-copying-sharepoint-files-in-windows-explorer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">vettekerry</media:title>
		</media:content>
	</item>
		<item>
		<title>Failed to get value of the &#8220;Approval Status&#8221;</title>
		<link>http://vettekerry.wordpress.com/2009/11/18/failed-to-get-value-of-the-approval-status/</link>
		<comments>http://vettekerry.wordpress.com/2009/11/18/failed-to-get-value-of-the-approval-status/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 15:57:26 +0000</pubDate>
		<dc:creator>Kerry</dc:creator>
				<category><![CDATA[Customization]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[MOSS]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[User Errors]]></category>

		<guid isPermaLink="false">http://vettekerry.wordpress.com/?p=139</guid>
		<description><![CDATA[The full error message reads &#8220;Failed to get value of the &#8220;Approval Status&#8221; column from the &#8220;Moderation Status&#8221; field type control&#8221;. This error has started occuring on document libraries containg web part pages that were upgraded from SPS 2003. The Hidden property on the Approval Status field has somehow been set to false. The Hidden [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vettekerry.wordpress.com&amp;blog=3727565&amp;post=139&amp;subd=vettekerry&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The full error message reads &#8220;Failed to get value of the &#8220;Approval Status&#8221; column from the &#8220;Moderation Status&#8221; field type control&#8221;. This error has started occuring on document libraries containg web part pages that were upgraded from SPS 2003. The Hidden property on the Approval Status field has somehow been set to false. The Hidden property should be True.</p>
<p>I found this fix. Download a utility called SharePoint Manager 2007 from <a href="http://vspug.com/keutmann/2007/01/27/sharepoint-manager-2007-update/" target="_blank">this site</a>.<br />
Run the application on a SharePoint server.<br />
Go to View &#8211; Object Model and make sure &#8220;Full&#8221; is selected.<br />
Browse to the library in the treeview.<br />
Open the list of Fields and select the Approval Status field.<br />
Change the Hidden property to True.<br />
If the property is already set to True then change it to false and save it. Then change it back to True and save again.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vettekerry.wordpress.com/139/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vettekerry.wordpress.com/139/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vettekerry.wordpress.com/139/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vettekerry.wordpress.com/139/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vettekerry.wordpress.com/139/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vettekerry.wordpress.com/139/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vettekerry.wordpress.com/139/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vettekerry.wordpress.com/139/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vettekerry.wordpress.com/139/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vettekerry.wordpress.com/139/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vettekerry.wordpress.com/139/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vettekerry.wordpress.com/139/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vettekerry.wordpress.com/139/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vettekerry.wordpress.com/139/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vettekerry.wordpress.com&amp;blog=3727565&amp;post=139&amp;subd=vettekerry&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vettekerry.wordpress.com/2009/11/18/failed-to-get-value-of-the-approval-status/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">vettekerry</media:title>
		</media:content>
	</item>
		<item>
		<title>Mass Deleting Document Version History</title>
		<link>http://vettekerry.wordpress.com/2009/08/04/mass-deleting-document-version-history/</link>
		<comments>http://vettekerry.wordpress.com/2009/08/04/mass-deleting-document-version-history/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 17:24:10 +0000</pubDate>
		<dc:creator>Kerry</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[MOSS]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://vettekerry.wordpress.com/?p=134</guid>
		<description><![CDATA[Version history takes a huge amount of disk space The following SQL will delete the version history for a specific doc or set of docs BE VERY CAREFUL! Remove the first line and run a SELECT statement first so you don&#8217;t delete the wrong versions! Set the DirName = to the path to the doc [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vettekerry.wordpress.com&amp;blog=3727565&amp;post=134&amp;subd=vettekerry&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Version history takes a huge amount of disk space<br />
<strong>The following SQL will delete the version history for a specific doc or set of docs<br />
BE VERY CAREFUL! Remove the first line and run a SELECT statement first so you don&#8217;t delete the wrong versions!</strong></p>
<p>Set the DirName = to the path to the doc library<br />
Set the leafname = to the name of the file</p>
<p><span style="color:#ff0000;">delete from alldocversions<br />
from alldocversions v inner join alldocstreams s on s.id = v.id<br />
inner join alldocs d on d.id = s.id<br />
where DirName = &#8216;FolderPath&#8217; and leafname like &#8216;a%&#8217;</span></p>
<p>Here&#8217;s a cursor procedure to delete selected files</p>
<p><span style="color:#ff0000;">SET NOCOUNT ON<br />
declare @dirname varchar(100)<br />
declare @leafname varchar(255)</span></p>
<p><span style="color:#ff0000;">DECLARE complex_cursor CURSOR FOR<br />
    select distinct DirName, LeafName<br />
 from alldocversions v inner join alldocstreams s on s.id = v.id<br />
 inner join alldocs d on d.id = s.id<br />
 where DirName like &#8216;Folderpath%&#8217; and leafname like &#8216;c%&#8217;;<br />
OPEN complex_cursor;<br />
FETCH NEXT FROM complex_cursor INTO @dirname, @leafname<br />
WHILE @@FETCH_STATUS = 0<br />
BEGIN<br />
 PRINT &#8216;Deleting &#8216; + @dirname + &#8216;, &#8216; + @leafname</span></p>
<p><span style="color:#ff0000;"> DELETE FROM alldocversions<br />
 FROM alldocversions v inner join alldocstreams s on s.id = v.id<br />
 inner join alldocs d on d.id = s.id<br />
 where DirName = @dirname and leafname = @leafname</span></p>
<p><span style="color:#ff0000;"> FETCH NEXT FROM complex_cursor INTO @dirname, @leafname<br />
END<br />
CLOSE complex_cursor;<br />
DEALLOCATE complex_cursor;</span></p>
<p><span style="color:#ff0000;">SET NOCOUNT OFF</span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vettekerry.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vettekerry.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vettekerry.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vettekerry.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vettekerry.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vettekerry.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vettekerry.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vettekerry.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vettekerry.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vettekerry.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vettekerry.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vettekerry.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vettekerry.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vettekerry.wordpress.com/134/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vettekerry.wordpress.com&amp;blog=3727565&amp;post=134&amp;subd=vettekerry&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vettekerry.wordpress.com/2009/08/04/mass-deleting-document-version-history/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">vettekerry</media:title>
		</media:content>
	</item>
		<item>
		<title>403 Forbidden and Forms Authentication with MOSS</title>
		<link>http://vettekerry.wordpress.com/2009/05/21/403-forbidden-and-forms-authentication-with-moss/</link>
		<comments>http://vettekerry.wordpress.com/2009/05/21/403-forbidden-and-forms-authentication-with-moss/#comments</comments>
		<pubDate>Thu, 21 May 2009 14:50:48 +0000</pubDate>
		<dc:creator>Kerry</dc:creator>
				<category><![CDATA[Authentication]]></category>
		<category><![CDATA[Customization]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[MOSS]]></category>
		<category><![CDATA[Setup]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Error]]></category>

		<guid isPermaLink="false">http://vettekerry.wordpress.com/?p=132</guid>
		<description><![CDATA[We have a public MOSS site setup to use Forms Authentication for protected content. When the user hits files in certain document libraries, the user is automatically redirected to the login page and then returned to the document after a successful login. However, for some users, when they click a link to view a protected [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vettekerry.wordpress.com&amp;blog=3727565&amp;post=132&amp;subd=vettekerry&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>We have a public MOSS site setup to use Forms Authentication for protected content. When the user hits files in certain document libraries, the user is automatically redirected to the login page and then returned to the document after a successful login. However, for some users, when they click a link to view a protected file they are not redirected to the login page and a &#8220;403 Forbidden&#8221; error message is displayed in Internet Explorer. This behavior does not occur in non-IE browsers (Firefox, Safari).</p>
<p>After some research I found <a href="http://blogs.catalystss.com/blogs/marek_mazur/archive/2009/04/14/sharepoint-office-live-add-in-and-403-forbidden.aspx" target="_blank">this article</a>. It looks like the culprit is a Microsoft add-in for Office Live.</p>
<p>Fix: Uninstall the application called &#8220;Microsoft Office Live Add-in 1.3&#8243;. That solved the problem right away. No system reboot or browser restart necessary&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vettekerry.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vettekerry.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vettekerry.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vettekerry.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vettekerry.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vettekerry.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vettekerry.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vettekerry.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vettekerry.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vettekerry.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vettekerry.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vettekerry.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vettekerry.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vettekerry.wordpress.com/132/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vettekerry.wordpress.com&amp;blog=3727565&amp;post=132&amp;subd=vettekerry&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vettekerry.wordpress.com/2009/05/21/403-forbidden-and-forms-authentication-with-moss/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">vettekerry</media:title>
		</media:content>
	</item>
		<item>
		<title>MOSS Search Indexer &#8220;Access is Denied&#8221;</title>
		<link>http://vettekerry.wordpress.com/2009/05/19/moss-search-indexer-access-is-denied/</link>
		<comments>http://vettekerry.wordpress.com/2009/05/19/moss-search-indexer-access-is-denied/#comments</comments>
		<pubDate>Tue, 19 May 2009 20:02:53 +0000</pubDate>
		<dc:creator>Kerry</dc:creator>
				<category><![CDATA[Authentication]]></category>
		<category><![CDATA[Customization]]></category>
		<category><![CDATA[MOSS]]></category>
		<category><![CDATA[Setup]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://vettekerry.wordpress.com/?p=128</guid>
		<description><![CDATA[Have a MOSS farm the a web front-end and a separate search indexer. After installing some patches the indexer started failing with an Access is Denied message. MOSS configures a dedicated index machine by adding an entry to the HOSTS file that points the MOSS sites to the indexer&#8217;s IP address. If you try to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vettekerry.wordpress.com&amp;blog=3727565&amp;post=128&amp;subd=vettekerry&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Have a MOSS farm the a web front-end and a separate search indexer. After installing some patches the indexer started failing with an Access is Denied message. MOSS configures a dedicated index machine by adding an entry to the HOSTS file that points the MOSS sites to the indexer&#8217;s IP address. If you try to connect to your MOSS site on the Indexer&#8217;s desktop you will unable to connect.</p>
<p>The patches are KB960803 and KB963027. You can read the notes <a href="http://support.microsoft.com/kb/960803" target="_blank">here</a>.</p>
<p>Following the instructions for Method 1 in the article fixed the problem and indexer was able to access and index the content again. The fix is a small registry entry that allows local connections to other host names.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vettekerry.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vettekerry.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vettekerry.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vettekerry.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vettekerry.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vettekerry.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vettekerry.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vettekerry.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vettekerry.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vettekerry.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vettekerry.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vettekerry.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vettekerry.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vettekerry.wordpress.com/128/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vettekerry.wordpress.com&amp;blog=3727565&amp;post=128&amp;subd=vettekerry&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vettekerry.wordpress.com/2009/05/19/moss-search-indexer-access-is-denied/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">vettekerry</media:title>
		</media:content>
	</item>
		<item>
		<title>&#8220;Unable to load client print control&#8221; in Reporting Services 2005</title>
		<link>http://vettekerry.wordpress.com/2009/05/04/unable-to-load-client-print-control-in-reporting-services-2005/</link>
		<comments>http://vettekerry.wordpress.com/2009/05/04/unable-to-load-client-print-control-in-reporting-services-2005/#comments</comments>
		<pubDate>Mon, 04 May 2009 21:09:59 +0000</pubDate>
		<dc:creator>Kerry</dc:creator>
				<category><![CDATA[Customization]]></category>
		<category><![CDATA[Reporting Services]]></category>

		<guid isPermaLink="false">http://vettekerry.wordpress.com/?p=125</guid>
		<description><![CDATA[The user gets a dialog stating &#8220;Unable to load client print control&#8221; when clicking the print button on a Reporting Services 2005 report. There much written about this and what Microsoft update broke this so I won&#8217;t repeat it here. (Google &#8211; reporting services &#8220;Unable to load client print control&#8221;) The bottom line is that [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vettekerry.wordpress.com&amp;blog=3727565&amp;post=125&amp;subd=vettekerry&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The user gets a dialog stating &#8220;Unable to load client print control&#8221; when clicking the print button on a Reporting Services 2005 report.</p>
<p>There much written about this and what Microsoft update broke this so I won&#8217;t repeat it here. (Google &#8211; reporting services &#8220;Unable to load client print control&#8221;)</p>
<p>The bottom line is that there&#8217;s an update that added a &#8220;kill-bit&#8221; associated to the ActiveX printing control used by Reporting Services. There&#8217;s an update to Reporting Services that supposedly fixes this <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=82833f27-081d-4b72-83ef-2836360a904d&amp;DisplayLang=en">http://www.microsoft.com/downloads/details.aspx?FamilyID=82833f27-081d-4b72-83ef-2836360a904d&amp;DisplayLang=en</a></p>
<p>OR you can uninstall these 2 updates KB956803 &amp; KB956391</p>
<p>OR you can just delete the registry entry causing the problem<br />
Copy the red text below into a file with a REG file extension and double-click it</p>
<p><span style="color:#ff0000;">Windows Registry Editor Version 5.00</span></p>
<p><span style="color:#ff0000;">[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\ActiveX Compatibility\{FA91DF8D-53AB-455D-AB20-F2F023E498D3}]</span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vettekerry.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vettekerry.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vettekerry.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vettekerry.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vettekerry.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vettekerry.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vettekerry.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vettekerry.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vettekerry.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vettekerry.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vettekerry.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vettekerry.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vettekerry.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vettekerry.wordpress.com/125/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vettekerry.wordpress.com&amp;blog=3727565&amp;post=125&amp;subd=vettekerry&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vettekerry.wordpress.com/2009/05/04/unable-to-load-client-print-control-in-reporting-services-2005/feed/</wfw:commentRss>
		<slash:comments>31</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">vettekerry</media:title>
		</media:content>
	</item>
	</channel>
</rss>
