<?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>Abstract Spaces</title>
	<atom:link href="http://abstractspaces.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://abstractspaces.wordpress.com</link>
	<description>Share the Knowledge, Share Points</description>
	<lastBuildDate>Fri, 09 Oct 2009 14:33:23 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='abstractspaces.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/edb446a1146a8247cb542a18524d35bf?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Abstract Spaces</title>
		<link>http://abstractspaces.wordpress.com</link>
	</image>
			<item>
		<title>Append Row Number to your table records</title>
		<link>http://abstractspaces.wordpress.com/2009/10/09/append-row-number-to-your-table-records/</link>
		<comments>http://abstractspaces.wordpress.com/2009/10/09/append-row-number-to-your-table-records/#comments</comments>
		<pubDate>Fri, 09 Oct 2009 14:33:23 +0000</pubDate>
		<dc:creator>sanghvinirav</dc:creator>
				<category><![CDATA[Programming Tips]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Row_No()]]></category>

		<guid isPermaLink="false">http://abstractspaces.wordpress.com/?p=139</guid>
		<description><![CDATA[Recently in one of projects during testing I required to append the row numbers to each of its records in one of the tables in Sql Server.
The query to see the Row numbers is simple.


SELECT  Row_Number() OVER ( ORDER BY ProductId ) AS 'RowNo',

        ProductId,

   [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abstractspaces.wordpress.com&blog=3649157&post=139&subd=abstractspaces&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://abstractspaces.wordpress.com/2009/10/09/append-row-number-to-your-table-records/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/106b6d4362b4469dcfed6db98df66523?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">sanghvinirav</media:title>
		</media:content>
	</item>
		<item>
		<title>Sharepoint &#8211; Schema Files</title>
		<link>http://abstractspaces.wordpress.com/2009/10/07/sharepoint-schema-files/</link>
		<comments>http://abstractspaces.wordpress.com/2009/10/07/sharepoint-schema-files/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 12:51:47 +0000</pubDate>
		<dc:creator>sanghvinirav</dc:creator>
				<category><![CDATA[CAML]]></category>
		<category><![CDATA[MOSS]]></category>
		<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://abstractspaces.wordpress.com/?p=120</guid>
		<description><![CDATA[


The following table describes other schema files that use CAML Core Schemas for data definition or HTML rendering, and specifies their locations within the Local_Drive:\Program  Files\Common Files\Microsoft Shared\Web Server Extensions\12\TEMPLATE directory.



File name 
Location 
Description 


alerttemplates.xml
\XML
Defines the format, contents, and properties used to create  			alert messages.


STDVIEW.XML
\GLOBAL\XML
Defines the base view used in a site definition [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abstractspaces.wordpress.com&blog=3649157&post=120&subd=abstractspaces&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://abstractspaces.wordpress.com/2009/10/07/sharepoint-schema-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/106b6d4362b4469dcfed6db98df66523?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">sanghvinirav</media:title>
		</media:content>
	</item>
		<item>
		<title>SharePoint Internal Data Types &#8211; Reference</title>
		<link>http://abstractspaces.wordpress.com/2009/09/28/sharepoint-internal-data-types-reference/</link>
		<comments>http://abstractspaces.wordpress.com/2009/09/28/sharepoint-internal-data-types-reference/#comments</comments>
		<pubDate>Mon, 28 Sep 2009 12:45:48 +0000</pubDate>
		<dc:creator>sanghvinirav</dc:creator>
				<category><![CDATA[MOSS]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Data types]]></category>
		<category><![CDATA[XSLT]]></category>

		<guid isPermaLink="false">http://abstractspaces.wordpress.com/?p=118</guid>
		<description><![CDATA[Sharepoint supports different types of columns, this column types are reffered as following data types

Text
Note
Number
Currency
Integer
Boolean
DateTime
Threading
Lookup
Choice
URL
Counter
DisplayOnly (DisplayOnly field type has no storage of its own)
And I have either used or seen these used, but have not seen them documented anywhere:
RichHTML
Image

This values can be used in XSLT.
Here’s a partial table of SharePoint column types and their corresponding [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abstractspaces.wordpress.com&blog=3649157&post=118&subd=abstractspaces&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://abstractspaces.wordpress.com/2009/09/28/sharepoint-internal-data-types-reference/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/106b6d4362b4469dcfed6db98df66523?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">sanghvinirav</media:title>
		</media:content>
	</item>
		<item>
		<title>Programmatically add users to SharePoint</title>
		<link>http://abstractspaces.wordpress.com/2009/09/25/programmatically-add-users-to-sharepoint/</link>
		<comments>http://abstractspaces.wordpress.com/2009/09/25/programmatically-add-users-to-sharepoint/#comments</comments>
		<pubDate>Fri, 25 Sep 2009 12:29:24 +0000</pubDate>
		<dc:creator>sanghvinirav</dc:creator>
				<category><![CDATA[MOSS]]></category>
		<category><![CDATA[ObjectModel]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Users]]></category>

		<guid isPermaLink="false">http://abstractspaces.wordpress.com/?p=115</guid>
		<description><![CDATA[Points you need to remember when you add user :

Always run the code with Eleveted Privillages. Also use Delegate.
Get SPWeb by abosolute URI, not relative
Set AllowUnsafeUpdates to true before adding user, and turn it off once user is added.
Remember, if you are using FBA, prefix the Membership Provider Name before the &#8220;username&#8221; i.e

defaultProvider + &#8220;:&#8221; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abstractspaces.wordpress.com&blog=3649157&post=115&subd=abstractspaces&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://abstractspaces.wordpress.com/2009/09/25/programmatically-add-users-to-sharepoint/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/106b6d4362b4469dcfed6db98df66523?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">sanghvinirav</media:title>
		</media:content>
	</item>
		<item>
		<title>Link for Export List to Excel</title>
		<link>http://abstractspaces.wordpress.com/2009/09/23/link-for-export-list-ot-excel/</link>
		<comments>http://abstractspaces.wordpress.com/2009/09/23/link-for-export-list-ot-excel/#comments</comments>
		<pubDate>Wed, 23 Sep 2009 13:05:04 +0000</pubDate>
		<dc:creator>sanghvinirav</dc:creator>
				<category><![CDATA[MOSS]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Sharepoint Designer]]></category>
		<category><![CDATA[WSS]]></category>
		<category><![CDATA[Excel]]></category>

		<guid isPermaLink="false">http://abstractspaces.wordpress.com/?p=131</guid>
		<description><![CDATA[Many time we need the entire data of certain list in excel,
Although there are many inbuilt ways to do it, sometime we may need this link in Customize forms to work fast,
The link that sharepoint uses for all is
http://[Server]/[Site]/([Subsite]/)_vti_bin/owssvr.dll?CS=109&#38;Using=_layouts/query.iqy&#38;List=[ListGUID]&#38;View=[ViewGUID]&#38;CacheControl=1
You can place this link in any Custom Forms or Webparts to make the work faster
Posted in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abstractspaces.wordpress.com&blog=3649157&post=131&subd=abstractspaces&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://abstractspaces.wordpress.com/2009/09/23/link-for-export-list-ot-excel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/106b6d4362b4469dcfed6db98df66523?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">sanghvinirav</media:title>
		</media:content>
	</item>
		<item>
		<title>Sharepoint Designer: Fetching ID of Lookup Field from Label</title>
		<link>http://abstractspaces.wordpress.com/2009/09/22/sharepoint-designer-fetching-id-of-lookup-field-from-label/</link>
		<comments>http://abstractspaces.wordpress.com/2009/09/22/sharepoint-designer-fetching-id-of-lookup-field-from-label/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 13:02:09 +0000</pubDate>
		<dc:creator>sanghvinirav</dc:creator>
				<category><![CDATA[MOSS]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Sharepoint Designer]]></category>
		<category><![CDATA[Lookup]]></category>

		<guid isPermaLink="false">http://abstractspaces.wordpress.com/?p=129</guid>
		<description><![CDATA[In sharepoint , on display pages of any list, all the fields are rendered as Label, This creates problem when customization is required having some link of lookup field( rendered as label) from that page.
Since it is label @lookupfieldname returns the value(in text format) of that field not ID for that field value.
For this there is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abstractspaces.wordpress.com&blog=3649157&post=129&subd=abstractspaces&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://abstractspaces.wordpress.com/2009/09/22/sharepoint-designer-fetching-id-of-lookup-field-from-label/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/106b6d4362b4469dcfed6db98df66523?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">sanghvinirav</media:title>
		</media:content>
	</item>
		<item>
		<title>Webpart Connections Problem for Site Templates &#8211; The ugly { }</title>
		<link>http://abstractspaces.wordpress.com/2009/09/21/webpart-connections-problem-for-site-templates-the-ugly/</link>
		<comments>http://abstractspaces.wordpress.com/2009/09/21/webpart-connections-problem-for-site-templates-the-ugly/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 12:58:23 +0000</pubDate>
		<dc:creator>sanghvinirav</dc:creator>
				<category><![CDATA[MOSS]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[WSS]]></category>
		<category><![CDATA[SahrePoint Designer]]></category>

		<guid isPermaLink="false">http://abstractspaces.wordpress.com/?p=126</guid>
		<description><![CDATA[

When any site is modified by adding/removing/modifying the webpart  like DataView and later on site is saved with the &#8220;Save as Template&#8221; from Site Settings, re creating site using that template always displays broken webparts with errors like &#8220;Unable to Render this webpart&#8221; etc. this is because of ListID parameter with value as GUID of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abstractspaces.wordpress.com&blog=3649157&post=126&subd=abstractspaces&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://abstractspaces.wordpress.com/2009/09/21/webpart-connections-problem-for-site-templates-the-ugly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/106b6d4362b4469dcfed6db98df66523?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">sanghvinirav</media:title>
		</media:content>
	</item>
		<item>
		<title>SharePoint – Outlook Synchronization</title>
		<link>http://abstractspaces.wordpress.com/2009/09/19/sharepoint-%e2%80%93-outlook-synchronization/</link>
		<comments>http://abstractspaces.wordpress.com/2009/09/19/sharepoint-%e2%80%93-outlook-synchronization/#comments</comments>
		<pubDate>Sat, 19 Sep 2009 12:25:19 +0000</pubDate>
		<dc:creator>sanghvinirav</dc:creator>
				<category><![CDATA[MOSS]]></category>
		<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://abstractspaces.wordpress.com/?p=111</guid>
		<description><![CDATA[You can configure your Outlook to synchronize the Tasks, Events, Calendar with SharePoint lists. This is possible thru the stssync Protocol.
The stssync protocol enables you to add an Events list or a Contacts list that exists on a Microsoft Windows SharePoint Services site to Microsoft Office Outlook 2003 / 2007 or to a third-party application [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abstractspaces.wordpress.com&blog=3649157&post=111&subd=abstractspaces&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://abstractspaces.wordpress.com/2009/09/19/sharepoint-%e2%80%93-outlook-synchronization/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/106b6d4362b4469dcfed6db98df66523?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">sanghvinirav</media:title>
		</media:content>
	</item>
		<item>
		<title>How can we Identify a SharePoint Site ?</title>
		<link>http://abstractspaces.wordpress.com/2009/09/17/how-can-we-identify-a-sharepoint-site/</link>
		<comments>http://abstractspaces.wordpress.com/2009/09/17/how-can-we-identify-a-sharepoint-site/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 13:32:58 +0000</pubDate>
		<dc:creator>sanghvinirav</dc:creator>
				<category><![CDATA[MOSS]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[404]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[Identify]]></category>
		<category><![CDATA[Masterpage]]></category>

		<guid isPermaLink="false">http://abstractspaces.wordpress.com/?p=106</guid>
		<description><![CDATA[We have lot of websites in internet and many of them are in SharePoint.
There  are sites like www.wssdemo.com which contains really huge lists of public websites hosted on MOSS, but not every site you will find there.
So if you see any cool site, how will you find out whether its a MOSS site or not [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abstractspaces.wordpress.com&blog=3649157&post=106&subd=abstractspaces&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://abstractspaces.wordpress.com/2009/09/17/how-can-we-identify-a-sharepoint-site/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/106b6d4362b4469dcfed6db98df66523?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">sanghvinirav</media:title>
		</media:content>
	</item>
		<item>
		<title>SharePoint GEMS – CopyUtil.aspx</title>
		<link>http://abstractspaces.wordpress.com/2009/09/17/sharepoint-gems-%e2%80%93-copyutil-aspx/</link>
		<comments>http://abstractspaces.wordpress.com/2009/09/17/sharepoint-gems-%e2%80%93-copyutil-aspx/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 13:13:12 +0000</pubDate>
		<dc:creator>sanghvinirav</dc:creator>
				<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://abstractspaces.wordpress.com/?p=136</guid>
		<description><![CDATA[
Did you ever had the need to navigate to a SharePoint list item or document, when you only got the ID&#8217;s of the item, the item&#8217;s container (list or document library) and the item&#8217;s web? I sure did! For example when you query SharePoint data by making use of the SPSiteDataQuery class; the resulting data [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abstractspaces.wordpress.com&blog=3649157&post=136&subd=abstractspaces&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://abstractspaces.wordpress.com/2009/09/17/sharepoint-gems-%e2%80%93-copyutil-aspx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/106b6d4362b4469dcfed6db98df66523?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">sanghvinirav</media:title>
		</media:content>
	</item>
	</channel>
</rss>