Update default filter in "Sprint Planning"

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2022 03:45 PM
I want to update the predefined filter in the "sprint planning" for the list view within the backlog board. I'm currently working in the Rome instance. Currently, it is set to the following (refer to screenshot). I would like to group records by 'SDLC Stage'.
I know that I need to go to UI Scripts and then access the SdlcList and modify the script.
Does anyone know if it's possible to add specific code to the script that would group records based on the 'SDLC Stage' in the predefined "Sprint Planning" list filter for the backlog board?
And if we can't group by 'SDLC Stage' can we add a few more filters:
SDLC Stage = Ready for sprint assignment OR Release = Ready for sprint assignment
Thank you!
- Labels:
-
Agile Development
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2022 07:06 PM
Hi
basically modifying OOTB script is not a good idea, but if case this is the only way for you:
Starting at line 20 there is a function which builds the encoded query. You can modify/extend this according to your needs.
And for grouping there is also a method for the GlideList object. See https://developer.servicenow.com/dev.do#!/reference/api/sandiego/client/c_GlideList2API#r_GL2-setGro...
Kind regards
Maik

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2022 07:58 AM
Thank you for your feedback, Maik.