Salesforce Geeks
12.9K subscribers
1.18K photos
7 videos
45 files
1.7K links
If your Goal is to learn Salesforce as Quickly as possible, Join this like minded Salesforce Folks Community.

Salesforce Free & Paid Courses - https://bit.ly/cloudpadhle-courses

youtube: youtube.com/salesforcegeek

NOTE : Dumps = Permanent Ban
Download Telegram
Do you know about Non Setup Objects?
Anonymous Poll
41%
Yes
59%
No
Salesforce For Beginners by MVP Sharif Shalan
Kindle Edition:
https://amzn.to/3fYpFF1
Hard Copy:
https://amzn.to/3huS0mM
Opportunity to Win Udemy LWC course Voucher by MVP Amit Singh aka sfdc Panther https://twitter.com/digitalbhardwaj/status/1287233448306831369?s=20

To register for the session: https://bit.ly/JSD-S

30 minutes left
What number of solution records can be imported via import wizard?
Anonymous Quiz
3%
500
82%
50000
10%
5000
6%
None of the Above
Would you like more Quiz Questions?
Anonymous Poll
99%
Yes
1%
No
What is the maximum number of Components available on a Dashboard?
Anonymous Quiz
30%
10
20%
50
7%
30
43%
20
t.me/salesforcegeek guys share the channel link to your friends to join the Quiz😊
Can we make one component inherit styles/css from a parent component
Anonymous Quiz
13%
No
87%
Yes
We can not integrate Lightning components with another framework, such as Angular?
Anonymous Quiz
66%
False
34%
True
Is Lightning an MVC framework?
Anonymous Quiz
59%
Yes
41%
No
If the Org Wide Default is Public Read/Write, what feature in Salesforce is needed to restrict access to that object?
Anonymous Quiz
13%
Record Type
16%
Role Heirarchy
8%
Page Layout
63%
Profile
Learn MOAR About Summer '20 Salesforce Lightning Flow:

1. Start flows from a record save or a platform event.
2. Track the usage of your org’s screen flows.
3. Say hello to easier-to-configure loops.
4. Pass the whole record directly into your flow.
5. Better debugging for flawless flows!

I covered most of them in scenario based detail videos so check out the Summer '20 updates playlist:-
https://www.youtube.com/playlist?list=PL9kdg63vJl6Ac-N6IkwLO1tgzWBu0xw3w
Salesforce-Administrator-JD-External.pdf
206.5 KB
Salesforce-Administrator-JD-External.pdf
A developer has the following trigger that fires after insert and creates a child case whenever a new case is
created.
List<Case> childCases = new List<Case>();
for (Case parent : Trigger.new )
{
Case child = new Case(ParentId = parent.Id, Subject = parent.Subject);
childCases.add( child );
}
insert childCases;
Which unexpected behavior happens after the code block executes?