[2025年更新]合格できるSalesforce CRT-403日本語試験最新290問題 [Q60-Q78]

Share

[2025年更新]合格できるSalesforce CRT-403日本語試験最新290問題

ゲット2025年最新の無料Salesforce CRT-403日本語試験問題 アンサー

質問 # 60
Universal Containers は、機会と Detaited.Sales__c と呼ばれるカスタム オブジェクトを利用します。会社は、選択リストのステータスがアクティブに設定されている Detailed.Sales__c レコードのみの営業指標を商談にロールアップしたいと考えています。
アプリ バンダーがこのリクエストを達成するために推奨される方法は何ですか?

  • A. AppExchange を利用して、適切なフィルターを使用して売上を増やすことができるサードパーティ アプリケーションをダウンロードします。
  • B. Apex コードを使用して、必要な金額を積み上げます。
  • C. ステータス フィールドでフィルタリングするロールアップ サマリーを保持して、親オブジェクトと子オブジェクト間の参照関係を作成します。
  • D. 保持されているステータスに適合する積み上げ集計フィールドを使用して、親オブジェクトと子オブジェクトの間に主従関係を作成します。

正解:D

解説:
Create a master-detail relationship between the parent and child object with a roll-up summary field that filters on the status field is the recommended method for the app builder to achieve the request of rolling up sales metrics to an opportunity for only Detailed.Sales__c records that have their picklist status set to Active. According to the Salesforce documentation, "Roll-up summary fields calculate values from related records, such as those in a master-detail relationship." A roll-up summary field can filter on a field value of the child records and sum up only those records that match the criteria. Utilize the AppExchange to download a third-party application that can roll up the sales dollars with the appropriate filter, create a lookup relationship between the parent and child object with a roll-up summary field that filters on the status field, and utilize Apex code to roll up the desired amounts are not valid or necessary methods for this request.


質問 # 61
アプリ ビルダーは、連絡先レコードで連絡先の「優先連絡方法」方向を識別する方法をユーザーに提供するように依頼されました。ユーザーは、連絡先の優先通信手段が電話番号か電子メールかを識別できる必要があります。App Builder が可能な限り少ないフィールドでこれを達成できるようにするフィールド タイプはどれですか?

  • A. 式
  • B. チェックボックス
  • C. ピックリスト
  • D. メール

正解:B、C


質問 # 62
Universal Containers (UC) には、ディーラーを通じて製品を販売する大規模な顧客がいくつかあります。 UC は、各顧客および各ディーラーの 1 人の個人を特定し、協力します。請求書は各顧客および各販売店に個別に送付されます。これらの詳細は、事業体とその適切な代表者を明確に表示する形式で保存する必要があります。
アプリビルダーはこれらの規定をどのように実装すべきでしょうか?

  • A. 単一の取引先レコードを作成し、各担当者を連絡先として追加し、カスタム ディーラー オブジェクトを作成します。
  • B. 単一の親レコードを作成し、各担当者を連絡先として親アカウントに追加し、各ディーラーを子レコードとして追加します。
  • C. 顧客とディーラーの両方をアカウントとして作成し、各担当者を対応するアカウントの連絡先として追加して、アカウント階層を作成します。
  • D. 顧客とディーラーの両方をアカウントとして作成し、各アカウントにアカウント チームを作成して、ディーラー レコードを親アカウントに関連付けます。

正解:C

解説:
Creating both customer and dealer as accounts, adding each rep as a contact on the corresponding account, and creating an account hierarchy provides a clear organizational structure and relationship between the entities.
References:
Salesforce Help - Account Hierarchies


質問 # 63
Lightning アプリケーションビルダーで使用できる 3 つの標準コンポーネントタイプはどれですか?
3 つの答えを選択してください

  • A. プレーンテキスト
  • B. フィルタリスト
  • C. 最近のアイテム
  • D. リッチテキスト
  • E. レポートの詳細

正解:C、D、E

