An unhandled exception occurred in WinProj.SaveProject

S

ST

Hi Folks,

Can you tell me why I can not save and if anything can be done? I get this
message frequently in Project 2007 MSPro when trying to save my file(s) to
Server.

Job Type: Save
Error ID: 42(Ox2A)
Project Server encountered a problem with this error code: 42.
Info:
<detail><errinfo><general><class name="An unhandled exception occurred in
WinProj.SaveProject."><error id="42" name="GeneralUnhandledException"
uid="7b701022-ebc9-4ce2-b6ff-390aa9340433"/></class></general></errinfo></detail>


Any idea why it doesn't like to save my files?

/Spiro Theopoulos
 
C

chicagohunter

I received this error because I had blank tasks (tasks with nothing in the
task name field). Removing these line items eliminated the error message.
 
S

ST

Unfortunately, this is not my case.

I have 11 files in a master, and all files save except the master itself.
 
C

chicagohunter

1. I would make sure there are no blanks in the master.
2. I would make sure nserted projects summary tasks have values other than 0.

If those fail run the following SQL script on your published database and
see if any tasks are listed that exist in your master.

SELECT MSP_PROJECTS.PROJ_NAME,
MSP_ASSIGNMENTS_SAVED.TASK_NAME,
MSP_RESOURCES.RES_NAME,
MSP_ASSIGNMENTS_SAVED.ASSN_UID,
MSP_ASSIGNMENTS_SAVED.PROJ_UID,
MSP_ASSIGNMENTS_SAVED.TASK_UID,
MSP_ASSIGNMENTS_SAVED.RES_UID
FROM MSP_ASSIGNMENTS_SAVED INNER JOIN
MSP_PROJECTS ON MSP_ASSIGNMENTS_SAVED.PROJ_UID =
MSP_PROJECTS.PROJ_UID INNER JOIN
MSP_RESOURCES ON MSP_ASSIGNMENTS_SAVED.RES_UID =
MSP_RESOURCES.RES_UID
WHERE (NOT EXISTS
(SELECT TASK_UID
FROM MSP_TASKS_SAVED
WHERE (TASK_UID = MSP_ASSIGNMENTS_SAVED.TASK_UID)))
 
S

ST

the fact the we even have such a problem is nuts! Wouldn't you say so?

Thanks for the help just the same,

/Spiro Theopoulos
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top