I would like to develop a filter / graph which will show all actions according to their start date for a range of 4-6 weeks from the current date. This will be used as a Short Range View (SRV) to ensure we are properly preparing ourselves to start applicable tasks when they come into the weekly window.
Good for you! :)
Use JIRA Rest API to pull information to this graph. Thought you might need this support.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can try Jack's suggestion and see if it works for you.
You would need to know some kind of scripting to leverage data from JIRA using rest API.
Here is the documentation on the API
https://docs.atlassian.com/software/jira/docs/api/REST/8.2.4/
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I would like to show all actions starting within the next 4-6 weeks from time now.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is what I was thinking...
project in (PSNS, PSNSPLTEAM) AND issuetype in (Epic, Improvement, Prototype, Task) AND status in ("To Do") AND "Start date" >= startOfWeek(20) AND "Start date" <= endOfWeek(30) AND assignee in membersOf("psns1040-psns-c/1040 team")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
When you say all actions, what do you mean by that?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Why not use the created vs, resolved gadget and set your window of time?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.