Strategic portfolio management agile team
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
4 hours ago
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
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2 hours ago
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
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.
Answers generated by GlideFather. Check for accuracy.
