Salesforce For Beginners by MVP Sharif Shalan
Kindle Edition:
https://amzn.to/3fYpFF1
Hard Copy:
https://amzn.to/3huS0mM
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
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
Which of these actions can be triggered from a Workflow?
Anonymous Quiz
85%
Field Update, New Task, Email Sent, Outbound Message
9%
Field Update, Email Sent, APEX Trigger, New Task
2%
Email Sent, Field Update
4%
Create Object, New Task, Email Sent
What is the maximum number of Components available on a Dashboard?
Anonymous Quiz
30%
10
20%
50
7%
30
43%
20
Where we can display lightning components
Anonymous Quiz
4%
Salesforce1 Mobile app
8%
Lightning Experience
0%
Template-based community
3%
Standalone Lightning app
85%
All
t.me/salesforcegeek guys share the channel link to your friends to join the Quiz😊
We can not integrate Lightning components with another framework, such as Angular?
Anonymous Quiz
66%
False
34%
True
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
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
YouTube
Summer '20 Salesforce Flows - YouTube
Salesforce-Administrator-JD-External.pdf
206.5 KB
Salesforce-Administrator-JD-External.pdf
What is a correct pattern to follow when programming in Apex on a multitenant platform?
Anonymous Quiz
30%
A.USE THE WITH SHARING KEYWORDWHEN DECLARING AN APEX CLASS TOPREVENT ACCESS FROM OTHER SERVERTENANTS
44%
B. USE QUERIES TO SELECT THE FEWESTFIELDS AND RECORDS POSSIBLE TOAVOID EXCEEDING GOVERNOR LIMITS.
20%
C. CREATE APEX CODE IN A SEPARATEENVIRONMENT FROM THE SCHEMA TOREDUCE DEPLOYMENT ERRORS.
7%
D.RUN DATA MANIPULATION LANGUAGE ON ONE RECORD AT A TIME TOAVOID POSSIBLE DATA CONCURRENCYISSUES
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?
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?