I have a need to export XML data, through the export scenario (E.g. NOT through Web service/endpoints).
How should the Data provider be set up?
In particular, what is the format for the schema attachment?
Don't suppose there is any ability to use an XSD? That would seem to be the "Standard" for working with XML, would seem more appropriate to use an XSD as the schema attachment...
Sample: I want to both import and export a structure similar to that generated by this SQL:
Select(
Select top 3
BAccount.AcctCD As [CustomerID],
BAccount.AcctName As [CustomerName],
Customer.CustomerClassID AS [CustomerClassID],
Customer.TermsID As [TermsID]
From
Customer
Inner Join BAccount On BAccount.BAccountID = Customer.BAccountID And BAccount.CompanyID = Customer.Companyid
Where Customer.Companyid > 0
for xml Path(''), Type
) AS Customers FOR XML PATH(''), TYPE, ELEMENTS
Which produces XML such as:
<Customers><CustomerID>ABCSTUDIOS</CustomerID><CustomerName>ABC Studios Inc</CustomerName><CustomerClassID>KEY</CustomerClassID><TermsID>30D</TermsID><CustomerID>ABARTENDE </CustomerID><CustomerName>USA Bartending School</CustomerName><CustomerClassID>KEY</CustomerClassID><TermsID>30D</TermsID><CustomerID>ACTIVESTAF</CustomerID><CustomerName>Active Staffing Service</CustomerName><CustomerClassID>LOCAL</CustomerClassID><TermsID>30D</TermsID></Customers>
Basically Customer ID, Name, Class, and Terms - Limited data set, since looking for the data provider
Have found the provider PX.DataSync.Xml - NO examples, though. Import/Export training seems to skip anything other than Excel / Sql server