<ST_DynamicFilterType>
(Dynamic Filter)
These are the dynamic filter types. A dynamic filter returns a result set which may vary due to a change in the data itself or a change in the date on which the filter is being applied. For example, for a set of data {1,1,2,3}, the aboveAverage filter would return or highlight the last two values in the set. If the data is refreshed or changed to {1,1,1,2}, then only the last value would be highlighted. Similarly, the meaning of "lastQuarter" shall be the same for the dates in January, February, and March, but shall change meaning once the date advances from March to April.
This simple type's contents are a restriction of the XML Schema string datatype.
The following are possible enumeration values for this type:
Enumeration Value |
Description |
---|---|
|
Shows values that are above average. |
|
Shows values that are below average. |
|
Shows last month's dates. |
|
Shows last quarter's dates. |
|
Shows last week's dates. |
|
Shows last year's dates. |
|
Shows the dates that are in January, regardless of year. |
|
Shows the dates that are in October, regardless of year. |
|
Shows the dates that are in November, regardless of year. |
|
Shows the dates that are in December, regardless of year. |
|
Shows the dates that are in Februray, regardless of year. |
|
Shows the dates that are in March, regardless of year. |
|
Shows the dates that are in April, regardless of year. |
|
Shows the dates that are in May, regardless of year. |
|
Shows the dates that are in June, regardless of year. |
|
Shows the dates that are in July, regardless of year. |
|
Shows the dates that are in August, regardless of year. |
|
Shows the dates that are in September, regardless of year. |
|
Shows next month's dates. |
|
Shows next quarter's dates. |
|
Shows next week's dates. |
|
Shows next year's dates. |
|
Common filter type not available. |
|
Shows the dates that are in the 1st quarter, regardless of year. |
|
Shows the dates that are in the 2nd quarter, regardless of year. |
|
Shows the dates that are in the 3rd quarter, regardless of year. |
|
Shows the dates that are in the 4th quarter, regardless of year. |
|
Shows this month's dates. |
|
Shows this quarter's dates. |
|
Shows this week's dates. |
|
Shows this year's dates. |
|
Shows today's dates. |
|
Shows tomorrow's dates. |
|
Shows the dates between the beginning of the year and today, inclusive. |
|
Shows yesterday's dates. |
Referenced By |
---|
|
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_DynamicFilterType">
<restriction base="xsd:string">
<enumeration value="null"/>
<enumeration value="aboveAverage"/>
<enumeration value="belowAverage"/>
<enumeration value="tomorrow"/>
<enumeration value="today"/>
<enumeration value="yesterday"/>
<enumeration value="nextWeek"/>
<enumeration value="thisWeek"/>
<enumeration value="lastWeek"/>
<enumeration value="nextMonth"/>
<enumeration value="thisMonth"/>
<enumeration value="lastMonth"/>
<enumeration value="nextQuarter"/>
<enumeration value="thisQuarter"/>
<enumeration value="lastQuarter"/>
<enumeration value="nextYear"/>
<enumeration value="thisYear"/>
<enumeration value="lastYear"/>
<enumeration value="yearToDate"/>
<enumeration value="Q1"/>
<enumeration value="Q2"/>
<enumeration value="Q3"/>
<enumeration value="Q4"/>
<enumeration value="M1"/>
<enumeration value="M2"/>
<enumeration value="M3"/>
<enumeration value="M4"/>
<enumeration value="M5"/>
<enumeration value="M6"/>
<enumeration value="M7"/>
<enumeration value="M8"/>
<enumeration value="M9"/>
<enumeration value="M10"/>
<enumeration value="M11"/>
<enumeration value="M12"/>
</restriction>
</simpleType>