On when the project was last updated

L

Leo R

We are using Project 2003.

I need to indicate in the views/reports for the executives when was the last
time the project had any update. Is there a field that will give that
information?

Thank you in advance.
 
P

Paul Conroy

In the VBA model there is a ThisProject.LastSaveDate which you could pipe
into a custom field. You could do this this with a macro in the beforesave
procedure.
 
C

Chak

We are using Project 2003.

I need to indicate in the views/reports for the executives when was the last
time the project had any update. Is there a field that will give that
information?

Thank you in advance.



Hi Leo,

1) If you are looking to create the view in PWA, there is an field
called Last Modified under Project Center.

2) If you are looking for SQL Query:

Select Proj_id, Proj_Name, PROJ_LAST_SAVED
From MSP_Projects

Thanks
Chak
 
C

Chak

We are using Project 2003.

I need to indicate in the views/reports for the executives when was the last
time the project had any update. Is there a field that will give that
information?

Thank you in advance.

Hi Leo,

If you are using Project 2003 (non server environment), please follow
the Paul's suggestion.

If your's projects are on Project Server 2003, you can choose either
of the following options:

Create the view in PWA, there is an field
called Last Modified under Project Center.

OR

SQL Query:

Select Proj_id, Proj_Name, PROJ_LAST_SAVED
From MSP_Projects


Thanks
Chak
 
Top