InBetweenDateTime method: FilterValues class
Syntax
InBetweenDateTime(&FromDtTm,&ToDtTm)
Description
Use the InBetweenDateTime method to set the date and time range filter of Insights dashboards.
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).InBetweenDateTime(&FromDtTm, %Datetime);
Related Topics