/
saveModifiedIssues
saveModifiedIssues
Description
Saves all modified issues. Clears the memory while doing so. Typical usage are in for / while loops, to help you process a lot more data.
Return Type
boolean
Returns true if all modified issues are saved.
Example
A typical usage example involves loading a lot of issues but saving them from time to time
int i = 0;
for(string k in selectIssues("project = TEST and issueType = Story", 1000)) {
i++;
%k%.description += "\n\nmodified"; //modify here the issues
if(i % 10 == 0) {
saveModifiedIssues(); //every 10 issues we save
}
}
See also
Peacock
, multiple selections available,
Related content
Processing large batches
Processing large batches
More like this
Preparing for Power Scripts Suite 7.x
Preparing for Power Scripts Suite 7.x
Read with this
Dynamic Issue Context Example 2
Dynamic Issue Context Example 2
More like this
autotransition
autotransition
Read with this
Dynamic Issue Context Example 2
Dynamic Issue Context Example 2
More like this
Dynamic Issue Context Example 1
Dynamic Issue Context Example 1
More like this