Filter work items based on Team area and Filed Against
We are trying to filter work items based on Team area and we found the below code snippet from rsjazz
Link for reference :https://rsjazz.wordpress.com/2012/11/19/using-expressions-for-automation/
List expressions = new ArrayList(teamAreaHandles.size());
What is teamAreaHandles here. How to create teamAreaHandles.
Thanks in advance.
One answer
As suggested in https://rsjazz.wordpress.com/2012/11/19/using-expressions-for-automation/ read the linked getting started and Understanding and Using the RTC Java Client API also search for TeamAreaHandle and the like in the blog.
A handle for an item is s small representation that allows to get access to the whole thing. You have to find the item handles. So please read the other posts if you are new to the API.