Sharing-and-Visibility-Architect試験問題集を提供していますSalesforce問題 [Q56-Q71]

Share

Sharing-and-Visibility-Architect試験問題集を提供していますSalesforce問題

Sharing-and-Visibility-Architect認定ガイドPDFはリアル試験問題で100%カバー率

質問 # 56
Universal Containers would like to create a custom team solution that can be used on a custom Loan object. The following requirements must be met:
The Loan custom object should be set to Private in the Org-Wide Defaults.
Any user added to the Custom Team object should have Read Only access to the corresponding Loan record. If the Custom Team record is marked as "Primary" then the corresponding user should have Read/Edit access to the corresponding Loan record.
Which two methods will allow the Architect to meet the requirements?
Choose 2 answers.

  • A. Create a criteria-based sharing rule on the Loan object that will share the Loan record with the appropriate user in the Custom Team object.
  • B. Create an owner-based sharing rule on the Custom Team object that will share the Loan record to the owner of the Custom Team record.
  • C. Create a custom trigger on the Custom Team object that inserts or updates records in the Loan_share object.
  • D. Create Apex Sharing Reasons on the Loan object to identify the reason the Loan record was share.

正解:A、B


質問 # 57
Universal Containers has developed Apex code to manually create AccountShare records to grant specific users access to individual Accounts. What must the Architect do to ensure the AccountShare records are not deleted when the owner of the Account is changed?

  • A. Create the share records and set the RowCause to Manual
  • B. Create the share records with the Delete on Owner Change field set to false
  • C. Create the share records in a class with the "Without Sharing" keyword
  • D. Create the share records and set the RowCause to a custom Apex Sharing Reason

正解:D


質問 # 58
Universal Containers (UC) has recently changed its internal policy to follow market regulations and create an internal team to manage the collection process. Only this team should have access to Invoke records. currently, invoke is a child in a Master-Detail relationship to Account. Although related lists have been removed from the page layouts, some profiles stills have access to the invoice object.
Which approach should an architect recommend to fix this problem?

  • A. Create a new Profile with no access to the Invoice object and assign it to all unauthorized users.
  • B. Change the Invoke organization-wide default from Controlled by Parent to Private and remove invoke access from the unauthorized
  • C. Replace Account and Invoke Master Detail Relationship by a Lookup and remove Invoice Access from the unauthorized profiles,
  • D. Create a Permission Set with No Access to the Invoice object and assign it to unauthorized users.

正解:C


質問 # 59
Universal Computers (UC) is looking to expand its delivery capabilities through a network of distributors that use a Partner Community license. UC employees currently can view all delivery records through the organization-wide default (OWD) setting of Public Read Only.
Which approach would an architect recommend to limit the records a distributor can see?

  • A. Create an ownership-based sharing rule to grant access to the distributor.
  • B. Set the External OWD to Private for the Delivery object.
  • C. Create a criteria-based sharing rule to grant access to the distributor
  • D. Remove Read permission from the distributor profile.

正解:B


質問 # 60
Universal Containers would like to track defects within Salesforce. A defect need to have the following fields:
* Severity
* Type
* Status
* Description
There will be multiple Defects related to the standard Case object. Defects will be assigned to different owners which will often be different to the Case owner. Which option should the Architect choose to meet the requirement?

  • A. Create a custom object for defects and relate it to cases using lookup
  • B. Create a relationship between the standard defect object and the standard case object.
  • C. Create all defect fields on the case object to track the defect and lookup.
  • D. Create a custom object for defects and relate it to cases using master -detail

正解:A


質問 # 61
Dreamforce presenters need to be able to edit their presention details (summary, presenter biographies, etc) on a private custom object in Salesforce (Presentation). All presenters for a presentation are captured on a Presenters juction object between Presenter and User.
How can this be accomplished?

  • A. Trigger on Presenter junction object that adds the user to the Sales Team for the Presentation record.
  • B. Give Edit rights to the Presentation record via a Permission set that is given to the Presenters for a record.
  • C. Trigger on Presenter junction object that uses Apex Managed sharing to add or remove access to the related Presentation record.

正解:C


質問 # 62
What is required to implement Filter-Based Opportunity Territory Assignment?

  • A. Define a custom Apex class for Filter-Based Opportunity Territory Assignment in the system.
  • B. Define an Opportunity assignment rule with filter criteria for Filter-Based Opportunity Territory Assignment.
  • C. Define an account assignment with a filter criteria rule for Filter-Based Opportunity Territory Assignment.
  • D. Define a Territory assignment rule with filter criteria for Filter-Based Opportunity Territory Assignment.

