Extended Data Types (EDT) Modification Properties for Visual Studio

Properties for Modifying Extended Data Types in Visual Studio

Question

You are working with extended data types in Visual Studio.

You need to create an extension of an Extended Data Types (EDT) that is derived from base data types.

Which three properties can be modified? Each correct answer presents a complete solution.

NOTE: Each correct selection is worth one point.

Answers

Explanations

Click on the arrows to vote for the correct answer

A. B. C. D. E.

ACE.

String size can be defined only on root EDTs.

The system will use the largest value that is defined across the EDT and its extensions.

Labels and Help text properties can be changed by an extension, but only one value can remain.

https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/extensibility/extensible-edts

When creating an extension of an Extended Data Types (EDT) that is derived from base data types, the following three properties can be modified:

A. String size: This property determines the maximum length of the string that can be stored in the EDT. For example, if the EDT is used to store a customer name, you might set the string size to 50 to ensure that the name can be stored in the EDT.

E. Label: This property specifies the label that is displayed for the EDT in the user interface. For example, if the EDT is used to represent a customer account number, you might set the label to "Customer Account Number" to make it clear to users what the EDT represents.

D. Alignment: This property specifies the alignment of the EDT in the user interface. For example, if the EDT is used in a form, you might set the alignment to "right" to align the EDT to the right side of the form.

B. IsExtensible: This property determines whether the EDT can be extended by other developers. If IsExtensible is set to "true", other developers can create extensions of the EDT. If IsExtensible is set to "false", other developers cannot create extensions of the EDT.

C. Form help: This property specifies the help text that is displayed for the EDT in the user interface. For example, if the EDT is used to represent a date, you might set the form help to "Enter a valid date in the format MM/DD/YYYY".

Therefore, the correct options are A. String size, E. Label and D. Alignment.