nerdexam
Microsoft

MB6-704 · Question #42

You need to store the preferred method of correspondence in a table named DirPersonTable. The solution must meet the following requirements: - The table must have a field that stores the preferred…

The correct answer is A. Create an extended data type (EDT) used to store the preferred method of correspondence. EDT can be used for localization. Both EDT and base enums can be used as extension for a field. So why to create an EDT for a base enum? This is because, Only EDTs can be used when adding a field to dialog. If a field used in a dialog is of the type enum like NoYes, even then…

Develop Application Objects

Question

You need to store the preferred method of correspondence in a table named DirPersonTable. The solution must meet the following requirements:

  • The table must have a field that stores the preferred method of

correspondence.

  • The field must have values of Mail, E-mail, or Unknown.
  • The text representing the preferred method of correspondence valueson

forms must be localized to the language used by the user.

  • The values in the database must not be localized.

How should you create the field in DirPersonTable?

Options

  • ACreate an extended data type (EDT) used to store the preferred method of correspondence.
  • BCreate an enum that stores the preferred method of correspondence and has the values of Mail,
  • CCreate a string field that stores the preferred method of correspondence.
  • DCreate an integer field that stores the preferred method of correspondence.

How the community answered

(43 responses)
  • A
    81% (35)
  • B
    2% (1)
  • C
    5% (2)
  • D
    12% (5)

Explanation

EDT can be used for localization. Both EDT and base enums can be used as extension for a field. So why to create an EDT for a base enum? This is because, Only EDTs can be used when adding a field to dialog. If a field used in a dialog is of the type enum like NoYes, even then the extended data type NoYesId ex- tending the base enum NoYes must be used.

Topics

#EDT#enum#field localization#table fields

Community Discussion

No community discussion yet for this question.

Full MB6-704 Practice