Incident Task
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā10-22-2023 07:44 PM
Hello All
I had added incident task to incident form make short description, description and priority auto populated . I am getting some issues
1) If I change priority in incident form it's auto populating in incident task form but not reflecting on incident task form list view and activity filter.
Tried client scripts but didn't updating priority in list view
Can you please help me with this
Regards
Aneela Sravani Gopisetty
10 REPLIES 10
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā10-23-2023 12:03 AM
Hi @Aneela Sravani way to auto populate Incident Task fields is through Display Business Rule.
var gr = new GlideRecord("incident");
gr.addQuery("sys_id", current.incident);
gr.query();
if (gr.next()) {
current.setValue("short_description", gr.short_description);
current.setValue("description", gr.description);
current.setValue("priority", gr.priority);
}
Thanks
Avinash Uskamalla