The CreatorCon Call for Content is officially open! Get started here.

Luke45
ServiceNow Employee
ServiceNow Employee

I recently requested the "Scaled Agile Framework (SAFe)" plugin to be activated on my personal development instance: dev261336. Unfortunately the plugin was not activated. What is my next step?

2 Comments
GopikaP
Mega Sage

Hi @Luke45 , you can run background script to install the plugin: 

 

var plugins = [];
plugins.push('com.snc.sdlc.safe');
var main = new GlideMultiPluginManagerWorker();
main.setPluginIds(plugins);
main.setProgressName("Plugin Installer");
main.setBackground(true);
main.start();
 
To check whether the plugin installation is complete, navigate to:
System Scheduler → Scheduled Jobs → Scheduled Jobs, then search for name starting with 'Plugin Installer.'
After that, log out and log back in.
Scott Townsend1
ServiceNow Employee
ServiceNow Employee

Hi Luke,

 

You've probably seen this, but the Enteprise Agile Planning functionality also supports SAFe and will be the replacement for the SAFe plugin (which is in the process of being deprecated).   

 

Let me know if you need any additional information on EAP.

 

Thanks,

Scott