Workflow and Automation (8%) Flashcards

1
Q

An admin is working in an org with multiple Validation, Escalation, Assignment, and Workflow rules. What is the correct sequence of rule that are processes that the admin needs to keep in mind? Choose 1

A.) Escalation rules, Assignment Rules, Workflow rules
B.) Escalation rules, Validation rules, Workflow rules
C.) Assignment rules, Workflow rules, Validation rules
D.) Validation rules, Assignment rules, Workflow rules

A

D.) Validation rules, Assignment rules, Workflow rules

According to the order of execution in SFDC, events are executed as follows: Validation rules, Assignment rules, Auto-response rules, Workflow rules (with immediate actions) & Escalation rules.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

A sales rep should be sent an email if a high priority case is created for an account that they own. How can this be configured? Choose 1

A.) Create a workflow rule to send an email alert to the account owner
B.) Create an escalation rule to notify the account owner
C.) Enable field history tracking to send an email alert to the account owner
D.) Create an auto-response rule to send an email alert to the account owner

A

A.) Create a workflow rule to send an email alert to the account owner

A workflow rule and email alert could be used to send an email when a high priority case is created. For the case object, the Account Owner can be selected as a recipient in an email alert.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

In an approval process, the approval is assigned to a queue. If all members of the queue need to be notified of the pending approval, what needs to be configured? Choose 1

A.) Create an email notification template
B.) Configure the queue to send an email to queue members
C.) Enable email notifications in the approval process
D.) Create a notification action in the approval process

A

B.) Configure the queue to send an email to queue members

When the assigned approver is a queue, approval request emails are sent to the queue email address. If the queue is set up to send an email to members, approval request emails are also sent to the queue members, unless their approval user preferences are set to never receive approval request emails. If an email template is not specified, an email using a standard template is sent.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

New Computing uses SFDC for managing custom support. There are more than 100 support cases open in its service cloud application. The Support Manager wants to ensure that if the support engineer does not start working on a case after 24 hours, an email should be generated for the support lead and the manager himself. What is the best way for the admin to achieve this? Choose 1

A.) Create a validation rule to generate an email
B.) Create a workflow rule to generate an email
C.) Create an escalation rule to generate an email
D.) Write an Apex class to generate an email

A

C.) Create an escalation rule to generate an email

An escalation rule could be created to automatically escalate the case when it meets the criteria. Rule entries can include escalation actions that can send email notifications to the case owner and additional recipients.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

When creating a workflow rule, which of the following are valid workflow evaluation criteria? Choose 3

A.) Every time a record is created
B.) Every time a record is created and every time it’s edited
C.) Every time a record is created and any time it’s edited subsequently to meet criteria
D.) Every time a record is deleted
E.) Every time a record is edited and any time it’s edited subsequently to meet criteria

A

A.) Every time a record is created
B.) Every time a record is created and every time it’s edited
C.) Every time a record is created and any time it’s edited subsequently to meet criteria

Workflow rules evaluate the rule when a record is created, and every time it is edited to subsequently meet criteria

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

An admin is considering the use of workflow rules for a new custom object Application. When are workflow rules evaluated? Choose 1

A.) Before triggers
B.) Before assignment rules
C.) After triggers
D.) Before auto-response rules

A

C.) After triggers

Workflow rules are evaluated after triggers, assignment rules, and auto-response rules

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

The customer service agents of Cosmic Service Solutions use a Chatter group to share recommendations related to support. A service manager is the owner of the group. The admin of the company has been asked to automate the creation of a post on the manager’s Chatter feed whenever the number of members in the Chatter group increases or decreases. What automation tools can be used to meet this requirement? Choose 2

A.) Process Builder
B.) Apex Trigger
C.) Workflow Rule
D.) Flow

A

A.) Process Builder
D.) Flow

For this requirement, a process can be created on the “Group” object using Process Builder. The “MemberCount” field on the object can be used to specify the criteria, based on which the process can be triggered. A “Post to Chatter” action can be used to create a Chatter post for the group’s owner, i.e. - the service manager. Whenever the “MemberCount” changes, a Chatter post can be automatically created.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Chris is an admin for Indiana Global Finance Corp. He had a meeting with the marketing manager who requested that if leads score more than 45 points, the lead status should be updated to “Qualified” and an email notification updating Marketing team members should be sent along with a task that will get assigned to the lead owner. The marketing manager wanted this scenario to be automated on lead update. Which options are the most efficient to meet this requirement? Choose 2

A.) Create one workflow rule with three actions; Email alert, Task creation, and Field update
B.) Create a Lead escalation rule with three actions; Email alert, Task creation and Field update
C.) Use Process Builder to create one process with multiple actions
D.) Create three different workflow rules

