- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2017 12:09 AM
Hi All....on incident form i have to create a new field called "Last Resolved' on the Incident page which should capture the date when the Incident was last marked as resolved. Please help me in this.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2017 12:23 AM
Hi Manisha,
one quick question.
why do you need to capture the date in your last resolved field.
there is OOTB field "closed" you can use that field also to update the exact resolved time of your incident.
just you need to mention the condition in business rule.
current.closed_at = gs.nowDateTime();
below screenshot for your Resolved At field.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2017 01:30 AM
I'm very new to Service now so please help me with this. can you say more clearly please

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2017 01:41 AM
Hi Manisha,
hope you are doing all these things on your personal development instance.
Create new business rule and . system Definition>> business rule>> create new one.
put this in condition field at script section.
current.state=='6' // i assumed the resolved value is 6 because in my instance it's 6.
script:
current.u_last_resolved=gs.nowDateTime();
if your query is resolved please mark correct and close this thread
let me know if you need any further help
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2017 02:18 AM
HI Harsha vardhan,
I did same way, but nothing is capturing in that field. field is still empty. can you please help

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2017 02:22 AM
can you please share the screenshot?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2017 02:42 AM
Thank you..It is working now...Thank you so much....I need only date not time. How can i do that now..?