- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2024 11:55 PM
Hello,
As a function of OOTB, the owner of the knowledge base is set as the approver.
Since the owner is a required entry, is there any way to specify it and not set it as an approver?
I have checked the workflow, but cannot find the relevant section.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2024 12:12 AM
Hi @Saeka
Within OOTB, The Knowledge - Approval Publish (Retire) workflow is utilized the getApprovers function in the KBWorkflow script include.
answer = new KBWorkflow().getApprovers(current);
You should find the script include with the following url:
https://<instance_name>.service-now.com/nav_to.do?uri=sys_script_include.do?sys_id=a659e923c30321000096dfdc64d3ae33
Cheers,
Tai Vu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2024 12:12 AM
Hi @Saeka
Within OOTB, The Knowledge - Approval Publish (Retire) workflow is utilized the getApprovers function in the KBWorkflow script include.
answer = new KBWorkflow().getApprovers(current);
You should find the script include with the following url:
https://<instance_name>.service-now.com/nav_to.do?uri=sys_script_include.do?sys_id=a659e923c30321000096dfdc64d3ae33
Cheers,
Tai Vu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2024 12:18 AM
Thank you for your reply.
I found it.