An administrator has created a flow that sends platform events whenever an opportunity is updated. An Apex developer has been tasked to write code that listens for these events. When reviewing the debug logs for a user, the developer can
see that the flow ran, but the debug Information is missing.
What should the administrator recommend to assist with debugging?
A. Select the Debug Enabled checkbox on platform events, B. Platform events are unavailable for debugging. C. Set a debug log on the Automated Process entity. D. Search the AppExchange to And a tool that assists with debugging.
C. Set a debug log on the Automated Process entity.
Explanation
To debug platform events in Apex code, you need to set a debug log on the Automated Process entity. This entity represents an automated process user that runs flows and processes in your org. By setting a debug log on this entity, you can capture the events that are published and consumed by your flow and Apex code, as well as any errors or exceptions that occur during the execution. https://developer.salesforce.com/docs/atlas.enus.platform_events.meta/platform_events/platform_events_debug.htm https://help.salesforce.com/s/articleView?id=sf.code_add_users_debug_log.htmandtype=5
Question 82:
Ursa Major Solar allows its scientists to log new stars as they find them, but on occasion, they log the same star by mistake. The administrator wants scientists to be notified when a record is deleted and by whom, and to maintain their own discovery information.
What automation solution should be used to send the notification?
A. Heroku B. Process Builder C. Workflow Action D. flow
D. flow
Explanation
Flows are tools that automate business processes by collecting data and performing actions in your org or an external system. Flows can be triggered by various events such as record creation, updates, or invocations from other processes or
flows. Flows can also send email alerts as part of their actions. To send a notification when a record is deleted and by whom, and to maintain their own discovery information, an administrator can use a flow that runs when a record is deleted,
queries the record owner's email address and discovery information from another object or variable, and sends an email alert with those details.
An administrator created two record types on the Account object: Internal Customers and External Customers. A custom profile called Sales has the External Customers record type assigned. The sharing rules for Accounts arm set to Public Read Only. On occasion. Sales users notice that an Account record has the wrong record type assigned. The administrator has created a screen flow that will change the record type on the user's behalf.
What will happen to the Sales user's record access after running this flow?
A. Read access will be lost to the record. B. Edit access will be lost to the record. C. Record Access remains the same. D. A new record owner will be assigned.
C. Record Access remains the same.
Explanation
Record access remains the same after running the flow because changing the record type does not affect the sharing rules or the record owner. The Sales user will still have read and edit access to the account record based on their profile and the organization-wide default for accounts. The record type assignment only affects the page layout and picklist values that are available for the account record
Question 84:
AW Computing has a new requirement from its security team where audit information relating to an account must be recorded in a new custom object called Audit. Audit records need to be preserved for 10 years and only accessible by the audit team.
What relationship should be used to relate the Audit object to the Account object?
A. Master-Detail B. Lookup C. Many-To-Many D. Self
B. Lookup
Explanation
A lookup relationship creates a link between two objects. The child object can have its own security settings and does not inherit them from the parent object. This is suitable for audit records that need to be preserved and accessed by a specific team. https://trailhead.salesforce.com/en/content/learn/modules/data_modeling/relationships
Question 85:
AW Computers has enabled the feature for Contact to multiple Accounts. A rep is trying to remove the primary Account from a Contact but is unable to do so. The administrator has already updated the page layout to no longer require an Account.
What could be the issue?
A. Private Contacts need to be enabled in Setup. B. A primary Account relationship is required on a Contact regardless of the page layout settings. C. The Contact has indirect relationships to other Accounts. D. The Account Contact relationship record needs to be deleted first in order to disassociate the Contact from the Account.
B. A primary Account relationship is required on a Contact regardless of the page layout settings.
Explanation
A primary account relationship is a feature that allows you to link a contact to a single account as its primary account. A primary account relationship is required on a contact regardless of the page layout settings or the contact to multiple accounts feature. This means that you cannot remove the primary account from a contact, but you can change it to another account. You can also add secondary accounts to a contact if you have enabled the contact to multiple accounts feature. https://help.salesforce.com/s/articleView?id=sf.contacts_multiple_accounts.htmandtype=5 https://help.salesforce.com/s/articleView?id=sf.contacts_fields.htmandtype=5
Question 86:
Cloud Kicks users need to link multiple Case records to multiple Outcome records stored in a custom object. Any user that can view the Case record must be able to create a link. The administrator creates a Case Outcome custom object.
What is the recommended option to use when adding a field to Case Outcome?
A. Lookup relationship with Ready-Only sharing setting. B. Master-detail relationship with Read-Only sharing setting. C. Lookup relationship with Read/Write sharing setting D. Mater-detail relationship with Read/Write sharing setting
C. Lookup relationship with Read/Write sharing setting
Explanation
A lookup relationship with Read/Write sharing setting is the recommended option to use when adding a field to Case Outcome custom object. A lookup relationship is a type of relationship that links two objects together and allows users to associate one record with another. A lookup relationship does not affect the security or deletion of either record and can be optional or required. In this case, you can create a lookup relationship field on Case Outcome object that references Case object and allows users to link multiple Case records to multiple Case Outcome records. You can also set the sharing setting for the lookup field to Read/Write, which means that users who have access to the parent record can also access and edit the child record. https://help.salesforce.com/s/articleView?id=sf.relationships_lookup.htmandtype=5 https://help.salesforce.com/s/articleView?id=sf.relationships_considerations_lookup.htmandty pe=5
Question 87:
Users at AW Computing are receiving a duplicate message when they enter contacts with common first and last names. Management wants to improve the user experience but also keep the data Integrity of contacts.
What should an administrator implement for this issue?
A. Update the matching method on the rule from fuzzy to exact for First Name and Last Name. B. Change the duplicate rule to report Instead of alert so the message is avoided. C. Include the Email field to the existing matching rule for a more exact match. D. Add a secondary matching rule to the duplicate rule to match on the associated customer.
C. Include the Email field to the existing matching rule for a more exact match.
Explanation
A matching rule is a rule that defines how records are compared for duplication based on certain fields or fuzzy logic. By including more fields or changing the matching method, you can make the matching rule more or less strict and reduce false positives or negatives. In this case, including the email field to the existing matching rule for contacts can help avoid duplicate messages for common names by checking if the email addresses are also identical. https:// help.salesforce.com/s/articleView?id=sf.matching_rules_create.htmandtype=5 https://help.salesforce.com/s/articleView?id=sf.matching_rules_considerations.htmandtype=5
Question 88:
DreamHouse Realty currently deals only with single-family homes but is expanding its business it include condos in large cities. There are some features and amenities that inly apply to condos, such as the amount of a deposit and concierge services.
How should an administrator configure the Opportunity object to ensure that only relevant fields are displayed on the record?
How should an administrator configure the Opportunity object to ensure that only relevant fields are displayed on the record?
A. Build a Lightning component to display fields that only apply to condos. B. Create a Record Type for the type of property and custom page layouts for each. C. Configure a validation rule to display fields based on the type of property the user is viewing. D. Make is custom Lightning page to display specific fields based on the type of property.
B. Create a Record Type for the type of property and custom page layouts for each.
Explanation
A record type allows administrators to offer different business processes, picklist values, and page layouts to different users based on their profiles. By creating a record type for the type of property (single-family home or condo), DreamHouse Realty can assign different page layouts to each record type that display only relevant fields for each property type. The record type can also determine which sales process and path are available for each opportunity. https://help.salesforce.com/s/articleView?id=sf.customize_recordtype.htmandtype=5
Question 89:
The sales manager at Cloud Kicks (CK) wants to make sure the accounts that CK serves are happy. One way they track this is by how many open cases an account has with CK. The sales manager asks CK's administrator to build a report to show Accounts with Open Cases.
What report type would this be?
A. Bucket Report B. Joined Report C. Summary Report D. Matrix Report
B. Joined Report
Explanation
A joined report is a type of report that allows you to create multiple report blocks that provide different views of your data. Each report block can have its own fields, columns, sorting, and filtering. A joined report can only be created from summary or matrix reports. You can use a joined report to show data from different report types or data sources on a single report. In this case, you can use a joined report to show Accounts with Open Cases by creating two report blocks: one for accounts and one for cases with a filter for open status. You can then join the two blocks by a common field such as Account ID or Account Name. https://help.salesforce.com/s/articleView?id=sf.reports_joined_format.htmandtype=5 https://help.salesforce.com/s/articleView?id=sf.reports_examples_joined.htmandtype=5
Question 90:
A developer is getting errors for Production deployment. The test deployment in the Full sandbox, which included a local test run, was successful. The Full sandbox was last refreshed 2 weeks ago.
Where should the administrator check to see what was recently changed?
A. Salesforce Optimizer B. Dev Console C. Field History D. Setup Audit Trail
D. Setup Audit Trail
Explanation
Setup Audit Trail is a tool that tracks the recent setup changes made by anyone in an org. It can help identify who made what changes and when, as well as any errors or failures that occurred during the changes. Setup Audit Trail can help troubleshoot deployment issues by comparing the changes made in production with those made in sandbox
Nowadays, the certification exams become more and more important and required by more and more
enterprises when applying for a job. But how to prepare for the exam effectively? How to prepare
for the exam in a short time with less efforts? How to get a ideal result and how to find the
most reliable resources? Here on Vcedump.com, you will find all the answers.
Vcedump.com provide not only Salesforce exam questions,
answers and explanations but also complete assistance on your exam preparation and certification
application. If you are confused on your ADVANCED-ADMINISTRATOR exam preparations
and Salesforce certification application, do not hesitate to visit our
Vcedump.com to find your solutions here.