- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā06-26-2018 01:00 AM
Hello,
I'm new to servicenow
How can I add to the incident the caller's manger approval as a first step of approval before proceeding with incident solution, and if that could be done without the need to a create a workflow since I'm trying to keep the standard incident fulfillment process using business rules.
Many thanks
Solved! Go to Solution.
- Labels:
-
Incident Management

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā07-19-2018 06:23 AM
No with only one business rule you can achieve it.
your state is being requested in the approval table not in the incident. if manager is looking into his my approval his initial state is in requested.
Write After business rule on incident table. (make inactive the previous business rule and try with this one )
for testing: impersonate manager and check his approval that is being applying or not and check the state also
var apprvl= new GlideRecord('sysapproval_approver');
apprvl.initialize();
apprvl.approver=current.caller_id.manager;
apprvl.sysapproval=current.sys_id;
apprvl.state='requested';
gs.addInfoMessage('approval success!!');
apprvl.insert();
gs.addInfoMessage('approval success!!');
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā06-26-2018 01:42 AM
Hi Yaseen,
Would you be able to give a bit of context why you would want approval from the callers line manager before resolution?
My initial thinking is that you need 'something' be it hardware of software to fulfil the incident, which should go for request - is this the case?
Thanks
Kieran

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā06-26-2018 02:22 AM
Hi Yaseen,
Yes, it is possible to add approval on incident from through after business rule without using workflow.
attaching one demo for you. try this out
Please Hit like, Helpful or Correct depending on the impact of the response
Regards,
Ashvini Kadus
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā06-26-2018 03:59 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā07-19-2018 03:43 AM
Hello Ashvini,
Please see my earlier post what am I missing in the business rules code
Please I need help