To collect text from all messages for the current task use the following Task / Custom Field Value script:
String s = "";
for(Iterator it = task.getMessages().iterator(); it.hasNext();) {
String desc = it.next().getDescription();
if (desc != null) {
s += desc + " | ";
}
}
return s;Associated custom field properties:
|
Property |
Value |
|
Type |
String |
|
Copyright (c) 2002-2006. All rights reserved.
|