
Salesforce Platform APP Builder DEX-403日本語練習テストエンジン: 今すぐ試そう291試験問題
試験合格保証付きのSalesforce Platform APP Builder DEX-403日本語試験問題集
質問 # 83
Cloud Kicks (CK) 商談成立時のデータ入力に一貫性がない営業担当者を見つけています。CK は、カスタム シューズがクローズ日から 2 週間以内に発送されることを要求します。オポチュニティの [Scheduled Ship Date] というカスタム フィールドには、出荷日が記録されます。アプリ バトラーは、オポチュニティを成約に設定する前に、このフィールドが適切に入力されていることをどのように確認する必要がありますか?
- A. OR(ISPICKVAL( StageName ="Closed Won") && ( Scheduled_Ship_Date__c- CloseDate ) > 14,ISBLANK(Scheduled_Ship_Date__c))
- B. OR(ISPICKVAL( StageName ,"Closed Won") && ( Scheduled_Ship_Date_cCloseDate)>14,ISBLANK(Scheduled_Ship_Date_c))
- C. ISPICKVAL( StageName ,"Closed Won") && (Scheduled _Ship_Date_c-CloseDate ) > 14
- D. ISPICKVAL( StageName= CloseDate ) > 14, 勝敗") && ( CloseDateScheduled_Ship_Date_c) >14
正解:B
解説:
The correct validation rule formula to ensure that the Scheduled Ship Date field is properly filled out before setting the Opportunity to Closed Won is:
OR(ISPICKVAL( StageName ,"Closed Won") && ( Scheduled_Ship_Date_cCloseDate)>14,ISBLANK(Scheduled_Ship_Date_c)) This formula checks two conditions: if the StageName is Closed Won and the Scheduled Ship Date is more than 14 days after the Close Date, or if the Scheduled Ship Date is blank. If either condition is true, the validation rule will fire and prevent saving the record. The other formulas are incorrect because they either use incorrect syntax (such as "=" instead of "," or missing parentheses) or incorrect logic (such as checking if the Scheduled Ship Date is less than 14 days after the Close Date)
質問 # 84
Cloud Kicks は、ビジネス プロセス全体を再定義して、マネージャー ノート フィールドを長いテキスト エリア フィールドから変換しています。目標は、マネージャーがコメントをより簡潔にし、255 文字以下にとどめることを奨励することです。多くの場合、文字数制限をはるかに超える既存の情報が [管理者メモ] フィールドに含まれています。
アプリ ビルダーが既存の長いテキスト エリア フィールドをテキスト エリアに変換しようとすると、既存の情報はどうなりますか?
- A. 既存の情報は最初の 255 文字に切り捨てられます。
- B. 255 文字を超えても既存の情報が残ります。
- C. 既存の情報により、a-e-r0--essace がうんざりします。
- D. フィールド内の既存の情報は完全に失われます。
正解:A
解説:
If the app builder tries to convert a preexisting long text area field to text area, preexisting information will truncate to the first 255 characters. This means that any information beyond 255 characters will be lost. Option B is incorrect because preexisting information will not remain if it was over 255 characters. Option C is incorrect because preexisting information will not cause an error message to pop up. Option D is incorrect because preexisting information in the field will not be completely lost, only truncated.
質問 # 85
アプリケーションビルダーは、Lightning レコードページを作成しており、モバイル & Lightning アクションをページレイアウトに追加しています。
アクションを表示するためにレイアウトに含めることができる 2 つのコンポーネントはどれですか?
2つの答えを選択してください
- A. パス
- B. 活動
- C. ハイライトパネル
- D. おしゃべり
正解:B、C
質問 # 86
Cloud Kicks (CK) 商談成立時のデータ入力に一貫性がない営業担当者を見つけています。CK は、カスタム シューズがクローズ日から 2 週間以内に発送されることを要求します。オポチュニティの [Scheduled Ship Date] というカスタム フィールドには、出荷日が記録されます。アプリ バトラーは、オポチュニティを成約に設定する前に、このフィールドが適切に入力されていることをどのように確認する必要がありますか?
- A. OR(ISPICKVAL( StageName ="Closed Won") && ( Scheduled_Ship_Date__c- CloseDate ) > 14,ISBLANK(Scheduled_Ship_Date__c))
- B. OR(ISPICKVAL( StageName ,"Closed Won") && ( Scheduled_Ship_Date_cCloseDate)>14,ISBLANK(Scheduled_Ship_Date_c))
- C. ISPICKVAL( StageName ,"Closed Won") && (Scheduled _Ship_Date_c-CloseDate ) > 14
- D. ISPICKVAL( StageName= CloseDate ) > 14, 勝敗") && ( CloseDateScheduled_Ship_Date_c) >14
正解:B
解説:
The correct validation rule formula to ensure that the Scheduled Ship Date field is properly filled out before setting the Opportunity to Closed Won is:
OR(ISPICKVAL( StageName ,"Closed Won") && ( Scheduled_Ship_Date_cCloseDate)>14,ISBLANK(Scheduled_Ship_Date_c))
This formula checks two conditions: if the StageName is Closed Won and the Scheduled Ship Date is more than 14 days after the Close Date, or if the Scheduled Ship Date is blank. If either condition is true, the validation rule will fire and prevent saving the record. The other formulas are incorrect because they either use incorrect syntax (such as "=" instead of "," or missing parentheses) or incorrect logic (such as checking if the Scheduled Ship Date is less than 14 days after the Close Date)
質問 # 87
ユニバーサル コンテナ (uc) は、5000 件のリード レコードの複数のフィールドのデータを削除したいと考えています。UC は、データを削除する必要がある選択したレコード ID とフィールドを CSV ファイルにエクスポートします。これらの要件を満たすためにアプリビルダーが提案すべき 2 つの手順はどれですか? 2 つの答えを選択してください
- A. 正しいレコード タイプを選択してください
- B. インポート ウィザードを使用して、CSV ファイルを使用してリードを更新します
- C. 設定に null 値を挿入するを選択します。
- D. データローダーを使用して、CSV ファイルを使用してリードを更新します
正解:C、D
解説:
The two steps that should be suggested to meet these requirements are to select insert null values in settings and to use Data Loader to update leads using the CSV file. Selecting insert null values in settings will allow Data Loader to overwrite existing values with null values. Data Loader is a tool that can import, export, update, or delete large amounts of data.
質問 # 88
AW Computing の営業担当者は、Chatter フィードをスクロールしているときに探しているものを見つけることができません。
フィルターを使用して、重要な取引先と商談レコードからの投稿のみを表示するにはどうすればよいですか?
- A. Chatter 通知を作成します。
- B. Chatter ブックマークの作成
- C. Chatter ストリームを作成します。
- D. Chatter グループを作成します。
正解:C
質問 # 89
Universal Containers は、カスタム オブジェクトのインターンシップとアプリケーションを使用するアプリケーション プロセスを実装しました。インターンシップの組織全体のデフォルトは非公開に設定されており、アプリケーションとの主従関係のマスターです。人事担当副社長は、アプリケーションへの編集アクセスを採用担当者に許可したいと考えています。
アプリ ビルダーは適切なアクセスをどのように構成する必要がありますか?
- A. ユーザーにインターンシップ レコードへの読み取り/書き込みアクセスを許可する共有ルールを追加します。
- B. アプリケーション レコードへの読み取り/書き込みアクセス権をユーザーに付与する共有ルールを作成します。
- C. Web アプリケーションのキューを作成し、レコードを編集するユーザーにアクセス権を割り当てます。
- D. アプリケーション オブジェクトの組織全体の既定値を読み取り/書き込みに設定します。
正解:B
解説:
The app builder should create a sharing rule that grants the users Read/Write access to the Application records. A sharing rule is a type of rule that can extend record access to groups of users based on certain criteria. In this case, the app builder can create a sharing rule that grants Read/Write access to the Application object to the recruiters based on their role, public group, or queue. This will allow them to edit the Application records related to any Internship record, regardless of the ownership. Option A, B, and C are not ways to configure the proper access.
質問 # 90
アプリケーションビルダーが AppExchange からカスタム Lightning コンポーネントをインストールし、[私のドメイン] をリリースしました。
コンポーネントをレコードページで使用するように設定するには、次に何をする必要がありますか?
- A. ページ レイアウト エディタを使用してレコード ページを編集 > コンポーネントをページにドラッグします。
- B. ページレイアウトエディタを使用してレコードページを編集 > Visualforce コンポーネントをページにドラッグします。
- C. App Manager を使用してレコード ページを編集 > コンポーネントをページにドラッグします。
- D. Lightning アプリケーションビルダーを使用してレコードページを編集 > コンポーネントをページにドラッグします。
正解:D
解説:
To configure a custom Lightning component for use in a record page, the app builder needs to edit a record page using the Lightning App Builder and drag the component onto the page. The Page Layout editor and the App Manager are not used for this purpose
質問 # 91
Universal Containers は、アカウントの種類が「Past-Customer」に変更されたときに、そのアカウントに直接関連する連絡先が「Re-Market」の更新ステータスを取得するようにアプリビルダーに依頼しました。
アプリビルダーはこのタスクを達成するためにどの自動化を使用する必要がありますか?
- A. トリガーされたフローを記録します
- B. 検証ルール
- C. Lightning コンポーネント
- D. 画面の流れ
正解:A
解説:
For automatically updating contact statuses when an account type changes:
D . Record triggered flow. This type of automation can monitor changes in account types and accordingly update related records, such as contacts.
Steps to implement:
Navigate to Setup → Flows.
Create a new Flow and choose the record-triggered flow type.
Configure the flow to trigger when the Account record is updated to 'Past-Customer'.
Add an Update Records element to modify all related contacts, setting their status to 'Re-Market'.
Activate the flow.
This automation ensures that contact statuses are updated in real-time when their related account's type changes, maintaining data consistency and relevancy.
For more on record-triggered flows, check out Salesforce's Record-Triggered Flows documentation.
質問 # 92
Universal Containers には、Opportunity Product オブジェクト用にリクエストしたいくつかの新しいフィールドがあります。
アプリビルダーは数式フィールドを使用して何を設定できる必要がありますか?
- A. 親商談の親取引先へのハイパーリンク。
- B. 関数の組み合わせ、および 10 個の取引先フィールドと 10 個の商談フィールドの連結。
- C. 商談のテキストフィールドと説明フィールドの組み合わせ。
- D. HTML を使用して特定の文字を太字にするリッチ テキスト領域フィールド。
正解:C
解説:
Formula fields in Salesforce can use various functions including text, mathematical, and logical functions to create simple or complex expressions. They can handle data from fields of the same record. Option C, "A combination of the Opportunity's Text and a Description fields," is a valid configuration for a formula field as it involves simple concatenation of text fields, which is supported.
Options A, B, and D exceed the capabilities of formula fields:
A: Hyperlinks to other objects using formula fields do not directly support navigation to parent records of a different object.
B: Rich Text and HTML formatting are not supported in formula fields.
D: Formula fields have limits in their complexity and field references which would make mixing numerous fields from different related objects impractical and likely exceed formula size limits.
Reference: Formula Field Overview on Salesforce Developer Guide
質問 # 93
DreamHouse Realty では、House__c カスタム オブジェクトの Asking_Price__c や Real_Estate_Agent„c などの特定のフィールドのフィールド値の変更が Chatter に目立つように表示されることを求めています。
アプリビルダーはどの Chatter 機能を利用すべきでしょうか?
- A. フィードトラッキング
- B. パブリッシャーアクション
- C. トピック
- D. Thanks
正解:A
解説:
Feed Tracking is the Chatter feature that allows field value changes for certain fields to show up on Chatter. Thanks, Publisher Actions, and Topics are other Chatter features, but they do not relate to field value changes.
質問 # 94
アプリ ビルダーは、変更セットを使用して、サンドボックスから運用環境に新しいアプリをデプロイする準備をしています。
このプロセスでアプリ ビルダーが留意すべき 2 つの考慮事項はどれですか?
2つの答えを選択してください
- A. 変更セットにはすべてのコンポーネントが含まれているわけではなく、一部の変更を手動で実行する必要がある場合があります。
- B. Salesforce Connect は、環境間のリンクを自動的に確立します。
- C. インバウンド変更セットを受信する場合、ユーザーは本番環境からログアウトする必要があります。
- D. デプロイ エラーの場合、トランザクションは元に戻ります。
正解:A、D
質問 # 95
Universal Containers のアカウントは現在、すべてのユーザーが読み取ることができますが、所有者のみが編集できます。経営陣は、一部のアカウントを VIP アカウントとして指定したいと考えています。アカウントの所有者のみが、これらの VIP アカウントへの読み取りアクセス権を持つ必要があります。
要件を満たすためにアプリ ビルダーが取るべき 2 つのアクションはどれですか?
2つの答えを選択してください
- A. アカウント チームを設定します。
- B. 組織全体のデフォルトを変更します。
- C. 共有ルールを実装します。
- D. 権限セットを構成します。
正解:B、C
解説:
The two actions that an app builder should take to meet the requirements are: Implement a sharing rule. A sharing rule is a way to grant additional access to records based on certain criteria, such as record owner, role, profile, or field value. The app builder can create a sharing rule that grants read access to all accounts with the VIP Account field value to all users. This way, all users can view these accounts, but only the owners can edit them. Change organization-wide defaults. Organization-wide defaults are the baseline level of access that users have to records they do not own. The app builder can change the organization-wide default for accounts from Public Read Only to Private. This way, only the owners can view and edit their own accounts, unless additional access is granted by other means, such as sharing rules. Configuring a permission set is not a valid action, as it does not affect record-level access. A permission set is a way to grant additional permissions and access settings to users on top of their profile settings, such as object permissions, field permissions, app permissions, etc. Setting up an Account Team is not a valid action, as it does not restrict record-level access. An Account Team is a way to share an account and its related records with a group of users who work together on the account, such as sales reps, managers, or support agents. An Account Team grants additional access to team members based on predefined roles and access levels.
質問 # 96
採用を増やすために、Universal Containers は Salesforce データ モデルの変更を提案して、営業担当者が主要な指標を簡単に確認できるようにします。プロポーザルには、取引先オブジェクトに関連する 3 つのカスタム オブジェクトがあり、1 つは主従関係があり、2 つはそうではありません。これらの各オブジェクトには、Account オブジェクトで集計する 15 のフィールドがあります。
この提案の 2 つの考慮事項は何ですか?
2つの答えを選択してください
- A. 積み上げ集計は主従関係に限定されます。
- B. オブジェクトは 20 個のオブジェクト参照を持つことができます。
- C. ロールアップ サマリーでは、MAX、MIN、SUM、COUNT、および AVG を使用できます。
- D. オブジェクトは 25 のロールアップ サマリーを持つことができます。
正解:C、D
質問 # 97
DreamHouse Realty は、拡大する太陽熱水収集事業を追跡するためのカスタム Lightning アプリケーションを構築しています。現在、Lightning アプリケーションには、標準コンポーネントを含むカスタム Lightning レコード ページが含まれています。
アプリケーションビルダーがカスタムコンポーネントを取得して新しい Lightning アプリケーションに組み込む必要がある 2 つのリソースはどれですか?
2つの答えを選択してください
- A. インポート ウィザード
- B. AppExchange
- C. ビジュアルフォース
- D. 頂点コード
正解:B、D
解説:
AppExchange and Apex Code are two resources that can provide custom components for a Lightning app. AppExchange is a marketplace where developers can publish and sell their custom components or apps. Apex Code is a programming language that can be used to create custom components or logic for a Lightning app. Import Wizard and Visualforce are not resources for custom components, but tools for data import and web page development respectively.
質問 # 98
Universal Containers は、フィールドを相互にリンクすることで、データ キャプチャ プロセスを合理化したいと考えています。彼らは、従属フィールドで使用可能な値が制御フィールドで選択された値によって駆動されるように、これを行いたいと考えています。規定された要件をサポートする考慮事項はどれですか? 3つの答えを選択してください
- A. 標準およびカスタムの選択リスト項目は依存項目にすることができます。
- B. 複数選択ピックリストは依存ピックリストにすることができますが、フィールドを制御することはできません
- C. インポート ウィザードでは、値が適切な制御フィールドに一致する場合にのみ、依存ピックリストに値をインポートできます。
- D. チェックボックス フィールドは制御フィールドにすることができますが、依存フィールドにすることはできません
- E. カスタム ピックリスト フィールドは、制御フィールドまたは依存フィールドのいずれかです。
正解:C、D、E
解説:
The import wizard only allows values to be imported into a dependent picklist if they match the appropriate controlling field. This ensures data integrity and prevents invalid values from being imported. Custom picklist fields can be either controlling or dependent fields. This allows the app builder to create custom dependencies between custom picklists. Checkbox fields can be controlling fields but not dependent fields. This allows the app builder to create dependencies based on checkbox values, such as true or false. Multi-select picklist fields can be dependent picklist fields but not controlling fields. This allows the app builder to create dependencies based on multiple values selected in a multi-select picklist field. Standard and custom picklist fields can be dependent fields, but not all standard picklist fields can be controlling fields. Some standard picklist fields, such as Lead Status or Opportunity Stage, cannot be controlling fields because they are used in other processes, such as lead conversion or sales path
質問 # 99
Universal Containers では、Review というカスタム オブジェクトを使用して、すべての従業員がリーダーシップのレビューを送信できます。これらのレビューは、人事部と記録を提出した従業員にのみ表示されます。
レビューへのアクセスを適切に制御するために、アプリ ビルダーが実行する必要がある 3 つの手順はどれですか?
3つの答えを選択してください
- A. 組織全体のデフォルトを非公開に設定します。
- B. Review オブジェクトに Master-Detail(User; フィールドを追加します。
- C. 階層を使用したアクセス許可を無効にします。
- D. 人事部の基準ベースの共有ルールを作成します。
- E. 人事部門以外のユーザー プロファイルからレビューの読み取りアクセス許可を削除します。
正解:C、D、E
解説:
Disable Grant Access Using Hierarchies, Create a criteria-based Sharing Rule for the HR Department, and Remove Review Read permission from non-HR profiles. These are correct because disabling Grant Access Using Hierarchies prevents users above the record owner in the role hierarchy from viewing the Review records, creating a criteria-based Sharing Rule for the HR Department allows users in that group to view all Review records, and removing Review Read permission from non-HR profiles prevents users in other profiles from viewing any Review records.
質問 # 100
UC には、関連付けられたアカウントの請求ステータスの値を示すフィールドが商談に必要であるという要件があります。商談が作成された後、この値を変更しないでください。この自動化された動作を構成するための推奨される解決策はありますか?
- A. 積み上げ集計フィールド
- B. ワークフロー
- C. 頂点
- D. 式フィールド
正解:B
質問 # 101
Universal Containers は、アカウントの詳細ページに、ステージごとに、関連するすべての商談のチャートを埋め込みたいと考えています。アカウント ページ レイアウトに追加するためにアプリケーション ビルダーが作成するレポートのタイプはどれですか?
- A. 商談オブジェクトに関する表形式のレポート。
- B. Account オブジェクトに関する表形式のレポート。
- C. 商談オブジェクトに関する要約レポート。
- D. アカウント オブジェクトに関する概要レポート。
正解:C
質問 # 102
DreamHouse Realty では、House__c カスタムオブジェクトの Asking_Price__c や Real_Estate_Agent_c などの特定の項目の項目値の変更が Chatter で目立つように表示されるようにする必要があります。
アプリケーションビルダーはどの Chatter 機能を利用する必要がありますか?
- A. パブリッシャーのアクション
- B. ありがとう
- C. フィード追跡
- D. トピック
正解:C
解説:
Feed Tracking is the Chatter feature that allows field value changes for certain fields to show up on Chatter. Thanks, Publisher Actions, and Topics are other Chatter features, but they do not relate to field value changes.
質問 # 103
オブジェクト固有の Create Record カスタム アクションを定義するときに、App Builder で使用できるオプションはどれですか? 2つの答えを選択してください
- A. エンド ユーザーを対象オブジェクトの詳細ページにリダイレクトする
- B. エンド ユーザーがレコード タイプを選択できるようにする
- C. ターゲット オブジェクトのフィールド値を事前に定義します。
- D. アクションのフィールドとレイアウトを指定します。
正解:C、D
解説:
The app builder has two options available when defining an object-specific Create Record custom action:
Pre-Defining field values on the target object. This means that the app builder can specify default values for certain fields on the target object when creating a new record using the custom action.
Specifying the fields and layout of the action. This means that the app builder can choose which fields to include in the action and how they are arranged on the screen. Option B and D are not options available when defining an object-specific Create Record custom action.
質問 # 104
......
テストエンジン練習DEX-403日本語テスト問題:https://jp.fast2test.com/DEX-403J-premium-file.html