A company wants to ensure that when a user submits a catalog item for a new laptop, the request is automatically approved if the cost is under $1,000 and the user's department has sufficient budget. What is the best way to implement this requirement?
Trap 1: Configure a notification to inform the user of the approval status.
Notifications do not control approval logic.
Trap 2: Set up a Business Rule to approve all requests under $1,000.
Business Rules are not designed for approval decisions.
Trap 3: Use a Flow to send an approval request to the manager every time.
This would require manual approval, not automatic.
- A
Configure a notification to inform the user of the approval status.
Why wrong: Notifications do not control approval logic.
- B
Set up a Business Rule to approve all requests under $1,000.
Why wrong: Business Rules are not designed for approval decisions.
- C
Use a Flow to send an approval request to the manager every time.
Why wrong: This would require manual approval, not automatic.
- D
Create an Approval rule with conditions on cost and department budget.
Approval rules can auto-approve based on conditions.