BusinessObjects Board

number across selected reports

Hi,

When you print a report which contains multiple reports, you have the print options:
Print What: all reports
in combination with
Page Number: number across selected reports.

I’m using the following vba code to create a pdf file in batch:

[i]
Private Sub Document_Open()

If busobj.Application.Variables.Item(“Interactive”).Value = “No”
Then

busobj.Application.BreakOnVBAError = False
busobj.Application.Interactive = False
Dim doc As Document

Set doc = Application.Documents.Item(1)
doc.Refresh
doc.Save

doc.ExportAsPDF (busobj.Application.Variables.Item(“Pad”).Value)
Application.Quit
End If

End Sub[/i]

Is there anyway to give these parameters to the pdf file, so that the pdf file is numbered as one document, instead of every report in it starting with page 1 ???

Huub 8)


Rene van Hout (BOB member since 2003-11-21)

Does this topic help?[/url]