Learn Salesforce Certification from the Best Tutors
Search in
Answered on 20/01/2021 Learn Salesforce Certification
Nikhil Bajaj
Software Professional with 15+ Vast experience
Answered on 16/05/2018 Learn Salesforce Certification
Devika Goel
Salesforce Trainer
Hello Subash,
My name is Devika. I have total of 4.5 Yrs of Experience as Salesforce Consultant. I have worked on Several Projects. Its good if you want to start your career in Salesforce. Its very high in Demand now a days.
Currently I am working as Freelancer as Salesforce Trainer and Training 5 Candidates Online. If you are interested you can revert me with your email ID on this.
Thanks
read lessLesson Posted on 19/04/2018 Learn Salesforce Certification
Starting Career as Salesforce Admin
Devika Goel
I am experience Salesforce Certified . I have done three certifications of Salesforce (ADM-201,211 and...
Hello Everyone! This is just an introductory lesson for those who want their career as Salesforce Admin. Being a Salesforce Admin, you do not need any prior experience on CRM. What you all need is the dedication and hard work.
Being a CRM Admin means you know complete in and out of that CRM. So you should know every tiny thing about the CRM you are going to work on.
Examples :
How to send mass emails from CRM.
How to automate complete process without doing much manual work.
How to run Campaigns on any CRM.
Can we share our internal few records to any other user who is not a part of CRM, without providing them License?
Above questions are just examples. There is a lot you can do with Salesforce CRM.
To start work on Salesforce. First, you need to create an account on "developer.salesforce.com". Once you create your login on this it is valid for lifetime, it never expires.
Next, try to check out the look and feel of Salesforce. Like you go shopping, and you check each and everything before purchase. Same way check how Salesforce looks like and try to know why it becomes so demanding by customers.
If you get to know why it is so much in demand. Then your journey Starts to become Salesforce Admin.
If you have any query or want to learn Salesforce Admin, you can always contact me through UrbanPro.
Thank you!
Devika Goel.
read lessLearn Salesforce Certification from the Best Tutors
Lesson Posted on 05/08/2017 Learn Salesforce Certification
Kumar
I am a working professional in mnc company I have 3 years of experience in giving salesforce admin development...
Imagine you have two users. Both are in the same profile, which allows them to Create, Edit object XYZ. But these two users are in different parts of the role hierarchy.
If User A Creates an XYZ, can user B edit it? The answer is only if the record is shared with him. If the Org Wide Default is Private then he will not even be able to see the record that User A has created (unless it is explicitly shared with him). He can still create his own XYZ records and edit those. Likewise, if the Org Wide Default is public read only, User B could see it, but not edit it despite what his profile allows. He can edit only his own records or those shared with him.
Sharing also works up the role hierarchy. So User A's boss can see the XYZ record that User A created. If his profile allows, he can edit it, but his profile may not.
You can think of the profile as "What can a user do with the XYZ object" and the sharing as "Which particular XYZ records can he or she do it with"
If OWD is Public Read / Write but the profile does not have access to Read or to Edit then you cannot Read or Edit.
If OWD is Public Read / Write on object XYZ and profile has Read permission but not Edit, then the user with that profile can only Read XYZ (all of them).
If a user doesn't even have Read access to object XYZ then they cannot see any object XYZ regardless of the Org Wide Default.
Not correct : The owner who is higher on the role hierarchy has shared access to all the XYZ that his subordinates own. However, if the higher user has a profile which doesn't include read or edit then he cannot read or edit those records.
Lesson Posted on 05/08/2017 Learn Salesforce Certification
What Is The Difference Between Non-Static And Static?
Kumar
I am a working professional in mnc company I have 3 years of experience in giving salesforce admin development...
Lesson Posted on 05/08/2017 Learn Salesforce Certification
What Are The Map Methods Available In Apex?
Kumar
I am a working professional in mnc company I have 3 years of experience in giving salesforce admin development...
//Map holds key and value pair.
//Syntax: Map mapName = new Map();
/*Map countryISTCodeMap = new Map();
countryISTCodeMap.put('India','91');
countryISTCodeMap.put('USA','001');
countryISTCodeMap.put('India','911');//replaces old value with new value.*/
Map countryISTCodeMap = new Map{'India'=>'91','USA'=>'001', 'India'=>'911'};
system.debug('countryISTCodeMap result: '+countryISTCodeMap+' with size '+countryISTCodeMap.size());
system.debug('countryISTCodeMap keys: '+countryISTCodeMap.keyset());
system.debug('countryISTCodeMap values: '+countryISTCodeMap.values());
system.debug('countryISTCodeMap search: '+countryISTCodeMap.containsKey('India'));
system.debug('countryISTCodeMap fetching value based on key: '+countryISTCodeMap.get('India'));
//map keys are case-sensitive.
keyset(): To fetch only keys from the map.
values(): To fetch only values from the map.
containsKey(value): To search a key from the map.
get(key): By supplying the key we can fetch the value.
put(key,value): To add key and value in a map.
read lessLearn Salesforce Certification from the Best Tutors
Lesson Posted on 05/08/2017 Learn Salesforce Certification
Kumar
I am a working professional in mnc company I have 3 years of experience in giving salesforce admin development...
1. SOQL: Salesforce Object Query Language
2. SOSL: Salesforce Object Search Language
read less
Lesson Posted on 05/08/2017 Learn Salesforce Certification
Difference Between Insert/Update And Database.Insert/ Database.Update
Kumar
I am a working professional in mnc company I have 3 years of experience in giving salesforce admin development...
insert/update
Database.insert/Database.update
Assume that you are inserting 100 records. If any one of the record fail due to error then entire operation will fail. None of the records will be saved into the database. with insert/update if we use try-catch then we can capture only one error which will cause to stop the operation.
Assume that you are inserting 100 records. If any one of the record fail due to error then it will perform partial operation (valid records will be inserted/updated) if we use Database.insert(list,false)/ Database.update(list,false).
.with Database.insert/Database.update we can capture all the errors by saving result in Database.saveResult[].
read lessLesson Posted on 05/08/2017 Learn Salesforce Certification
What Is Batch Apex And Its Methods ?
Kumar
I am a working professional in mnc company I have 3 years of experience in giving salesforce admin development...
Learn Salesforce Certification from the Best Tutors
Lesson Posted on 05/08/2017 Learn Salesforce Certification
How To Schedule Batch Apex In Minutes/Hours?
Kumar
I am a working professional in mnc company I have 3 years of experience in giving salesforce admin development...
To schedule the batch class in minutes/hours, in the finish method we should use System.schedule method which will take 3 parameters Job Name, Chrone Expression and schedulable class instance name respectively.
/*** Scheduling in minutes or hours ***/
//Create object for schedulable class
SchedulableUsage su = new SchedulableUsage();
//Preparing chron_exp
Datetime sysTime = System.now();
sysTime = sysTime.addminutes(6);
String chron_exp = '' + sysTime.second() + ' ' + sysTime.minute() + ' ' +
sysTime.hour() + ' ' + sysTime.day() + ' ' + sysTime.month() + ' ? ' + sysTime.year();
System.schedule('Dep Update'+sysTime.getTime(),chron_exp, su);
read lessUrbanPro.com helps you to connect with the best Salesforce Certification Training in India. Post Your Requirement today and get connected.
Ask a Question
The best tutors for Salesforce Certification Classes are on UrbanPro
The best Tutors for Salesforce Certification Classes are on UrbanPro