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".
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. |
Accepted answer
![]()
Ralph Schoon (62.3k●3●36●43)
| answered Oct 05 '13, 7:01 a.m.
FORUM ADMINISTRATOR / FORUM MODERATOR / JAZZ DEVELOPER edited Oct 05 '13, 7:01 a.m.
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
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)
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. |