OWC10 PivotTable XmlData property alter pivot table xml (Office XP SP3)

M

Mario A.

Hi

I created some pivot table and spreadsheet (stored as blob xml in a
SQL server RDBMS) using OWC10.dll ver. 10.0.0.2621 with O.S. windows
2003 server and analisys server 2000 SP3 enterprise edition.

2 months later I have upgraded to office xp SP3 and launching a .NET
batch program I noted this behavior:

the batch program read the xml sting from db and assign it to XMLData
property of a OWC10.PivotTable object creatd by OWC10.dll ver.
10.0.0.6619 (SP3).
This assignment alter the xml passed. I show this by a C# example:

....
mPivotTable = new OWC10.PivotTable();
//mPTXml is correctly readed from db and assigned to XMLData
mPivotTable.XMLData = mPTXml;
// Now lXml contains the same xml as mPTXml without InvertedRowMember
nodes...
lXml = mPivotTable.XMLData

Thanks in advance for the help

Mario A.
 
Top