Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Intelligence (Analytics)
Create Dynamic Tables with Dynamic columns using xml datasource
UdayChinna
Hi
I am new to Birt. I heard that birt supports xml datasource. I have the following xml and my requirement is that i have to create report with this xml
which has dynamic tables with dynamic columns and rows. Is it possible with BIRT if yes does any one have any example or any tips.
<tables>
<table>
<name>Name 1></name>
<columns>
<colheader>col1</colheader>
<colheader>col2</colheader>
<colheader>col3</colheader>
</columns>
<rows>
<row>
<cell>row1</cell>
<cell>row2</cell>
<cell>row3</cell>
</row>
<row>
<cell>row4</cell>
<cell>row5</cell>
<cell>row6</cell>
</row>
</rows>
</table>
<table>
<name>Name 2></name>
<columns>
<colheader>col1</colheader>
<colheader>col2</colheader>
<colheader>col3</colheader>
</columns>
<rows>
<row>
<cell>row1</cell>
<cell>row2</cell>
<cell>row3</cell>
</row>
<row>
<cell>row4</cell>
<cell>row5</cell>
<cell>row6</cell>
</row>
</rows>
</table>
</tables>
I want my out should be like this in table format:
Name: Name1
col1 col2 col3
row1 row2 row3
row4 row5 row6
Name: Name2
col1 col2 col3
row1 row2 row3
row4 row5 row6
Thanks for any kind of help in advance.
Regard,
Chinna
Find more posts tagged with
Comments
There are no comments yet