- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2022 08:01 AM
Hello...
I am trying to get my assignment group to auto populate 'IS-Applications Docusign' when the Configuration Idem is 'DocuSign-Prod'
Currently, if i select 'category' = Application, and SubCategory=Application Support, and i input DocuSign-Prod in my configuration item, the assignment auto populates to IS-Delivery-Service Desk. I can't find how this is working, but need it changed to populate IS-Applications-Docusign.
I have tried this code, but not working...
function onChange(control, oldValue, newValue, isLoading, isTemplate) {
if (isLoading || newValue === '') {
return;
}
//Get the Support Group from the CI and populate Assignment Group if Support Group is populated
g_form.getReference('cmdb_ci',getSupportGroup);
}
function getSupportGroup(ci)
{
if (ci.support_group && g_form.getValue('assignment_group') == '') {
g_form.setValue('assignment_group', 'IS-Applications-Docusign');
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2022 08:20 AM
Hello,
Please check Assignment lookup rules. It must be done from there that it is currently populating to IS-Delivery-Service Desk.
Please mark my answer as correct based on Impact.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2022 08:20 AM
Hello,
Please check Assignment lookup rules. It must be done from there that it is currently populating to IS-Delivery-Service Desk.
Please mark my answer as correct based on Impact.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2022 02:08 PM
Actually, that is NOT where it was done... but i have made it work by adding a new assignment lookup rule there.. Thanks for the 'head's up'...