Synchronising and Automating Iterations and "Current" Iterations
One answer
You would have to create some kind of API based automation. I don't have an example.
Comments
Can the "current iteration" only be set in the manually Project Area Admin Interface?
RTC Plain Java Client Libraries:
System.out.println( "Process definition ID: " + procDef.getProcessId());
IDevelopmentLine devLine= processClientService.getDevelopmentLine(projectArea, monitor);
devLine.setCurrentIteration(current);
IDevelopmentLine devLine= processClientService.getDevelopmentLine(projectArea, monitor);
devLine.setCurrentIteration(current);
There is no command line tool for it, that I would be aware of. So you would have to create one. Should not be that complicated.
Comments
Stefan Oblinger
Oct 22 '20, 12:43 a.m.https://github.com/jazz-community/rtc-current-iteration-automatic-switcher
1 vote
Glyn Costello
Oct 27 '20, 6:31 a.m.I think this is what I'm after, thanks! Please confirm, for the configuration, I'm not sure the purpose of the "Iteration Search Entry Point" parameter... I'm assuming from the README that it is searching somehow for iteration names and using that to check the start/end of each iteration. If the start/end of that iteration falls within the current date, then it switches the iteration?
Glyn Costello
Oct 30 '20, 7:35 a.m.Can you please confirm the "Iteration Search Entry Point" parameter?
Glyn Costello
Nov 02 '20, 7:05 a.m.I'm not a software developer, but looking at the code, it seems to be driven by the "getDevelopmentLines" method which are the timeline, which answers my questions above, however but I can't find anywhere that says whether this returns the timeline's name or the timeline's identifier. I have change the timeline's name on several projects several times, but I'm not able to change the timeline's identifier in the Web UI. Please can you clarify?
Ralph Schoon
FORUM ADMINISTRATOR / FORUM MODERATOR / JAZZ DEVELOPER Nov 02 '20, 8:06 a.m.