last run date

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… :expressionless:

http://devlibrary.businessobjects.com/BusinessObjectsXIR2SP2/en/en/BOE_SDK/boesdk_com_doc/doc/boesdk_com_doc/QueryLanguageReference98.html#1086175


Praveen Gawande :india: (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 :es: (BOB member since 2005-07-18)