Note: This question is part of a series of questions that present the same scenario.
Each question in the series contains a unique solution that might meet the stated goals.
Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question in this section, you will NOT be able to return to it.
As a result, these questions will not appear in the review screen.
You are adding a new field to the SalesTable form.
You must use an extension to add a status field onto the form.
You need to create the extension in the Application Object Tree (AOT) and add the extension to the demoExtensions model.
Solution: Add a new form object to the project and name the form SalesTable.Extension.
Does the solution meet the goal?
Click on the arrows to vote for the correct answer
A. B.B.
Instead navigate to the user interface forms section for the SalesTable form and create an extension.
Note: In Dynamics 365 Finance and Operations, the new fields will need to be added via a table extension.
Create the extensions on the SalesTable.
https://stoneridgesoftware.com/how-to-extend-sales-order-update-functionality-to-custom-fields-in-d365-finance-and-operations/The solution provided of adding a new form object to the project and naming it SalesTable.Extension does not meet the stated goal of using an extension to add a status field onto the SalesTable form in Dynamics 365 Finance and Operations.
The correct solution to meet the goal would involve creating a new extension object that extends the SalesTable form and adds a new field for the status. This extension can be created in the AOT by following these steps:
In the AOT, right-click on the demoExtensions model, select New > Extension, and then select Form extension.
In the Form field, select SalesTable.
Give the extension a unique name and select Create.
In the newly created extension object, add a new data field to the SalesTable form by right-clicking on the Fields node and selecting New > Data field.
Name the new field "Status" and configure its properties as needed.
Save the extension and build the project.
Deploy the updated demoExtensions model.
After following these steps, the new "Status" field should appear on the SalesTable form as an extension, without modifying the original SalesTable form or code.