Modify a filter collection

The format of the <method> element for modifying a filter collection is:

<method methodCall="filtercollection.modifyFilterCollection">

Use this method to modify the characteristics of an existing collection of filters. The <method> element contains one or more <filterCollection> elements each of which defines the characteristics of a collection. Each of these elements contains one or more <filter> elements that identify filters to be part of the collection. You can specify only system and global filters that already exist in the system. The <filter> elements contain use only the name and type attributes to identify the filter.

Example

The following example modifies the filter collection named testCollection2.

<methodCall>
	<method methodName="filtercollection.modifyFilterCollection">
		<filterCollection name="testcollection2" viewName="Default" viewType="global" 
			description="A new description for testcollection2">
			<filter name="TaskList" type="global"/>
			<filter name="NetcoolStatus" type="global"/>
		</filterCollection>	
	</method>
</methodCall>