Learn Salesforce Developer from the Best Tutors
Search in
Answered on 20/01/2021 Learn Salesforce Developer
Nikhil Bajaj
Software Professional with 15+ Vast experience
Lesson Posted on 19/02/2020 Learn Salesforce Developer
Venkatramana Kapavari
I had an overall 9 years of Exp in IT & different domains. In SFDC Admin, Development & Training,I had...
Answered on 30/08/2018 Learn Salesforce Developer
Himanshu Tripathi
Learn Salesforce Developer from the Best Tutors
Answered on 23/05/2018 Learn Salesforce Developer
RAJIV KUMAR SINGH
Trainer
Lesson Posted on 09/03/2018 Learn Salesforce Developer
Salesforce Certification Course
MindScripts Technologies
MindScripts is a leading IT training institute in Pune which has been successful in providing IT training...
Answered on 01/03/2018 Learn Salesforce Developer
Venkatramana Kapavari
Salesforce Programmer Developer & Trainer. Total 10.4 Yrs In IT & 6.9 Yrs in SFDC Programming Devel
1.update resume in Naukri.
2.Daily prepare.
3.Weekly twice attend the interview?
4.Avoid all mistakes
5.Daily Practice, Practice,Practice, Practice,Practice, Practice,Practice, Practice,Practice, Practice.
All the best. Infinite Jobs are there, but need to do finite things Daily.
read less
Learn Salesforce Developer from the Best Tutors
Lesson Posted on 05/08/2017 Learn Salesforce Developer
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 Developer
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 lessLesson Posted on 05/08/2017 Learn Salesforce Developer
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 Developer from the Best Tutors
Lesson Posted on 05/08/2017 Learn Salesforce Developer
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 Developer Training in India. Post Your Requirement today and get connected.
Ask a Question
The best tutors for Salesforce Developer Classes are on UrbanPro
The best Tutors for Salesforce Developer Classes are on UrbanPro
Book a Free Demo