QuestionQ280

Design and develop AOT elements

A company uses Dynamics 365 finance and operations apps.

You have a custom enumeration named CarType. The enumeration includes the following elements:

  • Sedan
  • SUV

You must extend CarType and add a new element named MUV to CarType.

You need to develop a solution that meets the requirements.

Solution: Set the IsExtensible property of the CarType enumeration to true. Create an extension of the CarType base enumeration and add the MUV element.

Does this solution meet the goal?

  • A Yes
  • B No
Explanation

Dynamics 365 Finance and Operations permits an enumeration marked IsExtensible = true to be extended. An enum extension can add new enum values, including MUV. Microsoft Learn: Add values to enums through extension

Learn more

Community Discussion

No comments yet. Be the first to start the discussion!