A

A.) Create one workflow rule with three actions; Email alert, Task creation, and Field update
C.) Use Process Builder to create one process with multiple actions

A workflow rule with three actions or Process Builder could be used to fulfill the requirements

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

A service manager wants to send an email reminder to customers who have failed their energy audit to schedule another audit after they have completed the required modifications. They want this to be done weekly for all the records that still have a failed audit status. How the admin easily fulfill this request? Choose 1

A.) Create a scheduled flow for the set of records that have a failed audit status to send an email
B.) Create a batch Apex for the records that failed the energy audit and schedule Apex to send the email
C.) Create a process using Process Builder to select the records with a failed audit status and send an email reminder
D.) Create a workflow to select the records with a failed audit status and associate a workflow action to send an email

A

A.) Create a scheduled flow for the set of records that have a failed audit status to send an email

Using a scheduled flow, a set of records can be selected based on specified criteria. A “send email” action can be added to the flow to send an email reminder to customers who continue to have a failed audit status. This can also be done using Apex, using batch Apex to select the specific records and schedule Apex to send the email reminder. However, this is a more complex solution than using a declarative option such as flow. Processes and workflows only start when records are changed and can only send email alerts.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

An admin is considering the user of a cross-object workflow field update to update the parent record when a child record is modified. Which of the following are valid statements regarding the objects that are supported for cross-object field updates? Choose 2

A.) Some standard objects are supported for cross-object field updates from custom objects
B.) All standard objects are supported for cross-object field updates from custom objects
C.) All custom objects that are children of custom objects in a master-detail relationship are supported
D.) All standard objects that are children of standard objects in a master-detail relationship are supported

A

A.) Some standard objects are supported for cross-object field updates from custom objects
C.) All custom objects that are children of custom objects in a master-detail relationship are supported

Cross-object field updates work for all custom-to-custom master-detail relationships, some custom-to-standard master-details relationships, and a few standard-to-standard master-detail relationships.

Some of the standard objects that support cross-object field updates are custom objects are Account, Contact, and Case. Standard-to-standard master-detail relationships that are supported include the following:

  1. ) Opportunity Product updating Opportunity
  2. ) Opportunity updating Account
  3. ) Case Comments updating Case
  4. ) Email updating Case
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

The Sales Director wants to be notified when Opportunities are created with an Opportunity value of more than $100,000. How can an admin accomplish this in Lightning? Choose 2

A.) Create a reminder alert for the Sales Director that will appear on the home page when they log in
B.) Create a popup notification alert for the Sales Director based on the opportunity amount field
C.) Create a workflow rule and associate a workflow action to send email alert based on the opportunity amount field
D.) Create a process using Process Builder that will trigger a custom notification when the opportunity value meets the required amount

A

C.) Create a workflow rule and associate a workflow action to send email alert based on the opportunity amount field
D.) Create a process using Process Builder that will trigger a custom notification when the opportunity value meets the required amount

A workflow rule can be created to send an email alert when a defined criteria is met. A process can be created using Process Builder to send a notification when a defined criteria is met. When creating a custom notification type, the user can choose to send to the desktop as a browser notification or mobile phone as a push notification, or both. Additional actions, like task creation, can also be automatically added along with the notification.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Chris is an admin who has received a request from his support team manager to create a workflow rule for the case record. The manager requested that every time a support agent updates a case which has a cost value of more than $1000, an email should be sent to the manager’s mailbox that includes the case number and case owner. What should the evaluation criteria be that the admin chooses when creating a workflow rule? Choose 1

A.) When a record is created
B.) When a record is created, and every time it’s edited
C.) When a record is edited, and any time it’s edited to subsequently meet criteria
D.) When a record is created, and any time it’s edited to subsequently meet criteria

A

B.) When a record is created, and every time it’s edited

The evaluation criteria for the workflow rule here should be such that it is run whenever a case that satisfies the given condition is updated by a support agent.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

A Sales manager would like to have an email alert sent to all the sales team members every time an opportunity with an amount greater than $75,000 is updated by a sales representative. The admin is creating a workflow rule to meet the requirement. What should be the evaluation criteria of the workflow rule? Choose 1

A.) When a record is created, and any time it’s edited to subsequently meet criteria
B.) When a record is created, and every time it’s edited
C.) When a record is created
D.) Every time a record is edited

A

B.) When a record is created, and every time it’s edited

Since the requirement is to trigger an email alert every time an opp with a value greater then $75,000 is updated, the option “created, and every time it’s edited” should be selected, so that any updates to the record trigger the email as long as the opp value doesn’t go below $75,000

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

