Sharing-and-Visibility-Architect日本語 無料問題集「Salesforce Certified Sharing and Visibility Architect (Sharing-and-Visibility-Architect日本語版)」
Universal Containers (UC) には、パートナー コミュニティ ライセンスを使用する 200 のディストリビューターがいます。
パートナーはお互いのデータを見ることはできませんが、UC はディストリビューターの特定の個人の可視性を高めようとしています。同じディストリビューターの他のパートナー マネージャーおよびパートナー ユーザー (ただし、パートナー エグゼクティブではない) が所有するすべてのケースおよびコンテナ レコードへのアクセス権をパートナー マネージャー ロールのユーザーに付与するために、アーキテクトが推奨するスケーラブルなソリューションはどれですか?
パートナーはお互いのデータを見ることはできませんが、UC はディストリビューターの特定の個人の可視性を高めようとしています。同じディストリビューターの他のパートナー マネージャーおよびパートナー ユーザー (ただし、パートナー エグゼクティブではない) が所有するすべてのケースおよびコンテナ レコードへのアクセス権をパートナー マネージャー ロールのユーザーに付与するために、アーキテクトが推奨するスケーラブルなソリューションはどれですか?
正解:C
解答を投票する
解説: (JPNTest メンバーにのみ表示されます)
次のコード スニペットの潜在的な脆弱性はどれですか<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; } }2 つの回答を選択
正解:A、B
解答を投票する
解説: (JPNTest メンバーにのみ表示されます)
APEX コードで特定のレコードを共有するロジックを作成したい場合は、必要なレコードへのアクセスを開く特別なレコードを作成するだけです。
目的は、特定のタイプのレコードを作成することです。たとえば、カスタム オブジェクトのすべての共有オブジェクトの名前は ____________?
目的は、特定のタイプのレコードを作成することです。たとえば、カスタム オブジェクトのすべての共有オブジェクトの名前は ____________?
正解:
MyCustomObject__Share
Explanation:
The correct format for creating share objects for custom objects in Apex code is MyCustomObject__Share.
Share objects are used to grant access to individual records that are owned by another user or queue.
For standard objects, the share object name is ObjectNameShare, such as AccountShare or ContactShare.
For custom objects, the share object name is ObjectName__Share, such as MyCustomObject__Share or Project__Share.
Explanation:
The correct format for creating share objects for custom objects in Apex code is MyCustomObject__Share.
Share objects are used to grant access to individual records that are owned by another user or queue.
For standard objects, the share object name is ObjectNameShare, such as AccountShare or ContactShare.
For custom objects, the share object name is ObjectName__Share, such as MyCustomObject__Share or Project__Share.
Universal Containers は、事務用品に関連する費用の払い戻しの要求を取得するための払い戻しカスタム オブジェクトを作成しました。償還要求は機密事項である場合があり、チーム リードは、コール センター エージェント ロールのユーザーによって送信された償還レコードにアクセスできないようにする必要があります。サポート ディレクターは、すべての償還記録にアクセスする必要があります。ロール階層は次のように設定されています。コール センター エージェントのロールはチーム リーダーのロールにレポートし、チーム リーダーのロールはサポート ディレクターにレポートします。償還オブジェクトの非公開共有設定を想定して、この役割階層構造で適切な共有を確保するために、アーキテクトはどの手順を実行しますか?
正解:D
解答を投票する
解説: (JPNTest メンバーにのみ表示されます)
所有権データの偏りに対する回避策は何ですか?
正解:
You can minimize possible performance impacts by not assigning the user(s) to a role.
Explanation
A workaround to ownership data skew is to minimize possible performance impacts by not assigning the user(s) to a role.
Ownership data skew occurs when a single user owns a large number of records (more than 10,000) of an object, which can cause performance issues when sharing calculations are performed.
By not assigning the user to a role, you can prevent the sharing rules from being applied to the records owned by that user, and reduce the number of rows in the sharing tables.
Explanation
A workaround to ownership data skew is to minimize possible performance impacts by not assigning the user(s) to a role.
Ownership data skew occurs when a single user owns a large number of records (more than 10,000) of an object, which can cause performance issues when sharing calculations are performed.
By not assigning the user to a role, you can prevent the sharing rules from being applied to the records owned by that user, and reduce the number of rows in the sharing tables.
Universal Containers は、3 か月前に国内コール センター向けの大規模な Service Cloud ロールアウトの実装に成功しました。最大の顧客アカウントの 1 つである United Automotive には、15,000 件を超える未解決のケースがあります。エージェントは現在、United Automotive の新しいケースを開くのに問題があります。ケースを作成しようとすると、次のエラー メッセージが表示されます UNABLE_TO_LOCK_ROW 彼らは、これが United Automotive アカウントでのみ発生することに気付きました。ケースを再度保存しようとすると、通常はうまくいきますが、問題はますます頻繁に発生しているようです。アーキテクトはどのオプションを推奨する必要がありますか?
正解:A
解答を投票する
解説: (JPNTest メンバーにのみ表示されます)