How to get list of Project Areas that use process configuration from another common Project Area?
One answer
Hi,
you could use the plain Java API to do that. Here is example code: https://rsjazz.wordpress.com/2014/11/28/the-process-sharing-api/
The API explained there allows to check if a project area shares the process and shows which project areas process it shares. You would iterate over all project areas to do that. The blog explains how to in other examples. e.g.
List<iprojectarea> projectAreas = getProcessItemService(repo) .findAllProjectAreas(null, monitor);