nerdexam
Microsoft

MB-500 · Question #170

A company wants to integrate Dynamics 365 Finance with an external application. The apps must send each customer's name and address as a single column to the external application. You need to add a…

The correct answer is D. From the CustCustomerEntity table, select the Columns node, select New, and then select String. Create a computed field In this example, you add a computed field to the FMCustomerEntity entity. For reads, the field combines the name and address of the customer into a nice format. For writes, your X++ code parses the combined value into its separate name and address…

Implement data and application integration

Question

A company wants to integrate Dynamics 365 Finance with an external application. The apps must send each customer's name and address as a single column to the external application. You need to add a computed column to the CustCustomerEntity. What should you do?

Options

  • AFrom the CustCustomerEntity table, select the Columns node, select New, and then select
  • BCreate an extension for the CustTable table and then add the new display field.
  • CCreate an extension of the CustCustomerEntity table, select New, and then select String
  • DFrom the CustCustomerEntity table, select the Columns node, select New, and then select String

How the community answered

(26 responses)
  • A
    15% (4)
  • B
    4% (1)
  • C
    8% (2)
  • D
    73% (19)

Explanation

Create a computed field In this example, you add a computed field to the FMCustomerEntity entity. For reads, the field combines the name and address of the customer into a nice format. For writes, your X++ code parses the combined value into its separate name and address values, and then the code updates the regular name and address fields. 1. In Microsoft Visual Studio, right-click your project, and add the existing FMCustomerEntity. 2. In Solution Explorer, right-click the FMCustomerEntity node, and then click Open. 3. In the designer for FMCustomerEntity, right-click the Fields node, and then click New > String https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/data-entities/data-entity- computed-columns-virtual-fields

Topics

#data entity#computed column#CustCustomerEntity#data integration

Community Discussion

No community discussion yet for this question.

Full MB-500 Practice