<?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: Cross Object Formulas (wow!)</title>
	<atom:link href="http://sfdc.arrowpointe.com/2008/05/09/cross-object-formulas-wow/feed/" rel="self" type="application/rss+xml" />
	<link>http://sfdc.arrowpointe.com/2008/05/09/cross-object-formulas-wow/</link>
	<description>Authored by Scott Hemmeter of Arrowpointe Corp, this blog is written from the perspective of a Salesforce.com solution provider and contains information on Arrowpointe's AppExchange products as well as tips, findings, sample code, functionality wishes, etc.</description>
	<lastBuildDate>Fri, 12 Mar 2010 21:54:57 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Scott Hemmeter</title>
		<link>http://sfdc.arrowpointe.com/2008/05/09/cross-object-formulas-wow/comment-page-1/#comment-61038</link>
		<dc:creator>Scott Hemmeter</dc:creator>
		<pubDate>Wed, 29 Oct 2008 15:07:46 +0000</pubDate>
		<guid isPermaLink="false">http://sfdc.arrowpointe.com/?p=307#comment-61038</guid>
		<description>@spence,

The limit is a strict one.  You can workaround it with s-Controls or, better yet, embedded VisualForce pages.  However, those are only UI tricks.  The cross-object formulas functionality is actually creating fields on your objects that you can report on, use in views, etc. s-Controls and VF will only be presenting some data to the users when looking at the screen.  

