Jazz Forum Welcome to the Jazz Community Forum Connect and collaborate with IBM Engineering experts and users

Get the Planned For Value set in a Work Item from Java API

Hello,

for example I have an WorkItem number xxxx which the value of the Planned For field is "Release 1.0".


What I need is to get from my script is the value "Release 1.0" for that work item number,

Is there some few lines of code simple to do that? (I already have the workitem variable available in my script)

Thanks a lot for the help.

0 votes


Accepted answer

Permanent link
In Java you can access this data as described here: http://rsjazz.wordpress.com/2012/10/05/handling-iterations-automation-for-the-planned-for-attribute/ .  https://jazz.net/library/article/1093 lab 5 provides you with guidance and information with respect to JavaScript. The spy script should show how to access built in attributes and what you actually can access.

https://jazz.net/wiki/bin/view/Main/AttributeCustomization explains it also, also the limitations. 

WorkItemAttributes.PLANNED_FOR 

Is the id to use.
Tiago Fernandez selected this answer as the correct answer

1 vote

Comments

It was a little hard for me, but I could figure out how to obtain the Planned For value of a workitem using the class PathHelper of your example of the link. I did:

Already having the iAttribute....

def plannedForHandle = workItem.getValue(iAttribute)
PathHelper ph = new PathHelper(repo, new SysoutProgressMonitor());
ph.calculateIterationPath(plannedForHandle);
String paths = "IDPath: [" + ph.toIDPathString() + "] NamePath: (" + ph.toNamePathString() + ")";
println "Planned For result is : " + paths

Thanks a lot for the help.

PS: My script is groovy, so I implemented the java way.

It would make sense, if you provided the info around groovy in the question. Otherwise it becomes confusing with all the different environment. 

Your answer

Register or log in to post your answer.

Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.

Search context
Follow this question

By Email: 

Once you sign in you will be able to subscribe for any updates here.

By RSS:

Answers
Answers and Comments
Question details
× 10,934
× 478
× 411
× 169

Question asked: Oct 04 '13, 3:46 p.m.

Question was seen: 6,105 times

Last updated: Oct 05 '13, 1:26 p.m.

Confirmation Cancel Confirm