Join the #BuildWithBuildAgent Challenge! Get recognized, earn exclusive swag, and inspire the ServiceNow Community with what you can build using Build Agent.  Join the Challenge.

The owner of the Knowledge Base is set as the approver

Saeka
Kilo Sage

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.

1 ACCEPTED SOLUTION

Tai Vu
Kilo Patron
Kilo Patron

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

View solution in original post

2 REPLIES 2

Tai Vu
Kilo Patron
Kilo Patron

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

Thank you for your reply.

 

I found it.