<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: SharePoint: Lookup value Performance</title>
	<atom:link href="http://blog.dynatrace.com/2009/02/09/sharepoint-lookup-value-performance/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.dynatrace.com/2009/02/09/sharepoint-lookup-value-performance/</link>
	<description>dynaTrace Blog on Performance, Scalabilty and Architecture - Java and .NET  Application Performance Management</description>
	<lastBuildDate>Fri, 30 Jul 2010 14:50:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Darrin</title>
		<link>http://blog.dynatrace.com/2009/02/09/sharepoint-lookup-value-performance/comment-page-1/#comment-6000</link>
		<dc:creator>Darrin</dc:creator>
		<pubDate>Thu, 03 Sep 2009 21:06:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dynatrace.com/?p=317#comment-6000</guid>
		<description>Okay, xml in comments = bad. How about escaped xml:
&lt;Field Name=&quot;DeptMgr&quot; DisplayName=&quot;Dept Mgr&quot; ShowInDisplayForm=&quot;TRUE&quot; ReadOnly=&quot;FALSE&quot; Type=&quot;Computed&quot; ShowInNewForm=&quot;FALSE&quot; ShowInEditForm=&quot;FALSE&quot; EnableLookup=&quot;TRUE&quot; Filterable=&quot;TRUE&quot; Sortable=&quot;TRUE&quot;&gt;
&lt;FieldRefs&gt;
&lt;FieldRef Name=&quot;Team&quot; ShowField=&quot;DeptMgr&quot; /&gt;
&lt;/FieldRefs&gt;
&lt;DisplayPattern&gt;
&lt;LookupColumn Name=&quot;Team&quot; ShowField=&quot;DeptMgr&quot; /&gt;
&lt;/DisplayPattern&gt;
&lt;/Field&gt;</description>
		<content:encoded><![CDATA[<p>Okay, xml in comments = bad. How about escaped xml:<br />
&lt;Field Name=&quot;DeptMgr&quot; DisplayName=&quot;Dept Mgr&quot; ShowInDisplayForm=&quot;TRUE&quot; ReadOnly=&quot;FALSE&quot; Type=&quot;Computed&quot; ShowInNewForm=&quot;FALSE&quot; ShowInEditForm=&quot;FALSE&quot; EnableLookup=&quot;TRUE&quot; Filterable=&quot;TRUE&quot; Sortable=&quot;TRUE&quot;&gt;<br />
&lt;FieldRefs&gt;<br />
&lt;FieldRef Name=&quot;Team&quot; ShowField=&quot;DeptMgr&quot; /&gt;<br />
&lt;/FieldRefs&gt;<br />
&lt;DisplayPattern&gt;<br />
&lt;LookupColumn Name=&quot;Team&quot; ShowField=&quot;DeptMgr&quot; /&gt;<br />
&lt;/DisplayPattern&gt;<br />
&lt;/Field&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Darrin</title>
		<link>http://blog.dynatrace.com/2009/02/09/sharepoint-lookup-value-performance/comment-page-1/#comment-5999</link>
		<dc:creator>Darrin</dc:creator>
		<pubDate>Thu, 03 Sep 2009 21:03:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dynatrace.com/?p=317#comment-5999</guid>
		<description>What about using a Computed column to bring over more field values from the lookup table? I&#039;ve done it and it seems to work great, but I haven&#039;t looked to see if it adds the columns when it does the initial join, grabbing ID and Title from the other list, or if it does multiple queries.

Here&#039;s what I mean: say you have a status list that you want people to fill in their team name per item. So &quot;Team&quot; is a lookup column to the &quot;Teams&quot; List and then later in a view you want to show status with column showing Department Manager pulled over from the &quot;Teams&quot; list. So I added a computed column via the Lists.asmx web service UpdateList(...) method with the following definition. Problem is I can&#039;t figure out how to filter using a computed column, but can&#039;t win them all!

&lt;code&gt;

			
				
			
			
				
			
		
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>What about using a Computed column to bring over more field values from the lookup table? I&#8217;ve done it and it seems to work great, but I haven&#8217;t looked to see if it adds the columns when it does the initial join, grabbing ID and Title from the other list, or if it does multiple queries.</p>
<p>Here&#8217;s what I mean: say you have a status list that you want people to fill in their team name per item. So &#8220;Team&#8221; is a lookup column to the &#8220;Teams&#8221; List and then later in a view you want to show status with column showing Department Manager pulled over from the &#8220;Teams&#8221; list. So I added a computed column via the Lists.asmx web service UpdateList(&#8230;) method with the following definition. Problem is I can&#8217;t figure out how to filter using a computed column, but can&#8217;t win them all!</p>
<p><code></p>
<p></code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ramprasad</title>
		<link>http://blog.dynatrace.com/2009/02/09/sharepoint-lookup-value-performance/comment-page-1/#comment-1122</link>
		<dc:creator>Ramprasad</dc:creator>
		<pubDate>Tue, 10 Feb 2009 15:49:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dynatrace.com/?p=317#comment-1122</guid>
		<description>Another simple example..

http://www.dotnetdreamer.com/2009/02/09/retrieving-sharepoint-list-data-using-caml/</description>
		<content:encoded><![CDATA[<p>Another simple example..</p>
<p><a href="http://www.dotnetdreamer.com/2009/02/09/retrieving-sharepoint-list-data-using-caml/" rel="nofollow"></a><a href='http://www.dotnetdreamer.com/2009/02/09/retrieving-sharepoint-list-data-using-caml/'>http://www.dotnetdreamer.com/2009/02/09/retrieving-sharepoint-list-data-using-caml/</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
