To calculate the open days of a major problem from opened_at to today, need report that shows count
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā09-03-2025 04:52 AM
There is requirement of creating a report of number of days the problem is opened, based on the opened/created date to today for a major problem record, without modifying/creating a field column on Problem table
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā09-03-2025 11:05 PM
I checked on this and function field in report designer do not support fetching today's date/time for comparison (current date/time - opened_at). You can use glidefunction only on existing date/time fields in the table you are reporting on & date/time field values are available, for example
glidefunction:datediff(closed_at, sys_created_on)
When you try to use now() or any other function to get date/time runtime, it does not work.
Alternate option is to create a function field in sys_dictionary and calculate the value using function definition. Refer below article for the steps,
If this helped to answer your query, please mark it helpful & accept the solution.
Thanks,
Bhuvan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā09-04-2025 10:22 PM
Did you get a chance to review this information ?
If my response helped to answer your query, please mark it helpful & accept the solution.
Thanks,
Bhuvan
