Hi,
i have multiple worklflows in some folder, and each one of them, contain always, an Input Data tool, unique, per workflow.
I want to make a workflow to get the data of the Input Tool for all the workflows in the folder, dynamically, into a table, without having to open the workflows and merge the Input Data for each one of the workflows .
The idea is to, as soon as a new workflow is added, the list gets updated, when running it again.
I've tried with a macro for each xml file path, but without success. Help is much appreciated.
For example, the XML looks like the below, how to extract Data into columns, for all the workflows:
<Configuration>
<NumRows value="1" />
<Fields>
<Field name="Col1" />
<Field name="Col2" />
<Field name="Col3" />
<Field name="Col4" />
</Fields>
<Data>
<r>
<c>abc</c>
<c>1</c>
<c>1234</c>
<c>x</c>
</r>
</Data>
</Configuration>
Regards,