Processing Order and Display of Bands
Posted: Thu May 16, 2013 2:31 pm
Hi,
I'm having trouble understanding the processing, rendering and printing order of bands in my report.
I have a report structure like this:
A GroupHeaderBand
B GroupHeaderBand
C DataBand
D GroupFooterBand
E GroupFooterBand
I am trying to fill additional a field in each of these bands with value from code. I have a list of strings and am always fetching the next one to write in the current band. Each time the value is retrieved from my code I have tracked which band asked for it, and noticed that the order of processing is rather strange.
Say the databand has 3 values (so should be 3 repetitions), in this case the trace that I got in my code was for a report generation in this order:
A, B, C, C, C*, D*, E*, C, D*, E*, D, E
The (*) means that my code was fired and I have a trace, but the report output did not contain the band.
Do you have any Idea why this happens?
I hope my problem is understandable. Thanks in advance!
Jack
I'm having trouble understanding the processing, rendering and printing order of bands in my report.
I have a report structure like this:
A GroupHeaderBand
B GroupHeaderBand
C DataBand
D GroupFooterBand
E GroupFooterBand
I am trying to fill additional a field in each of these bands with value from code. I have a list of strings and am always fetching the next one to write in the current band. Each time the value is retrieved from my code I have tracked which band asked for it, and noticed that the order of processing is rather strange.
Say the databand has 3 values (so should be 3 repetitions), in this case the trace that I got in my code was for a report generation in this order:
A, B, C, C, C*, D*, E*, C, D*, E*, D, E
The (*) means that my code was fired and I have a trace, but the report output did not contain the band.
Do you have any Idea why this happens?
I hope my problem is understandable. Thanks in advance!
Jack