78試験解答はSharing-and-Visibility-Architect最新版 テストエンジン [Q31-Q48]

Share

78試験解答はSharing-and-Visibility-Architect最新版 テストエンジン

合格確定Sharing-and-Visibility-Architect試験問最新のSharing-and-Visibility-Architect試験問題集PDF2025年更新

質問 # 31
Universal Containers has created a Reimbursement Custom Object to capture requests for reimbursement of expenses related to office supplies. The Reimbursement requests are sometimes sensitive and the Team Leads should not have access to the Reimbursement records submitted by the Users in the Call Center Agent role.
The Director of Support will require access to all Reimbursement records. The role hierarchy is set as follows:
Call Center Agent role reports to Team Lead role, which Reports to the Director of Support. Which steps would the Architect take to ensure proper sharing in this Role Hierarchy structure assuming Private Sharing Setting for the Reimbursement Object?

  • A. The sharing scenario described will occur without any special configuration choices being made by the Architect
  • B. Leave the Reimbursement Object in "Deployed" Status and set the Director of Supports Profile to "View All" in the object permissions.
  • C. Use an Approval Process to change the owner of the Reimbursement record upon submission to the Director of Support
  • D. Disable Grant Access Using Hierarchies for the Object and create a Sharing Rule to enable sharing to the Director of Support

正解:D

解説:
Explanation
Disabling Grant Access Using Hierarchies for the object and creating a sharing rule to enable sharing to the Director of Support are the steps to ensure proper sharing in this role hierarchy structure. This way, the Team Leads will not have access to the Reimbursement records of their subordinates, but the Director of Support will have access to all Reimbursement records. Option A is incorrect, as setting the View All permission on the profile will grant access to all users with that profile, not just the Director of Support. Option B is incorrect, as changing the owner of the Reimbursement record will remove the access from the original submitter. Option D is incorrect, as by default, Grant Access Using Hierarchies is enabled for custom objects, which means that Team Leads will have access to their subordinates' Reimbursement records.


質問 # 32
What is a workaround to ownership data skew?

  • A. You can minimize possible performance impacts by not assigning the user(s) to a role.

正解:A


質問 # 33
Universal Containers would like to control access to records and objects according to the following business requirements: Sales users can view all account records but only edit their own records. Sales managers can view all account records but only edit records of their team. Service users can view all account records that are not marked with a RecordType of Prospect.
Which organization-wide default configuration should an architect recommend to fulfill these requirements?

  • A. Private
  • B. Public Read Write
  • C. Public Read/Transfer

正解:A


質問 # 34
Which two are potential vulnerabilities in the following code snippet? <apex:page> <apex:form> <apex:outputText value="Enter Name"/> <apex:inputText value="{!name}" /> <apex:commandButton value="Query" action="{!query}" /> </apex:form> </apex:page> public class SOQLController { public String name { get { return name;} set {name=value;} } public PageReference query() { String qryString='SELECT Id FROM Contact WHERE '+ '(IsDeleted = false and Name like \'%' + name + '%\'}'; queryResult = Database.query(qryString); retunr null; } } Choose 2 answers

  • A. Data Access Control
  • B. SOQL Injection
  • C. FLS check
  • D. Arbitrary Redirects

正解:A、B


質問 # 35
Universal Container has developed a custom Visualforce page that will accept user input and must prefer returning the results to the users.
Which two techniques should be used to ensure the users cannot perform a SOQL injection attack?

  • A. Use the with Sharing keyword on the controller.
  • B. Use bind variable in the SOQL query.
  • C. Escape double quotes in the user input.
  • D. Use the escapesinglequotes() method to sanitize user input.

正解:B、D


質問 # 36
Universal Containers has a customer that meets criteria for two Enterprise territory Management territories (Portugal and Southern Europe).
What is necessary to assign opportunities to a territory for this account?

  • A. Create a criteria-based sharing rule on the Opportunity to assign It to a territory.
  • B. Create an Apex class that implement. Filter-Based Opportunity Territory Assignment
  • C. The territory with the highest Territory Type Priority is automatically assigned to the Opportunity
  • D. Create a Process Builder Process that updates the Territory field on the Opportunity

正解:C


質問 # 37
Sales operations at Universal Containers (UC) wants to create list views to filter opportunities for certain geographies.
How should UC hide list views that are not relevant to an individual user since there will be more than 50 list views?

  • A. Share the list views with the appropriate individual users.
  • B. Share the list views with the appropriate role and internal subordinates.
  • C. Share the list views with the appropriate queue.

正解:B


質問 # 38
Universal Containers has a Performance Feedback custom object (Private organization-wide default) used by customers to report any Issues with delivery drivers. Feedback should not be visible to the driver, but any feedback records should be accessible to people above them in the Role Hierarchy, even when the driver changes managers. Assuming managers have Read access to the Feedback object, which three steps are necessary to solve these requirements?

  • A. Remove Read permission on the Driver profile, have feedback ownership transferred to the driver when feedback is submitted, and create an ownership-based sharing rule,
  • B. Remove Read permission on the Driver profile, have feedback ownership transferred to the driver's manager when feedback Is submitted, and use the Role Hierarchy to give access to a driver's manager.
  • C. Remove Read permission on the Driver profile, have feedback ownership transferred to the driver when feedback is submitted, and use the Role Hierarchy to give access to 4 driver's manager.

正解:C


