[Table of Contents] [docx version]

WordprocessingML Reference Material - Table of Contents

odso (Office Data Source Object Settings)

This element specifies a group of additional settings for the mail merge information which comprise an extension to the standard settings stored with a mail merge which performs two functions:

First, it provides additional information about the mail merge data source, specifically: information about how to map the columns in the data source to MERGEFIELD fields and information about records which shall be included and excluded when creating merged documents, and column delimiters used in text data sources. This information may be used regardless of the value of the dataType element (§2.14.10) when it is present.

Second, it provides an alternate set of connection information which should be used when the dataType element (§2.14.10) specifies a value of native. This alternate connection string provides additional connection information for applications which choose to support the ODSO connection string syntax. If the dataType element (§2.14.10) specifies that the data type of the current mail merge is not native, then the second group of settings specified within this element shall be ignored in favor of their non-ODSO equivalents.

[Example: Consider the WordprocessingML for a source document whose mail merge includes mail merge information including ODSO settings as follows:

<w:odso>
<w:udl w:val="…" />
<w:table w:val="Sheet1$" />
<w:src r:id="rId1" />
<w:colDelim w:val="9" />
<w:fHdr w:val="1" />
<w:fieldMapData>
<w:type w:val="dbColumn" />
<w:name w:val="Title" />
<w:mappedName w:val="Courtesy Title" />
<w:lid w:val="en-US" />
</w:fieldMapData>
<w:recipientData r:id="rId2" />

</w:odso>

The odso element and its child elements provide all of the information specified above that is needed to carry out a mail merge with the current document. This includes alternate connection information using the udl, table, and src elements, and additional mail merge information in the other child elements. end example]

Parent Elements

mailMerge2.14.20)

 

Child Elements

Subclause

colDelim (Column Delimiter for Data Source)

§2.14.5

fHdr (First Row of Data Source Contains Column Names)

§2.14.14

fieldMapData (External Data Source to Merge Field Mapping)

§2.14.15

recipientData (Reference to Inclusion/Exclusion Data for Data Source)

§2.14.27

src (ODSO Data Source File Path)

§2.14.30

table (Data Source Table Name)

§2.14.31

type (ODSO Data Source Type)

§2.14.33

udl (UDL Connection String)

§2.14.34

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_Odso">

   <sequence>

   <element name="udl" type="CT_String" minOccurs="0"/>

   <element name="table" type="CT_String" minOccurs="0"/>

   <element name="src" type="CT_Rel" minOccurs="0"/>

   <element name="colDelim" type="CT_DecimalNumber" minOccurs="0"/>

   <element name="type" type="CT_MailMergeSourceType" minOccurs="0"/>

   <element name="fHdr" type="CT_OnOff" minOccurs="0"/>

   <element name="fieldMapData" type="CT_OdsoFieldMapData" minOccurs="0" maxOccurs="unbounded"/>

   <element name="recipientData" type="CT_Rel" minOccurs="0" maxOccurs="unbounded"/>

   </sequence>

</complexType>