
[2024年01月] 厳密検証されたSharing-and-Visibility-Designer問題集と解答でSharing-and-Visibility-Designer問題集と正解付き
ベストSalesforce Architect学習ガイドはSharing-and-Visibility-Designer試験合格させます
Salesforce Certified Sharing and Visibility Designerになるには、候補者はSalesforceのセキュリティモデルとアクセス制御に関する幅広い知識と経験を持っている必要があります。また、共有ルール、役割階層、レコードレベルのセキュリティに関する深い理解も必要です。この試験は、さまざまなオブジェクト間でのデータの共有、データへのアクセスの管理、および複雑なビジネス要件を満たす共有ソリューションの設計などのトピックもカバーしています。
Salesforce Sharing-and-Visibility-Designer(Salesforce認定共有および可視性デザイナー)試験は、Salesforceの共有ソリューションの設計と実装に関する候補者の専門知識を検証する認定です。これは、Salesforceプラットフォームとその共有および可視性の機能を深く理解する必要がある高度に専門化された認証です。この認定を保持している候補者は、組織のニーズを満たす複雑な共有モデルと可視性モデルを構成する専門家として認識されています。
質問 # 74
For the Universal Containers Commercial and Consumer support departments, having access to Activities for Contacts with which they interact is important. Commercial support users should not see Consumer Accounts/Contacts and Consumer support users should not see Commercial Accounts/Contacts. Assuming the Organization-Wide Default for Activities is set to "Controlled by Parent" what is the minimum level of Sharing access a support user would need to Accounts/Contacts to view associated Activities?
- A. The users need no access to Accounts/Contacts with the proper Activity Sharing Rules and Profile Permissions for the Accounts Tab.
- B. Private Account/Contact Sharing Default with a Sharing Rule for each department set to Public Read/Write access to Accounts/Contacts.
- C. Private Account/Contact Sharing Default with a Sharing Rule for each department set to Public Read only access to Accounts/Contacts.
- D. Private Account/Contact Sharing Default with a Sharing Rule for each department set to Private access to Accounts/Contacts.
正解:C
質問 # 75
Universal Containers (UC) has a mostly private organization-wide default (OWD), as it is a core principle of UC to respect client data privacy. UC has implemented complex processes for granting access to Opportunity data. A few key members of the Sales Reporting team need to always be able to see, but not change, Opportunity data for all Opportunities.
What should an architect recommend as an approach to meet these requirements?
- A. Create a Permission Set that grants "View All Data" Permission.
- B. Create a Permission Set that grants "View All" permission for Opportunity.
- C. Make Opportunity OWD read-only.
- D. Give "View All Data" Permission to the Sales Reporting Profile.
正解:A
質問 # 76
Besides their own team accounts, sales managers at Universal Container need to have READ access to all other countries.
Role hierarchy was implemented accordingly (based on countries) but a Sales manager in the US comp records of the same segment in Canada.
What should be done to grant access in a proper way?
- A. Change the role hierarchy and put all the sales managers in the US and Canada as the same role.
- B. Create a public group and include all accounts of the same segment and grant access through.
- C. Create criteria-based sharing rule to grant access to account records that have the same segment.
- D. Create owner-based sharing rule to grant access to account records that have the same segment.
正解:C
質問 # 77
Universal Containers (UC) has a requirement to expose a web service to their business partners. The web service will be used to allow each business partner to query UC's Salesforce instance to retrieve the status of orders. The business partner should only be allowed access to orders for which the business partner is the fulfillment vendor. The Architect does not want the business partners to utilize the standard APIs and would prefer a custom API be developed. Which three design elements should the Architect consider in order to ensure the data security of the solution?
Choose 3 answers
- A. Set the Orders object's sharing settings to Private in the Org-Wide Defaults
- B. Develop a custom Apex web service using the "With Sharing" keyword.
- C. Develop a custom Apex web service with a fulfillment ID input attribute
- D. Query the Orders object with Dynamic SOQL based upon the fulfillment ID.
- E. Provide each partner with their own Salesforce login set to API Enabled on the profile.
正解:A、B、D
質問 # 78
The Collections department at Universal Containers uses Salesforce to track its efforts. All Invoices and invoice line items are store in salesforce. Invoice line item object details, such as quantity and extended amount, should be summarized at the invoice object level, and all users who can see a given invoice should always see all invoice line items. Without leveraging Apex code, how should an Architect create the relationship between the Invoice object and the Invoice Line Item object?
- A. The Invoice object should have an inner join to the Invoice Lice Item object.
- B. The invoice Line Item object should have a Lookup to the Invoice object.
- C. The Invoice object should have a Master-Detail to the Invoice Line Item object.
- D. The Invoice Line Item object should have a Master-Detail to the Invoice Object.
正解:D
質問 # 79
Which two are potential security 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};
return null;
}
}
Choose 2 answers.
- A. Arbitrary Redirects
- B. Cross-Site Scripting
- C. SOQL Injection
- D. Bypassing Field and Object Security
正解:C、D
質問 # 80
Universal Containers does not want the Users in the Custom Sales Department Profile to be able to delete Opportunities. How would the Architect prevent a certain set of users from deleting Opportunities?
- A. Remove the "Opportunity Delete" Permission from the Sales Team's User Profile in the Object Permissions.
- B. Create a Validation Rule that checks the User's Profile before allowing the IsDeleted flag to be set to True.
- C. Remove the Delete button from the Opportunity Page Layout and Record Type settings.
- D. Override the Standard button with a Visualforce Page that warns them that they do not have permission to delete.
正解:A
質問 # 81
Universal Container is creating a custom VF page to allow user to edit contact records. The developer has used an apex:outputField for the Phone field on the contact obj. What is the expected behavior if a user whitout FLS accesses the VF page?
- A. The user encounters an error while saving the record
- B. The output field is visible to user
- C. The field is automatically removed from the page
- D. The user is able to enter a value into the phone field
正解:C
質問 # 82
Universal Containers (UC) has a team that analyzes customer orders looking for fraud. This team needs access to Invoice records (Custom object, Private OWD). UC \as complex rules to control users' access. The Salesforce Architect recommended using Apex managed sharing to meet these requirements.
Which two recommendations should a Salesforce Developer consider when implementing the changes7 Choose 2 answers
- A. Use "Without Sharing" keyword to make sure record visibility will be considered.
- B. Use "With Sharing" keyword to make sure record visibility will always be considered.
- C. Use runAs system method to test different users accessing these records.
- D. Use "With Sharing" keyword to enforce field-level security.
正解:B、C
質問 # 83
UniversalContainers(UC)servicerepsareassignedtoaprofilewhichhas"ViewAll"inCase object(Private OWD).To make sure service repshaveaccess toallrelevant information to attendtocustomerrequests, whichtwodetailsshouldasalesforceArchitectsconsider? Choose 2answers:
- A. Service reps willnotbeable toaccessallthe UCAccountsrecordsbecause Account OWD is private.
- B. Service reps will notbe able to access all UC contactrecords if theyare controlled by parent.
- C. Servicerepswillbeable toaccessall the UC Accountrecordsdue to Implicit Sharing.
- D. Service repswill be able to access all UC contactrecords if theyare controlled by parent.
正解:A、B
質問 # 84
Which two capabilities does the delegated administrator permission provide?
Choose 2 answers
- A. Create profiles
- B. Set OWD
- C. Assign users profiles
- D. Unlock users
正解:C、D
質問 # 85
Cloud Kicks needs to restrict login access to the Salesforce application.
What are two features an Architect should recommend using to accomplish the goal? (Choose two.)
- A. Organization-wide login hour restrictions
- B. Profile-based login hour restrictions
- C. Profile-based IP restrictions
- D. Role-based IP restrictions
正解:B、C
質問 # 86
The Architect at Universal Containers has created a List View to show all open Opportunities that were created in the last month, and would like to make this list view visible to certain groups of users. Which two options are available to the Architect for sharing the List View?
- A. Profiles
- B. Public Groups
- C. Roles and Subordinates
- D. Manual Sharing
正解:B、C
質問 # 87
User A at Universal Containers is in the default account team for User
B. User B owns the ACME account and changed User A's team member access to the account. What is the impact of this change?
- A. Changes affect the default Opportunity team.
- B. Changes affect only the ACME Account.
- C. Changes affect all child ACME Accounts.
- D. Changes affect the default Account team.
正解:B
質問 # 88
Universal Containers is creating a custom Visualforce page to allow users to edit contact records. The developer has used an apex:outputField for the Phone field on the contact object. What is the expected behavior if a user without field-level security accesses the Visualforce page?
- A. The output field is visible to the user.
- B. The field is automatically removed from the page.
- C. The user is able to enter a value into the Phone field.
- D. The user encounters an error while saving the record.
正解:B
質問 # 89
What can be done in Profile which is not in Permission Set
- A. Login Hours, Page Layout assignment
正解:A
質問 # 90
......
Sharing-and-Visibility-Designer認定ガイド問題と解答トレーニングにはJPNTest:https://www.jpntest.com/shiken/Sharing-and-Visibility-Designer-mondaishu
Sharing-and-Visibility-Designer認定お試しPDFで最新Sharing-and-Visibility-Designer問題集:https://drive.google.com/open?id=1iTGTrlz0Dv293C8-g5F4RB1v5wg4QVoS