Page 1 of 1

Page Footer wrong data at first Page

Posted: Wed Jan 08, 2014 9:57 am
by ChrDressler
Hi,

I have two sources and a 1:1 relation: Customers -> CustomerAdresses.
I want to print CustomerAdresses in the page footer. All is wired via DataBand.

But an page one, the repots prints the adress of Customer 2 :x
Page 1: Customer 2 <- wrong!
Page 2: Customer 2 <- ok
Page 3: Customer 3 <- ok
Page 4: Customer 4 ...

This works fine if I print the Adress in the DataBand for CustomerAdresses.
I think, the calculation of the Relation runs too early for page 1.
What can I do to prin correct Relation-Data at page one?

-Christoph

Re: Page Footer wrong data at first Page

Posted: Thu Jan 09, 2014 7:45 am
by Alex K.
Hello,

Can you please send us a sample report with test data which reproduce the issue for analysis.

Thank you.

Re: Page Footer wrong data at first Page

Posted: Tue Jan 14, 2014 9:44 am
by ChrDressler
I don't know how to send you data as easily, because I use DataSets, not xml etc.
The issue ist not so urgent... If I need,, I write again. Then, I will constrik mockup-data.

-Christoph

Re: Page Footer wrong data at first Page

Posted: Wed Jan 15, 2014 9:07 am
by HighAley
Hello.

As a way, you can use the following code in the BeforePrint event of a page and sent us the files you get.

Code: Select all

YourDataTableName.DataTable.DataSet.WriteXml("e:\\data.xml");
YourDataTableName.DataTable.DataSet.WriteXmlSchema("e:\\data.xsd");
Thank you.