E9.2 bi publisher create invoice template

tkim415

Active Member
i have a rtf template that has the header and detail section like an invoice. Everything looks fine but if there are more than one pdf page, the first page has a blank line between the header and the detail section and the rest of the pages do not. Is there a way to get rid of the blank line on the first page? i tried the inner table method where i created one cell table and put the real detail section within it and it still had the blank line on the first page.

Basically i did it this way.

<?for-each@section:invoices?>
<?call-template:header?>
<?start-body?>
<?call-template:detail?>
<?end for-each?>
<?end body?>
<?call-template:footer?>

TIA,
 
Hi, You can put an IF condition after the for-each statement, that if a certain element (whatever element you want to print) is present, only then proceed.
 
Back
Top