Find your people. Pick a challenge. Ship something real. The CreatorCon Hackathon is coming to the Community Pavilion for one epic night. Every skill level, every role welcome. Join us on May 5th and learn more here.

Strategic portfolio management agile team

krishnanara
Tera Contributor
I’m trying to create a team under the Agile Release Train, but I’m getting a message that says Contact your system administrator if you cannot find a team or need to create a new team. I’m not sure how to proceed with creating the Agile team. Could someone guide me on this

krishnanara_0-1777483719250.png

 

krishnanara_1-1777483747477.png

 

1 REPLY 1

GlideFather
Tera Patron

Ahoy @krishnanara,

I am not sure from 100 % but what you can try is to add a group type "Agile team" to the groups that you want to see in this selection.

 

In my PDI the group type field is not added to the form on default and it cannot be updated from list view, so you might need to add that field to assign the type

GlideFather_0-1777491364128.png

 

Or for a quick validation, execute this little code in background script:

var grSUG = new GlideRecord('sys_user_group');
if (grSUG.get('sys_id_of_your_group')) {
    grSUG.type = '1bff3b1493030200ea933007f67ffb6d';
	grSUG.update();
}

 

Locate a group, copy its sys ID, replace it in the code above, execute the code and then retry in the SPW again

_____
Answers generated by GlideFather. Check for accuracy.