After an Account Plan is completed it goes to a Sales Manger for approval. A Sales Manager has reviewed the plan but would like to update one of the fields in the plan before approving it. What is true regarding editing records that have been submitted for approval? Choose 1

A.) Only an admin can edit a record that is locked by an approval process
B.) Once a record is submitted it is locked and cannot be edited
C.) It is possible for an approver to edit a record locked by an approval process
D.) The Sales Manger would need to reject the record to unlock and edit it

A

C.) It is possible for an approver to edit a record locked by an approval process

When an approval process is set up, there is an option to specify if only an administrator of the administrator and the currently assigned approver can edit records during the approval process.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Cosmic Lights uses the standard Contact object to store information about people associated with B2B companies that purchase the products manufactured by the company. A custom object is used to store information about sales orders. When a person associated with a company purchases a product, a custom field on that person’s contact record is updated by a salesperson manually. When this field is updated, an SFDC survey should be sent to the person to gather certain information, such as the reason behind the purchase and how their previous purchases influenced the recent purchase decision. What solution should be recommended to meet this requirement? Choose 1

A.) Create a workflow rule that sends an outbound message to a third-party survey application when the value of the custom field changes
B.) Create a flow using Flow Builder to send a survey invitation to the contact automatically when the value of the custom field changes
C.) Create an Apex trigger that send a survey invitation to the contact when the value of the custom field changes
D.) Create a process using Process Builder that executed an action type called “Send Survey Invitation” when the value of the custom field changes.

A

D.) Create a process using Process Builder that executed an action type called “Send Survey Invitation” when the value of the custom field changes.

A process can be created using Process Builder to execute an action type called “Send Survey Invitation”. This action type can be utilized to automatically email survey invitations to leads, contacts, or users. In this case, the process can be triggered automatically when the value of the custom field changes.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

When specifying rule criteria for a Workflow, which of the following options can be used in the rule criteria? Choose 2

A.) A formula
B.) A CAPTCHA code
C.) A formula and combination of field criteria at the same time
D.) A combination of field criteria

A

A.) A formula
D.) A combination of field criteria

Workflow criteria can be specified EITHER as a combination of field value comparisons OR as a formula evaluation, but not both at the same time. A CAPTCHA code is not an option that can be selected when specifying rule criteria for a workflow.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

An admin wants to convert a lead automatically based on certain criteria and send an email to the related contact one day after lead conversion. Howe can this be achieved? Choose 1

A.) Use a time-based approval process to email the contact one day after the lead conversion is approved
B.) Set a time-based workflow rule to email the new contact
C.) This can not be done automatically, the email must be sent manually
D.) Use process builder with a flow action to convert the lead and add a Wait element to set a one day wait period to automatically email the contact

A

D.) Use process builder with a flow action to convert the lead and add a Wait element to set a one day wait period to automatically email the contact

The Wait element can automate processes that require a time-based waiting period. A Wait element can be added to a flow and configured for the events if needs to wait for. Setting a time-dependent action can be added to a workflow rule but since the requirement also needs to convert the lead, this option will not satisfy the requirement. The requirement needs leads to be converted automatically based on criteria so an approval process is not necessary. A time-dependent action is also not available as an approval action option in an approval process.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

Which users can approve or reject email approval requests via email? Choose 1

A.) Approvers specified in the approval process only
B.) All active users
C.) No users can approve or reject a request via email
D.) Approvers specified in the approval process and all delegated approvers

A

D.) Approvers specified in the approval process and all delegated approvers

All approvers and delegated approvers can approve or reject email approval request by replying to those requests via email.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

The admin has been asked to create a workflow rule that will send an email alert to the opp owner and senior managment when an opp has an amount great than $100,000. Also, a follow-up task should be created for the opp owner if the deal is still open when the close date passes. What evaluation criteria and action should the admin choose? Choose 1

A.) Every time a record is created and associated a workflow task
B.) Every time a record is created/edited and associate a workflow email alert
C.) Every time a record is created and every time it’s edited to subsequently meet criteria, and associate an outbound message
D.) Every time a record is created and every time it’s edited to subsequently meet criteria, and associate an email alert and a workflow task

A

D.) Every time a record is created and every time it’s edited to subsequently meet criteria, and associate an email alert and a workflow task

In this scenario, both an email alert and a workflow task action should be created and associated with the workflow rule when a record is created or saved to meet the criteria.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

During a meeting with sales managers, the admin is asked the diff ways that they can approve or reject discounts. Where can approval requests be approved or rejected? Choose 3

