Skip to main content

Trailhead - Navigate the Salesforce Advantage

I would like to share my personal experiences in this post before I talk about the topic I'm pretty sure everyone had this experience or will have when you are going to any family functions or meeting your old friends/relatives after a long gap. They gonna ask about where are you working? which technology? The same questions are asked to me when I was met my relative in the year 2011. I proudly told him that I'm working in salesforce technology, all of a sudden he said that "Oh..sales application? what product are you selling?" He imagined I'm in the sales/marketing department.  I can't explain to him about Apex, Visualforce, multitenancy etc., in any technical terms, I have to explain in layman's term to him about salesforce, somehow I managed to explain him about salesforce.

Later I have spent lots of my time in watching many videos about salesforce, cloud computing and read many articles to understand the base of the technology first. I still remember there is an animation video from salesforce which explains about cloud computing and force.com with apartment example, which really helps me to understand better and I can able to explain about salesforce to others.

Now salesforce has awesome Trailhead team to make us understand about salesforce easier and in a simpler way.The Navigate the Salesforce Advantage has four trailhead modules, which explains to you what Salesforce is all about to the users. Let's check the one by one

1. Salesforce Success Model

In this unit, you will learn about what is salesforce and how salesforce will be benefits for business.
It also contains information on salesforce 1-1-1 model. As we are in the salesforce ecosystem, we must know as a company what salesforce is doing? what is there history?

2. Salesforce Cloud Benefits

This unit gives you the idea about cloud computing and how salesforce customer benefits from the cloud and comparison between on-premise and cloud computing. More importantly, you will also have the answer for most common question Whether salesforce is the platform or an app?

3. Salesforce Technology Basics

When you explain about cloud computing to someone, the first thing it will strike in their mind about data security.This unit covers about how Salesforce provides a level of security that no individual company could provide on their own and also explains about the multitenancy concepts with the real time example which everyone will understand.

4. Salesforce Ecosystem

It's all about the powerful weapon of salesforce.You understand where to get started, how to connect with others, get help, share ideas, and collaborate.How to find local salesforce events, groups and about MVP program.

I'm now well prepared to explain about salesforce to anyone and now it's your turn to complete that module.

Comments

Popular posts from this blog

Avoid Duplicate Records Using Flow

In this blog post lets see how to avoid duplicate records in Salesforce using the powerful feature – Flow , As the word says, flow easily flows to fulfill the requirements with ease. ☺  Many think of appexchange solutions and source code to avoid the duplicate record in salesforce, But the method I'm going to explain here is completely different and very simple. It helps you to reduce your code and can easily rebuild for other objects with different field logic with simple clicks. Lets jump into the solution, we will use flow to check duplicate record logic and use apex trigger to initiate the Flow whenever a record is created or updated. Visual Work Flow : [Click] First we will create the Flow to check the duplicate records based on the name and store the result in the variable. In this example, we will use the Account object for the dupe check. Step 1  : Create a new visual flow with the Name ‘ DuplicateAccountCheck ' Step 2  : Click and drag the RecordLookup into t

Plan your Dreamforce with “Dreamforce Trail”

Salesforce has many good resources for anybody looking to begin Salesforce as beginner, Intermediate or Advanced. Trailhead is also one among the good resource to learn salesforce and my favorite too. I have also written blog post about Trailhead & my favorite module   This  blog post covers an interesting and helpful Trailhead module. Yes Its all about ' Dreamforce Trail ', if you are a Dreamforce Attendee, then I strongly recommend you to take a look into this Trailhead module. No Admin skill or No Developer skill is required for this module.Start winning Badges and is gamified so it motivates you to reach more badges and finally you end up gaining knowledge on Salesforce. Why do we have Dreamforce Trail module in Trailhead?  To help people who is coming to dreamforce for the first time and to plan well for the events. Dreamforce is a tech feast for anybody. Dreamforce is salesforce festival. If you don’t plan well, you will miss something highly helpful . This Dre

Export records from List view – ListView API

As part of the Winter’15 release salesforce introduced the List View API features which helps us to get details and records of list views for an object. I was started exploring more about the List view API and trying to build an use case using that. So I searched about List View in the IdeaExchange site then found that many users are looking for a solution to export records to excel directly from the list view. I built a solution for that Idea, which helps user to download all the records directly from the List view for both standard and custom object. You don’t have to make any change in the code to use this functionality for different objects. All you need is to create a custom button for that object as mentioned below. Lets take an example for Account object 1. Go to Setup –> Accounts –> Buttons, Links and Actions 2. Click ‘New Button or Link' 3. Enter  Label, Name and select display type as ‘List Button’ 4. Content source as “Onclick Javascript” and paste the