<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.
<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 |
|---|---|
|
Specifies that the mail merge field has been mapped to a column in the given external data source. |
|
Specifies that the mail merge field has not been mapped to a column in the given external data source. |
Referenced By |
|---|
|
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>