I need to know the report last run date . WE dont have audit database set up. is there any way i can get that information instead of manually getting that report information
THANKS IN ADVANCE FOR YOUR HELP
rekha (BOB member since 2008-06-08)
I need to know the report last run date . WE dont have audit database set up. is there any way i can get that information instead of manually getting that report information
THANKS IN ADVANCE FOR YOUR HELP
rekha (BOB member since 2008-06-08)
See if this helps…
Praveen Gawande (BOB member since 2009-04-25)
For DeskI reports try this
Private Sub Document_AfterRefresh()
Dim dp As DataProvider
Set dp = ThisDocument.DataProviders.Item(1)
MsgBox dp.LastExecutionTime
End Sub
.
haider (BOB member since 2005-07-18)