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)
dynamic creation tabel
purushdk
Hi,
I am using birt 2.3
i need to create dynamic table based on arraylist.
Example
i have table name called PFdetails where i am storing some 10 columns.
i cant hard code labels because feature we may add additional columns
if possible to create based on db columns i need to create report
please provide steps
i am working with Linux OS
Thanks & Regards,
k.purushothaman
Find more posts tagged with
Comments
Happy
Look in the thread I wrote<br />
<a class='bbc_url' href='
http://www.birt-exchange.org/forum/designing-birt-reports/16668-checking-datatype-dynamically.html'>http://www.birt-exchange.org/forum/designing-birt-reports/16668-checking-datatype-dynamically.html</a><br
/>
<br />
I am doing the following here:<br />
1. Finding a Table in the design layout (could easily create my own if I wanted to though, there are other examples to do that).<br />
2. grabbing the column names from a comma separated string stored as a report Parameter (ColumnNameList)<br />
3. Adding additional columns until I reach the end of the list (Well, I am using another parameter to get the number of columns, but I could easily just loop through the array)<br />
4. Filling the Table.<br />
5. Applying basic formatting to the table<br />
<br />
Is this the kind of thing you are after?