We've updated the ServiceNow Community Code of Conduct, adding guidelines around AI usage, professionalism, and content violations. Read more

How to hide the process flow unless the software solutions assignment group is selected

Wyatt Fudal1
Tera Guru

I was running into an issue with hiding the process flow. I have tried creating a UI policy to hide the process flow formatter. I tried editing the process flow record. Am I missing something or should I also create a client script.

 

function onCondition() {
$j("a:contains(New)").hide();
$j("a:contains('Assess')").hide();
$j("a:contains('Authorize')").hide();
$j("a:contains('Scheduled')").hide();
$j("a:contains('Implement')").hide();
}
0 REPLIES 0