Incorrect Workflow NameIssue The workflow name on the form is different than what we see in the Workflow Editor. Example Steps to Reproduce: [/code] 1) Go to Administration -> Knowledge Bases -> Select a KB. 2) Under "Publish Workflow" -> Select a workflow 3) You will see "Knowledge - Auto Approval" which is not the correct name shown in "Workflow Editor" 4) Go to Workflow Editor -> You will not be able to find "Knowledge - Auto Approval" 5) Go to Workflow Editor -> You'll find "Knowledge - Publish Approval" which is correct. ReleaseAnyCauseThe workflow name reflects whatever is set at wf_workflow tableResolution-Use this link: https://<instance_name>.service-now.com/wf_workflow.do?sys_id=<Sys_id_of_the_workflow>&sysparm_view=" -The name is controlled via the above table and if needed rename the workflow name. -Change the name whatever is desired via background script as the "name" field has Security restrictions: var gr = new GlideRecord('wf_workflow');gr.get('SyS_id');//SYS_ID of the record where the name needs resetsgr.query();if(gr.next()){gr.name='NEW NAME that is needed';gr.update();}Note: Please test this script in a sub-prod instance, before running it into the Prod instance.