Nested Lists in Apex | Salesforce Development tutorials for beginners

  Рет қаралды 17,861

Salesforce Hulk

Salesforce Hulk

Күн бұрын

In this video, Shrey has explained in detail the process to create a Nested List in Apex.
Watch the full video to understand.
Introduction to Nested Lists 00:00
You can also check our premium Salesforce Development Course which will include assignment, test series, and real-time industry level projects to give you a deeper insight into how everything works.
s2-labs.com/fr...
If you are looking to learn Salesforce Administrator and App Builder course, then check out our course on the following Platforms:
www.udemy.com/... - One of the Highest rated Course on Udemy
• Salesforce Administrat...
s2-labs.com/fr...
Grow your business with THE BEST SALESFORCE IMPLEMENTATION and CONSULTANCY SERVICES
Reach us out here: cyntexa.com​
Get the BEST SALESFORCE COURSES & TRAINING here s2-labs.com/​
Shrey is a Chief Executive Officer at Cyntexa, a SILVER Salesforce Consulting Partner in the USA, UK, UAE, Australia, Singapore & India, having a vibrant team of 100+ certified Salesforce experts, including developers and architects, consultants, administrators, and MVPs. Shrey took Cyntexa from 5 to 100+ people in less than 1.5 years while multiplying the revenues by 8 times. Shrey has been an entrepreneur since the age of 13 as he was buying and selling stuff and making money in the school itself. Shrey is the Youngest Salesforce MVP in the world who firmly believes in providing value to the people and building long-term value-based relationships. His mission is to disrupt the way professional technical services are delivered by bringing back empathy for the end-user rather than being operational and transactional. Shrey is popularly known as Salesforce Hulk in the Salesforce ecosystem as he was the first one to start creating videos on Salesforce on his KZbin channel named as Salesforce Hulk, and that too at the age of 19.
Shrey is also the founder of S2 Labs, a Salesforce Training Company, being the 1st one to start Salesforce training in Rajasthan, India, and currently selling his courses worldwide. Shrey is also a marvelous speaker who actively presents topics revolving around Salesforce and Entrepreneurship at various worldwide conferences. Shrey has also been a Judge in multiple technical and business hackathons organized by the Government of India, like the Smart India Hackathon. Shrey is a leader with out of the box thinking who emphasizes not only on hitting the sales targets but also providing an amazing experience to the customers and employees. Shrey believes in building a team with strong values, ethics, and behavior, leading to the amazing culture at Cyntexa.
STALK SHREY ON:
Instagram: / ​
Facebook: / ​
Twitter: / iamshreysharma​
LinkedIn: / imshreysharma
And for getting more Updated on Salesforce Follow:
Facebook: / s2labs.shrey
Linkedin: / admin
twitter: / s2_labs
Instagram: / s2_labs
#salesforce #SalesforceHulk #Salesforcedeveloper #learnsalesforce

Пікірлер: 16
@avinashvundemodalu5628
@avinashvundemodalu5628 3 жыл бұрын
Excellent video am searching nested list/set for this.. Could u upload one more video on nested list..
@mounikasriram1748
@mounikasriram1748 3 жыл бұрын
Could you please tell me how to display a single value..like a particular index value
@gopinathvs5169
@gopinathvs5169 Жыл бұрын
Should every list in a nested list have same count of index values for it run? Or can it be in different count of values.
@manojnekkanti845
@manojnekkanti845 2 жыл бұрын
This vedio is very usefull, and tq u for the vedio
@davidi6773
@davidi6773 2 жыл бұрын
Hi! Can you make a video about nested maps? Thanks!
@shanmaheshwari3648
@shanmaheshwari3648 2 жыл бұрын
List l1 = new List{2,4,6}; List l2 = new List{3,6,9}; List l3 = new List{4,8,12}; List list1 = new List{l1,l2,l3}; can we do like this ??
@RameshKumar-cc8du
@RameshKumar-cc8du Жыл бұрын
yes we can do that
@abaanshaikh8521
@abaanshaikh8521 2 жыл бұрын
How can you access a particular element from a list ?
@umakantsaini9286
@umakantsaini9286 3 жыл бұрын
Hi Shrey, In Graduation, I have completed BSc(PCM). And now I'm a CSS Developer with 3+ yrs experience. Can i switch to salesforce. Plz suggest me.. Plz plz...
@shubhamchaudhary5916
@shubhamchaudhary5916 3 жыл бұрын
surely... start learning from trailhead and utube and get certified
@unboxingcheck
@unboxingcheck 3 жыл бұрын
Yes
@tonaadefokun1
@tonaadefokun1 2 жыл бұрын
I keep getting this error: Initial expression is of incorrect type, expected: List but was: List Can anyone help?
@megheshshenoy
@megheshshenoy 2 жыл бұрын
Here its is : The data type you defined is [ [[1,2,3],[2,3,5],[....]] ]but what you are trying to insert in it is [1,2,3] so it should be List of Integers into another List
@nareshkandregula7124
@nareshkandregula7124 2 жыл бұрын
Can you please provide notes?
@Siddharth1012
@Siddharth1012 2 жыл бұрын
not able to get the result in desired format for 2d . List l12 = new list (); List l13 = new List {1,2,3}; List l14 = new list {4,5,6}; List l15 = new list {7,8,9}; l12.add(l13); l12.add(l14); l12.add(l15); system.debug(l12); debug only - ((1,2,3),(4,5,6,),(7,8,9)) - can someone help?
@RameshKumar-cc8du
@RameshKumar-cc8du Жыл бұрын
instead of system.debug(l12) directly, you can try this instead to get the 2d format System.debug(l12[0]); System.debug(l12[1]); System.debug(l12[2]); hope you get it.
Sets in Apex | Learn salesforce Development from scratch
3:18
Salesforce Hulk
Рет қаралды 11 М.
АЗАРТНИК 4 |СЕЗОН 1 Серия
40:47
Inter Production
Рет қаралды 1,4 МЛН
the TRUTH about C++ (is it worth your time?)
3:17
Low Level Learning
Рет қаралды 703 М.
What are sObjects in Salesforce? | Salesforce Development Tutorials
19:45
SOQL Keywords | Learn Salesforce Development
37:37
Salesforce Hulk
Рет қаралды 19 М.
Salesforce How-To Thursdays - Download All the Files in Your Salesforce Org!
10:08
21 Knots Salesforce Solutions
Рет қаралды 10 М.
List Array Notation in Apex | Salesforce Development Course
12:42
Salesforce Hulk
Рет қаралды 16 М.