Slava Davydov
unread,May 21, 2012, 3:48:36 AM5/21/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to VersionOne-dev
Hi all,
I would like to get efforts per user.
In my first variant I used
[myMember].getSum("Actuals", filter, "Value")
where
EffortFilter filter = new EffortFilter();
filter.project.add(project);
but
MemberLoadPage
shows me less hours for my user. I suppose that this is because the
report uses efforts per current iteration in project. But when I uses
filter.iteration, SDK throws me the error ...
com.versionone.apiclient.MetaException: Unknown AttributeDefinition:
Actual.Iteration
Then I tried to use period of time and also no luck:
URL: http://[ip]/[instance]/meta.v1/Actual/Iteration
com.versionone.apiclient.MetaException: Unknown AttributeDefinition:
Member.Actuals[(Scope='Scope
%3A111189';Date>='2012-01-01+00%3A00%3A01')]
URL: http://[ip]/[instance]/meta.v1/Member/Actuals[(Scope='Scope%3A111189';Date>='2012-01-01+00%3A00%3A01')]
Is there any solution to get proper User load report?