As my project is about managing Defect from Testing and the Target Date field is required to automatically generate Date based on Service Level Agreement(SLA) for example we have "Raised Date" field which will automatically generate date by using system date but we also have "Target Resolution Date" which is required to be D+2 from "Raised Date". Therefore, I'm wondering whether we could configure the field to automatically generate all date field for us such as
Raised Date = 11/Oct/2018 (System Date)
Target Resolution Date = 13/Oct/2018 (Automate D+2 from "Raised Date" field)
Hi Varoontape,
thanks for the post.
Yes this is definitely something you can do.
If you are using an issue edited action, you could use something like this:
{{#now}}func=plusDays(2),format="jiraDate"{{/}}
or if 'Raised Date' is a custom field, you would use something more akin to this:
{{#issue.Raised Date}}func=plusDays(2),format="jiraDate"{{/}}
We have good docs around dates here so you can play around with these: https://docs.automationforjira.com/smart-fields/working-with-dates.html
Hope that helps!
John
Thank you for your kindly responsed
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.