P
Peter Schneider
Hi!
Sorry for the first mail.... ;-)
I've a problem related to enterprise fields:
In a C# Project Addin I update my custom enterprise fields with following
method:
public static void SetEnterpriseField(Task t, string fieldname, string
value)
{
try
{
t.SetField(
Globals.ThisAddIn.Application.FieldNameToFieldConstant(
fieldname, PjFieldType.pjTask),
value);
}
catch {
//...
}
}
After that I'm not able to display my custom project details views which use
the custom enterprise field in pwa, but the value is entered correctly in
the project client...
The error message I get:
"Project Center cannot access the project(s) you are trying to view. It is
most likely that you either don't have permissions to view the project,
another user has deleted this project(s) before you were able to view it or
that another user is in the process of publishing the project."
Any idea?
greetings, Peter
Sorry for the first mail.... ;-)
I've a problem related to enterprise fields:
In a C# Project Addin I update my custom enterprise fields with following
method:
public static void SetEnterpriseField(Task t, string fieldname, string
value)
{
try
{
t.SetField(
Globals.ThisAddIn.Application.FieldNameToFieldConstant(
fieldname, PjFieldType.pjTask),
value);
}
catch {
//...
}
}
After that I'm not able to display my custom project details views which use
the custom enterprise field in pwa, but the value is entered correctly in
the project client...
The error message I get:
"Project Center cannot access the project(s) you are trying to view. It is
most likely that you either don't have permissions to view the project,
another user has deleted this project(s) before you were able to view it or
that another user is in the process of publishing the project."
Any idea?
greetings, Peter