<?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; News</title>
	<atom:link href="http://sfdc.arrowpointe.com/taxonomy/category/News/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>Best Thing about the Salesforce-Google Toolkit</title>
		<link>http://sfdc.arrowpointe.com/2008/06/25/best-thing-about-the-salesforce-google-toolkit/</link>
		<comments>http://sfdc.arrowpointe.com/2008/06/25/best-thing-about-the-salesforce-google-toolkit/#comments</comments>
		<pubDate>Thu, 26 Jun 2008 01:14:13 +0000</pubDate>
		<dc:creator>Scott Hemmeter</dc:creator>
		
		<category><![CDATA[APEX Code]]></category>

		<category><![CDATA[Google Apps]]></category>

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

		<category><![CDATA[Open Source]]></category>

		<category><![CDATA[The Community]]></category>

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

		<guid isPermaLink="false">http://sfdc.arrowpointe.com/?p=314</guid>
		<description><![CDATA[As you probably know, Salesforce announced the Google Data API Toolkit on Monday.  Per the site,
The new Force.com Toolkit for Google Data APIs provides a free and open-source set of tools and services that developers can use to take advantage of Google Data APIs from within Force.com.
The end result for developers is a set of [...]<p><a href="http://sharethis.com/item?&#038;wp=2.6&#38;publisher=6bba32cd-cb97-47b9-9dac-a6ec92c16517&#38;title=Best+Thing+about+the+Salesforce-Google+Toolkit&#38;url=http%3A%2F%2Fsfdc.arrowpointe.com%2F2008%2F06%2F25%2Fbest-thing-about-the-salesforce-google-toolkit%2F">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<p>As you probably know, Salesforce announced the <a href="http://wiki.apexdevnet.com/index.php/Google_Data_API_Toolkit" target="_blank">Google Data API Toolkit</a> on Monday.  Per the site,</p>
<blockquote><p>The new Force.com Toolkit for Google Data APIs provides a free and open-source set of tools and services that developers can use to take advantage of Google Data APIs from within Force.com.</p></blockquote>
<p>The end result for developers is a set of classes, written by Salesforce, that allow you to easily communicate with Google services.  For example, suppose you want to create an entry in Google Calendar, the following code does it.</p>
<pre class="syntax-highlight:java">
GoogleData.Calendar cal = service.getCalendarByTitle(&#039;MyCalendar&#039;);
event newEvent = new Event(
subject = &#039;Tennis with Beth&#039;,
description = &#039;Meet for a quick lesson.&#039;,
ActivityDateTime = system.now(),
DurationInMinutes = 60);
</pre>
<p>That is actually just 2 lines of code (line #2 was broken into 5 lines for easier reading).  The reason you can do this in 2 lines is because of the toolkit.  The toolkit does the &#8220;heavy lifting&#8221; for you to communicate with Google.</p>
<p>From a developer standpoint, the <span style="text-decoration: underline;">best thing about this</span> is that, to do this, there is no dependency on changes to the Salesforce platform.  The Google Toolkit was created by the Developer Marketing Team at Salesforce, not the folks building the platform.  Apex Code is already part of the platform.  The toolkit uses what Apex Code already offers.   What you get with the toolkit is a set of pre-written Apex classes that do the heavy lifting for you on talking to Google.  Much like the Salesforce Java/PHP/.NET/Ajax/Perl toolkits do the heavy lifting of talking to the SOAP API for you on those programming platforms.</p>
<p>There is no reason that the developer community cannot create similar toolkits.  I am sure Salesforce has some more up their sleeve and did the community a service by building some foundational ones for us to use as working/useful examples.</p>
<p>This is open source at work.  To make an analogy&#8230; one thing I love about PHP is that these types of toolkits are prevalent and have made my life much easier. For example, when I wanted to build <a href="http://www.salesforce.com/appexchange/detail_overview.jsp?NavCode__c=&amp;id=a0330000001D8YnAAK" target="_blank">Auto vCard</a>, I Googled for PHP classes that created files in the vCard spec.  I found many and chose 1.  Similarly with the <a href="http://sfdc.arrowpointe.com/2007/05/24/fight-web-to-lead-spam-w-akismet/" target="_blank">Web to Lead Spam Check</a> I built.  I chose <a href="http://www.akismet.com" target="_blank">Akismet</a> as the spam checking service because I was familiar with it and trusted it and I found a <a href="http://www.achingbrain.net/stuff/php/akismet" target="_blank">PHP5 toolkit</a> that took care of the hard part of communicating with Akismet from PHP.  Same thing with my old <a href="http://www.arrowpointe.com/products/salesforce-google-maps/" target="_blank">Google Maps mashup.</a> There are PHP classes that do the hard part of talking to Google Maps.  Having these classes at my disposal gave me the ability to focus on adding the business value of tying functionality into a Salesforce-related use case.  If these PHP classes didn&#8217;t already exist, I never would have created <span style="text-decoration: underline;">any</span> those apps.</p>
<p>If you are a developer looking to create something similar to what Salesforce did, I suggest you:</p>
<ul>
<li>Visit <a href="http://www.programmableweb.com" target="_blank">Programmable Web</a> to identify useful services that could be connected to and learn about their APIs</li>
<li>Build your class(es) (Look at the <a href="http://code.google.com/p/apex-google-data/source/browse/trunk/google_data_toolkit/src/unpackaged/classes/XMLDom.cls" target="_blank">XMLDom</a> class that&#8217;s part of the Google toolkit to handle the complicated XML parsing you might need to do)</li>
<li>Publish it <span style="text-decoration: underline;">open source</span> and let the community react/improve it</li>
<li>Offer up some example code for how the class can be used to help people implement a use case of it.</li>
<li>Become a star</li>
</ul>
<p>Some services that I think are ripe for developers to concentrate on (that are very applicable to businesses):</p>
<ul>
<li>Google Checkout</li>
<li>PayPal</li>
<li>Authorize.net</li>
<li>Freshbooks</li>
<li>Google (Apps) Mail</li>
<li>Google Charts (with tie into Visual Force)</li>
<li>Blog Services</li>
<li>UPS</li>
<li>FedEx</li>
<li>Google Search</li>
<li>Facebook</li>
<li>LinkedIn</li>
<li>Google Open Social</li>
</ul>
<p>There are countless others.  Get cracking!</p>
]]></content:encoded>
			<wfw:commentRss>http://sfdc.arrowpointe.com/2008/06/25/best-thing-about-the-salesforce-google-toolkit/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Benioff Interviewed by Scoble</title>
		<link>http://sfdc.arrowpointe.com/2008/06/19/benioff-interviewed-by-scoble/</link>
		<comments>http://sfdc.arrowpointe.com/2008/06/19/benioff-interviewed-by-scoble/#comments</comments>
		<pubDate>Fri, 20 Jun 2008 06:29:05 +0000</pubDate>
		<dc:creator>Scott Hemmeter</dc:creator>
		
		<category><![CDATA[Interview]]></category>

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

		<category><![CDATA[The Community]]></category>

		<guid isPermaLink="false">http://sfdc.arrowpointe.com/?p=312</guid>
		<description><![CDATA[Continuing on from Mark&#8217;s post, Robert Scoble&#8217;s interview with Marc Benioff was published today.  It&#8217;s embedded below.

<p><a href="http://sharethis.com/item?&#038;wp=2.6&#38;publisher=6bba32cd-cb97-47b9-9dac-a6ec92c16517&#38;title=Benioff+Interviewed+by+Scoble&#38;url=http%3A%2F%2Fsfdc.arrowpointe.com%2F2008%2F06%2F19%2Fbenioff-interviewed-by-scoble%2F">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<p>Continuing on from <a href="http://www.salesforcewatch.com/2008/06/robert-scoble-v.html" target="_blank">Mark&#8217;s post</a>, Robert Scoble&#8217;s <a href="http://www.fastcompany.tv/video/salesforcecom-become-platform-juggernaut-says-ceo" target="_blank">interview with Marc Benioff</a> was published today.  It&#8217;s embedded below.</p>
<p><object width="425" height="274" id="embedded_player" type="application/x-shockwave-flash" data="http://service.twistage.com/plugins/player.swf?v=a3e176e727669&#038;p=fctv-homepage"><param name="movie" value="http://service.twistage.com/plugins/player.swf?v=a3e176e727669&#038;p=fctv-homepage"/><param name="allowfullscreen" value="true"/><param name="allowscriptaccess" value="always"/><param name="base" value="http://service.twistage.com"/></object></p>
]]></content:encoded>
			<wfw:commentRss>http://sfdc.arrowpointe.com/2008/06/19/benioff-interviewed-by-scoble/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ribbit for Salesforce is Released</title>
		<link>http://sfdc.arrowpointe.com/2008/05/06/ribbit-for-salesforce-is-released/</link>
		<comments>http://sfdc.arrowpointe.com/2008/05/06/ribbit-for-salesforce-is-released/#comments</comments>
		<pubDate>Tue, 06 May 2008 18:45:48 +0000</pubDate>
		<dc:creator>Scott Hemmeter</dc:creator>
		
		<category><![CDATA[News]]></category>

		<category><![CDATA[Product Review]]></category>

		<guid isPermaLink="false">http://sfdc.arrowpointe.com/?p=306</guid>
		<description><![CDATA[Ribbit has officially released its &#8220;voiceware&#8221; application that integrates with Salesforce.com.

Main Product Page
Overview Video
AppExchange Listing

I have been using Ribbit with Salesforce for ~3 weeks now and have been pleased.  More important than anything for me was simply getting my voicemail digitally.  Ribbit handles this for me.  All I needed to do to [...]<p><a href="http://sharethis.com/item?&#038;wp=2.6&#38;publisher=6bba32cd-cb97-47b9-9dac-a6ec92c16517&#38;title=Ribbit+for+Salesforce+is+Released&#38;url=http%3A%2F%2Fsfdc.arrowpointe.com%2F2008%2F05%2F06%2Fribbit-for-salesforce-is-released%2F">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ribbit.com/" target="_blank">Ribbit</a> has officially released its &#8220;voiceware&#8221; application that <a href="http://www.ribbit.com/salesforce/index.php" target="_blank">integrates with Salesforce.com</a>.</p>
<ul>
<li><a href="http://www.ribbit.com/salesforce/index.php" target="_blank">Main Product Page</a></li>
<li><a href="http://www.ribbit.com/video/salesforce/salesforce_2.swf" target="_blank">Overview Video</a></li>
<li><a href="https://www.salesforce.com/appexchange/detail_overview.jsp?id=a0330000003gEorAAE&amp;fromEdit=true" target="_blank">AppExchange Listing</a></li>
</ul>
<p>I have been using Ribbit with Salesforce for ~3 weeks now and have been pleased.  More important than anything for me was simply getting my voicemail digitally.  Ribbit handles this for me.  All I needed to do to activate it was call a special number on my cell, which sent AT&amp;T a command to forward my voicemail to Ribbit (the Ribbit documentation says how to undo this change if you ever need to).</p>
<p>When someone leaves a voicemail, I can get it in a couple of ways:</p>
<p><span style="text-decoration: underline;">Email</span></p>
<p>I opted to have Ribbit notify me of my new voicemails via Email.  This way, I get an attachment with the file and can play it right on my Blackberry.  The voicemail is also archived in my Google Apps account for reference purposes should I ever need it (even if I am no longer using Ribbit, I can still have that voicemail.  It&#8217;s just a WAV file.).  The downside of moving voicemail to Ribbit is that I no longer have visual notification that I have voicemail on my Blackberry.  Getting it emailed to me eliminates the need for me to call in and check it.  SMS is another option, but I wouldn&#8217;t be getting the file attached that way.</p>
<p><span style="text-decoration: underline;">Salesforce</span></p>
<p>When I log into Salesforce, I see a nice message window on my homepage.  All my voicemails are right there.  The audio file itself is stored on Ribbit servers, but a record of the call is in a Messages object in Salesforce.com.  This has call information as well as a text transcription.  From the home page, I am able to tag my messages for easy searching later and I can also associate them to a Salesforce record.  When I associate it to a Salesforce record, Ribbit creates an Activity with a link to the message file and a copy of the text transcription.</p>
<p>On the sidebar is a small message window and a dialpad.  One of the biggest benefits of Ribbit is that of a &#8220;cell phone backup&#8221;.  When a call comes to my cell and I send it to voicemail, the sidebar softphone rings.  I have a chance to answer the call right from the Salesforce UI and talk through my PC.  Alternatively, I can let it go through to voicemail.  I am able to make outbound calls too, which is nice in the event that I don&#8217;t have cell coverage or just want click to call convenience.</p>
<p><strong>Pros</strong></p>
<p>The benefits are all about productivity:</p>
<ul>
<li>Digitize your voicemail - You have the data and can do with it what you please.</li>
<li>Cell Phone Backup - Use the Ribbit softphone in Salesforce and put your cell phone away.</li>
<li>Link voicemails to your Leads/Contacts - you get a nice record of the call with a text transcription</li>
<li>Voice to text transcription is above average.  It is by no means stellar, but it&#8217;s good enough to use as a reference for what the call was about without having to listen to it.  Accents and slang tend to mess it up.</li>
</ul>
<p><strong>Cons</strong></p>
<ul>
<li>Cost - If you compare the cost to Salesforce licenses, it ain&#8217;t cheap.  $25/user/month.  If you compare the cost to your cell phone bill and think of the added benefit you get, it starts to make sense.  Individual purchasers will likely compare it to their cell phone bill and it&#8217;ll make sense for them.  Enterprise purchasers will likely compare it to the cost of Salesforce and that will be a harder sell.  If you want voice to text transcriptions (which are extremely useful), it&#8217;s even more money.Â  What&#8217;s harder to quantify is the productivity benefits you might get out of such an application.Â  Productivity improvements is an area of cost savings that should further justify the price.</li>
<li>Can Slow page loads a bit - Even with the flash objects cached in my browser, the experience of loading my home page is slower with Ribbit on there.  In my install, I decided to keep the Ribbit components on the homepage only and not have them follow me around Salesforce on the sidebar.Â  On Lead/Contact detail pages, you have a choice of the Flash component or a Messages related list.Â  l opted to put the Messages related list on my Lead &amp; Contact for performance reasons and also for consistency sake.</li>
<li>You give Ribbit your login credentials - In order to have your voicemails there when you login, Ribbit needs to do background processing.  This makes sense, but it requires you giving Ribbit a login to your system.  Many company&#8217;s can&#8217;t afford a new license just for Ribbit, so they&#8217;ll end of giving them the admin login.  I trust Ribbit with the login info, but it&#8217;s a risk to hand anyone login credentials.  Ribbit doesn&#8217;t have much choice, though, if they want to get the data populated and ready for users when they login.Â  I think this issue could be eliminated if Salesforce allowed for a special user to be created for this purpose that did not take a hit on the customer&#8217;s license count.  This is how Salesforce does it with their License Manager application.  This should be a benefit of being a partner with a certified application.</li>
</ul>
<p>Ribbit is definitely a nice product and their thinking is beyond just Salesforce.Â   It&#8217;s really a new platform for &#8220;voiceware&#8221; applications.  Salesforce was their first target for a specific application aimed at the Enterprise.  I would expect to see more.</p>
<p>You can get a free trial on their AppExchange listing.</p>
<p>Have you tried it?  What do you think?</p>
]]></content:encoded>
			<wfw:commentRss>http://sfdc.arrowpointe.com/2008/05/06/ribbit-for-salesforce-is-released/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Getting Started with Salesforce for Google Apps</title>
		<link>http://sfdc.arrowpointe.com/2008/04/14/getting-started-with-salesforce-for-google-apps/</link>
		<comments>http://sfdc.arrowpointe.com/2008/04/14/getting-started-with-salesforce-for-google-apps/#comments</comments>
		<pubDate>Mon, 14 Apr 2008 07:00:32 +0000</pubDate>
		<dc:creator>Scott Hemmeter</dc:creator>
		
		<category><![CDATA[Google Apps]]></category>

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

		<guid isPermaLink="false">http://sfdc.arrowpointe.com/2008/04/14/getting-started-with-salesforce-for-google-apps/</guid>
		<description><![CDATA[The Salesforce for Google Apps functionality is live now!  To get started, go to Setup and find the Google Apps Settings menu.

Step 1 is to identify your domain.  Your company must have an existing Google Apps business account to do this.

Step 2 is to enable the features you want.  This will be [...]<p><a href="http://sharethis.com/item?&#038;wp=2.6&#38;publisher=6bba32cd-cb97-47b9-9dac-a6ec92c16517&#38;title=Getting+Started+with+Salesforce+for+Google+Apps&#38;url=http%3A%2F%2Fsfdc.arrowpointe.com%2F2008%2F04%2F14%2Fgetting-started-with-salesforce-for-google-apps%2F">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://www.salesforce.com/googleapps/" target=_blank>Salesforce for Google Apps</a> functionality is live now!  To get started, go to Setup and find the Google Apps Settings menu.</p>
<p><img src='http://sfdc.arrowpointe.com/wp-content/images/gapps_menuitem.jpg' alt='Google Apps Menu Item' /></p>
<p><strong>Step 1</strong> is to identify your domain.  Your company must have an existing Google Apps business account to do this.</p>
<p><img src='http://sfdc.arrowpointe.com/wp-content/images/gapps_step1.jpg' alt='Google Apps Setup Step 1' /></p>
<p><strong>Step 2</strong> is to enable the features you want.  This will be your main control panel for managing these settings.</p>
<p><img src='http://sfdc.arrowpointe.com/wp-content/images/gapps_step2.jpg' alt='Google Apps Setup Step 2' /></p>
<p><strong>Some observations</strong>:</p>
<ul>
<li>The <strong>Add Google Docs to Salesforce</strong> feature is very cool and will be very useful!  It adds onto the existing Notes &amp; Attachments related list and lets you create/associate a new Doc, Spreadsheet or Presentation to a record.  You can also look for an existing document you have and associate that.  I am not sure how it handles access to the document by others.  You might have to specifically collaborate with people.
<p><img src='http://sfdc.arrowpointe.com/wp-content/images/gapps_adddocstosalesforce.jpg' alt='Add Google Doc to Salesforce' /></p>
<p>I did not see any Mail Merge capabilities with this feature.
	</li>
<li>When you enable the <strong>Google Docs tab</strong>, it adds the tab onto every application you have rather than asking you.  You have to edit each application to remove it.  This feature is nothing too special.  Just a tab to Google Docs.  I don&#8217;t see any special development Google did on their end to refer to Salesforce in their UI.</li>
<li>Enabling <strong>Email to Salesforce</strong> gives each user a new Email Settings screen where they can edit their personal settings.  The idea here is that you BCC a special email address and Apex code will process it and associate the email to your Lead/Contact.  I tested it and attachments do not get saved.
<p><img src='http://sfdc.arrowpointe.com/wp-content/images/gapps_emailtosalesforce.jpg' alt='Email to Salesforce Personal Settings' /></p>
<p>Email to Salesforce is not limited to Google Apps.  The image Salesforce has includes gMail, Outlook and Yahoo! Mail.</p>
<p><img src='http://sfdc.arrowpointe.com/wp-content/images/gapps_email_to_salesforce_logos.gif' alt='Email to Salesforce Logos' />
	</li>
<li>Enabling <strong>gMail Buttons &#038; Links</strong> adds a gMail link to every email address field.  When you click it, a gMail window opens to compose a new email.  A special Salesforce email address is BCCed on the message so that it will be processed right into Salesforce for you and associated with the record.
<p><img src='http://sfdc.arrowpointe.com/wp-content/images/gapps_gmailbuttonsandlinkssetup.jpg' alt='Gmails Buttons &#038; Links Setup' /></p>
<p><img src='http://sfdc.arrowpointe.com/wp-content/images/gapps_gmailbuttonsandlinksresult.gif' alt='Gmails Buttons &#038; Links Result' />
	</li>
<li>Enabling the <strong>Google Talk Sidebar Component</strong> puts the same Google Talk widget you see in gMail on the Salesforce sidebar.  I opted to keep this turned off as I&#8217;ll keep using my Trillian client.  This feature is not pulling Contact names into gTalk.  It&#8217;s simply putting your current gTalk contact list on the sidebar.  You&#8217;d add people the same way as if this integration never existed.</li>
<li>I didn&#8217;t try any of the 3rd party apps.  At first glance the Calendar Sync and Report Collaboration sound the most interesting.</li>
</ul>
<p>What do you think about the new functionality?</p>
]]></content:encoded>
			<wfw:commentRss>http://sfdc.arrowpointe.com/2008/04/14/getting-started-with-salesforce-for-google-apps/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Salesforce &#38; Google Apps Integration Announced</title>
		<link>http://sfdc.arrowpointe.com/2008/04/13/salesforce-google-apps-integration-announced/</link>
		<comments>http://sfdc.arrowpointe.com/2008/04/13/salesforce-google-apps-integration-announced/#comments</comments>
		<pubDate>Mon, 14 Apr 2008 04:45:08 +0000</pubDate>
		<dc:creator>Scott Hemmeter</dc:creator>
		
		<category><![CDATA[Google Apps]]></category>

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

		<guid isPermaLink="false">http://sfdc.arrowpointe.com/2008/04/13/salesforce-google-apps-integration-announced/</guid>
		<description><![CDATA[The Salesforce / Google Apps integration news is coming out now.  You can cut to the chase by watching the Salesforce Video on YouTube (embedded below), which explains how it works.

Salesforce&#8217;s main announcement page is http://www.salesforce.com/googleapps.
The permanent Salesforce product page is http://www.salesforce.com/products/google/apps.
Some of the notable sites are tracking it too.  I am sure [...]<p><a href="http://sharethis.com/item?&#038;wp=2.6&#38;publisher=6bba32cd-cb97-47b9-9dac-a6ec92c16517&#38;title=Salesforce+%26amp%3B+Google+Apps+Integration+Announced&#38;url=http%3A%2F%2Fsfdc.arrowpointe.com%2F2008%2F04%2F13%2Fsalesforce-google-apps-integration-announced%2F">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<p>The Salesforce / Google Apps integration news is coming out now.  You can cut to the chase by watching the Salesforce Video on YouTube (embedded below), which explains how it works.</p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/E-o0QmS5TzM&#038;hl=en"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/E-o0QmS5TzM&#038;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
<p>Salesforce&#8217;s main announcement page is <a href="http://www.salesforce.com/googleapps" target=_blank>http://www.salesforce.com/googleapps</a>.</p>
<p>The permanent Salesforce product page is <a href="http://www.salesforce.com/products/google/apps" target=_blank>http://www.salesforce.com/products/google/apps</a>.</p>
<p>Some of the notable sites are tracking it too.  I am sure there will be lots more by morning.:</p>
<ul>
<li><a href="http://www.techmeme.com/080414/p2#a080414p2" target=_blank>Techmeme Discussion</a></li>
<li><a href="http://www.techcrunch.com/2008/04/13/more-details-on-the-google-salesforce-enemy-of-my-enemy-is-my-friend-alliance/" target=_blank>Techcrunch</a></li>
<li><a href="http://mashable.com/2008/04/13/salesforce-for-google-apps/" target=_blank>Mashable</a></li>
<li><a href="http://www.news.com/8301-10784_3-9916859-7.html" target=_blank>C|Net</a></li>
<li><a href="http://biz.yahoo.com/ap/080414/salesforce_google.html?.v=3" target=_blank>Associated Press</a></li>
</ul>
<p>Some highlights:</p>
<ul>
<li>I believe this is offered free to all Salesforce users</li>
<li>Save email right to Salesforce like you can do with the Outlook Connector already.  Not sure if it has 100% of this functionality such as Attachment saves.</li>
<li>Generate Google Docs, Spreadsheets and Presentations right from Salesforce and have them linked to your records.  The Google Docs side will allow for strong collaboration and the linkage to Salesforce will ensure that everyone is working off the right document.  I was unable to tell via the video if you can do Mail Merge to Google Docs like you can with MS Word.</li>
<li>Google Chat is embedded in the Salesforce sidebar allowing you to chat with people right from within Salesforce</li>
<li>Sync your Salesforce &#038; Google Calendar via <a href="https://www.salesforce.com/appexchange/detail_overview.jsp?NavCode__c=a0130000006P6IoAAK-52&#038;id=a0330000005HRYbAAO" target=_blank>a 3rd party app</a></li>
<li>Export your Reports to Google Spreadsheets with <a href="https://www.salesforce.com/appexchange/detail_overview.jsp?NavCode__c=a0130000006P6IoAAK-52&#038;id=a0330000005HRtdAAG" target=_blank>a 3rd party app</a></li>
</ul>
<p>Check out the <a href="http://www.salesforce.com/appexchange/category_list.jsp?NavCode__c=a0130000006P6IoAAK-52&#038;" target=_blank>new Google Apps category</a> on AppExchange to see all the 3rd party apps.</p>
]]></content:encoded>
			<wfw:commentRss>http://sfdc.arrowpointe.com/2008/04/13/salesforce-google-apps-integration-announced/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Salesforce vs. Microsoft CRM Shootout</title>
		<link>http://sfdc.arrowpointe.com/2008/04/03/salesforce-vs-microsoft-crm-shootout/</link>
		<comments>http://sfdc.arrowpointe.com/2008/04/03/salesforce-vs-microsoft-crm-shootout/#comments</comments>
		<pubDate>Thu, 03 Apr 2008 23:58:51 +0000</pubDate>
		<dc:creator>Scott Hemmeter</dc:creator>
		
		<category><![CDATA[Competition]]></category>

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

		<guid isPermaLink="false">http://sfdc.arrowpointe.com/2008/04/03/salesforce-vs-microsoft-crm-shootout/</guid>
		<description><![CDATA[Keep an eye on the Paul Greenberg&#8217;s blog.  A while back he issued a challenge to Salesforce and Microsoft to configure the application in an effort to compare the configuration capabilities of the 2 systems.  Both have agreed to it.  Should be interesting.
<p><a href="http://sharethis.com/item?&#038;wp=2.6&#38;publisher=6bba32cd-cb97-47b9-9dac-a6ec92c16517&#38;title=Salesforce+vs.+Microsoft+CRM+Shootout&#38;url=http%3A%2F%2Fsfdc.arrowpointe.com%2F2008%2F04%2F03%2Fsalesforce-vs-microsoft-crm-shootout%2F">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<p>Keep an eye on the <a href="http://the56group.typepad.com/" target=_blank>Paul Greenberg&#8217;s blog</a>.  A while back he issued a challenge to Salesforce and Microsoft to configure the application in an effort to compare the configuration capabilities of the 2 systems.  Both have <a href="http://the56group.typepad.com/pgreenblog/2008/04/the-shootout-is.html" target=_blank>agreed to it</a>.  Should be interesting.</p>
]]></content:encoded>
			<wfw:commentRss>http://sfdc.arrowpointe.com/2008/04/03/salesforce-vs-microsoft-crm-shootout/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Knowledge Base for Arrowpointe Products</title>
		<link>http://sfdc.arrowpointe.com/2008/03/25/knowledge-base-for-arrowpointe-products/</link>
		<comments>http://sfdc.arrowpointe.com/2008/03/25/knowledge-base-for-arrowpointe-products/#comments</comments>
		<pubDate>Wed, 26 Mar 2008 04:35:16 +0000</pubDate>
		<dc:creator>Scott Hemmeter</dc:creator>
		
		<category><![CDATA[News]]></category>

		<category><![CDATA[Site Info]]></category>

		<guid isPermaLink="false">http://sfdc.arrowpointe.com/2008/03/25/knowledge-base-for-arrowpointe-products/</guid>
		<description><![CDATA[I have setup a knowledge base using my Salesforce org to contain solutions for Arrowpointe products.  Going forward, this will be the official location for help documentation on all Arrowpointe products.  It is currently well populated with information on Arrowpointe Maps and Info Center.  I am in the process of populating it [...]<p><a href="http://sharethis.com/item?&#038;wp=2.6&#38;publisher=6bba32cd-cb97-47b9-9dac-a6ec92c16517&#38;title=Knowledge+Base+for+Arrowpointe+Products&#38;url=http%3A%2F%2Fsfdc.arrowpointe.com%2F2008%2F03%2F25%2Fknowledge-base-for-arrowpointe-products%2F">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<p>I have setup a <a href="http://www.arrowpointe.com/support/kb/" target=_blank>knowledge base</a> using my Salesforce org to contain solutions for Arrowpointe products.  Going forward, this will be the official location for help documentation on all Arrowpointe products.  It is currently well populated with information on <a href="http://www.arrowpointe.com/maps" target=_blank>Arrowpointe Maps</a> and <a href="http://www.salesforce.com/appexchange/detail_overview.jsp?NavCode__c=&#038;id=a0330000002VJ5zAAG" target=_blank>Info Center</a>.  I am in the process of populating it for <a href="http://www.salesforce.com/appexchange/detail_overview.jsp?id=a0330000001D8YnAAK" target=_blank>Auto vCard</a>, <a href="http://www.salesforce.com/appexchange/detail_overview.jsp?id=a0330000001H2muAAC" target=_blank>User Adoption Dashboard</a> and the <a href="http://www.arrowpointe.com/spamcheck" target=_blank>Akismet anti-spam solution</a>.</p>
<p>The direct URL to the knowledge base is:</p>
<p><a href="http://www.arrowpointe.com/support/kb/" target=_blank><strong>http://www.arrowpointe.com/support/kb/</strong></a></p>
]]></content:encoded>
			<wfw:commentRss>http://sfdc.arrowpointe.com/2008/03/25/knowledge-base-for-arrowpointe-products/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Salesforce on the iPhone</title>
		<link>http://sfdc.arrowpointe.com/2008/03/07/salesforce-on-the-iphone/</link>
		<comments>http://sfdc.arrowpointe.com/2008/03/07/salesforce-on-the-iphone/#comments</comments>
		<pubDate>Fri, 07 Mar 2008 16:01:00 +0000</pubDate>
		<dc:creator>Scott Hemmeter</dc:creator>
		
		<category><![CDATA[Innovations]]></category>

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

		<guid isPermaLink="false">http://sfdc.arrowpointe.com/2008/03/07/salesforce-on-the-iphone/</guid>
		<description><![CDATA[Salesforce demonstrates a sample Salesforce application built on the Apple iPhone SDK.

<p><a href="http://sharethis.com/item?&#038;wp=2.6&#38;publisher=6bba32cd-cb97-47b9-9dac-a6ec92c16517&#38;title=Salesforce+on+the+iPhone&#38;url=http%3A%2F%2Fsfdc.arrowpointe.com%2F2008%2F03%2F07%2Fsalesforce-on-the-iphone%2F">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<p>Salesforce demonstrates a sample Salesforce application built on the Apple iPhone SDK.</p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/fwo2VbDA1Io"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/fwo2VbDA1Io" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://sfdc.arrowpointe.com/2008/03/07/salesforce-on-the-iphone/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Upcoming Security Changes - overview of impact</title>
		<link>http://sfdc.arrowpointe.com/2007/11/16/upcoming-security-changes-overview-of-impact/</link>
		<comments>http://sfdc.arrowpointe.com/2007/11/16/upcoming-security-changes-overview-of-impact/#comments</comments>
		<pubDate>Fri, 16 Nov 2007 20:29:00 +0000</pubDate>
		<dc:creator>Scott Hemmeter</dc:creator>
		
		<category><![CDATA[API]]></category>

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

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

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

		<guid isPermaLink="false">http://sfdc.arrowpointe.com/2007/11/16/upcoming-security-changes-overview-of-impact/</guid>
		<description><![CDATA[Salesforce.com is making security changes on Monday Nov. 26, 2007. (Note that the rollout was pushed back a week from their original communications.  It is now Monday Nov. 26, 2007)
There were a couple of webinars today about the changes.  The customer-focused webinar will be available at http://www.salesforce.com/security soon.  The partner-focused one will [...]<p><a href="http://sharethis.com/item?&#038;wp=2.6&#38;publisher=6bba32cd-cb97-47b9-9dac-a6ec92c16517&#38;title=Upcoming+Security+Changes+-+overview+of+impact&#38;url=http%3A%2F%2Fsfdc.arrowpointe.com%2F2007%2F11%2F16%2Fupcoming-security-changes-overview-of-impact%2F">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<p>Salesforce.com is making security changes on <strong>Monday Nov. 26, 2007</strong>. <em>(Note that the rollout was pushed back a week from their original communications.  It is now <strong>Monday Nov. 26, 2007</strong>)</em></p>
<p>There were a couple of webinars today about the changes.  The customer-focused webinar will be available at <a href="http://www.salesforce.com/security" target=_blank>http://www.salesforce.com/security</a> soon.  The partner-focused one will be available in the Partner Portal.</p>
<p>Below is <u>my understanding</u> of what was said and a high-level overview of the main impacts.  Please add clarifications in the comments.</p>
<h6>API Logins</h6>
<ul>
<li>If you connect via a Session ID passed from a web link/tab, none of these restrictions apply as the user is explicitly providing you with login access to his/her active session.</li>
<li>To login with a username and password, the IP address you are logging in from needs to be white-listed.</li>
<li>Salesforce will pre-populate the org&#8217;s whitelist with IPs used in the past 4 months.</li>
<li>Each end-user can generate an API token to replace their password for API logins.</li>
<li>API logins using the API token do not require their IP to be whitelisted.</li>
<li>API tokens do not expire.  Only 1 is active at a time.  It can be replaced by the user generating a new one.  This automatically invalidates the old one.</li>
<li>API tokens cannot be used to login at <a href="https://www.salesforce.com/login.jsp" target=_blank>https://www.salesforce.com/login.jsp</a>.</li>
<li>Going forward, the best practice would be for end users to provide their API token to any app/service they use other than the main Salesforce.com login page.</li>
</ul>
<h6>Logging in at <a href="https://www.salesforce.com/login.jsp" target=_blank>https://www.salesforce.com/login.jsp</a></h6>
<ul>
<li>Username and password will still be the way to access Salesforce.com from the main login page</li>
<li>A new feature will be added requiring you to confirm that your computer is valid to login using that username.</li>
<ul>
<li>The login page will check if you&#8217;ve logged in from that computer before (by looking for a browser cookie)</li>
<li>If not, the email address on the user record will be sent an email to confirm that you are, in fact, the one trying to login now.</li>
<li>You will click a link in that email &#8220;activating&#8221; your computer for login with that username</li>
<li>Unless you delete the cookie or clear your broswer&#8217;s cache, you should be good to go for a while without repeating these steps.</li>
</ul>
<li>There are no new IP restrictions affecting logins at the main login page.  The profile-based IP restrictions that have been around for a long time are still the way to go there.
</ul>
<p>If you are a consultant, you may fall victim of the new security measure when you try to login as your client (maybe they couldn&#8217;t afford another temporary username just for you).  On the call, I was told that you can request a temporary one via the Partner Portal or ask your customer to forward you the email to confirm your PC is okay.</p>
<h6>My thoughts</h6>
<p>I think it is great to see Salesforce taking a step to tighten up the API, especially.  I like to think that my old <a href="http://sfdc.arrowpointe.com/2006/11/27/api-authentication-list/" target=_blank>API Authentication List</a> post had something to do with it, but who knows.</p>
<p>The biggest impact to me will be using client&#8217;s logins to get into the system from my PC, but I&#8217;ll just have to workaround that one.  Security and convenience are generally a trade off and overall I&#8217;d rather use/subscribe to a service that is tightened down with my business data.  If anyone can handle the inconveniences of logging in, it&#8217;s developers since we are used to doing hacks/workarounds in the first place.</p>
]]></content:encoded>
			<wfw:commentRss>http://sfdc.arrowpointe.com/2007/11/16/upcoming-security-changes-overview-of-impact/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>
		<item>
		<title>Salesforce &#038; Google Adwords Alliance</title>
		<link>http://sfdc.arrowpointe.com/2007/06/05/salesforce-google-adwords-alliance/</link>
		<comments>http://sfdc.arrowpointe.com/2007/06/05/salesforce-google-adwords-alliance/#comments</comments>
		<pubDate>Tue, 05 Jun 2007 07:28:16 +0000</pubDate>
		<dc:creator>Scott Hemmeter</dc:creator>
		
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://sfdc.arrowpointe.com/2007/06/05/salesforce-google-adwords-alliance/</guid>
		<description><![CDATA[Techcrunch is reporting that the big announcement tomorrow will be that Salesforce &#038; Google have teamed up on 
a marketing and distribution alliance that will tightly bind Google Adwords to existing Salesforce tools that track sales from online advertising.

Based upon the description in the Techcrunch post, it sounds like they are merely providing the existing [...]<p><a href="http://sharethis.com/item?&#038;wp=2.6&#38;publisher=6bba32cd-cb97-47b9-9dac-a6ec92c16517&#38;title=Salesforce+%26%23038%3B+Google+Adwords+Alliance&#38;url=http%3A%2F%2Fsfdc.arrowpointe.com%2F2007%2F06%2F05%2Fsalesforce-google-adwords-alliance%2F">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.techcrunch.com/2007/06/04/google-and-salesforce-do-the-mashup-dance/">Techcrunch is reporting</a> that the big announcement tomorrow will be that Salesforce &#038; Google have teamed up on </p>
<blockquote><p>a marketing and distribution alliance that will tightly bind Google Adwords to existing Salesforce tools that track sales from online advertising.
</p></blockquote>
<p>Based upon the description in the Techcrunch post, it sounds like they are merely providing the existing Salesforce for Google Adwords functionality to users that wouldn&#8217;t otherwise have it via the &#8220;Group Edition&#8221;.  Techcrunch provided <a href="http://www.salesforce.com/google">this link</a> to Salesforce&#8217;s site, but it was redirecting to the homepage when I tried it.  It might work by the time you read this.</p>
<p>There is also an <a href="http://biz.yahoo.com/ap/070605/google_salesforce.html?.v=2">AP article</a> discussing the announcement, which makes it sound like this alliance will make Salesforce for Google Adwords available to all customers, not just through a Group Edition.</p>
<p><em>Speculation: </em>Perhaps the alliance is setup to subsidize the subscription to the service so all customers can use it with Salesforce &#038; Google doing revenue sharing on the back end of the transactions so that its transparent to the Salesforce end customer?  That setup would be of great benefit to a lot of companies looking to utilize Adwords and link it into Salesforce&#8217;s Lead Management module whereby the cost barriers to enable Salesforce&#8217;s functionality would be eliminated.</p>
<p>The AP and Techcrunch articles are written as if they have official information as opposed to speculation, but we won&#8217;t know for sure until the actual announcement or a press release direct from Salesforce.com or Google.</p>
<p>Click <a href="http://www.salesforce.com/company/investor/">here</a> for information on the announcement event and to listen to the webcast.</p>
]]></content:encoded>
			<wfw:commentRss>http://sfdc.arrowpointe.com/2007/06/05/salesforce-google-adwords-alliance/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
