It appears that there is a bug in the generated code that processes the PDF setup.
The header on the FIRST page of the report overlays the data portion of the report. All other pages are formatted correct.
SC 7.00.0005
I believe that this is the problem:
if ($Init_Pdf)
{
$this->Pdf_init();
$this->Pdf->AddPage();
$this->Pdf->SetY(5);
$Init_Pdf = false;
}
The call to SetY ignores any positioning and content that is output during the first header.