The INFOMAPS Procedure |
Required Argument |
specifies a conditional expression that is used to filter the data.
Options |
specifies additional properties for the filter. Custom properties are supported by specific SAS applications such as SAS Marketing Automation. 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 INSERT FILTER 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.
specifies the description of the filter to be inserted.
Alias: | DESC= |
specifies the folder in the information map into which to insert the filter.
If the folder is in the root directory of the information map, then you can specify the folder by name, without an initial slash. For example, FOLDER="CUSTOMERS" .
If the folder is not in the root directory, then you must specify the location of the folder beginning with a slash. For example, FOLDER="/CUSTOMERS/Europe" .
specifies that the named folder or location is created automatically if it does not already exist.
Alias: | LOCATION= |
Restriction: |
The following characters are not
valid in a folder name:
|
Restriction: | A folder name can contain blank spaces, but it cannot consist only of blank spaces. |
specifies the ID of the filter to insert. If you do not specify an ID, the INFOMAPS procedure generates a unique ID from the filter name. You can use the LIST statement to display filter IDs.
specifies the name of a filter to insert into the current information map. If the NAME= option is missing from the INSERT FILTER statement, the INFOMAPS procedure will generate a default name.
Restriction: | Nulls and non-blank nonprintable characters are not valid characters for a filter name. |
Examples |
/* Insert a relational table filter. */ insert filter name="genderFilter" id="Boys" description="Filter for boys" folder="/Filters" /create condition='<<CLASS.sex>> = "M"'; /* Insert an MDX filter. */ insert filter name="dates1" condition="<<Dates_FirstChild>> <> [cust_dates].[All cust_dates].[1996].[1996/06].[24JUN96]"; /* Insert an MDX filter. */ insert filter name="dates2" condition="<<Dates_Dates>>=[cust_dates].[All cust_dates].[1998].[1998/02], [cust_dates].[All cust_dates].[1998].[1998/02].[03FEB98]";
Copyright © 2010 by SAS Institute Inc., Cary, NC, USA. All rights reserved.