<?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>Out Of The Box Sharepoint (?)</title>
	<atom:link href="http://kruismanp.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://kruismanp.wordpress.com</link>
	<description>Peter Kruisman</description>
	<lastBuildDate>Tue, 17 Jan 2012 08:04:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='kruismanp.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Out Of The Box Sharepoint (?)</title>
		<link>http://kruismanp.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://kruismanp.wordpress.com/osd.xml" title="Out Of The Box Sharepoint (?)" />
	<atom:link rel='hub' href='http://kruismanp.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Infopath-fields and custom list-columns</title>
		<link>http://kruismanp.wordpress.com/2011/12/01/infopath-fields-and-custom-list-columns-2/</link>
		<comments>http://kruismanp.wordpress.com/2011/12/01/infopath-fields-and-custom-list-columns-2/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 11:22:12 +0000</pubDate>
		<dc:creator>Peter Kruisman</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://kruismanp.wordpress.com/?p=489</guid>
		<description><![CDATA[I blogged before about Infopath-fields and custom list-columns values from a workflow. It proved to be even more challenging and resulted in a code behind solution. As noted before you can retrieve the ID of the form using a dataconnection: - Formcode.cs FormEvents_Loading() XPathNavigator secunDD = DataSources["ItemID"].CreateNavigator(); XPathNavigator ID = secunDD.SelectSingleNode(&#8220;/dfs:myFields/dfs:dataFields/dfs:DUF/@Id&#8221;, NamespaceManager); I pass this [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kruismanp.wordpress.com&amp;blog=2432286&amp;post=489&amp;subd=kruismanp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://kruismanp.wordpress.com/2011/05/31/infopath-fields-and-custom-list-columns" target="_blank">I blogged before</a> about Infopath-fields and custom list-columns values from a workflow. It proved to be even more challenging and resulted in a code behind solution. As noted before you can retrieve the ID of the form using a dataconnection:<br />
- Formcode.cs<br />
FormEvents_Loading()<br />
XPathNavigator secunDD = DataSources["ItemID"].CreateNavigator();<br />
XPathNavigator ID = secunDD.SelectSingleNode(&#8220;/dfs:myFields/dfs:dataFields/dfs:DUF/@Id&#8221;, NamespaceManager);</p>
<p>I pass this ID to an other class referencing Microsoft.SharePoint. With SPLIST SPITEM and CAML I got hold of the field values<br />
SPLIST:<br />
- SPList splijst = web.Lists["ListName"];<br />
CAML:<br />
- Squery = string.Format(&#8220;&lt;Where&gt;&lt;Eq&gt;&lt;FieldRef Name=&#8217;ID&#8217; /&gt;&lt;Value Type=&#8217;Counter&#8217;&gt;{0}&lt;/Value&gt;&lt;/Eq&gt;&lt;/Where&gt;&#8221;, ID);<br />
SPITEM:<br />
- spcollectieItems = splijst.GetItems(query);<br />
- item = spcollectieItems[0];<br />
- VariableToReturnToFormcodeCS = ( item[&quot;FieldName&quot;] == null)? &quot;&quot; : item[&quot;FieldName&quot;].ToString();</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kruismanp.wordpress.com/489/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kruismanp.wordpress.com/489/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kruismanp.wordpress.com/489/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kruismanp.wordpress.com/489/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kruismanp.wordpress.com/489/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kruismanp.wordpress.com/489/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kruismanp.wordpress.com/489/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kruismanp.wordpress.com/489/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kruismanp.wordpress.com/489/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kruismanp.wordpress.com/489/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kruismanp.wordpress.com/489/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kruismanp.wordpress.com/489/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kruismanp.wordpress.com/489/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kruismanp.wordpress.com/489/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kruismanp.wordpress.com&amp;blog=2432286&amp;post=489&amp;subd=kruismanp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kruismanp.wordpress.com/2011/12/01/infopath-fields-and-custom-list-columns-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8ec1be3b057b55df1158483fa15a4367?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kruismanp</media:title>
		</media:content>
	</item>
		<item>
		<title>Implementing SLK</title>
		<link>http://kruismanp.wordpress.com/2011/09/08/implementing-slk/</link>
		<comments>http://kruismanp.wordpress.com/2011/09/08/implementing-slk/#comments</comments>
		<pubDate>Thu, 08 Sep 2011 09:31:28 +0000</pubDate>
		<dc:creator>Peter Kruisman</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[Learning Kit]]></category>

		<guid isPermaLink="false">http://kruismanp.wordpress.com/?p=456</guid>
		<description><![CDATA[Sharepoint Learning Kit can be implemented&#160;as a self-service (learner chooses assignment-s )&#160;or push(teacher assign assignments to learners)&#160;&#160;application. The current version 1.5 and higher has a dropbox, a sharepoint document library with a folder per assignment and learner subfolders:&#160; The learner accesses his assignment is this folder via the assignment webpart. Because this assignment resides in&#160;a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kruismanp.wordpress.com&amp;blog=2432286&amp;post=456&amp;subd=kruismanp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Sharepoint Learning Kit can be implemented&nbsp;as a self-service (learner chooses assignment-s )&nbsp;or push(teacher assign assignments to learners)&nbsp;&nbsp;application.<br />
<a href="http://slk.codeplex.com/">The current version 1.5 and higher</a> has a dropbox, a sharepoint document library with a folder per assignment and learner subfolders:&nbsp;<br />
<a href="http://kruismanp.files.wordpress.com/2011/09/dropbox_folders2.png"><img class="alignnone size-full wp-image-476" title="dropbox_folders" src="http://kruismanp.files.wordpress.com/2011/09/dropbox_folders2.png" alt="" width="616" height="378" /></a><br />
The learner accesses his assignment is this folder via the assignment webpart. Because this assignment resides in&nbsp;a document library all the usual options for editing and saving are available.<br />
<a href="http://kruismanp.files.wordpress.com/2011/09/slk-configuratie.docx">Included in this posting instructions for and comments&nbsp;about a Sharepoint2010 push implementation:<br />
<img class="alignleft size-full wp-image-464" title="Inhoudsopgave" src="http://kruismanp.files.wordpress.com/2011/09/inhoudsopgave.png" alt="" width="455" height="241" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kruismanp.wordpress.com/456/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kruismanp.wordpress.com/456/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kruismanp.wordpress.com/456/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kruismanp.wordpress.com/456/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kruismanp.wordpress.com/456/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kruismanp.wordpress.com/456/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kruismanp.wordpress.com/456/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kruismanp.wordpress.com/456/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kruismanp.wordpress.com/456/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kruismanp.wordpress.com/456/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kruismanp.wordpress.com/456/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kruismanp.wordpress.com/456/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kruismanp.wordpress.com/456/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kruismanp.wordpress.com/456/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kruismanp.wordpress.com&amp;blog=2432286&amp;post=456&amp;subd=kruismanp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kruismanp.wordpress.com/2011/09/08/implementing-slk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8ec1be3b057b55df1158483fa15a4367?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kruismanp</media:title>
		</media:content>

		<media:content url="http://kruismanp.files.wordpress.com/2011/09/dropbox_folders2.png" medium="image">
			<media:title type="html">dropbox_folders</media:title>
		</media:content>

		<media:content url="http://kruismanp.files.wordpress.com/2011/09/inhoudsopgave.png" medium="image">
			<media:title type="html">Inhoudsopgave</media:title>
		</media:content>
	</item>
		<item>
		<title>Sharepoint LMS</title>
		<link>http://kruismanp.wordpress.com/2011/06/09/sharepoint-lms/</link>
		<comments>http://kruismanp.wordpress.com/2011/06/09/sharepoint-lms/#comments</comments>
		<pubDate>Thu, 09 Jun 2011 09:38:08 +0000</pubDate>
		<dc:creator>Peter Kruisman</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://kruismanp.wordpress.com/?p=451</guid>
		<description><![CDATA[In 2008 I blogged about the Sharepoint LMS. I suspected then that it was a Joomla clone which was commented by a representative of the company Elearningforce that &#8220;It is native SharePoint coding and was started because Microsoft asked us to&#8221;.  In this recording of Kelvyn Hicks at HVA in the Netherlands the integration of the LMS with Sharepoint 2007/ 2010 and other Microsoft products is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kruismanp.wordpress.com&amp;blog=2432286&amp;post=451&amp;subd=kruismanp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a title="microsoft-office-sharepoint-server-may-be-the-last-server-youll-ever-need-for-business-and-learning" href="http://kruismanp.wordpress.com/2008/10/07/microsoft-office-sharepoint-server-may-be-the-last-server-youll-ever-need-for-business-and-learning/#comments" target="_blank">In 2008 I blogged about the Sharepoint LMS</a>. I suspected then that it was a Joomla clone which was commented by a representative of the company Elearningforce that &#8220;It is native SharePoint coding and was started because Microsoft asked us to&#8221;.  In this <a title="HVA-Sharepoint-LMS" href="http://hva.mediamission.nl/mediasite/SilverlightPlayer/Default.aspx?peid=995c1c5849c042b4bac068804d4011781d" target="_blank">recording</a> of Kelvyn Hicks at HVA in the Netherlands the integration of the LMS with Sharepoint 2007/ 2010 and other Microsoft products is presented.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kruismanp.wordpress.com/451/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kruismanp.wordpress.com/451/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kruismanp.wordpress.com/451/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kruismanp.wordpress.com/451/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kruismanp.wordpress.com/451/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kruismanp.wordpress.com/451/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kruismanp.wordpress.com/451/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kruismanp.wordpress.com/451/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kruismanp.wordpress.com/451/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kruismanp.wordpress.com/451/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kruismanp.wordpress.com/451/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kruismanp.wordpress.com/451/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kruismanp.wordpress.com/451/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kruismanp.wordpress.com/451/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kruismanp.wordpress.com&amp;blog=2432286&amp;post=451&amp;subd=kruismanp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kruismanp.wordpress.com/2011/06/09/sharepoint-lms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8ec1be3b057b55df1158483fa15a4367?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kruismanp</media:title>
		</media:content>
	</item>
		<item>
		<title>Infopath-fields and custom list-columns</title>
		<link>http://kruismanp.wordpress.com/2011/05/31/infopath-fields-and-custom-list-columns/</link>
		<comments>http://kruismanp.wordpress.com/2011/05/31/infopath-fields-and-custom-list-columns/#comments</comments>
		<pubDate>Tue, 31 May 2011 15:25:13 +0000</pubDate>
		<dc:creator>Peter Kruisman</dc:creator>
				<category><![CDATA[Infopath]]></category>
		<category><![CDATA[Sharepoint]]></category>

		<guid isPermaLink="false">http://kruismanp.wordpress.com/?p=425</guid>
		<description><![CDATA[We use infopath forms in organizational processes.  One of such is part of a Sharepoint workflow. The data gathered by the workflow tasks is added to the form library. In red the columns that are populated by the tasks The requirement is that printing this form the additional tasks data has to be included. For this I copied the form layout and fields to a newly added form print [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kruismanp.wordpress.com&amp;blog=2432286&amp;post=425&amp;subd=kruismanp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>We use infopath forms in organizational processes.  One of such is part of a Sharepoint workflow. The data gathered by the workflow tasks is added to the form library.<br />
<a href="http://kruismanp.files.wordpress.com/2011/05/listcolumns_infopathcolumns.png"><img class="alignnone size-medium wp-image-426" title="ListColumns_InfopathColumns" src="http://kruismanp.files.wordpress.com/2011/05/listcolumns_infopathcolumns.png?w=247&#038;h=300" alt="" width="247" height="300" /></a><br />
<em>In red the columns that are populated by the tasks</em></p>
<p>The requirement is that printing this form the additional tasks data has to be included. For this I copied the form layout and fields to a newly added form print view. In this view I added the additional fields that represents the data gathered by the tasks. After defining a data connection that includes all list columns and checking the checkbox &#8221;Include Data for the Active Form only&#8221; I matched the newly added infopath fields with the corresponding list columns.<br />
Testing this the fields where not populated with the data. I stumbled across <a title="infopathdev" href="http://www.infopathdev.com/forums/p/6541/44798.aspx#29159" target="_blank">this posting</a> about white spaces in the forms file name causing a failed data connection with non infopath list columns. This was not the case with our list names. Although testing this using the concat() field formula with a combination of  infopath and non-infopath listcolumns,  <br />
<a href="http://kruismanp.files.wordpress.com/2011/05/formulasamenvoegen.png"><img class="alignnone size-medium wp-image-428" title="FormulaSamenvoegen" src="http://kruismanp.files.wordpress.com/2011/05/formulasamenvoegen.png?w=300&#038;h=265" alt="" width="300" height="265" /></a><br />
<em>In the red boxes the non-infopath list columns<br />
The meeting title is the forms name</em></p>
<p>non-infopath fields are indeed empty if spaces were used in the forms file name:</p>
<p><a href="http://kruismanp.files.wordpress.com/2011/05/formulasamenvoegenresultaat.png"><img class="alignnone size-full wp-image-429" title="FormulaSamenvoegenResultaat" src="http://kruismanp.files.wordpress.com/2011/05/formulasamenvoegenresultaat.png" alt="" width="218" height="142" /></a><br />
Using a file name without spaces:</p>
<p><a href="http://kruismanp.files.wordpress.com/2011/05/formulasamenvoegenresultaatalles.png"><img class="alignnone size-full wp-image-430" title="FormulaSamenvoegenResultaatAlles" src="http://kruismanp.files.wordpress.com/2011/05/formulasamenvoegenresultaatalles.png" alt="" width="219" height="140" /></a><br />
Now all referenced fields produce data.</p>
<p>The bonus of this test is that I discovered that using a formula solved my problem: I have now gathered non infopath data into my form.<br />
For this to work make sure that the formula includes an infopath form field. If it only includes non-infopath fields it doesn&#8217;t gather the data.<br />
My solution is to add a hidden empty dummy field to the infopath form and reference this in the formula, for example:<br />
<strong>concat(@id; dummy)</strong> &lt;- @id is the item id (non-infopath) dummy is the hidden empty infopath field.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kruismanp.wordpress.com/425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kruismanp.wordpress.com/425/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kruismanp.wordpress.com/425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kruismanp.wordpress.com/425/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kruismanp.wordpress.com/425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kruismanp.wordpress.com/425/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kruismanp.wordpress.com/425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kruismanp.wordpress.com/425/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kruismanp.wordpress.com/425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kruismanp.wordpress.com/425/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kruismanp.wordpress.com/425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kruismanp.wordpress.com/425/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kruismanp.wordpress.com/425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kruismanp.wordpress.com/425/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kruismanp.wordpress.com&amp;blog=2432286&amp;post=425&amp;subd=kruismanp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kruismanp.wordpress.com/2011/05/31/infopath-fields-and-custom-list-columns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8ec1be3b057b55df1158483fa15a4367?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kruismanp</media:title>
		</media:content>

		<media:content url="http://kruismanp.files.wordpress.com/2011/05/listcolumns_infopathcolumns.png?w=247" medium="image">
			<media:title type="html">ListColumns_InfopathColumns</media:title>
		</media:content>

		<media:content url="http://kruismanp.files.wordpress.com/2011/05/formulasamenvoegen.png?w=300" medium="image">
			<media:title type="html">FormulaSamenvoegen</media:title>
		</media:content>

		<media:content url="http://kruismanp.files.wordpress.com/2011/05/formulasamenvoegenresultaat.png" medium="image">
			<media:title type="html">FormulaSamenvoegenResultaat</media:title>
		</media:content>

		<media:content url="http://kruismanp.files.wordpress.com/2011/05/formulasamenvoegenresultaatalles.png" medium="image">
			<media:title type="html">FormulaSamenvoegenResultaatAlles</media:title>
		</media:content>
	</item>
		<item>
		<title>Managed Metadata Column Issues</title>
		<link>http://kruismanp.wordpress.com/2011/05/26/managed-metadata-column-issues/</link>
		<comments>http://kruismanp.wordpress.com/2011/05/26/managed-metadata-column-issues/#comments</comments>
		<pubDate>Thu, 26 May 2011 10:30:20 +0000</pubDate>
		<dc:creator>Peter Kruisman</dc:creator>
				<category><![CDATA[Sharepoint]]></category>

		<guid isPermaLink="false">http://kruismanp.wordpress.com/?p=412</guid>
		<description><![CDATA[Today I encountered issues with a Sharepoint2010 metadata column. When I tried to change it to a multi value column: Go to list settings,  index columns and remove the column from the index.  You can get this error when trying to delete the metadata column in Sharepoint 2010: This error relates to the navigation settings for the list. De-associate it with [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kruismanp.wordpress.com&amp;blog=2432286&amp;post=412&amp;subd=kruismanp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today I encountered issues with a Sharepoint2010 metadata column. When I tried to change it to a multi value column:<br />
<a href="http://kruismanp.files.wordpress.com/2011/05/multivalue_metadatacolumn_change_indexing_error.png"><img class="alignnone size-medium wp-image-416" title="MultiValue_MetadataColumn_Change_Indexing_Error" src="http://kruismanp.files.wordpress.com/2011/05/multivalue_metadatacolumn_change_indexing_error.png?w=300&#038;h=135" alt="" width="300" height="135" /></a><br />
Go to list settings,  index columns and remove the column from the index. </p>
<p>You can get this error when trying to delete the metadata column in Sharepoint 2010:<br />
<a href="http://kruismanp.files.wordpress.com/2011/05/metadatacolumn_delete_error.png"><img class="alignnone size-medium wp-image-417" title="MetaDataColumn_Delete_error" src="http://kruismanp.files.wordpress.com/2011/05/metadatacolumn_delete_error.png?w=300&#038;h=134" alt="" width="300" height="134" /></a><br />
This error relates to the navigation settings for the list. De-associate it with the metadata navigation settings of the list:<br />
<a href="http://kruismanp.files.wordpress.com/2011/05/metadatacolumn_delete_metadatanavigationssettings_list_klein.png"><img class="alignnone size-medium wp-image-418" title="MetaDataColumn_Delete_MetadataNavigationsSettings_List_klein" src="http://kruismanp.files.wordpress.com/2011/05/metadatacolumn_delete_metadatanavigationssettings_list_klein.png?w=300&#038;h=121" alt="" width="300" height="121" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kruismanp.wordpress.com/412/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kruismanp.wordpress.com/412/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kruismanp.wordpress.com/412/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kruismanp.wordpress.com/412/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kruismanp.wordpress.com/412/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kruismanp.wordpress.com/412/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kruismanp.wordpress.com/412/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kruismanp.wordpress.com/412/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kruismanp.wordpress.com/412/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kruismanp.wordpress.com/412/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kruismanp.wordpress.com/412/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kruismanp.wordpress.com/412/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kruismanp.wordpress.com/412/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kruismanp.wordpress.com/412/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kruismanp.wordpress.com&amp;blog=2432286&amp;post=412&amp;subd=kruismanp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kruismanp.wordpress.com/2011/05/26/managed-metadata-column-issues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8ec1be3b057b55df1158483fa15a4367?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kruismanp</media:title>
		</media:content>

		<media:content url="http://kruismanp.files.wordpress.com/2011/05/multivalue_metadatacolumn_change_indexing_error.png?w=300" medium="image">
			<media:title type="html">MultiValue_MetadataColumn_Change_Indexing_Error</media:title>
		</media:content>

		<media:content url="http://kruismanp.files.wordpress.com/2011/05/metadatacolumn_delete_error.png?w=300" medium="image">
			<media:title type="html">MetaDataColumn_Delete_error</media:title>
		</media:content>

		<media:content url="http://kruismanp.files.wordpress.com/2011/05/metadatacolumn_delete_metadatanavigationssettings_list_klein.png?w=300" medium="image">
			<media:title type="html">MetaDataColumn_Delete_MetadataNavigationsSettings_List_klein</media:title>
		</media:content>
	</item>
		<item>
		<title>Metadata and/ or folders</title>
		<link>http://kruismanp.wordpress.com/2011/05/24/metadata-and-or-folders/</link>
		<comments>http://kruismanp.wordpress.com/2011/05/24/metadata-and-or-folders/#comments</comments>
		<pubDate>Tue, 24 May 2011 13:39:33 +0000</pubDate>
		<dc:creator>Peter Kruisman</dc:creator>
				<category><![CDATA[Sharepoint]]></category>

		<guid isPermaLink="false">http://kruismanp.wordpress.com/?p=385</guid>
		<description><![CDATA[Chris Poteet posted a video that demonstrate the use of metadata and folders in Sharepoint 2010  It is instigated by the discussion in his blog about the Folder-less Sharepoint Paradigm. This discussion is very enlightening because of the various use cases of using metadata/ or folders. Its a culture change! I share with  Paul Culmsee the concerns about the application centric users, they have not the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kruismanp.wordpress.com&amp;blog=2432286&amp;post=385&amp;subd=kruismanp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Chris Poteet posted a <a title="visual-demonstration-of-folders-vs-metadata-for-classification" href="http://www.siolon.com/blog/visual-demonstration-of-folders-vs-metadata-for-classification/" target="_blank">video that demonstrate the use of metadata and folders in Sharepoint 2010</a> <br />
It is instigated by the discussion in his blog about the <a title="the-folder-less-sharepoint-paradigm" href="http://www.siolon.com/blog/the-folder-less-sharepoint-paradigm/" target="_blank">Folder-less Sharepoint Paradigm</a>. This discussion is very enlightening because of the various use cases of using metadata/ or folders. Its a culture change!<br />
I share with  <a title="olders-are-bad-and-other-urban-legends" href="http://www.cleverworkarounds.com/2009/09/30/folders-are-bad-and-other-urban-legends/" target="_blank">Paul Culmsee the concerns about the application centric users</a>, they have not the benefit of the added metadata because of the absence of Sharepoint list columns. <a title="sharepoint-2010-windows-explorer-view" href="http://techtrainingnotes.blogspot.com/2010/05/sharepoint-2010-windows-explorer-view.html" target="_blank">Here</a> a related posting about the explorer functionalities in Sharepoint 2010. <br />
As Chris demonstrate in his video you can use folders that delegate its metadata to the documents within. Still the drawback in using folders is that there will be many cases that documents are placed in more than one folder. In my opinion folder centric taxonomies are not able to prevent this. Using multi value metadata columns prevents this need for duplicates (and the struggle to manage these).</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kruismanp.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kruismanp.wordpress.com/385/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kruismanp.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kruismanp.wordpress.com/385/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kruismanp.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kruismanp.wordpress.com/385/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kruismanp.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kruismanp.wordpress.com/385/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kruismanp.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kruismanp.wordpress.com/385/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kruismanp.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kruismanp.wordpress.com/385/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kruismanp.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kruismanp.wordpress.com/385/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kruismanp.wordpress.com&amp;blog=2432286&amp;post=385&amp;subd=kruismanp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kruismanp.wordpress.com/2011/05/24/metadata-and-or-folders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8ec1be3b057b55df1158483fa15a4367?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kruismanp</media:title>
		</media:content>
	</item>
		<item>
		<title>Sharepoint 2007 versus Sharepoint 2010 metadata</title>
		<link>http://kruismanp.wordpress.com/2011/05/24/sharepoint-2007-versus-sharepoint-2010-metadata/</link>
		<comments>http://kruismanp.wordpress.com/2011/05/24/sharepoint-2007-versus-sharepoint-2010-metadata/#comments</comments>
		<pubDate>Tue, 24 May 2011 12:13:15 +0000</pubDate>
		<dc:creator>Peter Kruisman</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[Sharepoint]]></category>

		<guid isPermaLink="false">http://kruismanp.wordpress.com/?p=348</guid>
		<description><![CDATA[We have in Sharepoint 2007 custom lists that are used as simple drop boxes. In this list we have a lookup field that serves as metadata for the uploaded assignment. These custom lists are completely out the box, no event receiver. The teacher is warned about unwanted input (student has scored his own assignment) using a calculated column. There are [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kruismanp.wordpress.com&amp;blog=2432286&amp;post=348&amp;subd=kruismanp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>We have in Sharepoint 2007 custom lists that are used as simple drop boxes. In this list we have a lookup field that serves as metadata for the uploaded assignment.<br />
<a href="http://kruismanp.files.wordpress.com/2011/05/inleveren2007_opdracht2.png"><img class="alignnone size-medium wp-image-363" title="Inleveren2007_Opdracht" src="http://kruismanp.files.wordpress.com/2011/05/inleveren2007_opdracht2.png?w=268&#038;h=300" alt="" width="268" height="300" /></a></p>
<p>These custom lists are completely out the box, no event receiver. The teacher is warned about unwanted input (student has scored his own assignment) using a calculated column. There are views in place that presents uploaded assignment to the appropriate teacher. Students can only view the assignments  they own. These users can subsequently filter the shown assignments using the column filters<br />
<a href="http://kruismanp.files.wordpress.com/2011/05/inleveren2007_filter.png"><img class="alignnone size-medium wp-image-350" title="Inleveren2007_filter" src="http://kruismanp.files.wordpress.com/2011/05/inleveren2007_filter.png?w=300&#038;h=154" alt="" width="300" height="154" /></a><br />
In the above case there are more than 70 assignments from three related courses to choose from. It is presented as one long dropdown list.<br />
In Sharepoint 2010 this dropdown list can be replaced with a managed metadata column (which can be available throughout the farm..).<br />
<a href="http://kruismanp.files.wordpress.com/2011/05/inleveren_opdracht_kleiner.png"><img class="alignnone size-medium wp-image-357" title="Inleveren_Opdracht_kleiner" src="http://kruismanp.files.wordpress.com/2011/05/inleveren_opdracht_kleiner.png?w=300&#038;h=266" alt="" width="300" height="266" /></a><br />
Using the metadata column the uploaded assignments can be filtered like in 2007 but it&#8217;s now hierarchical.<br />
<a href="http://kruismanp.files.wordpress.com/2011/05/inleveren_kolomfilter.png"><img class="alignnone size-medium wp-image-365" title="inleveren_kolomfilter" src="http://kruismanp.files.wordpress.com/2011/05/inleveren_kolomfilter.png?w=300&#038;h=75" alt="" width="300" height="75" /></a><br />
New is the list navigation using the managed metadata (terms set)  and/ or keywords (column) filter. These are <span style="text-decoration:underline;">only</span> accessible in the quick launch column (left site column) of the list (if configured in the  list settings). It is therefore not available for filtering on a page. This could be handy with multiple lists that share the same terms set.<br />
<a href="http://kruismanp.files.wordpress.com/2011/05/inleveren_filters.png"><img class="alignnone size-medium wp-image-368" title="Inleveren_Filters" src="http://kruismanp.files.wordpress.com/2011/05/inleveren_filters.png?w=300&#038;h=206" alt="" width="300" height="206" /></a><br />
An other advantage is that administrators can configure that the tagging application allows new terms/ or suggestions via email and delegation of the management of the term set.</p>
<p><a title="create-and-manage-terms-within-term-sets" href="http://office.microsoft.com/en-us/sharepoint-server-help/create-and-manage-terms-within-term-sets-HA101631581.aspx" target="_blank">Here</a> a summary of  the scale and  structure of term sets and actions within the term store management tool.</p>
<p>Deprecate or delete terms?<br />
<a href="http://kruismanp.files.wordpress.com/2011/05/termstore_deprecatedelete.png"><img class="alignnone size-medium wp-image-381" title="TermStore_DeprecateDelete" src="http://kruismanp.files.wordpress.com/2011/05/termstore_deprecatedelete.png?w=300&#038;h=241" alt="" width="300" height="241" /></a><br />
When deprecating a term the term can be used for filtering. It is not longer available for tagging new content.<br />
Obviously a deleted term CANNOT be used for filtering. In de above case users cannot filter for assignments that have deleted tags.<br />
<a href="http://kruismanp.files.wordpress.com/2011/05/term_deprecate_verwijderen.png"><img class="alignnone size-medium wp-image-383" title="Term_Deprecate_Verwijderen" src="http://kruismanp.files.wordpress.com/2011/05/term_deprecate_verwijderen.png?w=300&#038;h=164" alt="" width="300" height="164" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kruismanp.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kruismanp.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kruismanp.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kruismanp.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kruismanp.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kruismanp.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kruismanp.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kruismanp.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kruismanp.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kruismanp.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kruismanp.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kruismanp.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kruismanp.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kruismanp.wordpress.com/348/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kruismanp.wordpress.com&amp;blog=2432286&amp;post=348&amp;subd=kruismanp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kruismanp.wordpress.com/2011/05/24/sharepoint-2007-versus-sharepoint-2010-metadata/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8ec1be3b057b55df1158483fa15a4367?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kruismanp</media:title>
		</media:content>

		<media:content url="http://kruismanp.files.wordpress.com/2011/05/inleveren2007_opdracht2.png?w=268" medium="image">
			<media:title type="html">Inleveren2007_Opdracht</media:title>
		</media:content>

		<media:content url="http://kruismanp.files.wordpress.com/2011/05/inleveren2007_filter.png?w=300" medium="image">
			<media:title type="html">Inleveren2007_filter</media:title>
		</media:content>

		<media:content url="http://kruismanp.files.wordpress.com/2011/05/inleveren_opdracht_kleiner.png?w=300" medium="image">
			<media:title type="html">Inleveren_Opdracht_kleiner</media:title>
		</media:content>

		<media:content url="http://kruismanp.files.wordpress.com/2011/05/inleveren_kolomfilter.png?w=300" medium="image">
			<media:title type="html">inleveren_kolomfilter</media:title>
		</media:content>

		<media:content url="http://kruismanp.files.wordpress.com/2011/05/inleveren_filters.png?w=300" medium="image">
			<media:title type="html">Inleveren_Filters</media:title>
		</media:content>

		<media:content url="http://kruismanp.files.wordpress.com/2011/05/termstore_deprecatedelete.png?w=300" medium="image">
			<media:title type="html">TermStore_DeprecateDelete</media:title>
		</media:content>

		<media:content url="http://kruismanp.files.wordpress.com/2011/05/term_deprecate_verwijderen.png?w=300" medium="image">
			<media:title type="html">Term_Deprecate_Verwijderen</media:title>
		</media:content>
	</item>
		<item>
		<title>Unless you know why you want to implement it &#8211; Informal learning payoffs in real life</title>
		<link>http://kruismanp.wordpress.com/2011/05/23/unless-you-know-why-you-want-to-implement-it-informal-learning-payoffs-in-real-life/</link>
		<comments>http://kruismanp.wordpress.com/2011/05/23/unless-you-know-why-you-want-to-implement-it-informal-learning-payoffs-in-real-life/#comments</comments>
		<pubDate>Mon, 23 May 2011 09:14:44 +0000</pubDate>
		<dc:creator>Peter Kruisman</dc:creator>
				<category><![CDATA[Education]]></category>

		<guid isPermaLink="false">http://kruismanp.wordpress.com/?p=332</guid>
		<description><![CDATA[One year ago Microsoft launched SharePoint 2010. It is described by Microsoft as  “the biggest release we’ve ever done of SharePoint”. Especially the social networking capabilities and opportunities to build “ a collaborative learning community using the latest technologies” are mentioned. Greg Weiss blogs about the effort involved to make social learning with the use of Sharepoint2010 possible. In the user confined Sharepoint environment, with users already using www social [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kruismanp.wordpress.com&amp;blog=2432286&amp;post=332&amp;subd=kruismanp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>One year ago Microsoft launched SharePoint 2010. It is described by Microsoft as  “the biggest release we’ve ever done of SharePoint”. Especially the social networking capabilities and opportunities to build “ a collaborative learning community using the latest technologies” are <a title="Social learning" href="http://www.microsoft.com/presspass/exec/elop/2010/05-12Office2010.mspx" target="_blank">mentioned</a>.</p>
<p><a title="Greg Weiss" href="http://elearninfo247.com/author/diegoinstudiocity/" target="_blank">Greg Weiss</a> blogs about the <a title="sharepoint-social-learning-savior" href="http://elearninfo247.com/2011/05/17/sharepoint-social-learning-savior/" target="_blank">effort involved</a> to make social learning with the use of Sharepoint2010 possible. In the user confined Sharepoint environment, with users already using www social networking tools and the aforementioned corporate effort (= investment)  there is need for a rock solid business case. <a title="social-networking-bridging-formal-and-informal-learning" href="http://www.learningsolutionsmag.com/articles/57/social-networking-bridging-formal-and-informal-learning" target="_blank">This article</a> by <a title="Clark Quin" href="http://www.learningsolutionsmag.com/authors/64/clark-n-quinn" target="_blank">Clark Quinn</a> has in my opinion a short list of payoffs that can be of assistance to make such a case.</p>
<p><a href="http://kruismanp.files.wordpress.com/2011/05/formal_informal_novice_expert.jpg"><img class="alignnone size-medium wp-image-337" title="Formal_Informal_Novice_Expert" src="http://kruismanp.files.wordpress.com/2011/05/formal_informal_novice_expert.jpg?w=300&#038;h=203" alt="" width="300" height="203" /></a></p>
<p><a title="Weblogg-ed" href="http://weblogg-ed.com/" target="_blank">Will Richardson</a> wrote in 2006 &#8220;Blogs, Wikis, Podcasts, and other powerful tools for the classroom&#8221; which has also to the point payoffs and use cases.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kruismanp.wordpress.com/332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kruismanp.wordpress.com/332/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kruismanp.wordpress.com/332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kruismanp.wordpress.com/332/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kruismanp.wordpress.com/332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kruismanp.wordpress.com/332/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kruismanp.wordpress.com/332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kruismanp.wordpress.com/332/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kruismanp.wordpress.com/332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kruismanp.wordpress.com/332/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kruismanp.wordpress.com/332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kruismanp.wordpress.com/332/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kruismanp.wordpress.com/332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kruismanp.wordpress.com/332/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kruismanp.wordpress.com&amp;blog=2432286&amp;post=332&amp;subd=kruismanp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kruismanp.wordpress.com/2011/05/23/unless-you-know-why-you-want-to-implement-it-informal-learning-payoffs-in-real-life/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8ec1be3b057b55df1158483fa15a4367?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kruismanp</media:title>
		</media:content>

		<media:content url="http://kruismanp.files.wordpress.com/2011/05/formal_informal_novice_expert.jpg?w=300" medium="image">
			<media:title type="html">Formal_Informal_Novice_Expert</media:title>
		</media:content>
	</item>
		<item>
		<title>From Alois Senefelder to Bill Gates</title>
		<link>http://kruismanp.wordpress.com/2011/05/18/from-alois-senefelder-to-bill-gates/</link>
		<comments>http://kruismanp.wordpress.com/2011/05/18/from-alois-senefelder-to-bill-gates/#comments</comments>
		<pubDate>Wed, 18 May 2011 20:15:06 +0000</pubDate>
		<dc:creator>Peter Kruisman</dc:creator>
				<category><![CDATA[Sharepoint]]></category>

		<guid isPermaLink="false">http://kruismanp.wordpress.com/?p=282</guid>
		<description><![CDATA[Early on in my live I developed a more than average interest in graphic expressions.  I&#8217;ve explored it from typography to (stone) lithography invented by Alois Senefelder. Professionally it culminated in teaching art (drawing) and owning a small lithographic atelier.  Mid &#8217;90 I became aware of  javascript and the netscape browser and shifted my attention to ICT.  Since 2004 I am involved in the administration and  [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kruismanp.wordpress.com&amp;blog=2432286&amp;post=282&amp;subd=kruismanp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://kruismanp.files.wordpress.com/2011/05/grakkie_logo-zeer_klein.jpg"><img class="alignnone size-full wp-image-329" title="Grakkie_logo-zeer_klein" src="http://kruismanp.files.wordpress.com/2011/05/grakkie_logo-zeer_klein.jpg" alt="" width="220" height="220" /></a><br />
Early on in my live I developed a more than average interest in graphic expressions.  I&#8217;ve explored it from typography to (stone) lithography invented by Alois Senefelder. Professionally it culminated in teaching art (drawing) and owning a small lithographic atelier.  Mid &#8217;90 I became aware of  javascript and the netscape browser and shifted my attention to ICT.  Since 2004 I am involved in the administration and  implementation of Sharepoint by a school organization in the Netherlands. In the near future this will be Sharepoint2010 with 30.000+ users.<br />
Maybe by now readers of this posting may think &#8220;What the.. has this to do with Out Of The Box Sharepoint&#8221;. Maybe this question is relevant for most of my postings? <br />
In the past when I was printing an edition of lithographs all the preliminary work had to be excellent to make this edition printing a success and motivating experience. During this edition printing monitoring the prints and condition of the drawing on the stone, inks and rollers can reveal that minor adjustments are needed. An experienced printer does such adjustments on the fly.  The same principle applies to getting Sharepoint up and running. The tool box, media and most goals is different not so the need for the motivated experienced craftsmen - women. This motivation is frequently challenged by Sharepoint when administrative actions reveals flaws in the software or need overly complex actions.  Can an experienced Sharepoint administrator on the fly make the needed adjustments like the experienced printer? <br />
 Today stone lithography only exist as a medium for artistic expression.  Contemporary lithography utilizes other media and technologies and is almost always present in paper based mass communication. It does a great job in presenting photographs and other non electronic media like drawings and stone lithographs&#8230;. A Jack of all trades,  master of none? Well this depends on your expertise, goals and financial means. A lithographic reproduction of a <a title="George bellows" href="http://www.christies.com/LotFinder/lot_details.aspx?intObjectID=5062835" target="_blank">George Bellows River Front </a>stone lithograph cost about 0,5% of the original.  Assuming that you have the means to buy an original not as an investment it is very probably you want to relate with the artistic expression and craftsmanship needed to capture this in lithographic crayon on stone and its transfer to certain paper. Maybe not your cup of tea but very recognizable for a few others. <br />
In my opinion is Sharepoint a similar Jack of all trades.  It is presented as a swiss army knife for all IT challenges. Only when you have a very explicit need it weaknesses are exposed. Similar to examine closely the reproduction you have just bought of the River Front. While doing this you want to eliminate the distracting shine of the paper.  If you contact me for a solution I will advice you to alter the viewing distance <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />   <img src='http://s0.wp.com/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' />  .<br />
Out Off The Box Sharepoint provides a proof off concept which can be satisfying for some. It becomes a challenge to satisfy explicit needs like  &#8220;The cost of  text messages per sitecollection&#8221; and &#8220;<a href="http://social.technet.microsoft.com/Forums/en-US/sharepoint2010customization/thread/7d519e65-0bdd-480c-983b-d95040ac93cf/" target="_blank">Infopath Content Type Syndication</a>&#8220; and &#8230;&#8230;</p>
<p>Is Sharepoint like modern lithography a trade-off? <br />
Are dedicated IT solutions providing a better (manageable)  job?  <br />
Does the trade-off outweight the effort to wire and maintain dedicated solutions into a coherent infrastructure?</p>
<p>More limitations or overly complex OOTB functions :<br />
<a href="http://www.cleverworkarounds.com/2011/03/31/consequences-of-complexitythe-evilness-of-the-sharepoint-2010-user-profile-service/" target="_blank">User Profile Service</a><br />
<a href="http://msdn.microsoft.com/en-us/library/ms496823(v=office.12).aspx" target="_blank">Excell services</a><br />
<a href="http://blogs.kma-llc.net/microknowledge/2010/12/sharepoint-2010-managed-metadata-service-getting-content-type-syndication-working.html" target="_blank">Content type syndication</a><br />
<a href="http://www.harbar.net/archive/2009/03/13/the-lsquohidden-costrsquo-of-sharepoint-in-the-enterprise.aspx" target="_blank">So we need a bunch of extra stuff</a><br />
( read also my postings about the SMS service,  Visual Studio 2010 and sharepoint templates )<br />
etc</p>
<p>I&#8217;ve sold the contents of my lithographic atelier in 2001 and continued lithographing in the Graphic Atelier Kampen <br />
<a href="http://www.grafisch-atelier.nl/"><img class="alignnone size-medium wp-image-305" title="grafischatelierVoorkant" src="http://kruismanp.files.wordpress.com/2011/05/grafischateliervoorkant.png?w=300&#038;h=227" alt="" width="300" height="227" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kruismanp.wordpress.com/282/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kruismanp.wordpress.com/282/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kruismanp.wordpress.com/282/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kruismanp.wordpress.com/282/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kruismanp.wordpress.com/282/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kruismanp.wordpress.com/282/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kruismanp.wordpress.com/282/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kruismanp.wordpress.com/282/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kruismanp.wordpress.com/282/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kruismanp.wordpress.com/282/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kruismanp.wordpress.com/282/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kruismanp.wordpress.com/282/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kruismanp.wordpress.com/282/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kruismanp.wordpress.com/282/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kruismanp.wordpress.com&amp;blog=2432286&amp;post=282&amp;subd=kruismanp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kruismanp.wordpress.com/2011/05/18/from-alois-senefelder-to-bill-gates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8ec1be3b057b55df1158483fa15a4367?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kruismanp</media:title>
		</media:content>

		<media:content url="http://kruismanp.files.wordpress.com/2011/05/grakkie_logo-zeer_klein.jpg" medium="image">
			<media:title type="html">Grakkie_logo-zeer_klein</media:title>
		</media:content>

		<media:content url="http://kruismanp.files.wordpress.com/2011/05/grafischateliervoorkant.png?w=300" medium="image">
			<media:title type="html">grafischatelierVoorkant</media:title>
		</media:content>
	</item>
		<item>
		<title>Instant Messaging in Sharepoint 2010</title>
		<link>http://kruismanp.wordpress.com/2011/05/18/instant-messaging-in-sharepoint-2010/</link>
		<comments>http://kruismanp.wordpress.com/2011/05/18/instant-messaging-in-sharepoint-2010/#comments</comments>
		<pubDate>Wed, 18 May 2011 18:53:33 +0000</pubDate>
		<dc:creator>Peter Kruisman</dc:creator>
				<category><![CDATA[Sharepoint]]></category>

		<guid isPermaLink="false">http://kruismanp.wordpress.com/?p=308</guid>
		<description><![CDATA[A high level review of Out of the Box IM solutions for Sharepoint 2010 by Chris Riley: http://blog.livinganalytics.com/2010/12/instant-messaging-in-sharepoint-2010.html<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kruismanp.wordpress.com&amp;blog=2432286&amp;post=308&amp;subd=kruismanp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A high level review of Out of the Box IM solutions for Sharepoint 2010 by Chris Riley:<br />
<a href="http://blog.livinganalytics.com/2010/12/instant-messaging-in-sharepoint-2010.html">http://blog.livinganalytics.com/2010/12/instant-messaging-in-sharepoint-2010.html</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kruismanp.wordpress.com/308/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kruismanp.wordpress.com/308/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kruismanp.wordpress.com/308/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kruismanp.wordpress.com/308/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kruismanp.wordpress.com/308/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kruismanp.wordpress.com/308/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kruismanp.wordpress.com/308/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kruismanp.wordpress.com/308/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kruismanp.wordpress.com/308/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kruismanp.wordpress.com/308/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kruismanp.wordpress.com/308/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kruismanp.wordpress.com/308/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kruismanp.wordpress.com/308/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kruismanp.wordpress.com/308/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kruismanp.wordpress.com&amp;blog=2432286&amp;post=308&amp;subd=kruismanp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kruismanp.wordpress.com/2011/05/18/instant-messaging-in-sharepoint-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8ec1be3b057b55df1158483fa15a4367?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kruismanp</media:title>
		</media:content>
	</item>
	</channel>
</rss>