Therefore, choose your cross-object formula fields wisely.</description>
		<content:encoded><![CDATA[<p>@spence,</p>
<p>The limit is a strict one.  You can workaround it with s-Controls or, better yet, embedded VisualForce pages.  However, those are only UI tricks.  The cross-object formulas functionality is actually creating fields on your objects that you can report on, use in views, etc. s-Controls and VF will only be presenting some data to the users when looking at the screen.  </p>
<p>Therefore, choose your cross-object formula fields wisely.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://sfdc.arrowpointe.com/2008/05/09/cross-object-formulas-wow/comment-page-1/#comment-61036</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Wed, 29 Oct 2008 12:51:13 +0000</pubDate>
		<guid isPermaLink="false">http://sfdc.arrowpointe.com/?p=307#comment-61036</guid>
		<description>I have the same problem and I am high interested in a solution..

maybe &lt;strong&gt;S-Controls&lt;/strong&gt;?</description>
		<content:encoded><![CDATA[<p>I have the same problem and I am high interested in a solution..</p>
<p>maybe <strong>S-Controls</strong>?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: spence</title>
		<link>http://sfdc.arrowpointe.com/2008/05/09/cross-object-formulas-wow/comment-page-1/#comment-60526</link>
		<dc:creator>spence</dc:creator>
		<pubDate>Sun, 10 Aug 2008 23:53:44 +0000</pubDate>
		<guid isPermaLink="false">http://sfdc.arrowpointe.com/?p=307#comment-60526</guid>
		<description>How did you get around the limit?  Do you know of a way around the limit?</description>
		<content:encoded><![CDATA[<p>How did you get around the limit?  Do you know of a way around the limit?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott Hemmeter</title>
		<link>http://sfdc.arrowpointe.com/2008/05/09/cross-object-formulas-wow/comment-page-1/#comment-59880</link>
		<dc:creator>Scott Hemmeter</dc:creator>
		<pubDate>Mon, 19 May 2008 15:04:47 +0000</pubDate>
		<guid isPermaLink="false">http://sfdc.arrowpointe.com/?p=307#comment-59880</guid>
		<description>@David S,

Good catch.  There does appear to be limitations.  I just tested it and was able to go back in and create all the following:

&lt;ul&gt;	&lt;li&gt;sfLma__Contact__r.Account.Case__r.Contact.Account.BillingStreet&lt;/li&gt;
&lt;li&gt;sfLma__Contact__r.Account.Case__r.Contact.Account.BillingCity&lt;/li&gt;
&lt;li&gt;sfLma__Contact__r.Account.Case__r.Contact.Account.BillingState&lt;/li&gt;
&lt;li&gt;sfLma__Contact__r.Account.Case__r.Contact.Account.BillingPostalCode&lt;/li&gt;
&lt;li&gt;sfLma__Contact__r.Account.Case__r.Contact.Account.BillingCountry&lt;/li&gt;
&lt;/ul&gt;

However, if I then went in and tried to create

&lt;ul&gt;
&lt;li&gt;sfLma__Lead__r.LastModifiedBy.Email&lt;/li&gt;
&lt;/ul&gt;

it gave me an error that states:
&lt;blockquote&gt;

You have reached the maximum number of 5 object references on License
You must remove at least 2 relationship(s) in order to save this formula
Related objects referenced in this formula:

    * sfLma__Lead__r
    * sfLma__Lead__r.LastModifiedBy
&lt;/blockquote&gt;

I did hit a limit.</description>
		<content:encoded><![CDATA[<p>@David S,</p>
<p>Good catch.  There does appear to be limitations.  I just tested it and was able to go back in and create all the following:</p>
<ul>
<li>sfLma__Contact__r.Account.Case__r.Contact.Account.BillingStreet</li>
<li>sfLma__Contact__r.Account.Case__r.Contact.Account.BillingCity</li>
<li>sfLma__Contact__r.Account.Case__r.Contact.Account.BillingState</li>
<li>sfLma__Contact__r.Account.Case__r.Contact.Account.BillingPostalCode</li>
<li>sfLma__Contact__r.Account.Case__r.Contact.Account.BillingCountry</li>
</ul>
<p>However, if I then went in and tried to create</p>
<ul>
<li>sfLma__Lead__r.LastModifiedBy.Email</li>
</ul>
<p>it gave me an error that states:</p>
<blockquote>
<p>You have reached the maximum number of 5 object references on License<br />
You must remove at least 2 relationship(s) in order to save this formula<br />
Related objects referenced in this formula:</p>
<p>    * sfLma__Lead__r<br />
    * sfLma__Lead__r.LastModifiedBy
</p></blockquote>
<p>I did hit a limit.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David S</title>
		<link>http://sfdc.arrowpointe.com/2008/05/09/cross-object-formulas-wow/comment-page-1/#comment-59878</link>
		<dc:creator>David S</dc:creator>
		<pubDate>Sun, 18 May 2008 20:01:39 +0000</pubDate>
		<guid isPermaLink="false">http://sfdc.arrowpointe.com/?p=307#comment-59878</guid>
		<description>The release notes say that you have a limit of five relationships, but the language is VERY confusing.  It&#039;s possible that you maxed out with your five objects (and one field).</description>
		<content:encoded><![CDATA[<p>The release notes say that you have a limit of five relationships, but the language is VERY confusing.  It&#8217;s possible that you maxed out with your five objects (and one field).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matthew Scholtz</title>
		<link>http://sfdc.arrowpointe.com/2008/05/09/cross-object-formulas-wow/comment-page-1/#comment-59846</link>
		<dc:creator>Matthew Scholtz</dc:creator>
		<pubDate>Sat, 10 May 2008 01:05:43 +0000</pubDate>
		<guid isPermaLink="false">http://sfdc.arrowpointe.com/?p=307#comment-59846</guid>
		<description>Yeah, to me this is the biggest thing in the new release, other than VF.

Matthew
ONE/NW</description>
		<content:encoded><![CDATA[<p>Yeah, to me this is the biggest thing in the new release, other than VF.</p>
<p>Matthew<br />
ONE/NW</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ncurham</title>
		<link>http://sfdc.arrowpointe.com/2008/05/09/cross-object-formulas-wow/comment-page-1/#comment-59842</link>
		<dc:creator>ncurham</dc:creator>
		<pubDate>Fri, 09 May 2008 08:20:36 +0000</pubDate>
		<guid isPermaLink="false">http://sfdc.arrowpointe.com/?p=307#comment-59842</guid>
		<description>Yeahh. My idea did make it :) 

http://ideas.salesforce.com/article/show/10079268/CrossObject_Formula_Fields_Be_able_to_insert_related_Object_data_into_a_formula_field

Love ur blog. 

Tkx for all!</description>
		<content:encoded><![CDATA[<p>Yeahh. My idea did make it <img src='http://sfdc.arrowpointe.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
<p><a href="http://ideas.salesforce.com/article/show/10079268/CrossObject_Formula_Fields_Be_able_to_insert_related_Object_data_into_a_formula_field" rel="nofollow">http://ideas.salesforce.com/article/show/10079268/CrossObject_Formula_Fields_Be_able_to_insert_related_Object_data_into_a_formula_field</a></p>
<p>Love ur blog. </p>
<p>Tkx for all!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