A.) Chatter
B.) Via email
C.) Approver Settings
D.) Approval Process in Setup
E.) Salesforce mobile app
A

A.) Chatter
B.) Via email
E.) Salesforce mobile app

Approval requests can be approved or rejected in Chatter, via email, and in the Salesforce mobile app.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

Global Contianers has two sales managers overseeing all sales reps. These managers need to approve discounts greater than 25%. Discounts must be approved by both managers. how can the admin meet this requirement? Choose 1

A.) Approval Process (Based on First Response)
B.) Create Tasks to request approval
C.) Send notification email using Workflow
D.) Approval Process (Unanimous Decisions)

A

D.) Approval Process (Unanimous Decisions)

An approval process can be configured to require unanimous approval from all selected approvers (and is rejected if one approver rejects). First response would not be appropriate as the discount request would get approved or rejected based on the first manager’s response.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

An admin has written an approval process for the finance director to approve expense reports. Choose 3

A.) Field Update
B.) Email alert
C.) Call Apex
D.) Task 
E.) Record Creation
A

A.) Field Update
B.) Email alert
D.) Task

Final approval actions that can be triggered include task, email alert, field update, and outbound message. Final approval actions do not include record creation or call Apex.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
23
Q

An admin has been asked to create a time-dependent workflow rule. This rule should be executed when opportunity records are created. It should send an email reminder to the account team if a high-value opportunity is still open ten days before the specified close date. Howe can the admin monitor the execution of this rule in SFDC? Choose 1

A.) Use Setup Audit Trail to monitor the workflow rule execution
B.) use debug log to monitor the workflow rule execution
C.) Manually check the execution of the rule after ten days be specifying a personal email address as the recipient
D.) Monitor “time-based workflow” queue in Setup

A

D.) Monitor “time-based workflow” queue in Setup

An admin can navigate to “Time-based workflow” in Setup to monitor and cancel any ending time-dependent workflow actions that are placed in a queue.

24
Q

A new VP of sales joined TrueGlobal Inc. TrueGlobal users AFDC for managing their global sales operations. The VP of sales wants to receive an email alert if a deal stage is change to Closed Lost and the amount was greater than #1,000,000. What evaluation criteria should the admin choose while creating this workflow rule? Choose 1

A.) When a record is created
B.) When a record is edited, and any time it’s edited to subsequently meet criteria
C.) When a record is created and every time it is edited
D.) When a record is created and any time it’s edited to subsequently meet criteria

A

D.) When a record is created and any time it’s edited to subsequently meet criteria

In this case, the workflow should run only when the record is edited and previously did not meet the evaluation criteria and now does meet the evaluation criteria, but not every time it is edited and it still meets the evaluation criteria.

25
Q

Sandeep, the admin at Cosmic Computers, created a new workflow rule. The new workflow creates a reminder task for the case owner, with a reminder date 7 days away when a case has its status updated to “Working”. After the new workflow has been activated, Sandeep discovers in his testing, that no reminder task is being created as expected when he updates a case status to “working”. What might explain this? Choose 1

A.) The rule evaluation criteria is set to “Created” only
B.) The rule evaluation criteria is set to “created, and any time it’s edited to subsequently meet criteria”
C.) The rule evaluation criteria is set to “every time a record is edited” only
D.) The rule evaluation criteria is set to “Every time a record is edited” only
E.) The rule evaluation criteria is set to “Created, and Every Time it’s edited”

A

A.) The rule evaluation criteria is set to “Created” only

When the rule evaluation criteria for a workflow is set to “created” only, the rule will not be evaluated after the case is first saved. So if Sandeep updated the case status manually (which is implied), then saved the record, the workflow rule criteria will not be met. The other two possible workflow rule evaluation criteria options, if either was selected for this rule, should both result in as task being created. These are “Created, and any time it’s edited to subsequently meet criteria” and “Created, and every time it’s edited”. The other option provided “Every time a record is edited” only, is not a valid option for workflow rule evaluation criteria

26
Q

Which of the following statements are true regarding a delegated approver? Choose 2

A.) A delegated approver is an appointed user with approver permissions
B.) Delegated approvers can reject an approval request
C.) Delegated approvers can reassign approval requests
D.) A delegated approver is specified while defining an approval process

A

A.) A delegated approver is an appointed user with approver permissions
B.) Delegated approvers can reject an approval request

A delegated approver is a user who was designated as an alternate approver. This user receives the same approval requests as assigned approvers.

27
Q

Cosmic Solutions has recently implemented a policy that sales reps need to seek approval from their manager if they want to give a discount of more than 20% on a sales deal. Once the manger has given his approval, the “Approved by Manager” and “Approval Date” fields on the opp should be updated. The sales rep should also receive an email confirmation that the discount is approved. Which of the following automated actions would be necessary while defining an approval process for this requirement? Choose 2

