- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2024 04:13 AM
Hi,
here is a one interview question scenario:
If the short description in incident form is 'Software' then that incident should be assigned to
Software assignment group. how can we achieve it
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2024 09:13 AM
You can use assignment Rules and attached is the image .
Thanks and Regards
Sai Venkatesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2024 09:07 AM
Hi @NishantDhole ,
You can achieve this by creating onLoad client script in the incident table. Copy paste the below code.
function onLoad() {
//Type appropriate comment here, and begin script below
var shortDescription= g_form.getValue('short_description');
if(shortDescription.toLowerCase().includes('software'))
g_form.setValue('assignment_group', 'software_group_sys_id');
}
Update the software group sys_id with your group sys_id and save it. Please let me know if you've any questions.
Please mark the answer helpful, if it helped you accordingly.
Thanks,
Hari
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2024 09:13 AM
You can use assignment Rules and attached is the image .
Thanks and Regards
Sai Venkatesh