質問 # 39
Universal Containers is updating its Organization-Wide Sharing Settings for the Account Object from a "Public Read/Write" model to a "Private" model, so that they can hide certain national accounts from sales reps and sales managers. These national accounts should only be accessible by sales directors and above. Universal Container's Role Hierarchy matches its organizational hierarchy. Which two options should the Architect consider when designing the solution? Choose 2 answers

  • A. If a sales rep is added to the Opportunity Team for a national account, they will gain access to account data.
  • B. National accounts must be owned by a user who is above the sales managers in the Role Hierarchy.
  • C. Apex managed sharing will have to be disabled for the account object to protect the national accounts.
  • D. Sales directors will need a sharing rule created so that they can see accounts owned by Sales Users.

正解:A、B


質問 # 40
The System Administrator at Universal Containers has created two list views called ListV1 and ListV2. One group of users should only see ListV1 and the second group of users should only see ListV2. Two public groups were created to restrict visibility to the respective list views. However, users in both groups are able to see both list views. What system permission in their profile enabled the users to see all list views?

  • A. Manage Public List Views
  • B. Manage Custom Permissions
  • C. Manage Private List Views
  • D. Manage Custom List Views

正解:A


質問 # 41
Universal Containers (UC) stores basic employee information in a custom Employee object (OWD - Public Read Only). There are a few sensitive fields that need restricted access (salary, grade level, last performance rating).
Other than field level security, what other options are available to make these fields accessible to the Human Resource team?

  • A. Create a new custom object with private OWD and Lookup relationship to Employee to store new restricted information.
  • B. Create a new custom object controlled by parent and a Master-Detail relationship to Employee to store new restricted information.
  • C. Change OWD of Employee custom object to private and a Lookup self-relationship to store only new restricted information.
  • D. There are no other options besides using field level security.

正解:A


質問 # 42
A developer at Universal Container is building an integration within a managed package for their internal org that requires login to an external system. The end point requires basic authentication. The Architect would like to ensure that the username and password are managed securely. Which three options should the Architect recommend to secure the credentials?

  • A. Store the credentials in protected custom settings that are used in the apex callout
  • B. Store the credentials in named credentials that are used in the apex callout
  • C. Store the credentials in protected custom metadata that are used in the apex callout
  • D. Store the credentials in a custom object using encrypted fields
  • E. Store the credentials in the apex code, which will not be available to non-admins

正解:A、B、C


質問 # 43
Universal Containers keeps product brochures in Salesforce as files. Sarah shares a public Unit to a product brochure with potential customers during a meeting. She wants to ensure they do not have access to the file after the meeting.
How should Sarah accomplish this?

  • A. Move the file to another folder
  • B. Delete the public link.
  • C. Delete the file.
  • D. Rename the file.

正解:B

解説:
Explanation
Deleting the public link is the best way to ensure that the potential customers do not have access to the file after the meeting. Renaming the file, deleting the file, or moving the file to another folder will not affect the public link, which will still point to the file


質問 # 44
A sales coach at Universal Containers wants to create and share report folder with other sales coaches, Which two permissions are required to accomplish this?

  • A. Manage Reports in Public Folders and edit My Reports.
  • B. Create and customize Reports and Report Folders.
  • C. Create Report Folders and manage Reports in Public Folders.

正解:B

解説:
Explanation
Creating and customizing Reports and Report Folders and Manage Reports in Public Folders are two permissions that are required to accomplish this task, as they allow users to create reports and folders and share them with other users or groups. Editing My Reports is not a permission that is required to accomplish this task, as it only allows users to edit reports in their personal folders. Creating Report Folders is not a permission that exists in Salesforce.


質問 # 45
Universal Containers uses 75,000 distributors that have close to 1 million total users. Distributors need opportunities assigned to their distributor for delivery.
What license recommendation will meet distributor needs?

  • A. Partner Community
  • B. Custom Community
  • C. Sales Cloud
  • D. Customer Community Plus

正解:A

解説:
Explanation
To meet the distributor needs, a Salesforce Architect should recommend using Partner Community licenses. Partner Community licenses are designed for external users who need access to standard CRM objects, such as accounts, contacts, opportunities, and cases3. Partner Community users can also collaborate with internal users and other partners through Chatter and Communities4. Sales Cloud licenses are for internal users who need full access to standard CRM and custom objects. Customer Community Plus licenses are for external users who need access to custom objects and a subset of standard CRM objects, such as accounts and contacts. Custom Community licenses are for external users who need access to custom objects only


質問 # 46
Universal Containers' organization wide-defaults model is private for the Account object. A sales repeats to opportunity records.
Which level of access will the sales rep have to the related account record?

  • A. Read-only access
  • B. Read/Create/Edit access
  • C. No access
  • D. Read/Create access

正解:B


質問 # 47
Mary is Joe's manager in the role hierarchy. The OWD for a custom Invoice object is Public ReadOnly and Mary's profile is not granted the Read permission for the Invoice object.
What action can Mary take on Joe's Invoice records?

  • A. View Only
  • B. Edit Only
  • C. Read/Write
  • D. None

正解:D

解説:
Explanation
The action that Mary can take on Joe's Invoice records is none. This is because Mary's profile does not have the Read permission for the Invoice object, which means she cannot view any Invoice records, regardless of the OWD or role hierarchy settings. Profile permissions override any other access settings3. Read/Write, Edit Only, and View Only are not possible actions for Mary.


質問 # 48
......

Sharing-and-Visibility-Architect試験問題集無料サンプル365日更新:https://www.jpntest.com/shiken/Sharing-and-Visibility-Architect-mondaishu

まもなく無料セール終了!- リアルSharing-and-Visibility-ArchitectのPDF解答を試そう:https://drive.google.com/open?id=1AizniqWHHmMZyBsF7ld0cJyVrwwbcQ4M

弊社を連絡する

我々は12時間以内ですべてのお問い合わせを答えます。

オンラインサポート時間:( UTC+9 ) 9:00-24:00
月曜日から土曜日まで

サポート:現在連絡