I'm trying to build an automation to extract the working days of a task from the Due date and its Start date. I'm using the smart field {{issue.Start date}} but I can't see any date.
I tried with {{issue.Due date}}, and it works.
I've noticed that in our Jira customization there are two fields with similar names: "Start date" and "Start Date" (only the capital D is the difference). Could this be the reason for this misbehavior?
HI @Andrea Rigo
Due date is a system field form Jira.
Start Date and Start date are in my opinion created custom fields, they need to be addressed by the ID.
The value to access the field you be something as follows:
{{issue.customfield_10045}}
You can find this ID via the Rest API.
https:://<your site name>.atlassian.net/rest/api/3/field
FYI: Having to fields with the same name is bad practice. I would address this to your Jira admins
Hi @Marc - Devoteam , thanks for the answer.
Using the customfield works for other dates but not for my specific field that is generated in the Timeline view of my Project Scrum board.
Via Rest API I found the ID and its
"name": "Baseline start date",
Maybe the field I'm looking for has another name.
Do you know the name of the fields used for the Timeline. One should be the "Due date", but for the start of the task what is the actual name?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Andrea Rigo
I don't think the fields used on the timeline view are usable.
I think they come based on the start adn end date of the sprint, but I'm not sure.
You could reach out to Atlassian support, to find out if there is information usable from the Timeline view in automation.
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.