A.) Create a Record
B.) Email Alert
C.) Field Update
D.) Task

A

B.) Email Alert
C.) Field Update

The email alert action would be necessary to send an email to the sales reps once the opp has been approved. Two “Field Update” actions would be necessary to update the “Approved by Manager” and “Approval Date” fields on the opp. The “Create a Record” action type is available for processes created in the Process Builder. Is it also unnecessary for this requirement since the creation of a new record is not needed.

28
Q

Cosmic Solutions has a custom object called Weekly Employee Summary, which stores a summary of employee data that tracked in SFDC, such as hours worked and wage totals. An autolaunched flow has been built to calculate this information and create a new Weekly Employee Summary record for each employee every time it is run. Currently, an admin needs to run this flow manually once a week. they would like this flow to be run automatically in the future. Which solutions would meet this requirement? Choose 2

A.) Invoke the flow from an Apex job that runs weekly
B.) Use Process Builder to invoke the flow to run weekly
C.) Schedule the autolaunched flow to run weekly
D.) Create a workflow rule that launches the flow weekly

A

A.) Invoke the flow from an Apex job that runs weekly
C.) Schedule the autolaunched flow to run weekly

The simplest solution is to invoke an autolaunched flow based on a schedule. Schedule-triggered flows can be configured to start on a specified date and time, with several frequency options. The scheduling configuration can be accessed by editing the flow’s Start node.

A more complex solution would be to invoke the flow from an Apex class that implements the Schedulable interface, then schedule the class to run weekly. Process Builder and workflow rules cannot be scheduled to perform actions

29
Q

The Sales Manger of Cosmic Solutions has been assigned a task to create an automated system for processing discounts on Opps. Discount rates of up to 40% require the Sales Manager’s approval. If the discount rate is more than 40%, it requires the CEO’s approval. Which automation solution is appropriate for this scenario? Choose 1

A.) Process Builder
B.) Schema Builder
C.) Approval Process
D.) Workflow Rules

A

C.) Approval Process

An approval process is the ideal SFDC declarative option to be used in this case. Two approval steps with criteria reflecting the discount percentages that require approval can be defined. A business process request is defined, and it is automated using an approval process.

Schema Builder is used for defining the data model. Process Builder and Workflow Rules help automate business processes when a record is created or when a record is edited, and they are not the declarative options that can be used to define an approval process which requires an approval step.

30
Q

John modifies a record in SFDC. This modification triggers a workflow rule for immediate execution that includes a field update on the current record. After the execution is complete, what user will be listed under the “Last Modified” field of this record. Choose 1

A.) The last user to modify the record prior to John
B.) The default workflow user
C.) John
D.) The designated workflow user

A

C.) John

Workflow follows the user actions. If the user is authorized to perform the action, they will be the user recorded for the automated actions done by the workflow.

31
Q

What action is possible with Workflow is not possible with Process Builder? Choose 1

A.) Field update
B.) Send an outbound message
C.) Send an email
D.) Create a record

A

B.) Send an outbound message

Process Builder allows the following actions; call Apex, create a record, send an email, trigger an auto-launched flow, post to Chatter, quick actions, call another process, Quip actions, send a custom notification, submit for approval, and update records. Process Builder does not include the direct outbound message action. Workflow is the simplest way to send outbound messages.

32
Q

The sales manger would like to receive a notification when opps with a high dollar value reach 60% probability and also at 80% probability. How can an admin accomplish this? Choose 1

A.) Validation Rules
B.) Big Deal Alerts
C.) Workflow Rules
D.) Email Alerts

A

C.) Workflow Rules

Although a Big Deal Alert can be set up to send an email notification when an opportunity reaches a certain probability and is equal or greater to a certain amount, only one Big Deal Alert can be set up at a time. Workflow rules can be used to send email notifications based on the opportunity probability and opportunity amount.

33
Q

The admin for Mountaineers is using workflow to automate ordering inventory. What are the types of actions the admin can use with workflow? Choose 1

A.) Field update, task creation, email alert, and outbound message
B.) Field update, task creation, email alert, and record creation
C.) Field update, task creation, email template, and outbound message
D.) Field update, event creation, email alert, and record update.

A

A.) Field update, task creation, email alert, and outbound message

Workflow actions include field updates, task creation, email alerts, and outbound messages. There are no workflow actions called event creation, record creation, and email template.

34
Q

Quotes that are discounted more than 20% need Sales Director approval. how can this requirement be met? Choose 1

