Jump to content

Outputting data from Calypso to XML


---
 Share

Recommended Posts

Has anyone done, or have knowledge of how this is done.
We will be using a customer portal to enter variable CMM
data and it needs to be in the XML format. I do have PCM.
Link to comment
Share on other sites

Clarke,

I've attached a data compiler macro that outputs to .xls.. My apology, but I don't remember the author. Perhaps you could edit the vba code by simply swapping the .xls extension .xml. That's probably a too optimistic on my part.

If you have a support license with Zeiss, contact Greg Ellington. He is a software specialist for Zeiss and is basically a genius when it comes to excel and anything coding-related.


3301_d2f4789e6e68d85824f88ce2f09cf15c.xls
3301_469c3b91f17c2b2ed9f90f083bb861bf.xls


Jeff Frodermann
Windings, Inc.
New Ulm, Minnesota
Link to comment
Share on other sites

What have Excel to do with xml?

How should it be tagged? Its hard to say anything else then yes, if you dont provide how it shall be formatted.
<char>
<title>abc</title>
<nom>123</nom>
<act>124</nom>
</char>
Should be very easy to accomplish. How ever, using PCM might be pretty slow if your programs is on the lager side. Table files and som scripting language is propabilly preferable.

This is written on my phone, so dont expect it to work. But you get the idèa if you go the pcm route..
for i =1 to getCFNames().size
   addToFile("xx","<char>"+getParameterNamed(getCFNames,i)+"</char>")
   addToFile("xx","<act>"+getActual(getParameterNamed(getCFNames,i)).actual+"</act>")
...... 
Link to comment
Share on other sites

Please sign in to view this quote.

Ya, I wasn't sure what Jeff was suggesting, I just assumed it was a place to start? However Jeff, I do appreciate the input.

How should it be tagged? Its hard to say anything else then yes, if you dont provide how it shall be formatted.
<char>
<title>abc</title>
<nom>123</nom>
<act>124</nom>
</char>
Should be very easy to accomplish. How ever, using PCM might be pretty slow if your programs is on the lager side. Table files and som scripting language is propabilly preferable.

This is written on my phone, so dont expect it to work. But you get the idèa if you go the pcm route..
for i =1 to getCFNames().size
   addToFile("xx","<char>"+getParameterNamed(getCFNames,i)+"</char>")
   addToFile("xx","<act>"+getActual(getParameterNamed(getCFNames,i)).actual+"</act>")
...... 
[/quote] Thank Eric!
Link to comment
Share on other sites

 Share

×
×
  • Create New...