正解:A


質問 # 63
Universal containers (UC) has a partner community for its 200 distributors. UC customer accounts are .. organization-wide default setting for the custom Delivery object is private.
How can an architect advise UC to grant all users at a distributor access to delivery records for all customer distributor?

  • A. Create a Sharing set for the Distributor profile to grant access to the Delivery object.
  • B. Create a criteria-based sharing rule that shares delivery records matching the Distributor to user distributor.
  • C. Create a criteria- based sharing rule that shares delivery records matching the Distributor to users of a Public Group created for the distributor.
  • D. Give ownership of the delivery record to a distributor user.

正解:A


質問 # 64
Universal Containers is implementing a community of High-Volume Community users. Community users should be able to see records associated to their Account or Contact record. The Architect is planning to use a Sharing Set to provide access to the records. When setting up the Sharing Set, certain objects are not available in the list of Available Objects. Which two reasons explain why an object is excluded from the list of Available Objects in a Sharing Set?

  • A. The custom object does not have a lookup to Accounts or Contacts.
  • B. The object's Organization-Wide sharing setting is set to Private.
  • C. The object's Organization-Wide sharing setting is set to Public Read/Write.
  • D. The object is a custom object, and therefore not available for a sharing set.

正解:A、C


質問 # 65
Universal Containers (UC) enables customers to manage issues using a Customer Community license. The Case external organization-wide default is set to Private. Currently community users can only see cases they created.
What can be done to allow community users to see all cases for their account?

  • A. Upgrade the licenses to Customer Community Plus.
  • B. Create a sharing set for these customers.
  • C. Ensure the criteria-based sharing rule applies to all users.
  • D. Write an Apex class to create manual shares for these users.

正解:B


質問 # 66
Universal Containers (UC) uses a custom Visualforce page to display shipment tracking information (custom object, private OWD) to field manager and agents. The IT team wants to make sure that users have access to only the information that is allowed.
Which Apex method must be used to make sure only allowed fields are shown to the users?

  • A. isViewable()
  • B. isReadable()
  • C. isAccessible()
  • D. isShowable()

正解:C


質問 # 67
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. FLS check
  • B. Data Access Control
  • C. SOQL Injection
  • D. Arbitrary Redirects

正解:B、C


質問 # 68
Universal Containers has two custom objects: Job and Job Interview. The Job Interview object has a lookup relationship to Job. Both objects are set to Private in sharing settings. The HR team will own all Job and Job Interview records. They have asked their Salesforce Architect to automatically share the Job Interview when the Interviewer (lookup to user record) has been populated. The interviewer can be from any department. What method should the Architect use to achieve this requirement?

  • A. Build a standard sharing rule between Job Interview and the Interviewer
  • B. Build a criteria-based sharing rule between the Job Interview and the Interviewer
  • C. Build a workflow email notification to notify the interviewer of the record assignment
  • D. Build apex Managed Sharing code to share Job Interview with the Interviewer user

正解:D


質問 # 69
Jane, a support representative at Universal Containers, created a report to view all her open cases that have been created in the past 7 days and saved the report in the "Private Reports" folder.
Who can view and run the report?

  • A. The report owner and any users who have been given access to the "My Private Reports" folder
  • B. The report owner and anybody in the role hierarchy above the report owner
  • C. The report owner
  • D. The report owner and users with the "View All Data" permission

正解:C


質問 # 70
A junior Account manager owns an account and creates a new opportunity to manage complex deal. She needs the help of the product specialist and solution engineer. Given the size of this deal, she knows the account is likely to be reassigned to a senior account manager in the near future. What is the optimal way for the junior account manager to share the opportunity, given the private sharing model?

  • A. Opportunity Team.
  • B. Manual share on the Account.
  • C. Create an Owner-based sharing rule.
  • D. Manual Share on the Opportunity.

正解:A


質問 # 71
......

合格させるSharing-and-Visibility-Architect試験にはリアル問題解答:https://www.passtest.jp/Salesforce/Sharing-and-Visibility-Architect-shiken.html

合格できるSharing-and-Visibility-Architectレビューガイド、信頼され続けるSharing-and-Visibility-Architectテストエンジン:https://drive.google.com/open?id=1dbXR1ZOT31Xak2-D6a9JwdcSPPapQetY