- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā12-20-2022 12:13 AM
My requirement is
how to do description autofill and not override in incident .
how to do this ? any one has idea?
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā12-20-2022 01:14 AM
Hi @devservicenow k ,
You can use the After business rule, Filter condition is : Description Changes.
in Script write:
(function executeRule(current, previous /*null when async*/ ) {
if (previous.description && current.description !='') {
current.description = previous.description + " and " + current.description;
current.update();
}
if(current.description == ''){
current.description ='';
current.update();
}
})(current, previous);
Let me know if it helped.
Thanks
Nootan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā12-20-2022 05:59 AM
In general, it is a bad idea to put data and then removing it for the exception.
You are taxing the system unnecessarily. You should instead be looking for a way not to enter the data on the exception on the first place.
If I helped you with your case, please click the Thumb Icon and mark as Correct.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā02-26-2023 11:33 PM
This video might be helpful.