Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

12097 There are no pages to display

Status
Not open for further replies.

ActuateNewbie

Programmer
Mar 8, 2008
6
0
0
GB
Hi

I am new to Actuate so please bear with me!

I am trying to run an Actuate report through Maximo but receiving the following message:

12097: There are no pages to display

Please help!

thanks
Rachael
 
probably, no data rows are being returned. If you know there should be, check what you prompting for, and what you are filtering for.
 
one thing you may want to consider if there is no data being returned is a page stating that, which you can show the client instead of them getting an error
 
Here's a quick sample that i threw together. You can add this code as is, and paste in in the OnEmptyGroup( ) method of AcReportSection:

Code:
Sub OnEmptyGroup( )

Dim Frm As AcFrame
Dim Lbl	As AcLabelControl

Set Frm = New Persistent AcFrame
Set Lbl = New Persistent AcLabelControl

Lbl.Font.Bold  = True
Lbl.Font.Size  = 10
Lbl.Size.Width = 8.07 * OneInch
Lbl.TextPlacement.Horizontal = TextAlignCenter
Lbl.Text                     = "There is no data to display"
Frm.AddContent( Lbl )
Set BeforeComponent = Nothing
Set AfterComponent  = Frm

End Sub




 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top