- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2019 01:13 AM
Hello,
I have a requirement when Service Now gets an update to the BitLocker status field then it will create an incident for the support group for that computer. Can anyone please suggest me that where we can see the BitLocker status field in service now.
Can anyone please help me with this.
Regards,
Nivedita
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2019 07:32 AM
Hi,
Go to cmdb_ci.list and search with name --contains--locker and see if there is any record for bitlocker.
Yes, you can write business rule to create an incident. In BR, in when to run the condition can be status changes and in script field you may write below based on your requirement.
var incRec = new GlideRecord('incident');
incRec.newRecord();
incRec.short_description = 'bit locker status changed';
incRec.cmdb_ci = current.sys_id;
incRec.assignment_group ='sys_id_of_group';
incRec.insert();
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2019 06:21 AM
Hello,
Can anyone please tell me how we can create incident when BitLocker status field has been updated. Do I need to create an business rule to achieve this?
Can anyone please help me with this?
Regards,
Nivedita
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2019 07:24 AM
Hello,
Can anyone please tell me how we can create incident when BitLocker status field has been updated. Do I need to create an business rule to achieve this?
Can anyone please help me with this?
Regards,
Nivedita
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2019 07:32 AM
Hi,
Go to cmdb_ci.list and search with name --contains--locker and see if there is any record for bitlocker.
Yes, you can write business rule to create an incident. In BR, in when to run the condition can be status changes and in script field you may write below based on your requirement.
var incRec = new GlideRecord('incident');
incRec.newRecord();
incRec.short_description = 'bit locker status changed';
incRec.cmdb_ci = current.sys_id;
incRec.assignment_group ='sys_id_of_group';
incRec.insert();
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2019 09:23 AM
Hello Amaradiswamy,
Thank you for your reply.
My requirement is to create an incident when Service now gets an update for the BitLocker status field is Non-compliant for computer. It will create an incident ticket for the support group for that computer if no support group is found then it will assign the ticket to L2 help desk for proper assignment.
According to me I should create one business rule to that will check when BitLocker status field is Non-compliant for any computer then it will create an incident.
Correct me if i am wrong and also provide me correct solution.
Regards,
Nivedita