natashaXXX
Programmer
I want to report off an xml file with structure
<details>
<data>
<name>fred</name>
<balances>
<shares>45</shares>
<share_type>
<ordinary>A-type</ordinary>
</share_type>
</balances>
</data>
<data>
<name>mark</name>
<balances>
<shares>66</shares>
<share_type>
<ordinary>B-type</ordinary>
</share_type>
</balances>
</data>
</details>
How can I have a report showing
name shares share_type.
There are no linking fields between the tables, but surely the xml structure dictates that the Mark owns 66 shares, of B-type. Can Crystal read this structure? I have tried with no success, unless I create additional tags in each table to link the tables. Please advise if I can avoid this.
<details>
<data>
<name>fred</name>
<balances>
<shares>45</shares>
<share_type>
<ordinary>A-type</ordinary>
</share_type>
</balances>
</data>
<data>
<name>mark</name>
<balances>
<shares>66</shares>
<share_type>
<ordinary>B-type</ordinary>
</share_type>
</balances>
</data>
</details>
How can I have a report showing
name shares share_type.
There are no linking fields between the tables, but surely the xml structure dictates that the Mark owns 66 shares, of B-type. Can Crystal read this structure? I have tried with no success, unless I create additional tags in each table to link the tables. Please advise if I can avoid this.