Summary
XML Report differ between tags with the same name
Content
Hello community,
I'm trying to create a PDF report with a XML file in the Word Template. The structure of the XML file ist not optimal but I can't change it.
The structure of the XML file is as follows:
<entity>
<phones>
<phone>
...
</phone>
<phone>
...
</phone>
</phones>
<director>
<phones>
<phone>
...
</phone>
</phones>
</director>
</entity>
Now I want to list all numbers of the entity but not the number of the director. My problem is that this does not work.
I created my repeating groups as follows:
for each entity
for each phones
for each phone
...
end
end
end
As the numbers of the director are within the entity tag they appear as well. I need something like:
for each entity
for the first phones
for each phone
...
end
end
end
Is there any possibilty to realize that in the word template of the BI Publisher?
Thanks