NotInBetweenDateTime method: FilterValues class
Syntax
NotInBetweenDateTime(&FromDtTm,&ToDtTm)
Description
Use the NotInBetweenDateTime method to set the date and time filter of Insights dashboards that exclude the specified date and time range.
Parameters
| Parameter | Description |
|---|---|
|
&FromDtTm |
Specifies the from date and time part of a date range in the form of datetime. |
|
&ToDtTm |
Specifies the to date and time part of a date range in the form of datetime. |
Returns
A FilterValues object.
Example
import PTSF_INSIGHTS:FilterValues;
Local PTSF_INSIGHTS:FilterValues &filt = create PTSF_INSIGHTS:FilterValues();
Local datetime &FromDtTm = DateTimeValue("2000-01-01 19:20:30.000");
&filt.Key("ORCL_ES_LAST_MODIFIED_DATE", "", True).NotInBetweenDateTime(&FromDtTm, %Datetime);
Related Topics