A.) Create a validation Rule to check the discount percentage
B.) Create a Workflow to assign the quite to the Sales Director
C.) Create an Approval Process on the quote with an entry criteria on the quite discount percentage
D.) Create an Approval Process on the opportunity with an entry criteria on the opportunity discount percentage

A

C.) Create an Approval Process on the quote with an entry criteria on the quite discount percentage

An Approval Process can be enabled on the Quote object with an entry criteria that only runs if the quote discount percentage is greater than 20%

35
Q

Sam, the sales manager, wants to automatically update the discount percentage field on the Opportunity object record that is created or updated depending on the opportunity expected revenue amount. Which of the following options is the best solution in this scenario? Choose 1

A.) Validation Rules
B.) Approval process
C.) Flow
D.) Workflow Rule

A

D.) Workflow Rule

A workflow rule is the most appropriate solution in this case as the data that will be used to update the field resides on the record. It is used when the process automation complexity involves a single if/then statement.

36
Q

An admin will be creating several workflows for custom objects. What actions are possible using workflow? Choose 2

A.) Create a new detail record related to a master record
B.) Update a field to a new value using a formula
C.) Create an event and assign to a certain user
D.) Update a field on the master record when a field on the detail record changes

A

B.) Update a field to a new value using a formula
D.) Update a field on the master record when a field on the detail record changes

Workflow cannot create records, except for tasks. It is possible to update a field on a master record when a field on the detail record changes for all custom objects and some standard objects. This is a cross object field update.

37
Q

The support users of ABC Corp use a custom Date field called “Target Close Date” on case records to specify the date by which a case should be closed. The support director would like the value of this field to be auto-populated based on the chosen record type when a case is created. Which of the following can be used to meet this requirement? Choose 2

A.) Use a dependent picklist
B.) Create a validation rule
C.) Create a workflow rule that sets the target close date using an automatic field update action
D.) Define a default value using a formula that calculates the default target close date based on the record type

A

C.) Create a workflow rule that sets the target close date using an automatic field update action
D.) Define a default value using a formula that calculates the default target close date based on the record type

A default value can be defined for a custom field. The default value can use a formula to calculate the target close date, such as TODAY() + 30. The formula is executed once at record creation. It can use the IF and CASE functions to calculate the value of the “Target Close Date” field based on the record type. A workflow rule can also be used to set the target close date with a field update action. A validation rule or dependent picklist cannot be used to auto-fill the field value.

38
Q

In a business requirement gathering session, the Vice President of Sales asks the admin about when workflow rules can be triggered. Identify the correct evaluation criteria from the list that the admin shared with the business user. Choose 2

A.) When a record is deleted
B.) When a record is merged
C.) When a record is created
D.) When a record is updated

A

C.) When a record is created
D.) When a record is updated

There is no workflow criteria for when a record is merged or deleted.

39
Q

There is a business requirement for a reminder to be automatically sent to the Lead owner if it has not been converted 10 days after the created date. How would an admin accomplish this? Choose 1

A.) Create a time dependent workflow rule
B.) Create a future task to remind the lead owner
C.) Create a validation rule to check the current date against the create date
D.) Create an email reminder

A

A.) Create a time dependent workflow rule

A time dependent workflow can be set up to send an email 10 days after the lead creation date if it has not been converted.

40
Q

The admin of Cosmic Enterprises has set up a time-dependent workflow rule that will send an email 30 days before a renewal is due. The evaluation criteria is set to “Evaluate the rule when a record is created, and any time it’s edited to subsequently meet criteria”. What will happen if the renewal date is changed? Choose 1

A.) The workflow will still fire 30 days before the original date
B.) The workflow will fire 30 days before the adjusted date
C.) The workflow will not fire at all
D.) You cannot change the date if there is a pending workflow

A

B.) The workflow will fire 30 days before the adjusted date

When the workflow rule evaluation criteria is “Evaluate the rule when a record is created, and any time it’s edited to subsequently meet criteria”, SFDC re-evaluates the time triggers and adds the appropriate actions to the workflow queue. In this case, SFDC will re-evaluate and adjust the record in the workflow queue when the renewal date is changed.

41
Q

The admin has create a workflow rule to perform a status update on the Case record on insertion. The Support manager then requested him to add a time dependent action to trigger an email alert if the case with open status is not closed 7 days after opening. the admin tried to add a new action, however he is unable to do it. What could be the possible reason? Choose 1

A.) Time dependent workflow actions cannot be added to an existing rule. the admin must create a new workflow rule
B.) the admin should not add a time dependent workflow action rule; he should use a workflow queue to create one
C.) the admin can’t add time-dependent workflow actions to active workflows rules. Deactivate the workflow rule first, add the time-dependent workflow action, and reactivate the rule
D.) the admin should open a case with SFDC support to add a time dependent workflow action.

