formatTimePeriod Function | Vantage CX - formatTimePeriod - Vantage Customer Experience

Vantage Customer Experience User Guide

Deployment
VantageCloud
VantageCore
Edition
Enterprise
IntelliFlex
VMware
Product
Vantage Customer Experience
Release Number
1.6
Published
October 2023
Language
English (United States)
Last Update
2023-10-26
dita:mapPath
hbt1563223944614.ditamap
dita:ditavalPath
oyf1565965838286.ditaval
dita:id
tmo1562969305444
Product Category
Teradata Applications

Formats each time-based value into a numeric representation of the specified time interval. The formatTimePeriod function is used only within the context of a filter.

Example 1:

count(
                filter(
                                get("Account.dates"),
                                "maturity",
                               formatTimePeriod("day"),
                               equalTo(15)
                )
) > 3	

This example returns true if there are more than three maturity dates that occur on the 15th day of the month.

See the time function for the supported time periods.

Example 2:

count(
                filter(
                                get("Account.dates"),
                                "maturity",
                               formatTimePeriod("month"),
                               equalTo(12)
                )
) > 3

This example returns true if there are more than three maturity dates in December (the 12th month).