Is it possible to get project's enterprise custom field value using SharePoint 2010 API?
Asked
Active
Viewed 272 times
0
-
Why do you need sharepoint api for this? You have PSI services for this. – Yevgeniy.Chernobrivets Nov 19 '13 at 12:28
-
I have existing WCF service hosted in SharePoint (ISAPI) and I thought using SP API would be the best approach (the easiest way to get data). Should I use PSI? – Greg Nov 19 '13 at 12:33
-
1Well, Project Server has its own data structure and you cannot access it from SharePoint API. You have to use Project Server PSI. – Yevgeniy.Chernobrivets Nov 19 '13 at 12:35
1 Answers
0
Well, Project Server has its own data structure and you cannot access it from SharePoint API. You have to use Project Server PSI.

Yevgeniy.Chernobrivets
- 3,194
- 2
- 12
- 14
-
Is it possible to get project custom field by name or I have to use guid? – Greg Nov 19 '13 at 15:02
-
1You can try to use CustomFields service to get custom field (for example ReadCustomFields with xmlFilter) and then get GUID from it and use it. – Yevgeniy.Chernobrivets Nov 19 '13 at 15:08