A

C.) the admin can’t add time-dependent workflow actions to active workflows rules. Deactivate the workflow rule first, add the time-dependent workflow action, and reactivate the rule

Workflow rules needs to be deactivated first before any time-dependent actions can be added.

42
Q

Universal Outfitter’s admin has created a workflow rule for the Account object. What happens to existing Account records if a workflow rule is added after they have been created? Choose 1

A.) Existing record are put in the workflow queue and processed if they meet the workflow criteria
B.) Existing records are only processes if the rule is set to trigger only when a record is created
C.) Existing records are only processed if the rule is set to trigger only when a record is created.
D.) It depends on the whether the “Run on Existing Records” option was selected on the workflow rule

A

B.) Existing records are only processes if the rule is set to trigger only when a record is created

Existing records are not processed retroactively. However, if the workflow rule is set to trigger when records are updated and meet this workflow criteria the workflow rule will be run. There is no “Run on Existing Records” option.

43
Q

When a new Lead is generated, an automated email notification should go to a sales user and for a task to be created for the same user for follow up. What will an admin need to configure to achieve this? Choose 1

A.) Formula Fields
B.) VisualForce Pages
C.) Workflow Rules
D.) Triggers

A

C.) Workflow Rules

A workflow rule could be created to trigger when a lead is created with two workflow actions; Send an email and Create a task. Since this could be configured with declarative features of Workflow, the admin does not need to have a developer write a trigger or create a VisualForce page. Formulas cannot fulfill this requirement.

44
Q

The admin for Global Shipping is utilizing Process Builder to automate business processes to increase productivity. What is true about what happens after Process Builder executes actions? Choose 2

A.) The process can evaluate multiple criteria
B.) The process can only evaluate the next criteria when an action group contains scheduled actions
C.) The process can only evaluate one criteria
D.) The process can stop after actions execute or continue evaluating the next defined criteria

A

A.) The process can evaluate multiple criteria
D.) The process can stop after actions execute or continue evaluating the next defined criteria

Processes can evaluate multiple criteria and execute actions from more than one criteria, but can only evaluate the next criteria if the action group does NOT contain scheduled actions.

45
Q

Hathawy Inc is using SFDC to support their global marketing operations. The Marketing manager requested their admin to automate the business flow to that marketing users need to get permission from their manager before they convert a Lead. How can the admin achieve this? Choose 1

A.) Create a Workflow rule to create a Task to request approval from the manager
B.) Create an Approval Process and mark the manager as an Approver
C.) Create an Approval Process marking the manager as an approver along with a new Lead Record Type that only displays the Convert button when the lead is approved
D.) A validation rule is sufficient to ensure approval from a manager

A

C.) Create an Approval Process marking the manager as an approver along with a new Lead Record Type that only displays the Convert button when the lead is approved

An Approval Process is used to automate the approval from the manager. Once the lead is approved,the record type can be changed and a different page layout displayed that has the Convert Lead button.

46
Q

The admin for Global Containers is automating approval processes. Which of the following tools can be used to submit records for approval? Choose 2

A.) Process Builder
B.) Workflow
C.) Validation Rules
D.) Flow

A

A.) Process Builder
D.) Flow

Process Builder and Flow can be used to submit records for approval. Validation rules are used to improve data quality in a SFDC org. It ensured that information entered by the user is according to the data quality standards of the org before it is saved.

Workflow can be used to update fields (record or parent), create tasks, send emails, send outbound messages, or publish Knowledge articles. However, it can be used to start an approval process.

47
Q

The sales manager needs to be notified when large opportunities are nearing the Closed Won stage. What can an admin create or use to fulfill this requirement? Choose 2

A.) Create a workflow rule, email template, and email alert
B.) Use the opportunity escalation rule
C.) Create a workflow rule and an email alert
D.) Create a process in Process Builder to send a notification

A

A.) Create a workflow rule, email template, and email alert
D.) Create a process in Process Builder to send a notification

A workflow rule can be created to send an email alert when the Opportunity criteria are met. In order to send the alert, a relevant email template must first be created. Escalation rules do not apply to opportunities, only cases.

48
Q

A workflow rule is set up to create a task for a sales rep to do a follow-up call when a member of the prequalification team updates the information of a potential client as qualified. The manger wants an automated solution to create a record for these qualified clients in a custom object. What should be done to fulfill this business requirement? Choose 1

