How to create Dependent Enumeration with "Custom Enumeration" as a Source Attribute and "Type" as the Dependent Enumeration ?
Accepted answer
as far as I know, there is no 'enumeration' of workitemType
here is from my 4.0.1 deployment for type Defect.
<code>
<configuration-data xmlns="http://com.ibm.team.workitem/workitemTypes" final="false" id="com.ibm.team.workitem.configuration.workItemTypes">
<type category="com.ibm.team.workitem.workItemType" icon="processattachment:/workitemtype/bug.gif" id="defect" name="Defect">
<alias name="bug"/>
</type>
</code>
so, you will have to make another Enum.
then you can do the normal dependent enum configuration
here is from my 4.0.1 deployment for type Defect.
<code>
<configuration-data xmlns="http://com.ibm.team.workitem/workitemTypes" final="false" id="com.ibm.team.workitem.configuration.workItemTypes">
<type category="com.ibm.team.workitem.workItemType" icon="processattachment:/workitemtype/bug.gif" id="defect" name="Defect">
<alias name="bug"/>
</type>
</code>
so, you will have to make another Enum.
then you can do the normal dependent enum configuration
Comments
showing 5 of 8
show 3 more comments
One other answer
As Sam states correctly, the work item type is no enumeration and thus you can not select it in a dependent enumeration. You could try to use a JavaScript Based Value Set for this requirement. Please see https://jazz.net/library/article/1093 Lab 4 for information about work item customization and Lab 5 for information about JavaScript based customization.