Actualwork with PDS

M

MAT

Hi...
I have to create a tble and write the name of the projects of a resource and
the actual work for all days of a mount for these projects.
How can I read the actualwork of a Ressource for all days of a mounth?
I need the XML reqest.
Thank you..
 
R

Ray McCoppin

The closest thing to that you wat is the PDS AssignmentsGet Method.

The xml look like this:

Request>
<AssignmentsGet>
<AllResources></AllResources>
<Resources>
<Resource>
<ResourceUID></ResourceUID>
<ResourceName></ResourceName>
</Resource>
. . .
</Resources>
<AllAssignments></AllAssignments>
<WUIDs>
<WUID></WUID>
. . .
</WUIDs>
<PeriodDateRange>
<PeriodStartDate></PeriodStartDate>
<PeriodEndDate></PeriodEndDate>
</PeriodDateRange>
<IncludeTimephasedData></IncludeTimephasedData>
<AdminProject></AdminProject>
<ApprovalStatus></ApprovalStatus>
</AssignmentsGet>
</Request>

Read more about this by downloading the PDS help file in the link below.

http://www.microsoft.com/downloads/...45-c315-418f-9f79-03190df43c49&displaylang=en
 
D

Denis Mederake

I used

<Request>
<ProjectData>
<ProjectID></ProjectID>
<ProjectName></ProjectName>
<ReturnUIDs></ReturnUIDs>
</ProjectData>
</Request>


In the result I looked for the task node where the <summary> subnode has
value 1 and return the value of <ActualWork> node.
 

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