...
All reports run through the reporting module support the following inputs:
Parameter values
Values for each of the parameters that the Report Definition requires. These values may be either fixed, or may be specified as compatible runtime expressions. Runtime expressions are currently limited to the following:
Name | Description |
---|---|
${now} | The exact date/time that the report actually runs |
${start_of_today} | The same as ${now}, except with the time set to midnight at the start of the day |
${end_of_today} | The same as ${now}, except with the time set to the last millisecond of the day |
${start_of_last_month} | Relative to ${now}, this is midnight on the first day of the preceeding month |
${end_of_last_month} | Relative to ${now}, this is the last millisecond of the last day of the preceeding month |
${generatedBy} | The user who requested that the report be run |
${generationDate} | The date that the report was generated, usually the same as ${now} |
...