Can we create custom filters defnitions for filtering Plan View ?
![]()
ANIL ABRAHAM (23●2●20●24)
| asked Aug 01 '12, 6:06 p.m.
edited Aug 01 '12, 11:50 p.m. by David Olsen (523●7)
I understood in RTC ver 4 , Filter expression cannot be used in Web UI and Promote (for designinig Plan View) , so can we use a custom filter ?
|
2 answers
![]()
Hi Anil,
Custom Filters can be defined at the process template level - modifying existing configuration for each of the plan modes. So, when the plan view is invoked, it will pick up the changes and display. This is equivalent to a custom filter. Thanks. |
![]()
This is some sample from existing process template
<filters>
<filter definition="com.ibm.team.apt.filter.excludeRisk" />
<filter definition="com.ibm.team.apt.filter.resolved" />
</filters>
and this equivalent filter should be defined :
<filter description="Exclude risk work items." id="com.ibm.team.apt.filter.excludeRisk" implementation="com.ibm.team.apt.shared.ui.internal.filter.WorkItemTypeFilter" name="Risks">
<parameters> <parameter key="exclude-types" value="com.ibm.team.workitem.workItemType.risk"/> </parameters> </filter> </configuration-data> --> |