<ST_MailMergeOdsoFMDFieldType> (Merge Field Mapping Types)

This simple types specifies the possible types used to indicate if a given mail merge field has been mapped to a column in the given external data source.

example:
<w:odso>
  …
  <w:fieldMapData>
    <w:type w:val="dbColumn" />
    <w:name w:val="Country" />
    <w:mappedName w:val="Country or Region" />
    <w:column w:val="9" />
    …
  </w:fieldMapData>
</w:odso>

In this example, the country column within the given external data source shall be mapped to the mail merge field Country or Region, as specified by the <type >element's @val attribute being equal to dbColumn. ]

This simple type's contents are a restriction of the XML Schema string datatype.

The following are possible enumeration values for this type:

Enumeration Value

Description

<dbColumn> (Field Mapping to Data Source Column)

Specifies that the mail merge field has been mapped to a column in the given external data source.

<null> (Field Not Mapped)

Specifies that the mail merge field has not been mapped to a column in the given external data source.

Referenced By

<type@val>2.14.32)

The following XML Schema fragment defines the contents of this simple type:

<simpleType name="ST_MailMergeOdsoFMDFieldType">
	<restriction base="xsd:string">
	<enumeration value="null"/>
	<enumeration value="dbColumn"/>
	</restriction>
</simpleType>