<?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/"
	>

<channel>
	<title>Welcome to ShanthaKumar&#039;s Blog, SharePoint and more... &#187; SharePoint</title>
	<atom:link href="http://www.ktskumar.com/blog/tag/sharepoint/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ktskumar.com</link>
	<description>more Points to Share....</description>
	<lastBuildDate>Tue, 13 Dec 2011 17:36:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Catch the Unique Items from SharePoint List</title>
		<link>http://www.ktskumar.com/blog/2011/11/catch-the-unique-items-from-sharepoint-list/</link>
		<comments>http://www.ktskumar.com/blog/2011/11/catch-the-unique-items-from-sharepoint-list/#comments</comments>
		<pubDate>Wed, 30 Nov 2011 07:27:22 +0000</pubDate>
		<dc:creator>Shantha Kumar</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint-2010]]></category>
		<category><![CDATA[List]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[Unique]]></category>

		<guid isPermaLink="false">http://www.ktskumar.com/?p=528</guid>
		<description><![CDATA[I have lot of items from SharePoint List, but most of the items are duplicated. Here, I am going to give you a tips on getting unique rows from the List. For that, I googled for some time and then I found out there is no way to get the items based on CAML. So [...]]]></description>
			<content:encoded><![CDATA[<p>I have lot of items from SharePoint List, but most of the items are duplicated. Here, I am going to give you a tips on getting unique rows from the List. For that, I googled for some time and then I found out there is no way to get the items based on CAML.</p>
<p>So I tried to use LINQ to query the SharePoint Items. It works perfectly well for me. Here I provided my code to get the SharePoint Unique ListItems based on latest Items.</p>
<p>In the following example, I am first sorting the Items based on Modified field and then getting the unique item based on Title field by grouping.</p>
<p><code><strong><span style='color:#000066;'><br />
            using (SPSite site = new SPSite("http://localhost"))<br />
            {<br />
                using (SPWeb web = site.OpenWeb())<br />
                {<br />
                    SPList list = web.Lists.TryGetList("MyList");<br />
                    string Modi = "Modified";<br />
                    List<SPListItem> lstitems =<br />
                        (from l in list.Items.OfType&lt;SPListItem&gt;() orderby l[Modi] descending select l).ToList&lt;SPListItem&gt;();</span></strong></code></p>
<p><code><strong><span style='color:#000066;'>                    var listitemDistinct = lstitems.GroupBy(item1 => item1.Title, (key, group) => group.First()).ToList();</span></strong></code></p>
<p><code><strong><span style='color:#000066;'>                     foreach (SPListItem i in listitemDistinct)<br />
                    {<br />
                        Console.WriteLine("Title: " +i.Title +"Modified: " + i[Modi].ToString());<br />
                    }<br />
                }<br />
            }<br />
</span></strong></code></p>
<p>If the ListItems has the following items,</p>
<table>
<tr>
<td>ID</td>
<td>Title</td>
<td>Modified</td>
</tr>
<tr>
<td>1</td>
<td> Sample 1 </td>
<td> 11/16/2011</td>
</tr>
<tr>
<td>2</td>
<td> Sample 2 </td>
<td> 11/17/2011</td>
</tr>
<tr>
<td>3</td>
<td> Sample 1 </td>
<td> 11/18/2011</td>
</tr>
<tr>
<td>4</td>
<td> Sample 2 </td>
<td> 11/19/2011</td>
</tr>
</table>
<p>Result:<br />
Title: Sample 2 Modified: 11/19/2011<br />
Title: Sample 1 Modified: 11/18/2011</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ktskumar.com/blog/2011/11/catch-the-unique-items-from-sharepoint-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SiteCollection Storage Information</title>
		<link>http://www.ktskumar.com/blog/2011/11/sitecollection-storage-information/</link>
		<comments>http://www.ktskumar.com/blog/2011/11/sitecollection-storage-information/#comments</comments>
		<pubDate>Mon, 28 Nov 2011 06:53:56 +0000</pubDate>
		<dc:creator>Shantha Kumar</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint-2010]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[Usage]]></category>

		<guid isPermaLink="false">http://www.ktskumar.com/?p=519</guid>
		<description><![CDATA[SharePoint has the Usage Analysis Time job, which updates the following information for the sites, Storage, Discussion Storage, Bandwidth, Hits, Visits The SPSite.Usage property gives us the information of site usage, bandwidth, visits. Here I am adding the snippet for getting the Free Space available against Storage Quota and Space used by Site Collection, using [...]]]></description>
			<content:encoded><![CDATA[<p>SharePoint has the Usage Analysis Time job, which updates the following information for the sites, </p>
<ul>
<li>Storage,</li>
<li>Discussion Storage,</li>
<li>Bandwidth,</li>
<li>Hits,</li>
<li>Visits</li>
</ul>
<p>The <strong>SPSite.Usage</strong> property gives us the information of site usage, bandwidth, visits.<br />
Here I am adding the snippet for getting the Free Space available against Storage Quota and Space used by Site Collection,</p>
<p>                <code>using (SPSite site = new SPSite("http://localhost"))<br />
                {<br />
                        SPSite.UsageInfo susg = site.Usage;<br />
                        long spaceused = (((susg.Storage + 0x80000L) / 0x100000L));<br />
                        if (site.Quota.StorageMaximumLevel == 0L)<br />
                        {<br />
                            Console.WriteLine("Storage Quota: Not applicable");<br />
                            Console.WriteLine("Free Space Available: Unlimited");<br />
                        }<br />
                        else<br />
                        {<br />
                            long sitequota = (site.Quota.StorageMaximumLevel / 0x100000L);<br />
                            long freespace = sitequota - spaceused;<br />
                            Console.WriteLine("Storage Quota: " + sitequota.ToString());<br />
                            Console.WriteLine("Free Space Available: " + freespace.ToString() + " MB");<br />
                        }<br />
                        Console.WriteLine("Storage Used: " + spaceused + " MB");<br />
                }</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ktskumar.com/blog/2011/11/sitecollection-storage-information/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clear SharePoint Lists</title>
		<link>http://www.ktskumar.com/blog/2011/11/clear-sharepoint-lists/</link>
		<comments>http://www.ktskumar.com/blog/2011/11/clear-sharepoint-lists/#comments</comments>
		<pubDate>Sun, 27 Nov 2011 03:07:09 +0000</pubDate>
		<dc:creator>Shantha Kumar</dc:creator>
				<category><![CDATA[SharePoint-2010]]></category>
		<category><![CDATA[ListItem]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Utility]]></category>

		<guid isPermaLink="false">http://www.ktskumar.com/?p=514</guid>
		<description><![CDATA[My colleague asked me about, is there any tool available for removing the entire list items from multiple list with single Click. I have taken that idea and created a tool for removing the entire items. URL: http://clearspitems.codeplex.com/ The project is in alpha stage, i have planned for adding more functionality to this tool. And [...]]]></description>
			<content:encoded><![CDATA[<p>My colleague asked me about, is there any tool available for removing the entire list items from multiple list with single  Click. I have taken that idea and created a tool for removing the entire items.</p>
<p><strong>URL: <a href='http://clearspitems.codeplex.com/' title='Removing Entire ListItems'>http://clearspitems.codeplex.com/</a></strong></p>
<p>The project is in alpha stage, i have planned for adding more functionality to this tool. And I will also publish this in the format of stsadm, powershell and in Ribbon mode.</p>
<p>I am expecting those things to be happen within next week..</p>
<p>So stay tuned &#8230; :)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ktskumar.com/blog/2011/11/clear-sharepoint-lists/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why Workflow not started  on Item Creation?</title>
		<link>http://www.ktskumar.com/blog/2011/11/why-workflow-not-started-on-item-creation/</link>
		<comments>http://www.ktskumar.com/blog/2011/11/why-workflow-not-started-on-item-creation/#comments</comments>
		<pubDate>Sun, 20 Nov 2011 02:22:24 +0000</pubDate>
		<dc:creator>Shantha Kumar</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint Tips]]></category>
		<category><![CDATA[Workflow]]></category>

		<guid isPermaLink="false">http://www.ktskumar.com/?p=509</guid>
		<description><![CDATA[There are some cases, why the workflow was not started during item creation, 1. If you create an item using System Account, the workflow will not funtion properly or that couldn&#8217;t start. 2. The workflow start option was not enabled to &#8220;Start workflow automatically when an item was created&#8221;. Ensure this option was checked. 3. [...]]]></description>
			<content:encoded><![CDATA[<p>There are some cases, why the workflow was not started during item creation,</p>
<p>1. If you create an item using System Account, the workflow will not funtion properly or that couldn&#8217;t start.<br />
2. The workflow start option was not enabled to &#8220;Start workflow automatically when an item was created&#8221;. Ensure this option was checked.<br />
3. If you create and publish a workflow without enabling the Start option(Start workflow automatically when an item was created). And after some time you came and enable that start option &#038; saves without Publishing also cause a problem.<br />
4. Or remove the &#8220;Allow this workflow to be manually started&#8221; start option and Initiation workflow. Enable &#8220;Start workflow automatically when an item was created&#8221; option and Publish the workflow.</p>
<p>check the following link has the soltuoions for SharePoint Designer workflows, <a href='http://office.microsoft.com/en-us/sharepoint-designer-help/troubleshoot-workflow-errors-HA010237912.aspx#BM2' title='Troubleshoot workflow Errors'>http://office.microsoft.com/en-us/sharepoint-designer-help/troubleshoot-workflow-errors-HA010237912.aspx#BM2</a><br />
If the above solutions couldn&#8217;t solve the problem, the you have to create new workflow.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ktskumar.com/blog/2011/11/why-workflow-not-started-on-item-creation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hide Fields in List Forms</title>
		<link>http://www.ktskumar.com/blog/2011/08/hide-fields-in-list-forms/</link>
		<comments>http://www.ktskumar.com/blog/2011/08/hide-fields-in-list-forms/#comments</comments>
		<pubDate>Sat, 13 Aug 2011 14:22:51 +0000</pubDate>
		<dc:creator>Shantha Kumar</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[List Pages]]></category>
		<category><![CDATA[spField]]></category>

		<guid isPermaLink="false">http://www.ktskumar.com/blog/2011/08/hide-fields-in-list-forms/</guid>
		<description><![CDATA[We have three types of List Forms in SharePoint., New Form, Edit Form and Display Form. For some times or in some requirements, we need to hide some of the fields in List Forms. By OOB there is no page or option for hiding fields on separate form, but we can hide the fields in [...]]]></description>
			<content:encoded><![CDATA[<p>We have three types of List Forms in SharePoint., </p>
<p>New Form, Edit Form and Display Form. </p>
<p>For some times or in some requirements, we need to hide some of the fields in List Forms. By OOB there is no page or option for hiding fields on separate form, but we can hide the fields in all forms in List.</p>
<p>I am just giving snippet to hide the Fields in each separate form, separately,</p>
<p>using (SPSite site = new SPSite(&#8220;<a href="http://localhost&quot;))">http://localhost&#8221;))</a><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; using (SPWeb web = site.OpenWeb())<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SPList list = web.Lists.TryGetList(&#8220;Custom&#8221;);<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SPField field = list.Fields.GetFieldByInternalName(&#8220;field1&#8243;);<br /><font color="#008040">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //To hide the field from New Form<br /></font>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; field.ShowInNewForm = false;&nbsp; <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <font color="#008040">//To hide the field from Edit Form<br /></font>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; field.ShowInEditForm = false;&nbsp; <br /><font color="#008040">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //To hide the field from Display Form</font><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; field.ShowInDisplayForm = false;&nbsp; <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; field.Update();<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</p>
<p>We can also show / hide the fields based on content Types. For Content Types, we can retrieve the field from Content Type.</p>
<p>SPField field = list.ContentTypes[“ctype1”].Fields.GetFieldByInternalName(&#8220;field1&#8243;);</p>
<p>and the add the further lines to hide the field in SharePoint Lists.</p>
<p>For revert back, we can set the ShowInNewForm&nbsp; property as true.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ktskumar.com/blog/2011/08/hide-fields-in-list-forms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enable Customization for Refinement Panel Web part</title>
		<link>http://www.ktskumar.com/blog/2011/07/enablecustomizedrefinementwebpart/</link>
		<comments>http://www.ktskumar.com/blog/2011/07/enablecustomizedrefinementwebpart/#comments</comments>
		<pubDate>Wed, 06 Jul 2011 16:05:00 +0000</pubDate>
		<dc:creator>Shantha Kumar</dc:creator>
				<category><![CDATA[Search]]></category>
		<category><![CDATA[SharePoint-2010]]></category>
		<category><![CDATA[Configuration]]></category>
		<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://www.ktskumar.com/blog/2011/07/enable-customization-for-refinement-panel-web-part/</guid>
		<description><![CDATA[“ The Refinement Panel web part in SharePoint 2010 provides a summary of search results and enables user to filter the search results. ” I have Search Center Site, there i have Refinement panel web part in results page. To enable the modifications for Refinement Panel web part, &#160; 1)  Navigate to the Search results [...]]]></description>
			<content:encoded><![CDATA[<p><em>“ The Refinement Panel web part in SharePoint 2010 provides a summary of search results and enables user to filter the search results. ”</em></p>
<p>I have Search Center Site, there i have Refinement panel web part in results page. To enable the modifications for Refinement Panel web part,</p>
<p><em> </em></p>
<p><a href="http://www.ktskumar.com/wp-content/uploads/2011/07/image.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; float: left; padding-top: 0px; border: 0px;" title="image" src="http://www.ktskumar.com/wp-content/uploads/2011/07/image_thumb.png" border="0" alt="image" width="200" height="404" align="left" /></a></p>
<p>&nbsp;</p>
<p>1)  Navigate to the Search results page through browser.</p>
<p>2) Edit the page by navigating Site Actions -&gt; Edit Page</p>
<p>3) Select the Refinement Panel Web part, Click the edit arrow and then Click the Edit Web part menu. This opens the Web part Properties tool pane.</p>
<p>4) In the Refinement section, clear the <strong>Use Default Configuration</strong> check box.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>5) Then modify Data view properties and other properties to view modified Refinement Panel</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ktskumar.com/blog/2011/07/enablecustomizedrefinementwebpart/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Joyful June 2011</title>
		<link>http://www.ktskumar.com/blog/2011/07/joyfuljune11/</link>
		<comments>http://www.ktskumar.com/blog/2011/07/joyfuljune11/#comments</comments>
		<pubDate>Wed, 06 Jul 2011 04:50:52 +0000</pubDate>
		<dc:creator>Shantha Kumar</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[June]]></category>
		<category><![CDATA[Saturday]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Upgrade]]></category>

		<guid isPermaLink="false">http://www.ktskumar.com/?p=446</guid>
		<description><![CDATA[June 2011 becomes my favorable month, couple of good things are happened during this month. One of that happens on June 5th in the form of my marriage which was a beautiful moment in my life, after a 4 long year struggle with my love. Next one was I got the invitation to speak for [...]]]></description>
			<content:encoded><![CDATA[<p>June 2011  becomes my favorable month, couple of good things are happened during this month. </p>
<p>One of that happens on June 5th in the form of my marriage which was a beautiful moment in my life, after a 4 long year struggle with my love. Next one was I got the invitation to speak for <a href="http://sharepointsaturday.org/india/default.aspx">Online SharePoint Saturday India</a> on June 25th , and i have presented on &#8220;SharePoint 2010 Upgrade Approaches&#8221; for IT Professional Channel. </p>
<p>This SharePoint Saturday event experience gives me a  encouragement to involve in more community activities. Enjoying my life and look forward to step up in my carrier.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ktskumar.com/blog/2011/07/joyfuljune11/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updating SharePoint ListItems</title>
		<link>http://www.ktskumar.com/blog/2011/03/updating-sharepoint-listitems/</link>
		<comments>http://www.ktskumar.com/blog/2011/03/updating-sharepoint-listitems/#comments</comments>
		<pubDate>Sun, 06 Mar 2011 03:08:23 +0000</pubDate>
		<dc:creator>Shantha Kumar</dc:creator>
				<category><![CDATA[SharePoint-2010]]></category>
		<category><![CDATA[List]]></category>
		<category><![CDATA[Server Object Model]]></category>
		<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://www.ktskumar.com/?p=423</guid>
		<description><![CDATA[There are two methods available to update the List Items on SPListItem Object. SPListItem.Update(); SPListItem.SystemUpdate(); SPListItem.Update() used to update all the values in SharePoint List Item including pre-defined hidden fields. If we modified the item, that will affects the Modified Date, Modified By, Version information fields. SPList olist = oweb.Lists.TryGetList(&#8220;ListName&#8221;); SPListItem olistitem = olist.Items[1]; olistitem.Title [...]]]></description>
			<content:encoded><![CDATA[<p>There are two methods available to update the List Items on SPListItem Object.<br />
<strong>SPListItem.Update();<br />
SPListItem.SystemUpdate()</strong>;</p>
<p><strong>SPListItem.Update()</strong> used to update all the values in SharePoint List Item including pre-defined hidden fields. If we modified the item, that will affects the Modified Date, Modified By, Version information fields.</p>
<p><em><span style="color: #008000;">SPList olist = oweb.Lists.TryGetList(&#8220;ListName&#8221;);<br />
SPListItem olistitem = olist.Items[1];<br />
olistitem.Title = &#8220;Sample List Item&#8221;<br />
olistitem.Update();<br />
olist.Update();</span></em></p>
<p><strong>SPListItem.SystemUpdate()</strong> method used to update the values of the listitem without modifying the Modified Date, Modified By and Version information fields.</p>
<p><span style="color: #008000;"><em>SPList olist = oweb.Lists.TryGetList(&#8220;ListName&#8221;);<br />
SPListItem olistitem = olist.Items[1];<br />
olistitem.Title = &#8220;Sample List Item&#8221;<br />
olistitem.SystemUpdate();<br />
olist.Update();</em></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ktskumar.com/blog/2011/03/updating-sharepoint-listitems/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>SharePoint Daily Alert &#8211; 7</title>
		<link>http://www.ktskumar.com/blog/2011/01/sharepoint-daily-alert-7/</link>
		<comments>http://www.ktskumar.com/blog/2011/01/sharepoint-daily-alert-7/#comments</comments>
		<pubDate>Sat, 15 Jan 2011 04:37:14 +0000</pubDate>
		<dc:creator>Shantha Kumar</dc:creator>
				<category><![CDATA[SharePoint Daily Alerts]]></category>
		<category><![CDATA[Content]]></category>
		<category><![CDATA[Content Scheduling]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint-2010]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.ktskumar.com/?p=402</guid>
		<description><![CDATA[Content Scheduling &#8211; Content can be sheduled (by timer job) to be published or unpublished at specific dates and times. Content Scheduling was avaialble only the following conditions are true, 1. Content Approval was Enabled on Versioning Settings 2. Create major and minor (draft) versions was set to Document Version History option.]]></description>
			<content:encoded><![CDATA[<p><strong><span style="text-decoration: underline;">Content Scheduling</span></strong> &#8211; Content can be sheduled (by timer job) to be published or unpublished at specific dates and times.</p>
<p>Content Scheduling was avaialble only the following conditions are true,</p>
<p>1. <strong>Content Approval</strong> was <strong>Enabled</strong> on Versioning Settings</p>
<p>2. <strong>Create major and minor (draft)</strong> versions was set to <strong>Document Version History</strong> option.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ktskumar.com/blog/2011/01/sharepoint-daily-alert-7/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SharePoint Daily Alerts &#8211; 5</title>
		<link>http://www.ktskumar.com/blog/2011/01/sharepoint-daily-alerts-5/</link>
		<comments>http://www.ktskumar.com/blog/2011/01/sharepoint-daily-alerts-5/#comments</comments>
		<pubDate>Wed, 05 Jan 2011 16:58:23 +0000</pubDate>
		<dc:creator>Shantha Kumar</dc:creator>
				<category><![CDATA[SharePoint Daily Alerts]]></category>
		<category><![CDATA[Client API]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint-2010]]></category>
		<category><![CDATA[SP2010 New Features]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.ktskumar.com/?p=390</guid>
		<description><![CDATA[SharePoint 2010 provides a three new Client API&#8217;s for interacting with SharePoint. .Net Managed Application Silverlight Application ECMA Script These API&#8217;s are much easier to use than already exsiting WebServices. The recomended Client API was .Net Managed Application than WebServices.]]></description>
			<content:encoded><![CDATA[<p>SharePoint 2010 provides a three new Client API&#8217;s for interacting with SharePoint.</p>
<ul>
<li><strong>.Net Managed Application</strong></li>
<li><strong>Silverlight Application</strong></li>
<li><strong>ECMA Script</strong></li>
</ul>
<p>These API&#8217;s are much easier to use than already exsiting WebServices.<br />
The recomended Client API was <strong>.Net Managed Application</strong> than WebServices.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ktskumar.com/blog/2011/01/sharepoint-daily-alerts-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

