populate first response time
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-11-2018 07:56 PM
Hello Experts,
I have a requirement to Populate "First Response Time"(field in case) for Cases
First Response time is the Time Stamp of when an Internal/ITIL user updates the ticket (Does not have to be time assigned BUT the time an internal person updates and SAVES).
Please suggest

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-11-2018 09:07 PM
I would create a before update business rule, with a condition where first response time is empty.
in the script write something like:
if (gs.hasRole('itil') && !gs.hasRole('admin')) {
current.setValue('field_name', gs.now());
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-11-2018 09:12 PM