hi everyone
i have epic ticket under the epic ticket there are many task tickets linked
so my question is is there any possible way if we enter duedate in epic ticket automatically update task tickets with deferent due dates ( for each task need saparate due dates while changing te due date in epic ticket)
please someone help me
Hi @MURUGESH S - This is definitely possible, but it would help if you provide a little more context. Is your expectation that the due date will be dynamically determined based upon some type of business logic? If so, what is that business logic?
It’s not a one time thing or dependent on user input so i need automation for if we enter duedate in epic ticket automatically update task tickets with deferent due dates ( for each task need saparate due dates while changing te due date in epic ticket)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Requirement example
i have one EPIC under that 4 task issues are linked
EPIC due date =1-8-2023 if i enter this dude date in epic .the due dates of tasks wil be automatically updated like this
task1=1-2-2023
task2= 1-3-2023
task3= 1-1-2023
task4=1-4-2023
Is this possible ????
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes it's possible, but need to make sure the business logic is repeatable. For example, will task 3 always be 7 days before, task 1 always be 6 days before, task 2, 5 days before, etc?
Automation needs repeatable parameters:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The requirement we needed all tasks underneath the Epic to have their due dates set based on a formula of
(Epic Due Date) - (Months Prior field)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for the clarification. One more question. The months prior field. Is this just a simple numeric field indicating how many months prior? For example:
Is this the expected outcome?
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.
we have lot of tasks under epic
for each task we have different month prior
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for clearing things up. Here's how the rule could look:
{{triggerIssue.dueDate.minusMonths(issue.Months Prior)}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
custom feild =month prior ( number field ) is this rule works for this ???
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes - If it's a numeric field, this should work.
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.
Can you please share a screenshot of the rule audit log? This will help us understand what's failing.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
audit log shows it success but in task issue the due date shows empty
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hmm... Can you share a screenshot of the rule itself?
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.
here is the audit log its show success but it was not edit the due date in tasks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hmm... Everything looks good. Perhaps there's something amiss with the smart value. Can you add a Log Action to your rule just below the Edit Issue Fields with this:
Epic DueDate: {{triggerIssue.dueDate}} ** Months Prior: {{issue.Months Prior}} ** Task DueDate: {{triggerIssue.dueDate.minusMonths(issue.Months Prior)}}
Then run it again and let's look at the log. This will give us a sense of what it's picking up/processing.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Awesome its working
you are Marvelous, Thank ,Thank so much for your help
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
and i have forget to one more thing same requirement need for weeks prior also
is this possible ???
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm not sure what changed for you that it's suddenly working. The Log Action was only intended to help provide visibility into what was going on and help us troubleshoot the issue further.
As for Weeks Prior... I need a little more info. Is the intent that the months/weeks prior are to be combined in the calculation? For example...
Is the expectation that it would return something like 16/Nov/23? Or is there an expectation that the Weeks prior would be calculated against a different field?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
can i use like this ???
Log Action :Epic DueDate: {{triggerIssue.dueDate}} ** Weeks Prior: {{issue.Weeks Prior}} ** Task DueDate: {{triggerIssue.dueDate.minusWeeks(issue.Weeks Prior)}}
{{triggerIssue.dueDate.minusWeeks(issue.Weeks Prior)}}
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.
Ahh ok - So I would change up your rule to look like this:
{{triggerIssue.dueDate.minusWeeks(issue.Weeks Prior)}}
{{triggerIssue.dueDate.minusMonths(issue.Months Prior)}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
these conditions are not successful weeks prior not working
BRANCH: Stories (or Other Issues in Epic)
{{triggerIssue.dueDate.minusMonths(issue.Months Prior)}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can you please share screenshots of your updated rule and audit log?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
i have remove this condition
now its working
Thank you very so much @Mark Segall
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.
The condition assures that it doesn't trip over itself, but if it's working for you that's good for me. 🙂
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.