Passing Data

When reports are converted to List & Label, the input items and variables from the source report are saved in a data set definition file (extension xsd). Here is an example of the data set definition file for the company.qrp report file.

"<?xml version="1.0" standalone="yes"?>
<xs:schema id="company" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
 <xs:element name="company" msdata:IsDataSet="true" msdata:UseCurrentLocale="true">
   <xs:complexType>
     <xs:choice minOccurs="0" maxOccurs="unbounded">
       <xs:element name="InputItems">
         <xs:complexType>
           <xs:sequence>
             <xs:element name="Name" type="xs:string" minOccurs="0" />
             <xs:element name="Addr1" type="xs:string" minOccurs="0" />
             <xs:element name="City" type="xs:string" minOccurs="0" />
             <xs:element name="State" type="xs:string" minOccurs="0" />
             <xs:element name="ZIP" type="xs:string" minOccurs="0" />
             <xs:element name="Country" type="xs:string" minOccurs="0" />
             <xs:element name="Phone" type="xs:string" minOccurs="0" />
             <xs:element name="Fax" type="xs:string" minOccurs="0" />
           </xs:sequence>
         </xs:complexType>
       </xs:element>
       <xs:element name="ReportVariables">
         <xs:complexType>
           <xs:sequence>
             <xs:element name="Symbol" type="xs:base64Binary" minOccurs="0" />
           </xs:sequence>
         </xs:complexType>
       </xs:element>
     </xs:choice>
   </xs:complexType>
 </xs:element>
</xs:schema>

Last updated