2024年最新のMB-500日本語問題集にはMicrosoft Dynamics 365認証済み試験問題と解答
実際に出ると確認されたMB-500日本語試験問題集と解答でMB-500日本語無料更新
質問 # 19
あなたは Dynamics 365 Finance 開発者です。次の拡張データ型 (EDT) があります。
拡張機能を使用して EDT プロパティを変更する予定です。
どの操作を実行できるかを決定する必要があります。
どの操作が可能ですか?
- A. AccountBase の拡張機能を作成し、フィールド サイズを増やします。
- B. AccountId の拡張機能を作成し、フィールド サイズを増やします。
- C. AccountBase の拡張機能を作成し、フィールド サイズを減らします。
- D. AccountId の派生 EDT を作成し、フィールド サイズを減らします。
正解:A
解説:
You can only set the new String size to a value equal to or larger than the base EDT value.
Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/extensibility/modify-edt
質問 # 20
注: この質問は、同じシナリオを示す一連の質問の一部です。このシリーズの各質問には、指定された目標を達成できる可能性のある独自の解決策が含まれています。一部の質問セットには複数の正しい解決策が含まれる場合がありますが、他の質問セットには正しい解決策がない場合があります。
このセクションの質問に回答すると、その質問に戻ることはできません。そのため、これらの質問はレビュー画面には表示されません。
SalesLineType クラスを拡張し、システムの現在の日付の曜日を整数値として返す新しいメソッドを追加する必要があります。
SalesLineType を拡張し、新しいメソッドを追加するクラスを作成する必要があります。
解決策: 次のコードを作成します。
解決策は目標を達成できますか?
- A. いいえ
- B. はい
正解:A
質問 # 21
Dynamics 365 Finance and Operations 環境があります。
次のコードがあります: (行番号は参考のためにのみ含まれています)。
次の各ステートメントについて、そのステートメントが true の場合は [はい] を選択します。それ以外の場合は、「いいえ」を選択します。
注: 正しく選択するたびに 1 ポイントの価値があります。
正解:
解説:
Explanation:
Box 1: Yes
Class extension - Method wrapping and Chain of Command.
The functionality for class extension, or class augmentation, has been improved. You can now wrap logic around methods that are defined in the base class that you're augmenting. You can extend the logic of public and protected methods without having to use event handlers. When you wrap a method, you can also access public and protected methods, and variables of the base class. In this way, you can start transactions and easily manage state variables that are associated with your class.
Box 2: Yes
In the following example, the wrapper around doSomething and the required use of the next keyword create a Chain of Command (CoC) for the method. CoC is a design pattern where a request is handled by a series of receivers. The pattern supports loose coupling of the sender and the receivers
[ExtensionOf(classStr(BusinessLogic1))]
final class BusinessLogic1_Extension
{
str doSomething(int arg)
{
// Part 1
var s = next doSomething(arg + 4);
// Part 2
return s;
}
}
Box 3: Yes
Instance and static methods can be wrapped by extension classes. If a static method is the target that will be wrapped, the method in the extension must be qualified by using the static keyword.
Box 4: No
Wrapper methods must always call next.
Note: Wrapper methods in an extension class must always call next, so that the next method in the chain and, finally, the original implementation are always called. This restriction helps guarantee that every method in the chain contributes to the result.
In the current implementation of this restriction, the call to next must be in the first-level statements in the method body.
Here are some important rules:
* Calls to next can't be done conditionally inside an if statement.
* Calls to next can't be done in while, do-while, or for loop statements.
* A next statement can't be preceded by a return statement.
* Because logical expressions are optimized, calls to next can't occur in logical expressions. At runtime, the execution of the complete expression isn't guaranteed.
Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/extensibility/method-wrapping-coc
質問 # 22
あなたは Dynamics 365 Finance 開発者です。
長時間実行されているプロセスはシステムでタイムアウトになります。
この問題を解決するには、非同期フレームワークを実装する必要があります。
各ユースケースではどのクラスの runAsync メソッドを使用する必要がありますか? 答えるには、適切なクラスを正しいユースケースにドラッグします。各クラスは 1 回使用することも、複数回使用することも、まったく使用しないこともできます。コンテンツを表示するには、ペイン間で分割バーをドラッグするか、スクロールする必要がある場合があります。
注: 正しく選択するたびに 1 ポイントの価値があります。
正解:
解説:
Explanation:
質問 # 23
あなたは Dynamics 365 Finance 開発者です。次の拡張データ型 (EDT) があります。
拡張機能を使用して EDT のプロパティを変更する予定です。どの操作を実行できるかを決定する必要があります。どの操作が可能ですか?
- A. AccountBase の拡張機能を作成し、フォーム ヘルプ プロパティを変更します。
- B. Accountid のアート拡張機能を作成し、フィールド サイズを小さくします。
- C. Accountid の派生 EDT を作成し、フィールド サイズを増やします。
- D. AccountBase の派生 EOT を作成し、フィールド サイズを増やします。
正解:A
質問 # 24
会社は Dynamics 365 Finance を使用しています。
Vend Vend または V2 Entity という名前のエンティティがあります。新しい列をエンティティに追加します。新しい列がデータ転送アクティビティのエンティティで使用できることを確認する必要があります。どの 2 つのアクションを実行する必要がありますか?
それぞれの正解は、解決策の一部を示しています。注記; 正しく選択するたびに 1 ポイントの価値があります。
- A. [エンティティ リスト] ページで [ターゲット マッピングの変更] ボタンを選択します。
- B. [マッピングの詳細] フォームで [マッピングの生成] ボタンを選択します。
- C. エンティティ リスト ページの [検証] ボタンを選択します。
- D. [エンティティ] ページで [エンティティ構造] ボタンを選択します。
正解:B、C
質問 # 25
会社には、基本フォームに変更を加える拡張機能があります。
基本フォームに加えられたすべての拡張機能の変更を識別する必要があります。
目標を達成するために考えられる 2 つの方法は何ですか? それぞれの正解は完全な解決策を示します。
注: 正しく選択するたびに 1 ポイントの価値があります。
- A. 基本フォームの検索バーにテキスト e: を入力します。
- B. フォーム拡張要素の検索バーに、テキスト e: を入力します。
- C. フォーム拡張要素の検索バーに、テキスト c: を入力します。
- D. 基本フォームの検索バーにテキスト「c:」を入力します。
- E. 基本フォームを右クリックし、参照の表示を選択します。
正解:B、E
解説:
A: Customization and Extension
B: Example: Navigate to FMRental.Extension in the Tree Designer
1. In the Visual Studio, in Solution Explorer, in the FleetManagement Discounts project, expand User Interface > Form Extensions.
The FMRental.Extension element is an extension element that extends the functionality of the FMRental form by adding two new data sources and a new tab control.
2. In Solution Explorer, double-click FMRental.Extension to open the designer.
3. In the designer's search box, type 'e:' as shown in the image below. This filters the current designer to only show nodes that belong to the current extension.
Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/extensibility/customize-model-elements-extensions
質問 # 26
ベンダー除外リスト ソリューションを開発、テスト、展開する必要があります。
何を作成する必要がありますか? 答えるには、適切なオブジェクトを正しいアクションにドラッグします。各要素は 1 回使用することも、複数回使用することも、まったく使用しないこともできます。コンテンツを表示するには、ペイン間で分割バーをドラッグするか、スクロールする必要がある場合があります。
注: 正しく選択するたびに 1 ポイントの価値があります。
正解:
解説:
Explanation:
Box 1: package
An AOT package is a deployment and compilation unit of one or more models that can be applied to an environment. It includes model metadata, binaries, reports and other associated resources. One or more AOT packages can be packaged into a deployable package, which is the vehicle used for deployment of code (and customizations) on demo, sandbox, and production environments.
Box 2: New model
Model - You configure your model to refer to two other models. This enables your model to reference metadata and code elements that are in other packages.
Box 3: project
Project - You create a project and then associate your project to your new model. You add elements to your project, which are also added to your model. Specifically, you add an extended data type (EDT). You also add a table that you populate with fields and a method.
Box 4: deployable package
Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/dev-tools/create-data-model-elements
Topic 3, Munson's Pickles and Preserves FarmBackground
Munson's Pickles and Preserves Farm produces and sells jarred food goods. The organization has several production and warehouse locations across the United States. Each location runs both production and warehousing operations. The company has three locations: East Central, and West.
The company is upgrading its Dynamics AX 2009 system to Dynamics 565 Finance.
Current environment
Munson s Pickles and Preserves Farm plans to migrate customizations, data, and integration from its legacy system into Dynamics 365 finance and operations apps. The Dynamics 365 finance and operations environment includes:
* multiple cloud-hosted development environments using Microsoft Visual Studio 2017
* a Microsoft Azure DevOps project for source control
* two tier 2 environments for user acceptance testing and staging, as wen as production Munson s Pickles and Preserves Farm is currently in the planning and development phase of the upgrade process- The company's internal development team needs additional development resources to address issues.
The company already created a project that rs set up to use a custom model named GPExtensions.
Integrations
Munson's Pickles and Preserves Farm has a new integration for its freight processing information. The internal development team created the secure file transfer protocol (SFTP) site for the source information to be stored and the staging table to house the source information once the data is added to Dynamics 365 Finance, information from the source will be transferred once a day from the source system and integrated with the target system. More than 10.000 records will be transferred over the integration. The company created an aggregate entity for the integration to minimize the amount of transmitted data.
Munson s Pickles and Preserves Farm has added a new integration for freight processing where all item weights, dimensions, and other factors will be configured in the external portal while planning the loads. Once the load is planned, it will be integrated into Dynamics 36S finance and operations apps for the freight invoice processing to occur.
No duplicate invoices or posting are associated with the freight invoice charges. The integration of this information from the source system is intended only for report creation and compilation purposes.
Planned changes
Munson' s Pickles and Preserves Farm wants to change inventory forms to fit its current needs. Any modifications or enhancements must follow the existing functionality for forms m Dynamics 365 Finance.
Requirements
Munson's Pickles and Preserves Farm wants to change inventory forms to fit its current needs. Any modifications or enhancements must follow the existing functionality for forms m Dynamics 365 Finance.
Integrations
All data from integrations have the same format as an existing Dynamics 365 Finance apps field. All enhancements or customizations must use existing assets before creating new functionality.
Munson's Pickles and Preserves Farm wants to change its integration strategy to include real-time data from the freight processing source system. The inventory must update as it is sold from the system. That information will be updated in Dynamics 365 Finance.
The freight processing integration requires the use of an SFTP site to store XML files from the source system.
The additional integration will use OData and must be transferred in real time.
A periodic batch job must
* Pull data from the SFTP site.
* Import the data to a staging table used to hold the information from the source system.
* Map source data to the target table m Dynamics 365 Finance.
The imported Load ID field must be added to the Sales Order header for all processed orders. Additional requirements for integrations, including other integration strategies, may be necessary as the company grows.
Existing tables must be changed to include the Load ID. The database will need to be synched before adding the Load ID field.
Changes
Munson's Pickles and Preserves Farm must change the Inventory Status form to include more columns. It plans to create a table to enter the data for the Inventory Status form as a new data source. The company wants to add both the Product Name field and Batch ID field to this new table. The current form includes the item number, location, license plate, product inventory dimensions, and quantity.
The grid on the inventory Status form must include the product name by using the item number and legal entity. The user interface must be created to include the new columns and the data must be available to add to the gnd. The form must have only an Action Pane, a Navigation List a List Style Grid, a Details Header, and a Details Tab in the design and include the Load ID field.
Munson's Pickles and Preserves Farm is currently in the process of adding the other required fields: one for Product Name and one for Batch ID- The new fields must be related to extended data types for the original fields on the existing data source for the Inventory Status form. Munson's Pickles and Preserves Farm plans to add the EcoResProductName and Batch ID data to the extended table for WHSTmpStatusChange. The fields on the table extension must be populated with data and visible on the inventory Status form on insert.
Issues
* The Internal development team has created the SFTP site connections, the staging table, and the batch Jobs for the new integration for freight processing. The development team needs to map the source data to the target table and the data management workspace. The development team notices errors with mapping target fields in the data management workspace. The team needs another developer to configure the table extensions, class extensions, and form extensions that are required for the planned changes.
* The internal development team has issues adding the required fields to the inventory Status standard form.
The team needs another developer to configure the table extensions, class extensions, and form extensions that are required for the planned changes.
質問 # 27
あなたはアプリの新機能を開発しています。
SysTest フレームワークを使用して、機能の単体テストを実行する必要があります。
適切なテスト属性を使用して単体テスト コードを作成する必要があります。
どのテスト属性を使用する必要がありますか? 回答するには、適切なテスト属性を正しい説明にドラッグします。各テスト属性は、1 回だけ使用することも、複数回使用することも、まったく使用しないこともできます。コンテンツを表示するには、ペイン間で分割バーをドラッグするか、スクロールする必要がある場合があります。
注: 正しく選択するたびに 1 ポイントの価値があります。
正解:
解説:
質問 # 28
ある企業は Dynamics 365 Supply Chain Management を実装しています。
すべての顧客プロジェクトの請求書を示すレポートを作成する必要があります。
どの属性を使用する必要がありますか?答えるには、適切な属性を正しい要件にドラッグします。各属性は、1 回だけ使用することも、複数回使用することも、まったく使用しないこともできます。コンテンツを表示するには、ペイン間で分割バーをドラッグするか、スクロールする必要がある場合があります。 注: 正しく選択するたびに 1 ポイントの価値があります。
正解:
解説:
Explanation:
質問 # 29
Vou は Dynamics 365 財務開発者です。
inventQuantity という名前の整数変数を作成します。
inventQuantlty の値を info ステートメントに表示する必要があります。
どのコードセグメントを使用する必要がありますか?
- A. info(inventQiuntIty);
- B. info(int2str{inventQi.Ntity));
- C. info{*trlen(int2str<inventQuantity));
正解:B
質問 # 30
テーブルの拡張を作成し、ビルドを実行して、新しく拡張したテーブルを同期する必要があります。
どの 3 つのアクションを順番に実行する必要がありますか? 回答するには、アクションのリストから適切なアクションを回答領域に移動し、正しい順序で並べます。
正解:
解説:
1 - Right-click WhsTmpStatusChange in the Application Object Tree (AOT)...
2 - Right-click the project, select Properties, set the Synchronie...
3 - Right-click the project and build the project.
質問 # 31
ProjTable の拡張機能を作成します。
拡張機能を設定する必要があります。
拡張機能で変更できる 3 つのテーブル プロパティはどれですか? それぞれの正解は完全な解決策を示します。
注記; 正しく選択するたびに 1 ポイントの価値があります。
- A. タイトルフィールド!
- B. ラベル
- C. 変更された日時
- D. プレビュー パーツ参照
- E. フォーム参照
正解:C、D、E
質問 # 32
あなたは Dynamics 365 Finance and Operations の開発者です。
営業部門のマネージャーは、地域別の総顧客数と地域別の総売上高を表示できる必要があります。
主要業績評価指標 (KPI) を構築し、アプリケーションのタイルに表示する必要があります。
KPI をどのようにモデル化すればよいでしょうか? 答えるには、適切なオブジェクトを正しい KPI コンポーネントにドラッグします。各オブジェクトは 1 回だけ使用することも、複数回使用することも、まったく使用しないこともできます。コンテンツを表示するには、ペイン間で分割バーをドラッグするか、スクロールする必要がある場合があります。
注: 正しく選択するたびに 1 ポイントの価値があります。
正解:
解説:
Explanation:
Agg M - Agg Dim - Agg Dim
質問 # 33
会社は Dynamics 365 Finance を使用しています。
顧客グループが EXT に等しいすべての顧客をループするクエリを実装するには、QueryBuilder クラスを使用する必要があります。クエリを実装する必要があります。クエリ オブジェクトを宣言して初期化します。
クエリを実行する必要があります。
どの順序でアクションを実行する必要がありますか? 回答するには、すべてのアクションをアクションのリストから回答領域に移動し、正しい順序で並べます。
正解:
解説:
Explanation:
質問 # 34
注: この質問は、同じシナリオを示す一連の質問の一部です。このシリーズの各質問には、指定された目標を達成できる可能性のある独自の解決策が含まれています。一部の質問セットには複数の正しい解決策が含まれる場合がありますが、他の質問セットには正しい解決策がない場合があります。
このセクションの質問に回答すると、その質問に戻ることはできません。その結果、これらの質問はレビュー/画面には表示されません。
プロジェクト内に新しいフォームを作成します。
タブを縦に並べて表示する必要があります。
解決策: オペレーショナル ワークスペース パターンを適用します。
解決策は目標を達成できますか?
- A. いいえ
- B. はい
正解:B
解説:
Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/user-interface/section-tabbed-list-subpattern
質問 # 35
あなたは Dynamics 365 Finance 開発者です。
Vehicleld という名前のフィールドを含む FMVehicle という名前のテーブルがあります。このテーブルには、Vehicleld フィールドに Vehicleldldx という名前のクラスター化インデックスがあります。テーブルを参照するには、 vehicle という名前のテーブル バッファを宣言します。
vehicle 変数の Vehicleld フィールドに基づいて、FMVehicle テーブルからすべてのレコードを昇順で選択する必要があります。
どの埋め込み SQL ステートメントを使用する必要がありますか?
- A. オプション C
- B. オプション D
- C. オプション A
- D. オプション B
正解:A
質問 # 36
Dynamics 365 Finance の Extensible Data Security (XDS) を使用して、レコード レベルのセキュリティを実装しています。
ユーザーは、自分が管理する顧客からの販売注文のみを表示できるようにする必要があります。
CustGroup フォームを設定する必要があります。
どのオプションを使用する必要がありますか? 回答するには、回答領域で適切なオプションを選択してください。
注: 正しく選択するたびに 1 ポイントの価値があります。
正解:
解説:
質問 # 37
会社は Dynamics 365 Finance を使用しています。次の表に示す拡張データ型 (EDT) の要素をカスタマイズしています。
WorkCalendar という名前のテーブルがあります。このテーブルには、BasicCalendarID EDT を使用する BasicCalendarlD という名前の列があります。エクステンションを使用して柱の長さを増やす必要があります。
解決策: BasicCalendarID の派生 EDT を作成します。
解決策は目標を達成できますか?
- A. いいえ
- B. はい
正解:A
質問 # 38
4 つのテーブルを含む Bring Your Own Database (BYOD) エンティティを作成します。
エンティティ内の特定のフィールドに対して変更追跡を構成する必要があります。
どのオプションを有効にする必要がありますか?
- A. プライマリテーブル
- B. カスタムクエリ
- C. エンティティ全体
- D. エンティティのエクスポート
正解:B
解説:
Reference:
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/data-entities/entity-change-track
質問 # 39
......
実際問題を使ってMB-500日本語問題集で100%無料MB-500日本語試験問題集:https://www.goshiken.com/Microsoft/MB-500J-mondaishu.html