解説:
In the Lightning App Builder, the following standard components can be used to enhance the functionality of Lightning pages:
B . Rich text: Allows the inclusion of formatted text, links, and images on a page.
D . Report details: Enables embedding of specific report details directly on a page.
E . Recent items: Displays a list of recently accessed items relevant to the user.
Steps to add these components:
Open the Lightning App Builder via Setup → Edit Page or when creating a new Lightning page.
Drag and drop the Rich text, Report details, and Recent items components from the standard components section onto the page layout.
Configure each component as needed (e.g., selecting a specific report for the Report details component).
For more on using these components, refer to Salesforce's guide on Standard Lightning Components.


質問 # 64
Ursa Major Solar は、標準の Contact オブジェクトとカスタム Solar Project オブジェクトの間に関係を作成したいと考えています。 Contact は複数の Solar Project オブジェクトに関連する可能性があり、Solar プロジェクトには複数の Contact が関連付けられている可能性があります。
アプリビルダーはデータモデルをどのように構成すべきでしょうか?

  • A. 行動に関する 1 つの主従関係と、太陽光発電プロジェクトに関する 1 つの主従関係
  • B. 連絡先に関する 1 つのルックアップ関係とソーラー プロジェクトに関する 1 つのルックアップ関係
  • C. 新しいカスタム オブジェクトの 2 つのルックアップ関係
  • D. 新しいカスタム オブジェクトの 2 つの主従関係

正解:B

解説:
Two Master-detail relationships on a new custom object is how an app builder should configure the data model to create a relationship between Contact and Solar Project objects where each Contact can be related to multiple Solar Project objects, and each Solar Project can have multiple Contacts associated with it. This is an example of a many-to-many relationship that requires a junction object with two master-detail relationships. One Master-detail relationship on Contact and one Master-detail relationship on Solar Project, two Lookup relationships on a new custom object, and one Lookup relationship on Contact and one Lookup relationship on Solar Project are not valid or correct ways to create a many-to-many relationship.


質問 # 65
デプロイせずに本番環境で手動で作成できるメタデータは? (2つ選択)

  • A. ビジュアルフォース
  • B. 頂点クラス
  • C. アペックストリガー
  • D. レポートとダッシュボード

正解:A、D


質問 # 66
アプリビルダーは、既存のカスタムオブジェクト Box からアカウントにルックアップフィールドを追加しました。
自動的に作成されるレポートの種類はどれですか?

  • A. ボックスの有無にかかわらずアカウント
  • B. ボックスのあるアカウント
  • C. アカウントの有無にかかわらずボックス
  • D. ボックスのあるアカウント。 Salesforce は、親オブジェクト (この場合は取引先) の観点から関係を反映する新しいレポートタイプを自動的に作成し、関連する Box レコードを表示します。
  • E. アカウントのあるボックス

正解:B

解説:
This new report type enables users to create reports that list Accounts along with their associated Boxes, if any.
For further understanding of report types and relationships, Salesforce's guide on Report Types provides comprehensive information on how these are structured following modifications to object relationships.
Explanation:
Upon adding a lookup field to Account from a custom object, Box:


質問 # 67
完全なサンドボックスを更新するには何が推奨されますか?

  • A. メジャー プロダクション リリースの後。
  • B. 新しい本番ユーザーが追加されるたび。
  • C. UAT サインオフ後
  • D. 必要なときから 3 時間以内。

正解:A


質問 # 68
フィールド更新によるフィールド変更後に、ワークフロー ルールが再評価されるとどうなるでしょうか?

  • A. ワークフロー ルールは、フィールドの更新時に検証ルールをトリガーします。
  • B. ワークフロー ルールにより、さらに多くのワークフロー ルールが再評価されます。
  • C. クロスオブジェクト ワークフロー ルールにより、項目の変更後に再評価が行われます。
  • D. 再帰ループにより、組織の制限を超える可能性があります。

正解:B、D


質問 # 69
Universal Containers の開発者は、サンドボックス環境でコードをテストしたいと考えています。コードが正しく機能することを確認するには、サンドボックスに少なくとも 0.5 ギガバイトのデータが必要です。サンドボックスは、3 日間のスプリントごとに更新する必要があります。
App Builder はどのタイプのサンドボックスを開発者に提供する必要がありますか?

  • A. フルコピー
  • B. 開発者
  • C. 部分データ
  • D. 開発者プロ

