Is there a way to add or insert "time" along with date in the Orion web based reports footer section ? As if now there is only option of "Creation Date".
Hi Abdul Raheem,
There is no way I know of to add the time to the preconfigured "Creation Date" option in the report footer. A possible solution is to create an additional report section at the end of the report and use a custom SQL query for a table resource.
select 'Report Generated At: '+ convert(varchar(100),getdate())
Would that work for you?
Thanks,
Tony
Yes that may help in this case for now, thanks for the response.
Tweaked to get good fonts with date time in center of report.
using custom SQL query
select '<h2 style="color:rgb(139,0,0);text-align:center;font-size: 160%"> '+ convert(varchar(100),getdate())
And then in the Edit Table, select the column, and check the box "Allow HTML Tags"
Final Report having Date + Time when it was pulled.