Date Functions - Output Documents
Function Signature
Description
Example
TODAY()
Returns the current date in the locale of the
logged in user rendering the Output Document.
{{$F.TODAY()}} can return values similar
to 7/15/2014 , in the locale of the
logged in end user.
TOMORROW()
Returns tomorrow's date in the locale of the
logged in user rendering the Output Document.
{{$F.TOMORROW()}} can return values
similar to 7/16/2014, in the locale of the
logged in end user.
YESTERDAY()
Rounds a number to a specified number of digits.
Rounding is to the nearest value.
Note: ROUND function does only mathematical
rounding to the nearest value. However, if your
requirement is to print the number to scale with
as many trailing zeros as needed, then the
recommended option is to use LNUMBER function
with the scale option defined.
{{$F.YESTERDAY()}} can return values
similar to 7/14/2014, in the locale of the
logged in end user.
NOW()
Returns a datetime representing the current
moment, in the time zone and locale of the
logged in user rendering the Output Document.
{{$F.NOW()}} can return values similar
to 7/15/2014 11:51 PM, in the time zone
and locale of the logged in end user.
Was this helpful?