ExamGecko
Question list
Search
Search

List of questions

Search

Related questions











Question 168 - Certified Platform App Builder discussion

Report
Export

Universal Containers manages leads in a Lead qualification queue where sales reps can accept ownership of the Lead. Campaign members are required to have a sales owner.

What validation rule should an app builder configure?

A.
AND( ISBLANK(Lead.Owner.Id) )
Answers
A.
AND( ISBLANK(Lead.Owner.Id) )
B.
NOT(ISNEW() && ISBLANK(Lead.Owner:Queue.Id))
Answers
B.
NOT(ISNEW() && ISBLANK(Lead.Owner:Queue.Id))
C.
AND(ISNEW(), ISBLANK(Lead.Owner:User.Id))
Answers
C.
AND(ISNEW(), ISBLANK(Lead.Owner:User.Id))
D.
NOT(ISBLANK(Lead.Owner:Queue.Id))
Most voted
Answers (1)
Most voted
D.
NOT(ISBLANK(Lead.Owner:Queue.Id))
Suggested answer: C

Explanation:

The validation rule should be AND(ISNEW(), ISBLANK(Lead.Owner:User.Id)). This rule will prevent saving a new lead record if the owner is not a user. This will ensure that campaign members have a sales owner. Option A is incorrect because it will prevent saving any lead record if the owner is blank, which is not the requirement. Option B is incorrect because it will prevent saving an existing lead record if the owner is a queue, which is not the requirement. Option D is incorrect because it will prevent saving any lead record if the owner is a queue, which is not the requirement.

asked 23/09/2024
Lyboth Ntsana
43 questions
User
Your answer:
1 comments
Sorted by
Up
0
Down
User
Jacques Lesteven

Edited 10 days ago

Voted D

my answer

Reply
Reply
Report