I AM ON JIRA SERVER
I want to set the value of Target Start to be the present day, but this JSON is returning an error saying the value has to be a string. Anyone can help?
So... this may just not be possible:
As @John Funk wrote back in Nov 2020:
And @Bill Sheboy found:
According to this Code Barrel ticket, the Portfolio and Advanced Roadmap fields are not supported yet:
Alas, that Improvement request still appears to be open. :-{
Same ticket in Atlassian's system: https://jira.atlassian.com/browse/JIRAAUTOSERVER-159
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I wrote a rule to update the target start when a ticket transitions from To Do -> In Progress, which works perfectly. Hooe this helps. Here's the custom JSON:
{
"fields": {
"Target start": "{{now.jiraDate}}"
}
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello the attr for the field "Target date" is "customfield_11001" you can export to XML any Epic or Task and check this...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Also, it is a locked custom field. This custom field is created and required by Portfolio for Jira.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Looks like "Target Start" is just a date (without a timestamp)? Maybe try:
{{now.jiraDate}}
Some other functions you might try are here: https://confluence.atlassian.com/automation/date-and-time-functions-993924864.html
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I just tried that and got the same error.
Here is the error I am receiving:
"(Operation value must be a string (customfield_14202))"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It would be helpful to do some debugging to see what an existing value looks like (to Automation).
So I would create a new rule with a Manual Trigger that doesn't do anything but do a Log action with a message of:
Target Start: {{issue.customfield_14202.value}}
And then manually trigger the rule from an issue that already has Target Start set, then look at the Audit log for this new rule to see what a "valid" value looks like.
I suppose you might also try:
{{now.toString}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I tried that, and the Target Start is set on the ticket, but the audit log shows up empty. Photos attached.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I guess I would also try seeing if you get anything for these Smart Values:
{{issue.Target Start}}
{{issue.Target Start.value}}
{{issue."Target Start"}}
{{issue."Target Start".value}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Oh and also: {{issue.customfield_14202}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
{{issue.customfield_14202}} worked and returned this value
2021-11-02
How do I take this information and move forward with configuring the automation
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.