Excecute code each day on a Project Server

M

Mahesh Chand

I've a requirement to execute some code that will sync Project Server and
Sharepoint Server databases each day (once in a day). I was wondering if
Project Server has some event that will be fired each day and on that event,
I can execute some code written in VBA or .NET?

=================
www.c-sharpcorner.com
Home of .NET developers
=================
 
B

Brian Smith \(MSFT\)

One slightly indirect way would be to use one of the events of the cube
building process - then if you have cube building set to run daily the event
would fire and run your code. I'd suggest the CubeProcessed event. Another
daily one would be the ADSync if you use this feature. Coding the event
handlers is covered in the SDK.
 
Top