Forum Discussion

Lalith_Damera's avatar
Lalith_Damera
Copper Contributor
Oct 04, 2023

Project Odata API doesn't fetch columns like Predecessors, Notes, Resource Names

We are connecting to Project Online via an Odata Query for reporting in Power BI. I am not able to fetch the fields like Notes, Predecessors, Resource Names.

 

May i know why these fields as not being retrieved and is there any alternate way to get these fields via Odata API

 

I have tried the following entities, but couldn't see these columns

 

Odata Query : https://<HostName>/sites/<SiteName>/_api/ProjectData/{Entity}

 

1) Projects

2) Tasks

3) TaskBaselines

4) Resources 

5) Assignments

  • RodFromm's avatar
    RodFromm
    Steel Contributor

    Lalith_Damera 

    Notes - I believe that information is no longer accessible, but I could be wrong.

    Resource Name - OData.Feed(SiteBaseURL & "/_api/ProjectData/Resources?$select=ResourceId, ResourceName", null, [Implementation = "2.0"])

    Predecessor and Successor info can be found in the ProjectServer Project/TaskLinks table, This should get you started
    - OData.Feed(SiteBaseURL & "/_api/ProjectServer/Projects"). 
    - Remove all columns EXCEPT TaskLinks
    - Expand table and select the fields you want  
    - Link this data into your model to get project name and task name

    Here is a link to Schema: ReportingData (ProjectData service) | Microsoft Learn

  • Hello Lalith_Damera ,

     

    Paul

    • Lalith_Damera's avatar
      Lalith_Damera
      Copper Contributor

      Paul_Mather 

       

      Thanks for the inputs Paul. With respect to the Notes, Predecessors and successor, i agree that there is no direct way to get these fields using the direct odata API query.

       

      But it seems to be the case for the 'Resource Names' filed as well. Please find below screen shot of the field that i am looking for in the reporting API. Please advice

       

       

      • RodFromm's avatar
        RodFromm
        Steel Contributor
        That information would be in the Odata Query : https://<HostName>/sites/<SiteName>/_api/ProjectData/Assignment table.

        With the exception of the Notes field all of these fields are directly available via OData API queries. I actually have them in my data model.

Resources