正解:C

解説:
The app builder should provision a Partial Data sandbox to the developer. A Partial Data sandbox can have up to 5 GB of data, which meets the requirement of having at least half a gigabyte of data. A Partial Data sandbox can also be refreshed every 5 days, which meets the requirement of refreshing after each three-day sprint. Option A is incorrect because a Developer sandbox can only have up to 200 MB of data, which does not meet the requirement. Option B is incorrect because a Full Copy sandbox can only be refreshed every 29 days, which does not meet the requirement. Option C is incorrect because a Developer Pro sandbox can only have up to 1 GB of data, which may not be enough for the requirement.


質問 # 70
Cloud Kicks のアプリ ビルダーは、サンドボックス内のカスタム Shoe Sales アプリへの変更に取り組んでおり、変更セットを使用してその変更を運用環境にデプロイする準備ができています。作業の一部には、権限セットの更新が含まれていました。
アプリビルダーは、変更セットを運用環境にデプロイするときに何を考慮する必要がありますか?

  • A. デプロイされた権限セットには、変更セットに関連する変更のみが含まれます。
  • B. 既存の権限セットは完全に上書きされます。
  • C. デプロイされた権限セットは、既存の権限セットを使用して管理されます。
  • D. 権限セットのフィールドレベルのセキュリティへの変更は適用されません。

正解:A

解説:
The deployed permission set will merge with the existing permission set in production, meaning changes made in the sandbox will be added to the existing permission set after deployment.
Reference:
Salesforce Help - Permission Sets


質問 # 71
アプリ ビルダーは、ルックアップ経由で接続された子レコードが削除されたときに、親レコードのフィールドを更新したいと考えています。
アプリ ビルダーはどの自動化を使用する必要がありますか?

  • A. 画面の流れ
  • B. プロセスビルダー
  • C. ワークフロー ルール
  • D. 頂点コード

正解:D

解説:
The app builder should use Apex code to update a field on the parent record when a child record connected via lookup is deleted. Apex code is a programming language that allows developers to execute complex logic on the Salesforce platform. Apex code can be triggered by certain events, such as insert, update, delete, or undelete of records. In this case, the app builder can write an Apex trigger that runs after a child record is deleted and updates a field on the parent record accordingly. Option A, B, and D are not automation tools that can perform this task.


質問 # 72
Universal Containers (UC) は、UC の注文に対して米国の ZIP+4 コードの適切なフォーマットを適用するための検証ルールを備えたカスタム テキスト フィールドである Zip Code でアカウントの場所を追跡します。
親アカウントの郵便番号の最初の 5 桁のみを表示するために、アプリ ビルダーは注文時にどの式を作成する必要がありますか?

  • A. BEGINS(Account.Zip_Code_r, 5)
  • B. TEXT(Account.Zip_Code_c, 5)
  • C. LEFT(Account.Zip_Code_c, 5)
  • D. LPAD(Account.Zip_Code__r, 5)

正解:C

解説:
LEFT(Account.Zip_Code_c, 5) is the correct formula to display only the first five digits of Zip Code from the parent Account. LEFT function returns the specified number of characters from the left side of a text string. Account.Zip_Code_c is the custom text field that stores the Zip Code on Account object. 5 is the number of characters to return from the left side of the Zip Code. The other options are not valid formulas or functions.


