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

<channel>
	<title>Perspectives on Salesforce.com &#187; Releases</title>
	<atom:link href="http://sfdc.arrowpointe.com/taxonomy/category/Releases/feed" rel="self" type="application/rss+xml" />
	<link>http://sfdc.arrowpointe.com</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>
	<pubDate>Fri, 22 Aug 2008 04:35:10 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<item>
		<title>Ideas coming in the Winter &#8216;09 Release</title>
		<link>http://sfdc.arrowpointe.com/2008/08/21/ideas-coming-in-the-winter-09-release/</link>
		<comments>http://sfdc.arrowpointe.com/2008/08/21/ideas-coming-in-the-winter-09-release/#comments</comments>
		<pubDate>Fri, 22 Aug 2008 04:35:10 +0000</pubDate>
		<dc:creator>Scott Hemmeter</dc:creator>
		
		<category><![CDATA[Releases]]></category>

		<category><![CDATA[Winter '09]]></category>

		<guid isPermaLink="false">http://sfdc.arrowpointe.com/?p=366</guid>
		<description><![CDATA[I noticed that a recent idea of mine was marked as coming in the Winter &#8216;09 release.  I decided to check if I could craft a URL to see others tagged as such and, sure enough, it worked.
http://ideas.salesforce.com/popular/coming_in_winter_09 
<p><a href="http://sharethis.com/item?&#038;wp=2.6&#38;publisher=6bba32cd-cb97-47b9-9dac-a6ec92c16517&#38;title=Ideas+coming+in+the+Winter+%26%238216%3B09+Release&#38;url=http%3A%2F%2Fsfdc.arrowpointe.com%2F2008%2F08%2F21%2Fideas-coming-in-the-winter-09-release%2F">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<p>I noticed that a <a href="http://ideas.salesforce.com/article/show/10087556/Upload_Document_to_create_Google_Doc" target="_blank">recent idea of mine</a> was marked as coming in the Winter &#8216;09 release.  I decided to check if I could craft a URL to see others tagged as such and, sure enough, it worked.</p>
<p><a href="http://ideas.salesforce.com/popular/coming_in_winter_09" target="_blank">http://ideas.salesforce.com/popular/coming_in_winter_09</a> <a href="http://ideas.salesforce.com/xml/rss?tags_string=coming_in_winter_09&amp;menu_string=hot&amp;skin=null"><img class="alignnone size-full wp-image-326" title="feed-icon-12x12" src="http://sfdc.arrowpointe.com/wp-content/images/feed-icon-12x12.png" alt="" width="12" height="12" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://sfdc.arrowpointe.com/2008/08/21/ideas-coming-in-the-winter-09-release/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Cross Object Formulas (wow!)</title>
		<link>http://sfdc.arrowpointe.com/2008/05/09/cross-object-formulas-wow/</link>
		<comments>http://sfdc.arrowpointe.com/2008/05/09/cross-object-formulas-wow/#comments</comments>
		<pubDate>Fri, 09 May 2008 07:11:02 +0000</pubDate>
		<dc:creator>Scott Hemmeter</dc:creator>
		
		<category><![CDATA[Releases]]></category>

		<category><![CDATA[Summer '08]]></category>

		<guid isPermaLink="false">http://sfdc.arrowpointe.com/?p=307</guid>
		<description><![CDATA[Following Steve&#8217;s lead, I tried my own cross-object formula using the Summer &#8216;08 pre-release org I get to use as an AppExchange partner.
One of my (and probably your) pressing needs is the ability to display fields from related objects (e.g. show the Account Number on the Opportunity page).  Before Summer &#8216;08, you had to [...]<p><a href="http://sharethis.com/item?&#038;wp=2.6&#38;publisher=6bba32cd-cb97-47b9-9dac-a6ec92c16517&#38;title=Cross+Object+Formulas+%28wow%21%29&#38;url=http%3A%2F%2Fsfdc.arrowpointe.com%2F2008%2F05%2F09%2Fcross-object-formulas-wow%2F">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<p>Following <a href="http://gokubi.com/archives/my-first-cross-object-formula" target="_blank">Steve&#8217;s lead</a>, I tried my own <a href="http://blogs.salesforce.com/features/2008/05/cross-object-fo.html" target="_blank">cross-object formula</a> using the Summer &#8216;08 pre-release org I get to use as an AppExchange partner.</p>
<p>One of my (and probably your) pressing needs is the ability to display fields from related objects (e.g. show the Account Number on the Opportunity page).  Before Summer &#8216;08, you had to either use Workflow to copy a value over, embed an s-Control to pretend the field is actually on your object or tell users to use the hovers.</p>
<p>Cross Object formulas take care of this.Â  I decided to see how far it went.  To start my test, I added a custom Lookup field from Accounts to Cases.  I then created a Formula field on the Licenses custom object that I have in my org. My formula traversed the following relationship path:</p>
<ol>
<li>From License</li>
<li>To Contact</li>
<li>To Account</li>
<li>To Case</li>
<li>To Contact</li>
<li>To Account - finally displaying the City from this Account</li>
</ol>
<p>It worked!  My resulting formula was:</p>
<blockquote><p>sfLma__Contact__r.Account.Case__r.Contact.Account.BillingCity</p></blockquote>
<p>I could&#8217;ve kept going through more relationships too.Â  The field selector that&#8217;s provided made this simple.Â  Just click click click and you&#8217;re done.</p>
<p>This fills a huge gap in the product.Â  This simple addition eliminates a big reason for having needed external reporting tools.Â  This handles the traversing &#8220;up&#8221; relationships (from detail to master), while the custom Report Types rolled out last release handled the traversing &#8220;down&#8221; relationships (from master to detail).Â  Combined, they solve a lot of reporting problems.</p>
<p>I can&#8217;t begin to tell you the headaches this bit of functionality will cure.</p>
]]></content:encoded>
			<wfw:commentRss>http://sfdc.arrowpointe.com/2008/05/09/cross-object-formulas-wow/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Summer &#8216;08 Release Notes</title>
		<link>http://sfdc.arrowpointe.com/2008/05/06/summer-08-release-notes/</link>
		<comments>http://sfdc.arrowpointe.com/2008/05/06/summer-08-release-notes/#comments</comments>
		<pubDate>Tue, 06 May 2008 17:27:12 +0000</pubDate>
		<dc:creator>Scott Hemmeter</dc:creator>
		
		<category><![CDATA[Releases]]></category>

		<category><![CDATA[Summer '08]]></category>

		<guid isPermaLink="false">http://sfdc.arrowpointe.com/?p=305</guid>
		<description><![CDATA[Steve twittered today that the Summer &#8216;08 Release Notes were published.  More so than the Summer &#8216;08 Ideas, the Release Notes provide exactly what&#8217;s happening in the next release leaving very little to the imagination.
(UPDATE: The Summer 08 Landing Page was published).
I suggest you check it out.  Some new functionality that I find [...]<p><a href="http://sharethis.com/item?&#038;wp=2.6&#38;publisher=6bba32cd-cb97-47b9-9dac-a6ec92c16517&#38;title=Summer+%26%238216%3B08+Release+Notes&#38;url=http%3A%2F%2Fsfdc.arrowpointe.com%2F2008%2F05%2F06%2Fsummer-08-release-notes%2F">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.gokubi.com" target="_blank">Steve</a> twittered today that the <a href="https://na1.salesforce.com/help/doc/en/salesforce_summer08_release_notes.pdf" target="_blank">Summer &#8216;08 Release Notes</a> were published.  More so than the <a href="http://ideas.salesforce.com/popular/coming_in_summer_08" target="_blank">Summer &#8216;08 Ideas</a>, the Release Notes provide exactly what&#8217;s happening in the next release leaving very little to the imagination.</p>
<p>(UPDATE: The <a href="http://www.salesforce.com/products/previews/summer08/" target="_blank">Summer 08 Landing Page</a> was published).</p>
<p>I suggest you check it out.  Some new functionality that I find particularly intriguing:</p>
<p><strong>Visualforce is Generally Available</strong></p>
<blockquote><p>Visualforce is now available for all organizations in Group, Professional, Enterprise, Unlimited, and Developer Editions.</p></blockquote>
<p>This is huge.  There is A LOT to learn in this area.</p>
<p><strong>Analytic Snapshots</strong></p>
<blockquote><p>Analytic snapshots enable users to run a tabular report and save the report results to fields on a custom object &#8230; and schedule when to run the report to load the custom object&#8217;s fields with the report&#8217;s data.</p></blockquote>
<p>It sounds kind of like exporting the data to Excel, but will instead let you export it to a custom object.  This is cool because you can then report on data &#8220;at a point in time&#8221;.</p>
<p><strong>MultiDay Events</strong></p>
<p>Users can now create events that end more than one day (24 hours) after they start, lasting up to 14 days.</p>
<p>This is a new convenience for end users.  Hopefully it syncs well with Outlook calendar.</p>
<p><strong>Enhanced List Views</strong></p>
<p><span style="text-decoration: underline;">Inline Editing</span></p>
<blockquote><p>If your administrator has enabled inline editing for your organization, you can now edit single records directly from a list view by double-clicking on individual field values. If your administrator has granted you the &#8220;Mass Inline Edit from Lists&#8221; user profile permission, you can also edit up to 200 records at a time with inline editing.</p></blockquote>
<p><span style="text-decoration: underline;">Custom Paging</span></p>
<blockquote><p>You can now change the number of records displayed per page of list results by clicking the record count indicator in the lower left corner of the list and selecting the desired setting.</p></blockquote>
<p><span style="text-decoration: underline;">Drag-and-Drop Customization</span></p>
<blockquote><p>You can now change the order in which a column is displayed by dragging the entire column heading with your mouse to the desired position.</p></blockquote>
<p><strong>Customizable User Object</strong></p>
<p>Finally, we can have page layouts, set field level security and more on the User object.</p>
<p><strong>Cross-Object Formulas</strong></p>
<p>Refer to fields on related objects in your formulas.  Even use the formulas to display fields from related objects right on the UI.  For example, put the Account Number field on the Opportunity page.</p>
<p><strong>Apex Enhancements</strong></p>
<p>Lots of stuff here.  Read the release notes for details.</p>
<p><strong>Many-to-Many Object Relationships</strong></p>
<blockquote><p>In Summer â€™08, you can now create two master-detail relationships on a single junction object to make it easier to represent a many-to-many relationship in your data model.</p></blockquote>
<p>This will help in development.  These junction objects have always been tricky from a user experience standpoint.</p>
<p>Lots of things to digest here.  I only captured a handful of things that stood out to me personally.  Go <a href="https://na1.salesforce.com/help/doc/en/salesforce_summer08_release_notes.pdf" target="_blank">see for yourself</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://sfdc.arrowpointe.com/2008/05/06/summer-08-release-notes/feed/</wfw:commentRss>
		</item>
		<item>
		<title>All Spring &#8216;08 Information</title>
		<link>http://sfdc.arrowpointe.com/2008/01/10/all-spring-08-information/</link>
		<comments>http://sfdc.arrowpointe.com/2008/01/10/all-spring-08-information/#comments</comments>
		<pubDate>Thu, 10 Jan 2008 20:28:04 +0000</pubDate>
		<dc:creator>Scott Hemmeter</dc:creator>
		
		<category><![CDATA[Releases]]></category>

		<category><![CDATA[Spring '08]]></category>

		<guid isPermaLink="false">http://sfdc.arrowpointe.com/2008/01/10/all-spring-08-information/</guid>
		<description><![CDATA[Salesforce posted the landing page for the Spring &#8216;08 release.  All information regarding the release including links to release notes, admin previews, implemented ideas, etc. can be found here.
http://www.salesforce.com/products/spring08.jsp
<p><a href="http://sharethis.com/item?&#038;wp=2.6&#38;publisher=6bba32cd-cb97-47b9-9dac-a6ec92c16517&#38;title=All+Spring+%26%238216%3B08+Information&#38;url=http%3A%2F%2Fsfdc.arrowpointe.com%2F2008%2F01%2F10%2Fall-spring-08-information%2F">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<p>Salesforce posted the landing page for the Spring &#8216;08 release.  All information regarding the release including links to release notes, admin previews, implemented ideas, etc. can be found <a href="http://www.salesforce.com/products/spring08.jsp">here</a>.</p>
<p><a href="http://www.salesforce.com/products/spring08.jsp">http://www.salesforce.com/products/spring08.jsp</a></p>
]]></content:encoded>
			<wfw:commentRss>http://sfdc.arrowpointe.com/2008/01/10/all-spring-08-information/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Coming in Spring &#8216;08</title>
		<link>http://sfdc.arrowpointe.com/2007/12/12/coming-in-spring-08/</link>
		<comments>http://sfdc.arrowpointe.com/2007/12/12/coming-in-spring-08/#comments</comments>
		<pubDate>Wed, 12 Dec 2007 22:57:37 +0000</pubDate>
		<dc:creator>Scott Hemmeter</dc:creator>
		
		<category><![CDATA[Releases]]></category>

		<category><![CDATA[Spring '08]]></category>

		<guid isPermaLink="false">http://sfdc.arrowpointe.com/2007/12/12/coming-in-spring-08/</guid>
		<description><![CDATA[As I was perusing the Idea Exchange today, I came across this item with a comment from Salesforce saying that it was coming in Spring &#8216;08 and was tagged as such.
A little URL hacking later and I came up with the feed to follow what&#8217;s coming in Spring &#8216;08.
http://ideas.salesforce.com/xml/rss?tags_string=coming_in_spring_08
<p><a href="http://sharethis.com/item?&#038;wp=2.6&#38;publisher=6bba32cd-cb97-47b9-9dac-a6ec92c16517&#38;title=Coming+in+Spring+%26%238216%3B08&#38;url=http%3A%2F%2Fsfdc.arrowpointe.com%2F2007%2F12%2F12%2Fcoming-in-spring-08%2F">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<p>As I was perusing the <a href="http://ideas.salesforce.com" target=_blank>Idea Exchange</a> today, I came across <a href="http://ideas.salesforce.com/article/show/70864/Schedule_Dashboard_Refresh" target=_blank>this item</a> with a comment from Salesforce saying that it was coming in Spring &#8216;08 and was tagged as such.</p>
<p>A little URL hacking later and I came up with the <a href="http://ideas.salesforce.com/xml/rss?tags_string=coming_in_spring_08" target=_blank>feed</a> to follow what&#8217;s coming in Spring &#8216;08.</p>
<p><a href="http://ideas.salesforce.com/xml/rss?tags_string=coming_in_spring_08" target=_blank>http://ideas.salesforce.com/xml/rss?tags_string=coming_in_spring_08</a></p>
]]></content:encoded>
			<wfw:commentRss>http://sfdc.arrowpointe.com/2007/12/12/coming-in-spring-08/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Join the Spring &#8216;08 Pre-Release Program</title>
		<link>http://sfdc.arrowpointe.com/2007/12/07/join-the-spring-08-pre-release-program/</link>
		<comments>http://sfdc.arrowpointe.com/2007/12/07/join-the-spring-08-pre-release-program/#comments</comments>
		<pubDate>Fri, 07 Dec 2007 17:14:58 +0000</pubDate>
		<dc:creator>Scott Hemmeter</dc:creator>
		
		<category><![CDATA[Releases]]></category>

		<category><![CDATA[Spring '08]]></category>

		<guid isPermaLink="false">http://sfdc.arrowpointe.com/2007/12/07/join-the-spring-08-pre-release-program/</guid>
		<description><![CDATA[If you are an AppExchange partner, you can join the Spring &#8216;08 pre-release program.  The nice thing about how Salesforce is approaching it this time is that you can have one of your developer orgs cloned to a pre-release server.  This allows you to really see how your own configuration will be affected [...]<p><a href="http://sharethis.com/item?&#038;wp=2.6&#38;publisher=6bba32cd-cb97-47b9-9dac-a6ec92c16517&#38;title=Join+the+Spring+%26%238216%3B08+Pre-Release+Program&#38;url=http%3A%2F%2Fsfdc.arrowpointe.com%2F2007%2F12%2F07%2Fjoin-the-spring-08-pre-release-program%2F">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<p>If you are an AppExchange partner, you can join the <a href="http://wiki.apexdevnet.com/index.php/Early_Access_Program" target=_blank>Spring &#8216;08 pre-release program</a>.  The nice thing about how Salesforce is approaching it this time is that you can have one of your developer orgs cloned to a pre-release server.  This allows you to really see how your own configuration will be affected by the new release.  </p>
<p>The steps to do it are easy.  Go to <a href="http://wiki.apexdevnet.com/index.php/Early_Access_Program" target=_blank>http://wiki.apexdevnet.com/index.php/Early_Access_Program</a> to learn more.</p>
]]></content:encoded>
			<wfw:commentRss>http://sfdc.arrowpointe.com/2007/12/07/join-the-spring-08-pre-release-program/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Winter &#8216;08 Release Notes</title>
		<link>http://sfdc.arrowpointe.com/2007/10/15/winter-08-release-notes/</link>
		<comments>http://sfdc.arrowpointe.com/2007/10/15/winter-08-release-notes/#comments</comments>
		<pubDate>Mon, 15 Oct 2007 16:50:16 +0000</pubDate>
		<dc:creator>Scott Hemmeter</dc:creator>
		
		<category><![CDATA[Releases]]></category>

		<category><![CDATA[Winter '08]]></category>

		<guid isPermaLink="false">http://sfdc.arrowpointe.com/2007/10/15/winter-08-release-notes/</guid>
		<description><![CDATA[As Mark points out, the Winter &#8216;08 Release Notes are available.
One of the really nice additions to the release notes is a section in the beginning called Summary of Winter &#8216;08 Features and Impact on Salesforce Users.  It is a table with a row for every major new feature and tells you, at a [...]<p><a href="http://sharethis.com/item?&#038;wp=2.6&#38;publisher=6bba32cd-cb97-47b9-9dac-a6ec92c16517&#38;title=Winter+%26%238216%3B08+Release+Notes&#38;url=http%3A%2F%2Fsfdc.arrowpointe.com%2F2007%2F10%2F15%2Fwinter-08-release-notes%2F">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<p>As <a href="http://www.salesforcewatch.com/2007/10/winter-08-relea.html" target=_blank>Mark points out</a>, the <a href="https://na1.salesforce.com/help/doc/en/salesforce_winter08_release_notes.pdf" target=_blank>Winter &#8216;08 Release Notes</a> are available.</p>
<p>One of the really nice additions to the release notes is a section in the beginning called <strong>Summary of Winter &#8216;08 Features and Impact on Salesforce Users</strong>.  It is a table with a row for every major new feature and tells you, at a glance, which ones have immediate user impact after upgrading.  This is critical for admins so they can communicate things prior to the upgrade.  For example, in the Winter &#8216;06 Release, the UI changed for all customers right after the upgrade, which <a href="http://sfdc.arrowpointe.com/2006/01/04/communicate-winter-06-changes/">necessitated communication beforehand</a>.  <u>If you are an admin, you should review that section to see if you need to do anything prior to the upgrade</u>.</p>
<p>Some of the more exciting features (in my opinion) are:</p>
<ul>
<li><strong>Campaign Sharing</strong>:  <u>Finally</u>, you can treat Campaigns like you do any other object and use sharing rules to drive security.  This will provide major benefit to sales people because you can now open up Campaigns for them to use as a List Management feature.  It will also, obviously, provide marketing benefit as they will be able to distribute the management of Campaigns throughout the Marketing organization without worrying so much about someone having too much authority.</li>
<li><strong>Group Tasks</strong>:<br />
<blockquote>&#8220;You can create a task so that up to 100 users are each assigned an independent copy of the task.&#8221;</p></blockquote>
<p>This takes the <a href="http://www.salesforce.com/appexchange/detail_overview.jsp?NavCode__c=&#038;id=a0330000000j6NMAAY" target=_blank>Create Tasks for Entire Team</a> AppExchange app and puts the functionality native into Salesforce with a much better user flow.<br />
<blockquote>&#8220;To build a list of users you want to assign to a newly-created task, open the assignee lookup on the New Task page and click the Multiple Users tab in the lookup dialog.&#8221;</p></blockquote>
</li>
<li><strong>Field History Tracking Available on Accounts and Contacts</strong></li>
<li><strong>Product Search Enhancements</strong>:  This will make the Add Product screen on Opportunities configurable in a number of ways.</li>
<li><strong>Printable List Views</strong>:  This will allow you to nicely print your Salesforce views.  This will be handy for people that don&#8217;t want to deal with using a report, exporting to Excel and then tweaking the &#8220;Printable View&#8221; of a report in Excel.</li>
<li><strong>Floating Report Headers</strong>:  The ever-popular <a href="http://ideas.salesforce.com/article/show/39471/Freeze_Column_Headers_in_Reports" target=_blank>idea</a> is getting implemented.</li>
<li><strong>Inline Editing</strong>:  Edit a record without refreshing to an Edit page!  This should be a major productivity enhancement and save lots of click/wait time.  Once it&#8217;s out, I am certain people will be clamoring for it in related lists.</li>
<li><strong>Tagging</strong>:  Tags are private for every user, allowing a user to categorize (&#8221;tag&#8221;) records as they please.  When clients of mine have migrated from ACT!, they always missed the Group feature there.  Tags will allow user to do this in Salesforce.  For this release, the tags are private to the user.  I imagine this will change in the future with functionality to allow teams to collaborate through the use of tags.  Tagging will probably not have tremendous take up from the masses, but savvy users will pick it up and usage will grow over time.</li>
<li><strong>Apex Code for Enterprise Edition</strong>:  It&#8217;s an additional fee, but at least it&#8217;s an option.  It speaks to Salesforce&#8217;s confidence in its scalability.</li>
<li><strong>Many API improvements</strong>.  One of particular interest to me is:<br />
<blockquote><p>Developers of AppExchange packages can specify whether or not to restrict the API access of components in the package for greater security. Installers of AppExchange packages can view the API access given to components of a package they are installing, and after installation can modify that access.</p></blockquote>
<p>This means that you could download the <a href="http://www.arrowpointe.com/getmaps" target=_blank>Arrowpointe Maps package</a> and restrict it so that it only has read access to the objects you want it to.  You can tighten up the security on all your installed apps.  Even if the app you download already does this, the end customer has the ability to restrict it further.</li>
<li><strong>Related Object Fields in Formulas</strong>:  You can now reference &#8220;joined&#8221; fields in some formula areas such as Workflow Rules, Validation Rules and Escalation Rules.  For example, you will be able to have an Opportunity Workflow that fires when an Opportunity is Won and the Account Type = &#8216;Prospect&#8217;.
<p>With this release, you <u>cannot</u> use joined fields in a formula field on an object.  For example, you cannot create an Opportunity field that shows the Account&#8217;s Rating on an Opportunity record.  The closest thing to being able to do this is using the hover feature, but the hover feature is limited to detail pages and the recent items list..</li>
</ul>
<p>All in all, a pretty nice release.  I am looking forward to it.  Feel free to comment with your thoughts.</p>
]]></content:encoded>
			<wfw:commentRss>http://sfdc.arrowpointe.com/2007/10/15/winter-08-release-notes/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Summer 07 Minutia</title>
		<link>http://sfdc.arrowpointe.com/2007/08/06/summer-07-minutia/</link>
		<comments>http://sfdc.arrowpointe.com/2007/08/06/summer-07-minutia/#comments</comments>
		<pubDate>Mon, 06 Aug 2007 18:36:41 +0000</pubDate>
		<dc:creator>Scott Hemmeter</dc:creator>
		
		<category><![CDATA[Releases]]></category>

		<category><![CDATA[Summer '07]]></category>

		<guid isPermaLink="false">http://sfdc.arrowpointe.com/2007/08/06/summer-07-minutia/</guid>
		<description><![CDATA[Summer 07 is in the process of rolling out.  Although, it was originally expected to complete this past weekend, I don&#8217;t think that&#8217;s the case.  Other than NA1, I am not certain it&#8217;s been released.  In orgs on non-NA1 servers, I am getting scheduled improvement notices for this coming Friday night.
Anyway, I [...]<p><a href="http://sharethis.com/item?&#038;wp=2.6&#38;publisher=6bba32cd-cb97-47b9-9dac-a6ec92c16517&#38;title=Summer+07+Minutia&#38;url=http%3A%2F%2Fsfdc.arrowpointe.com%2F2007%2F08%2F06%2Fsummer-07-minutia%2F">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.salesforce.com/products/summer07.jsp" target=_blank>Summer 07</a> is in the process of rolling out.  Although, it was <a href="http://blogs.salesforce.com/blogs/2007/08/summer-07-relea.html" target=_blank>originally expected</a> to complete this past weekend, I don&#8217;t think that&#8217;s the case.  Other than NA1, I am not certain it&#8217;s been released.  In orgs on non-NA1 servers, I am getting scheduled improvement notices for this coming Friday night.</p>
<p>Anyway, I have been going through the <a href="https://na1.salesforce.com/help/doc/en/salesforce_summer07_release_notes.pdf" target=_blank>Release Notes</a> and have found some nice little enhancements that aren&#8217;t necessarily &#8220;big news&#8221;, so I thought I&#8217;d point them out.  For the major changes, I would suggest going to the <a href="http://www.salesforce.com/products/summer07.jsp" target=_blank>Summer 07</a> landing page.</p>
<ul>
<li>Merging Contacts or Leads on Campaigns<br />
<blockquote><p>&#8230;when you merge duplicate contacts or leads that are members of different campaigns, the campaign  date for each is retained and associated with the newly-merged contact or lead.</p></blockquote>
</li>
<li>Specify the Number of Records to Display in Report Results:  Just like in Dashboards, you can now limit the records returned in a tabular report.  Also, if you specify this value, you can now use that tabular report in a Dashboard.</li>
<li>Opt-Out of System Maintenance Notifications<br />
<blockquote><p>With Summer &#8216;07, administrators can go to Setup | Company Profile | Company Information to prevent advance notices about planned system maintenance or downtime from displaying to users when they log in.</p></blockquote>
</li>
<li>Recycle Bin for Deleted Custom Field:  Will save some people from major grief.</li>
<li>Report on API Usage</li>
<li>Workflow rules and actions can be packaged in an AppExchange app</li>
<li>Data Loader can export data from Relationship Fields<br />
<blockquote><p>To do so, use a SOQL query in your export request that includes fields from a related object.</p></blockquote>
</li>
<li>Compliance BCC Emails:  Force all outbound Salesforce emails to BCC to a corporate address without the ability to override by the end-user.</li>
<li>Delegated User Admins can now login as the users they support just like the regular Sys Admin can.</li>
<li>Record Locking<br />
<blockquote><p>If two users are editing the same record simultaneously, the user who saves the record first will have his or her changes saved, and the second user will receive an error message and be prompted to reload the record with the changes made by the first user.</p></blockquote>
</li>
<li>Formula-based worklow rules<br />
<blockquote><p>When defining entry criteria for workflow rules, you can now use formulas that include calculations and multi-field comparisons, letting you create complex workflow rules. For example, you can leverage formula functions such as ISCHANGED and PRIORVALUE to build rules based on field value changes.</p></blockquote>
</li>
<li>Dynamic selection of email alert recipients<br />
<blockquote><p>Send email alerts to any related user, contact, or email address that appears in any custom or standard field on the object specified for the email alert. </p></blockquote>
</li>
</ul>
<p>These are ones that are of particular interest to me.  If you want to point out something you learned about that is buried in the details, but might be relevant to others, please post a comment and let us know.</p>
]]></content:encoded>
			<wfw:commentRss>http://sfdc.arrowpointe.com/2007/08/06/summer-07-minutia/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Summer &#8216;07 Features for Developers</title>
		<link>http://sfdc.arrowpointe.com/2007/07/15/summer-07-features-for-developers/</link>
		<comments>http://sfdc.arrowpointe.com/2007/07/15/summer-07-features-for-developers/#comments</comments>
		<pubDate>Mon, 16 Jul 2007 05:30:14 +0000</pubDate>
		<dc:creator>Scott Hemmeter</dc:creator>
		
		<category><![CDATA[Releases]]></category>

		<category><![CDATA[Summer '07]]></category>

		<guid isPermaLink="false">http://sfdc.arrowpointe.com/2007/07/15/summer-07-features-for-developers/</guid>
		<description><![CDATA[Just echoing Simon Fell&#8217;s recent post.  There is a post on the ADN Wiki about Summer &#8216;07 Features for Developers.
As mentioned on July 5, Salesforce has a Summer &#8216;07 landing page that provides detail for the developer features and more.
<p><a href="http://sharethis.com/item?&#038;wp=2.6&#38;publisher=6bba32cd-cb97-47b9-9dac-a6ec92c16517&#38;title=Summer+%26%238216%3B07+Features+for+Developers&#38;url=http%3A%2F%2Fsfdc.arrowpointe.com%2F2007%2F07%2F15%2Fsummer-07-features-for-developers%2F">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<p>Just echoing <a href="http://www.pocketsoap.com/weblog/2007/07/1778.html">Simon Fell&#8217;s recent post</a>.  There is a post on the ADN Wiki about <a href="http://wiki.apexdevnet.com/index.php/Summer_07">Summer &#8216;07 Features for Developers</a>.</p>
<p>As <a href="http://sfdc.arrowpointe.com/2007/07/05/summer-07-landing-page/">mentioned on July 5</a>, Salesforce has a <a href="http://www.salesforce.com/products/summer07.jsp">Summer &#8216;07 landing page</a> that provides detail for the developer features and more.</p>
]]></content:encoded>
			<wfw:commentRss>http://sfdc.arrowpointe.com/2007/07/15/summer-07-features-for-developers/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Summer &#8216;07 Landing Page</title>
		<link>http://sfdc.arrowpointe.com/2007/07/05/summer-07-landing-page/</link>
		<comments>http://sfdc.arrowpointe.com/2007/07/05/summer-07-landing-page/#comments</comments>
		<pubDate>Thu, 05 Jul 2007 16:44:52 +0000</pubDate>
		<dc:creator>Scott Hemmeter</dc:creator>
		
		<category><![CDATA[Releases]]></category>

		<category><![CDATA[Summer '07]]></category>

		<guid isPermaLink="false">http://sfdc.arrowpointe.com/2007/07/05/summer-07-landing-page/</guid>
		<description><![CDATA[Salesforce posted their Summer &#8216;07 landing page.  Get all the info on the Summer release there including Release Notes, Admin Preview Notes and landing pages for each of the new functionality pieces.  
It looks like a rather large release.  It&#8217;s pretty impressive, I must say.  Some of the nice features that [...]<p><a href="http://sharethis.com/item?&#038;wp=2.6&#38;publisher=6bba32cd-cb97-47b9-9dac-a6ec92c16517&#38;title=Summer+%26%238216%3B07+Landing+Page&#38;url=http%3A%2F%2Fsfdc.arrowpointe.com%2F2007%2F07%2F05%2Fsummer-07-landing-page%2F">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<p>Salesforce posted their <a href="http://www.salesforce.com/products/summer07.jsp">Summer &#8216;07 landing page</a>.  Get all the info on the Summer release there including Release Notes, Admin Preview Notes and landing pages for each of the new functionality pieces.  </p>
<p>It looks like a rather large release.  It&#8217;s pretty impressive, I must say.  Some of the nice features that jump out for me and past clients are:</p>
<ul>
<li><a href="http://blogs.salesforce.com/features/2007/06/intelligent-wor.html">Intelligent Workflow</a>:  Use formulas as workflow criteria are a big highlight.  Other improvements as well.</li>
<li><a href="http://blogs.salesforce.com/features/2007/06/extended-custom.html">Extended Customizable Help</a>:  Include help hovers next to a field where you can include a short bit of help text.</li>
<li><a href="http://blogs.salesforce.com/features/2007/06/lookup-hovers.html">Lookup Hovers</a>:  No need to drill into an Account from a Contact to view its data.  Hover over the Account link and see a mini page layout of Account data.  I personally think it&#8217;d be better to include joined fields onto the Page Layout so you don&#8217;t even need to hover, but this is still an improvement.</li>
<li><a href="http://blogs.salesforce.com/features/2007/06/extended-mail-m.html">Extended Mail Merge</a>:  Mail Merge has been one of those features where the answers to commonly asked &#8220;Can it do&#8230;?&#8221; questions is &#8220;No&#8221;.  Well, some improvements were made.  First and foremost is the ability to create a Mail Merge for more than 1 person at a time.  Also, mail merge will have cross-browser support.  No need to fire up IE just to use Mail Merge anymore.  This feature needs to be enabled by request to Salesforce.</li>
<li><a href="http://blogs.salesforce.com/features/2007/06/extended-appexc.html">Extended AppExchange Packaging</a>:   This will be helpful for my <a href="http://www.arrowpointe.com/products/info-center">Info Center</a> application since it is an unmanaged package.  If you uninstall an old version in favor of a new one, you will be able to export the data, uninstall, reinstall and import the data back in.</li>
</ul>
<p>If you want an early look at Summer &#8216;07, you can sign up for a <a href="http://www.salesforce.com/form/trial/prerelease_summer07.jsp">pre-release account</a> and see it all in action in your own sample org.</p>
<p>And the logo winner is&#8230;</p>
<p><img src="http://sfdc.arrowpointe.com/wp-content/images/sfa_logo_sum07.gif" alt="sfa_logo_sum07.gif" title="sfa_logo_sum07.gif" width="220" height="55" /></p>
<p>Thanks to <a href="http://www.salesforcewatch.com/2007/07/summer-07-relea.html">Salesforcewatch</a> and <a href="http://crmfyi.com/?p=48">CRM FYI</a> for actually letting me know about the landing page even before Salesforce blogged about it.</p>
]]></content:encoded>
			<wfw:commentRss>http://sfdc.arrowpointe.com/2007/07/05/summer-07-landing-page/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Summer &#8216;07 Features</title>
		<link>http://sfdc.arrowpointe.com/2007/06/19/summer-07-features/</link>
		<comments>http://sfdc.arrowpointe.com/2007/06/19/summer-07-features/#comments</comments>
		<pubDate>Wed, 20 Jun 2007 06:20:12 +0000</pubDate>
		<dc:creator>Scott Hemmeter</dc:creator>
		
		<category><![CDATA[News]]></category>

		<category><![CDATA[Releases]]></category>

		<category><![CDATA[Summer '07]]></category>

		<guid isPermaLink="false">http://sfdc.arrowpointe.com/2007/06/19/summer-07-features/</guid>
		<description><![CDATA[As you may know by now, Salesforce has an Idea Exchange category for upcoming Summer &#8216;07 features.  There are a lot of great features to be excited about including improvements to Mass Email, Workflow and Reporting.  However, for me, the most exciting/useful feature will be the Cross-Object Formulas.  Salesforce product management added [...]<p><a href="http://sharethis.com/item?&#038;wp=2.6&#38;publisher=6bba32cd-cb97-47b9-9dac-a6ec92c16517&#38;title=Summer+%26%238216%3B07+Features&#38;url=http%3A%2F%2Fsfdc.arrowpointe.com%2F2007%2F06%2F19%2Fsummer-07-features%2F">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<p>As you may know by now, Salesforce has an Idea Exchange category for <a href="http://ideas.salesforce.com/popular/coming_in_summer_07">upcoming Summer &#8216;07 features</a>.  There are a lot of great features to be excited about including improvements to Mass Email, Workflow and Reporting.  However, for me, the most exciting/useful feature will be the <a href="http://ideas.salesforce.com/article/show/22256/Formulas_that_reference_fields_in_parent_or_related_objects_">Cross-Object Formulas</a>.  Salesforce product management added a note to that idea saying that:</p>
<blockquote><p>This idea really encompasses two features - referencing parent fields on a child, and rolling up child information to a parent. The latter of these is on schedule to be available with the Summer &#8216;07 release! Stay tuned for more information in the coming months!</p></blockquote>
<p>The ability to create formulas that COUNT, SUM, MIN, MAX, etc. values from child records will be huge.  It will especially huge if conditions can be added within that.  For example, from an Account, you might have a formula field to <code>SUM(all Won Opporortunities from a particular Lead Source)</code>.  Another might be to simply <code>SUM(all Won Opportunities)</code>.</p>
<p>Until the release notes are out, we won&#8217;t know exactly what this functionality will (not) do, but it&#8217;s exciting to know some aspect of it is coming.   This will save users a lot of time from having to run reports to get this information and it will save developers a lot of time having to create those reports!</p>
]]></content:encoded>
			<wfw:commentRss>http://sfdc.arrowpointe.com/2007/06/19/summer-07-features/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
