Skip to main content

Salesforce.com : Cool features of Summer ‘13

Following are few cool features released in Summer '13 release of Salesforce.com

Salesforce Communities
It’s probably one of the most awaited features. It replaces customer and partner portals and brings a consistent user experience for internal and external users. It brings more flexibility to bring interaction with customers and partners. Additionally, it provides seamless access to chatter adding social quotient to customer/ partner communication.

Force.com Canvas – Generally Available
Canvas as you would have already known, is a feature to enable access to business specific web applications from within Salesforce. Although, this might not seem interesting in start, but, many organizations have needed it since a long time to provide unified access to multiple applications. This makes application discovery easier and uniform. Also brings seamless access to all applications.

Opportunity Split
In real time scenarios, mostly multiple people are responsible for winning a deal (off course not when the salesmen is a Hollywood star). In such scenarios, in past, custom development had to be done to split commission across various people involved. But, now it comes out of the box. So, kind of nice, as it can avoid a lot of fights and grudges when a deal is “closed”.

Customizable Pricebooks
Yes, this is really true. I have personally faced a lot of issue with Salesforce pricebooks. It looked like a sacred turf, only meant for Cricket or Football players and not for rookies like us . Now, it is almost a level playing field. Pricebooks can now be customized with new fields, triggers, page layouts and validation rules. Additionally, you can also report on pricebooks. Isn't that savvy!!

Metadata API changes – New Metadata types
This is again a very fantastic addition. This means that new elements like  ApprovalProcess, ForecastingSettings,  LiveAgentSettings, SamlSsoConfig etc.  are exportable just like other metadata elements and can further be deployed to production without having to be created manually, as in past. So, a whole lot of new elements available for automated deployments.

Dashboards in Touch on iPhone devices
It can literally fit into your palm. Indeed, a very “handy” addition. With this addition, Salesforce users can now access dashboards on their mobile devices. So you get analytics on the run.

Comments

Popular posts from this blog

Quick Tips: Salesforce default Images

Well, I'm sure a lot of you still rely on using out of the box salesforce images for displaying quick icons within formula fields or even using them within your Visualforce pages. Lately, I realized that a lot of earlier resources are no longer accessible, so I tried to quickly extract all images from Salesforce CSS files and provide a quick reference here. Please note, I've referenced all images from SF servers directly, so if anything changes, the image should stop rendering here. As these images are completely controlled by Salesforce, and in case they change anything, it might lead to image not being accessible. Image path Image /img/samples/flag_green.gif /img/samples/flag_green.gif /img/samples/flag_red.gif /img/samples/color_red.gif /img/samples/color_yellow.gif /img/samples/color_green.gif /img/samples/light_green.gif /img/samples/light_yellow.gif /img/samples/light_red.gif /img/samples/stars_100.gif /img/samples/stars_200.gif /img/samples/stars_300....

Quick Tips: Sort Pipeline by Sales stages with Salesforce Tableau CRM (Einstein Analytics)

Quick Tips: Sort Pipeline by Sales stages with Salesforce CRM Analytics (aka Tableau CRM) Problem Statement While working on a recent change, we realized (a bit late) that the sales pipeline view shows sales stages in incorrect order. Ideally, you would want the pipeline view to reflect the stage in the same sequence as the sales process (for example Prospect, Propose, Negotiate, Close). Sales Path Sales Pipeline Initial SAQL q = load "opportunities" ; q = group q by 'StageName' ; q = foreach q generate 'StageName' as 'StageName' ,      sum ( 'Amount' ) as 'sum_Amount' ; q = order q by 'StageName' asc ; q = limit q 2000 ; Solution Approach Approach 1: Augment a field within the Opportunity dataset (CRM Analytics) to generate a new column for the Sales stage sequence This approach would be faster to deliver and has comparatively less change. However, as sales stages are changed/ updated it can result in the Tableau CRM da...

Lightning: Generate PDF from Lightning components with in-memory data

I'm sure as everyone is diving into lightning components development, they are getting acquainted with the nuances of the Lightning components framework. As well as, its current limitations. Being a new framework, this is bound to happen. Although we have our users still using salesforce classic, we have started using lightning components framework our primary development platform and Visualforce is considered primarily for rendering lightning components within Classic Service console. Recently, while re-architecting a critical module, we encountered a problem wherein we needed to generate PDF from lightning components. Now, being Javascript intensive framework, it has limited room for such features (may be included in future roadmap). As of now, there is no native feature within the lightning framework to do so (at least I didn't find anything). Common Scenario - Create Visualforce page to retrieve data and generate PDF For scenarios where the data exist within Sa...