Find all workitems not modified using java plain api
2 answers
the simplest approach is to start with a normal query that can show the results u need.
what do you want to do with the list? given the query results, you can export it to excel, ... maybe u don't have to write a program at all..
if you do, then I have a sample that will dump out fields from the workitems returned in a query see the accepted answer here for the code
https://jazz.net/forum/questions/94776/assertionfailedexception-problem-with-getting-the-values-of-attributes
if that all works, then later you can create a query dynamically to get the same list
what do you want to do with the list? given the query results, you can export it to excel, ... maybe u don't have to write a program at all..
if you do, then I have a sample that will dump out fields from the workitems returned in a query see the accepted answer here for the code
https://jazz.net/forum/questions/94776/assertionfailedexception-problem-with-getting-the-values-of-attributes
if that all works, then later you can create a query dynamically to get the same list
Comments
Also see http://rsjazz.wordpress.com/2012/10/29/using-work-item-queris-for-automation/ and http://rsjazz.wordpress.com/2012/11/19/using-expressions-for-automation/ how you can use the API for querying data.
My sample code is built on Ralph's first blog topic, and brings it all together.
1 vote