質問 # 73
Universal Containers には、3 つの部門で使用されるカスタム評価オブジェクトがあります。各部門は、ステータス選択リストのさまざまな値など、評価に関するさまざまな情報を追跡したいと考えています。部門マネージャーは、チームが別の部門の評価を作成できるようにしたくありません。
これはどのように達成できますか?

  • A. 部門ごとに個別の評価レコード タイプを作成し、それらを使用して選択リストの値を制限します。レコード タイプごとに個別のページ レイアウトを作成し、プロファイルを使用してレコード タイプへのアクセスを制限します。
  • B. 3 つのページ レイアウトを作成して、ユーザー レコードに示されている部門に基づいて各ユーザーのフィールドと選択リストの値を決定します。フィールド レベルのセキュリティを使用して、各部門のフィールドへのアクセスを制限します。
  • C. 部門ごとに個別のページ レイアウトを作成し、それらにプロファイルを割り当てます。プロファイル設定を使用して、評価用の各部門のカスタム フィールド リストと選択リスト値を構成します。
  • D. 部門ごとに 1 つずつ追加のカスタム評価オブジェクトを作成して評価を追跡し、情報を個別に追跡できるようにします。プロファイルを使用して、3 つのカスタム オブジェクトへのアクセスを制限します。

正解:A


質問 # 74
アプリ ビルダーには、ユーティリティ バーで使用できるようにしたいカスタム コンポーネントがありますが、そのコンポーネントは使用できません。
コンポーネントにどのようにタグ付けする必要がありますか?

  • A. アプリ マネージャーで使用します。
  • B. ユーティリティ バーで使用します。
  • C. 記録ページで使用します。
  • D. Lightning アプリケーションビルダーで使用します。

正解:D

解説:
For use on the utility bar. This is correct because the component must have this tag in order to be available on the utility bar. The other tags are not relevant for this requirement.


質問 # 75
Universal Containers (UC) は、200 万を超える資産の情報を外部システムに保持しています。UC は、Salesforce のリアルタイム データでこれらのアセットにアクセスする必要があり、データ ストレージの制限に近づいています。
アプリ ビルダーが UC の使用を推奨できる機能はどれですか?

  • A. データローダ
  • B. データ エクスポート ウィザード
  • C. Salesforce コネクト
  • D. Salesforce to Salesforce

正解:C

解説:
The app builder should recommend UC use Salesforce Connect to access the assets in real-time data in Salesforce. Salesforce Connect is a feature that allows users to view, search, and modify data that is stored outside Salesforce, such as in an external system. Salesforce Connect uses external objects and external data sources to integrate data from various sources without copying or synchronizing it2. This can help UC access their assets in real-time without consuming data storage limits in Salesforce. Option A, C, and D are not features that can meet this requirement.


質問 # 76
アン アプリ ビルダーは、タスクの期日から 2 か月後の期限切れの日付を表示していました。アプリビルダーはどのアプローチを取るべきですか?

  • A. プロセス ビルダーを使用して、期日超過日を DueDate + ((365/12)*2) に設定します。
  • B. プロセス ビルダーを使用して、期限切れの日付を DueDate + 60 に設定します。
  • C. ADDMONTHS () 関数を使用して数式フィールドを作成します。
  • D. DueDate + 60 を使用して数式項目を作成する

正解:C

解説:
The best way to calculate an overdue date that is two months after a task due date is to use a formula field with the ADDMONTHS() function. This function adds a specified number of months to a date value, and returns a new date value. See [this article] for more information on formula fields.


質問 # 77
Cloud Kicks の CFO は、機会がクローズされる前に、新しい大手小売店のリースに関する契約条件を新規ベンダーが受け入れる方法を必要としています。
この要件に対処するにはどの機能を使用する必要がありますか?

  • A. 動的アクション
  • B. 電子メール アラート
  • C. 検証ルール
  • D. 承認プロセス

正解:D

解説:
An Approval Process is the appropriate feature to manage and enforce that new vendors accept terms on agreements before an opportunity can be closed. This process can be configured to require approvals from designated approvers when certain conditions are met, ensuring that all necessary agreements are in place and validated before proceeding.
A: Email Alert cannot enforce acceptance of terms.
B: Dynamic Action primarily adjusts the user interface based on field values, not process management.
D: Validation Rule only validates data entry and cannot handle complex conditional approvals.
Reference: Approval Processes in Salesforce Documentation


質問 # 78
......

高合格率CRT-403日本語テスト問題集解答と正解290問題と回答:https://www.passtest.jp/Salesforce/CRT-403J-shiken.html