
[2025年04月11日] 心強いCRT-403日本語のPDF問題集はCRT-403日本語問題
正真正銘のCRT-403日本語問題集で無料PDF問題で合格させる
質問 # 112
Universal Containers は、需要の増加により業務に影響が出ることが予想されます。経営陣は現在の顧客に連絡し、そのアカウントと親アカウントのオープンケースの数を確認したいと考えています。
アプリビルダーは、アカウントページにオープンケースの数を表示するために何を使用する必要がありますか?
- A. ロールアップの概要
- B. 個別のオブジェクト
- C. フロー
- D. 承認プロセス
正解:A
解説:
Roll-up summary fields can be used to count the number of related open cases for an account, including those from parent accounts if the relationship allows roll-up summaries.
References:
[Salesforce Help - Roll-up Summary Fields](https://help.salesforce.com/s/articleView?id=sf.fields_about_roll_up up_summary_fields.htm&type=5)
質問 # 113
アプリビルダーは、一部のカスタムフィールドのデータ型を変更する必要があります。
アプリビルダーがカスタムフィールドのデータ型を変更する際に注意すべき 2 つの制限はどれですか?
2 つの答えを選択してください
- A. Apex コードによって参照される項目のデータ型を変更することはできません。
- B. 外部 ID として使用されるフィールドのデータ型を数値からテキストに変更することはできません。
- C. テキスト領域 (ロング) フィールドのデータ型をテキストに変更することはできません。
- D. 数式フィールドのデータ型を任意のデータ型に変更することはできません。
正解:C、D
解説:
Changing the data type of custom fields in Salesforce has specific limitations that need to be considered to ensure system integrity and prevent errors:
A . It is not possible to change the data type of a formula field to any data type. Formula fields are calculated based on other field values and cannot be converted into a storage data type because they do not store data themselves.
D . It is not possible to change the data type of a Text Area (Long) field to Text. Text Area (Long) fields support up to 131,072 characters, which far exceeds the 255 character limit of standard Text fields. Converting such a field to a smaller capacity field would potentially lead to data truncation or loss.
For official guidance on data type changes, refer to Salesforce's Custom Field Considerations.
質問 # 114
ノーザン トレイル アウトフィッターズ (NTO) は、トレイルと公園をそれぞれ追跡するために、Salesforce でカスタム オブジェクト Trail と Park を作成しました。 NTO は、コードを記述することなく、公園の記録にある公園のトレイルの総数を追跡したいと考えています。
この要件を達成するためにアプリビルダーが取るべき 2 つのアクションはどれですか?
2 つの答えを選択してください
- A. Park オブジェクトと Trail オブジェクトの間の主従関係を使用します。
- B. 公園レコードのロールアップ集計フィールドを使用して、トレイルの合計数を表示します。
- C. Park オブジェクトと Trail オブジェクトの間の検索関係を使用します。
- D. 公園レコードの数式フィールドを使用して、トレイルの合計数を表示します。
正解:A、B
解説:
To track the total number of trails associated with a park without writing code, the correct actions to take are:
Use a roll-up summary field on the Park record to show the total number of Trails (B). Roll-up summary fields calculate and display a value in a master record based on the values of fields in a detail record. They are used to count, sum, average, or get the minimum/maximum of values in related detail records.
Use a master-detail relationship between the Park and Trail objects (C). Master-detail relationships are necessary for roll-up summary fields as they allow the master object to control certain behaviors of the detail object and summarize data from those detail records.
A formula field (A) cannot dynamically count related records unless those records are linked via a master-detail relationship, and it cannot alone handle counts across related records without such a relationship. A lookup relationship (D) does not support roll-up summaries unless combined with additional tools like triggers or third-party apps, which involve coding or extra configuration outside standard object setup.
For more details, refer to the Salesforce Help documentation on master-detail relationships and roll-up summary fields:
Master-Detail Relationship: https://help.salesforce.com/articleView?id=relationships_considerations.htm&type=5 Roll-Up Summary Fields: https://help.salesforce.com/articleView?id=fields_about_roll_up_summary_fields.htm&type=5
質問 # 115
Ursa Major Solar は、新規顧客へのウェルカム メールを自動化し、顧客の購入体験に関するカスタマイズされたアンケートを含めたいと考えています。アプリビルダーはこのプロジェクトを担当しており、ソリューションを最初から構築する時間はほとんどありませんが、それでもソリューションを完全にカスタマイズできる必要があります。
期限とカスタム要件を満たすためにアプリビルダーは何をすべきでしょうか?
- A. プロジェクトの要件を厳密に満たし、プログラムによる開発が可能なアンマネージド パッケージを Appexchange から選択します。
- B. プロジェクトの要件を厳密に満たし、プログラムによる開発は制限されますが、宣言的な開発が可能な管理パッケージを AppExchange から選択します。
- C. Salesforce フローを使用して、条件を満たすように宣言的にアンケートを作成し、電子メールとして顧客に送信します。
- D. 開発者と協力して、基準を満たすカスタム Apex コードと Lightning Web コンポーネント調査を作成します。
正解:C
解説:
Given the need to automate a welcome email including a customized survey with customization requirements and a tight timeline, the best approach is:
Use Salesforce Flow to build the survey declaratively to meet the criteria and send it to the customer as an email (B). Flow is a powerful tool for automation in Salesforce, allowing the creation of complex workflows and user interactions without needing to write custom code. It can be used to build a survey and integrate it with email services for automated dispatch.
Working with a developer to create custom Apex and LWC (A) might meet the criteria but would not align with the limited time frame. Managed (C) and unmanaged packages (D) from AppExchange can provide pre-built solutions, but they may not offer the needed customization or could require more setup time than building directly in Flow.
Reference for automating processes with Salesforce Flow:
Salesforce Flow: https://help.salesforce.com/articleView?id=sf.flow_considerations_design.htm&type=5
質問 # 116
Universal Containers の開発者は、サンドボックス環境でコードをテストしたいと考えています。コードが正しく機能することを確認するには、サンドボックスに少なくとも 0.5 ギガバイトのデータが必要です。サンドボックスは、3 日間のスプリントごとに更新する必要があります。
App Builder はどのタイプのサンドボックスを開発者に提供する必要がありますか?
- A. 開発者プロ
- B. 部分データ
- C. フルコピー
- D. 開発者
正解:A
質問 # 117
Ursa Major Solar のアプリケーション ビルダーは、親オブジェクト Galaxy__c と子オブジェクト Star__c の間に主従関係を作成しました。
ユーザーが Galaxy__c と Star__c について報告したい場合、このタイプの関係を作成するとどのような影響がありますか?
- A. Galaxy__c をフィールドとする Star__c レポート タイプが自動的に作成されます。
- B. Galaxy__c のルックアップ フィールドを使用して、Star__c 用に新しいカスタム レポート タイプを作成する必要があります。
- C. Star__c レポート タイプの Galaxy__c が自動的に作成されます。
- D. Star__c を使用して Galaxy__c 用に新しいカスタム レポート タイプを作成する必要があります。
正解:D
質問 # 118
Cloud Kicks には、ユーザーとキューが所有するリードがあります。販売マネージャーは、ユーザーが所有権を取得したときにステータスを作業中に変更したいと考えています。
プロセスがエラーなく実行されることを保証するために、アプリケーション ビルダーは基準に何を含める必要がありますか?
- A. NOT(ISBLANK([リード].OwnerId))
- B. BEGINS([リード].OwnerId, ,,005")
- C. [リード].Owner:Queue.OwnerId Is Null = True
- D. [Lead].Owner:User.Role Is Null = False
正解:A
質問 # 119
Schema Builder の 2 つの機能は何ですか? 2つの答えを選択してください
- A. 新しいウィンドウでページ レイアウトを表示する
- B. 選択したオブジェクトをページに表示
- C. カスタム設定の編集
- D. 新しいレコード タイプの作成
正解:B、C
解説:
Schema Builder is a tool that allows app builders to view and modify the data model of their Salesforce org. Some of the capabilities of Schema Builder are:
Creating and editing custom objects and fields
Creating and editing relationships between objects
Showing selected objects on a page
Editing custom settings
Schema Builder cannot be used to create a new record type or view page layouts in a new window.
質問 # 120
Universal Containers は、Web、見本市、パートナーの 3 つの異なるソースからリードを生成します。収集された情報の一部はすべてのソースに適用できますが、リードの種類ごとに固有の情報もあります。これらの要件を満たすために、アプリ ビルダーは何を構成する必要がありますか?
- A. リード レイアウトに 3 つのセクションを作成し、関係のないフィールドを折りたたむようにユーザーに指示します。
- B. パートナー コミュニティと、Web およびトレード ショー リードのレコード タイプを作成する
- C. リードの種類ごとに、関連するフィールドのみを含むカスタム ページの支払いを作成します。
- D. 関連するフィールドを含む独自のページ レイアウトを持つ 3 つのリード レコード タイプを作成します。
正解:D
解説:
The solution that the app builder should configure to meet these requirements is creating three lead record types each with its own page layout containing the relevant fields. This way, the app builder can customize the fields and sections that appear on each record type based on the source of the lead. Option B is incorrect because creating a partner community and a record type for web and trade show leads does not address the requirement of collecting information that is unique to each type of lead, as partner community users may have different fields and layouts than internal users. Option C is incorrect because creating three sections on the lead layout and instructing users to collapse the non-relevant fields does not address the requirement of collecting information that is unique to each type of lead, as users may still see or enter data in the wrong fields. Option D is incorrect because creating custom page layouts for each type of lead only containing the relevant fields does not address the requirement of collecting information that is applicable to all sources, as users may miss some common fields.
質問 # 121
アプリビルダーは、新しい商談を作成するときにユーザーが入力する必要があるフィールドの数を制限したいと考えています。必須フィールドに入力して保存すると、商談タイプに関連する追加フィールドを含む完全なレコード ページが利用可能になります。
これはどのようにして実現できるのでしょうか?
- A. 商談タイプを最初の商談ページ レイアウトの必須フィールドにし、自動化を使用してタイプ フィールドにレコード タイプを入力します。
- B. ページ レイアウト上の追加のセクションを非表示にし、非表示のセクションのフィールドに入力したい場合に手動でセクションを展開する方法をユーザーに示します。
- C. ユーザー プロファイルに基づいて商談タイプに異なるページ レイアウトを使用します。
- D. 必須フィールドに値を入力したら、共有ルールを使用して新しいフィールドをユーザーと共有します。
正解:A
解説:
Making the Opportunity type a required field on the initial Opportunity page layout and using automation to fill in the type field to a record type is a way to limit the number of fields users are required to fill out when creating a new Opportunity. This way, the app builder can assign different page layouts for different record types based on the Opportunity type. The other options are not feasible or effective
質問 # 122
マーケティング ディレクターは、連絡先にマーケティング コミュニケーションが送信されてから経過した日数を追跡する数式フィールドを作成するよう AppBuilder に依頼しました。ディレクターはユニット全体にのみ関心があります。
- A. 今()
- B. 今日()
- C. 日付()
- D. 日付値()
正解:B
質問 # 123
サンドボックスからデプロイせずに実稼働環境で直接行うことができるメタデータの変更を 2 つ選択してください。
- A. Apex トリガー
- B. Apex クラス
- C. Visualforce ページ
- D. 検証ルール
正解:C、D
質問 # 124
UVC は、ワークフローを使用してビジネス プロセスを自動化したいと考えています。彼らは、ワークフロー ルールが再帰的な動作を引き起こす可能性があることを認識しており、その結果、特定のアクションによって、以前に起動されなかったワークフロー ルールのみが再トリガーされます。この動作を引き起こす可能性のあるワークフロー アクションはどれですか?
- A. 特定のワークフロー ルールを参照する Salesforce ID を含むハードコーディングされたリンクを含むワークフロー メール
- B. [保護されたコンポーネント] フィールドが選択されたワークフロー アウトバウンド メッセージ
- C. [期日] フィールドが [ルールのトリガー日] から X 日を引いた値に設定されているワークフロー タスク
- D. [フィールドの変更後にワークフロー ルールを再評価する] フィールドが選択されたワークフロー フィールドの更新
正解:D
質問 # 125
Universal Containers のアプリケーション ビルダーは、ワークフロー ルールと Apex トリガーを可能な限りプロセス ビルダーに置き換える役割を担っています。
プロジェクトを開始する前にアプリ ビルダーが知っておくべき重要な考慮事項を 2 つ挙げてください。
2つの答えを選択してください
- A. ワークフロー ルールごとにプロセスを作成します。
- B. 無限ループが発生しないようにします。
- C. Apex には Flow とは異なる SOQL クエリ制限があります。
- D. 可能であればアクションを組み合わせる。
正解:B、D
質問 # 126
未管理パッケージを使用する際の重要な考慮事項は何ですか? 2つの答えを選択してください
- A. 未管理パッケージを作成するには名前空間が必要です。
- B. 未管理パッケージの作成者は、インストールされたコンポーネントを変更または更新できます
- C. 未管理パッケージの作成者は、インストールされたコンポーネントを制御できません
- D. 未管理パッケージの作成に名前空間は必要ありません。
正解:C、D
解説:
Explanation - Namespaces are not used in unmanaged packages. In fact, even if your organization is namespace, the namespace is removed from all components when it is uploaded as an unmanaged package.
https://developer.salesforce.com/page/An_Introduction_to_Packaging
Once the components are installed from an unmanaged package, the components can be edited in the organization they are installed in. The developer who created and uploaded the unmanaged package has no control over the installed components, and can't change or upgrade them. https://help.salesforce.com/apex/HTViewHelpDoc?id=sharing_apps.htm
質問 # 127
DreamHouse Realty (DR) は、地方自治体の権利と提携することにより、補助金付きの住宅に拡大しています。DR は Sales Cloud を使用し、商談オブジェクトの項目履歴追跡を有効にしています。情報要件の増加により、アプリ開発チームはテキスト エリア (長い) フィールドをリッチ テキスト フィールドに変更して、最大 1,000 文字とより適切な説明を許可します。
チームが考慮する必要がある 2 つの考慮事項はどれですか?
2つの答えを選択してください
- A. カスタム フィールド タイプを変更すると、データが失われる可能性があります。
- B. フィールド履歴追跡は、255 文字以下の値の変更を記録します。
- C. すべての長さのリッチ テキスト フィールド値がレポートに完全に表示されます。
- D. 監査証跡は、REST API の抽出を通じて利用できます。
正解:A、B
質問 # 128
Universal Containers は、購入したコンテナを遠隔地の建設住所に配送したいと考えています。このような場合、顧客は UC にその場所の座標を提供します。
アプリビルダーはこの情報を取得するためにどのタイプのフィールドを使用する必要がありますか?
- A. 外部ルックアップ
- B. 地理的位置
- C. 数値
- D. テキスト
正解:B
解説:
A geolocation field can be used to capture the coordinates of a location in latitude and longitude. This field type can also be used in reports, formulas, validation rules, and Apex
質問 # 129
デプロイせずに本番環境で手動で作成できるメタデータは? (2つ選択)
- A. レポートとダッシュボード
- B. ビジュアルフォース
- C. アペックストリガー
- D. 頂点クラス
正解:A、B
質問 # 130
ユーザがオブジェクト固有の作成アクションを使用してレコードを作成すると、そのレコードのどのフィード項目が表示されますか? (3つ選んでください)
- A. 新しいレコードが作成されたレコードのフィード内
- B. 新しいレコードのフィードの最初のエントリとして
- C. レコードを作成したユーザーの Chatter フィード内
- D. レコードが作成されたレコードをフォローする最初のユーザの Chatter フィード内
- E. レコードを表示できるすべてのユーザーのユーザー プロファイル フィード内
正解:A、B、C
質問 # 131
......
結果を保証するには最新2025年04月無料:https://www.passtest.jp/Salesforce/CRT-403J-shiken.html