Dinesh Kumar B (
4.1k●4●13)
| answered May 02 '13, 9:51 a.m.
JAZZ DEVELOPER
Attribute Customizations can help you.
You could write a Script based Calculated value for it and set the dependency of the Summary field to the custom attributes. In your script, you need to carefully read the values of all three fields, Summary and Custom Attr1 and Custom Attr2 and create a return string which is returned to Summary.
return workItem.getValue(WorkItemAttributes.SUMMARY) + " attr1 : " + workItem.getValue("customAttr1ID") + " attr2 : " + workItem.getValue("customAttr2ID");
for more details on writing script based calculated value, refer to :
https://jazz.net/wiki/bin/view/Main/AttributeCustomization
Michael Taylor selected this answer as the correct answer