Cloud Kicksの営業担当者が、Salesforce内で他のユーザーが自分の連絡先を表示できないと訴えています。アプリ開発者は、この問題をどのような3つの方法でトラブルシューティングできますか?3つ選択してください。
正解:A,C,E
This scenario should be solved with standard metadata. Use A. Review the Contact record and ensure it is linked to an Account.; C. Verify the users with the issue have access to the Contact object.; E. Confirm whether Default Organization-Wide Sharing Settings provide access to the Account. Manual record sharing can grant access to individual users, public groups, and roles with subordinates. It is a record-level access mechanism, separate from field-level security and permission set assignment.
The selected answer is stronger because it meets both the functional requirement and the maintainability requirement. In a Salesforce implementation, a solution that only works for one user, one page, or one data sample is not good enough. The correct feature has to behave consistently across the intended profiles, record types, apps, and devices that are part of the design.
The alternatives are plausible only if the requirement is read too narrowly. B (Create a new Contact and have the users try again.) would be fragile here because it could produce an inconsistent result once different users, records, or apps are tested. D (Create an Account Sharing Rule to give the users access to all records.) is only a partial match because Sharing controls record visibility; it does not change field type, page composition, or automation timing. A complete implementation should also check page assignment, field access, record ownership, and mobile behavior where those factors apply.
---