How to gather recent accessed RTC project areas
2 answers
there is no straight approach.. you would have to run a query against each. the query should look for changed workitems (get 5 wokitems) since some date.
you can automate all of that with some java code..
get the list of projects
for each (not archived) project
build a query,
execute the query
if there are changed workitems,
add the project to the list of accessed projects,
loop to next project.
report the list of changed projects
you can automate all of that with some java code..
get the list of projects
for each (not archived) project
build a query,
execute the query
if there are changed workitems,
add the project to the list of accessed projects,
loop to next project.
report the list of changed projects
Thank Sam for your time and response!
Do we not have any plugin which can do that job?
Not sure how to automate in java code also because of the urgency.
Comments
this would be a plain java application..
automate means use the logic I presented to do this in one job execution.
an RTC plain java developer should be able to do this in less than a day
the 1st answer here https://jazz.net/forum/questions/111660/programmatically-finding-the-process-template-used-in-a-project has a routine that gets some/all the project areas on a server
sample query code here
https://jazz.net/forum/questions/72975/getting-work-items-through-plain-java-api