A.) Create a new Workflow rule that will create a new record in the custom object
B.) Create a process using Process Builder that will create a new record in the custom object
C.) Create an approval process that will create a new record in the custom object
D.) Edit the existing Workflow rule to include the action to create a new record in the custom object.

A

B.) Create a process using Process Builder that will create a new record in the custom object

The business request is to automate the creation of a new record based on a record update, and as no approval is necessary, an approval process will not be appropriate. Workflow is only able to create task records so neither creating or editing a Workflow rule will satisfy the request. Process Builder is able to create new records as an automated action after an update to an existing record.

49
Q

An admin is choosing between Process Builder and Workflow for business automation. In which of the following situations would Workflow be preferred over Process Builder for automation? Choose 1

A.) A record needs to be created
B.) A child record needs to be updated
C.) A Chatter post needs to be created
D.) An outbound SOAP message needs to be sent without using Apex

A

D.) An outbound SOAP message needs to be sent without using Apex

Workflow can be configured to send a SOAP message using only clicks; Process Builder would have to invoke Apex code to achieve this. Process Builder can update any related record, while Workflow can only update the current record or its parent. Workflow can’t create new records to or post to Chatter.

50
Q

John Keither is the admin. his company would like to implement an approval process to automate the approval to close a case. The support engineer can close the case when the approval has been confirmed by the support team lead, support assistant manager or the support manager. How can John implement this? Choose 1

A.) An approval process with Unanimous approval should be implemented to send the record to multiple approvers in one step
B.) An approval process with First Response approval should be implemented to send the record to multiple approvers in one step
C.) An Approval process should be set up to have three different steps for each of the team lead, assistant manager and support manager
D.) Three approval processes should be set up, one each for the support team lead, support assistant manager and support manager

A

B.) An approval process with First Response approval should be implemented to send the record to multiple approvers in one step

Parallel approver routing is the ability to send approval requests to multiple approvers in a single step. The approver setting can be set to Unanimous or First Response. In a Unanimous parallel approval process, all approvers must approve a request before it is considered as approved. In First Response, only one of the approvers needs to approve the request.

51
Q

A support manager wants to create a workflow rule to help him automate some of the article management tasks for his department. Which two actions are available as Knowledge Actions that can then be associated with a workflow rule? Choose 2

A.) Review
B.) Publish as New
C.) Publish
D.) Create

A

B.) Publish as New
C.) Publish

Review and Create are not available Knowledge Actions that can be selected. Only Publish and Publish as New are available as selectable Knowledge Actions

52
Q

Robert is an admin at Global Communications. He has been asking to create a workflow rule field and is considering the evaluation criteria. Which of the following is NOT a rule evaluation criterion? Choose 1

A.) When a record is edited to subsequently meet criteria, but not when it it first created
B.) When a record is created
C.) When a record is created and every time it’s edited
D.) When a record is created & edited to subsequently meet criteria

A

A.) When a record is edited to subsequently meet criteria, but not when it it first created

Workflow rule evaluation criteria always include when the record was created.

53
Q

What does the admin need to be aware of when using Email Alerts? Choose 1

A.) The email content can be set when creating the email alert
B.) Email alerts use email templates that need to be set up previously
C.) Email alerts can only be sent to users and roles
D.) Only text-based emails can be sent with email alerts

A

B.) Email alerts use email templates that need to be set up previously

Email alerts use email templates that need to be set up before the email alert is created. Email alerts can be sent to users, roles, record owners, public groups and a number of other users related to the record. HTML and text based email can be sent.

54
Q

If a record meets one criteria, an email should be sent. If the record meets a different criteria, a task should be created. It is possible that a record meets both criteria. Choose 1

A.) Create one Workflow Rule with two Workflow Actions
B.) Define two Processes using the Process Builder
C.) Create two Workflow Rules
D.) Create on Process using the Process Builder

A

D.) Create on Process using the Process Builder

Two Workflow Rules could be created, however creating one process allows all actions on the object to be viewed and maintained together. After the Process Builder executes a specific action group, the next criteria can be evaluated or the process can stop. This allows for executing multiple action groups that have specific criteria.

55
Q

Fortune Inc has an internal employee portal (not SFDC) which is being accessed by their sales and support teams. During a business requirement discussion session, the sales team requested their admin to ensure that when any high value opportunity is closed, a message should e flashed on their portal congratulating the sales rep who has closed the deal. What should the admin implement to achieve this? Choose 1

A.) Create a workflow outbound message
B.) Create a workflow field update
C.) Create a workflow email alert
D.) Create a workflow task update

A

A.) Create a workflow outbound message

An outbound message allows you to specify that changes to fields within SFDC can cause messages with specified values to be sent to other external systems.