The INFOMAPS Procedure |
Required Argument |
specifies the ID of the filter to update.
Options |
specifies a conditional expression that is used to filter the data.
specifies how custom properties for the filter are updated. Custom properties are supported by specific SAS applications such as SAS Marketing Automation. Valid operations are the following:
removes all custom properties from the filter, if there are any.
adds the specified custom properties to the filter.
The form of the custom-properties-list is
("property-name-1" "property-value-1" <"description-1">) ... ("property-name-n" "property-value-n" <"description-n">)where
specifies the name of the property.
Requirement: | Property names must be unique. If a property name already exists in the filter, then the UPDATE FILTER statement will fail. Therefore, it is recommended that you add a prefix or suffix to the property name to ensure uniqueness. |
Restriction: | Property names cannot begin with an underscore (_) character. |
specifies the value of the property.
specifies the description of the property. The description is optional.
replaces the current custom properties for the filter with the specified custom propertied.
See the ADD operation for a description of the form of the custom-properties-list.
removes the specified custom properties from the filter.
The form of the property-names-list is
"property-name-1" <... "property-name-n">
Interaction: | If you specify both the ADD and REMOVE operations, then the REMOVE operation occurs first. |
specifies the description of the filter.
specifies the new ID for the filter.
specifies the name assigned to the filter in the information map.
Examples |
update filter "ageFilter" condition="<<Class.Age>> = 10" description="Ten years old only" name="Age Filter";
Copyright © 2010 by SAS Institute Inc., Cary, NC, USA. All rights reserved.